New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | <parent> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-cloud-plus</artifactId> |
| | | <version>${revision}</version> |
| | | </parent> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | |
| | | <modules> |
| | | <module>ruoyi-api-bom</module> |
| | | <module>ruoyi-api-system</module> |
| | | <module>ruoyi-api-resource</module> |
| | | </modules> |
| | | |
| | | <artifactId>ruoyi-api</artifactId> |
| | | <packaging>pom</packaging> |
| | | |
| | | <description> |
| | | ruoyi-apiç³»ç»æ¥å£ |
| | | </description> |
| | | |
| | | </project> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| | | xmlns="http://maven.apache.org/POM/4.0.0" |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | |
| | | <modelVersion>4.0.0</modelVersion> |
| | | |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-api-bom</artifactId> |
| | | <packaging>pom</packaging> |
| | | <version>${revision}</version> |
| | | |
| | | <description> |
| | | ruoyi-api-bom apiä¾èµé¡¹ |
| | | </description> |
| | | |
| | | <properties> |
| | | <revision>2.1.2</revision> |
| | | </properties> |
| | | |
| | | <dependencyManagement> |
| | | <dependencies> |
| | | <!-- ç³»ç»æ¥å£ --> |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-api-system</artifactId> |
| | | <version>${revision}</version> |
| | | </dependency> |
| | | |
| | | <!-- èµæºæå¡æ¥å£ --> |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-api-resource</artifactId> |
| | | <version>${revision}</version> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | </dependencyManagement> |
| | | </project> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| | | xmlns="http://maven.apache.org/POM/4.0.0" |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | <parent> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-api</artifactId> |
| | | <version>${revision}</version> |
| | | </parent> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | |
| | | <artifactId>ruoyi-api-resource</artifactId> |
| | | |
| | | <description> |
| | | ruoyi-api-resource èµæºæå¡æ¥å£æ¨¡å |
| | | </description> |
| | | |
| | | <dependencies> |
| | | |
| | | <!-- RuoYi Common Core--> |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-core</artifactId> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | |
| | | </project> |
New file |
| | |
| | | package org.dromara.resource.api; |
| | | |
| | | import org.dromara.common.core.exception.ServiceException; |
| | | import org.dromara.resource.api.domain.RemoteFile; |
| | | |
| | | /** |
| | | * æä»¶æå¡ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | public interface RemoteFileService { |
| | | |
| | | /** |
| | | * ä¸ä¼ æä»¶ |
| | | * |
| | | * @param file æä»¶ä¿¡æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | RemoteFile upload(String name, String originalFilename, String contentType, byte[] file) throws ServiceException; |
| | | |
| | | /** |
| | | * éè¿ossIdæ¥è¯¢å¯¹åºçurl |
| | | * |
| | | * @param ossIds ossId串éå·åé |
| | | * @return url串éå·åé |
| | | */ |
| | | String selectUrlByIds(String ossIds); |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.resource.api; |
| | | |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.dromara.common.core.utils.StringUtils; |
| | | import org.dromara.resource.api.domain.RemoteFile; |
| | | |
| | | /** |
| | | * æä»¶æå¡(é级å¤ç) |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @Slf4j |
| | | public class RemoteFileServiceMock implements RemoteFileService { |
| | | |
| | | /** |
| | | * ä¸ä¼ æä»¶ |
| | | * |
| | | * @param file æä»¶ä¿¡æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public RemoteFile upload(String name, String originalFilename, String contentType, byte[] file) { |
| | | log.warn("æå¡è°ç¨å¼å¸¸ -> é级å¤ç"); |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | | * éè¿ossIdæ¥è¯¢å¯¹åºçurl |
| | | * |
| | | * @param ossIds ossId串éå·åé |
| | | * @return url串éå·åé |
| | | */ |
| | | public String selectUrlByIds(String ossIds) { |
| | | log.warn("æå¡è°ç¨å¼å¸¸ -> é级å¤ç"); |
| | | return StringUtils.EMPTY; |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.resource.api; |
| | | |
| | | import org.dromara.common.core.exception.ServiceException; |
| | | |
| | | /** |
| | | * é®ä»¶æå¡ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | public interface RemoteMailService { |
| | | |
| | | /** |
| | | * åéé®ä»¶ |
| | | * |
| | | * @param to æ¥æ¶äºº |
| | | * @param subject æ é¢ |
| | | * @param text å
容 |
| | | */ |
| | | void send(String to, String subject, String text) throws ServiceException; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.resource.api; |
| | | |
| | | /** |
| | | * æ¶æ¯æå¡ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | public interface RemoteMessageService { |
| | | |
| | | /** |
| | | * åéæ¶æ¯ |
| | | * |
| | | * @param sessionKey sessionä¸»é® ä¸è¬ä¸ºç¨æ·id |
| | | * @param message æ¶æ¯ææ¬ |
| | | */ |
| | | void sendMessage(Long sessionKey, String message); |
| | | |
| | | void publishAll(String message); |
| | | } |
New file |
| | |
| | | package org.dromara.resource.api; |
| | | |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | |
| | | /** |
| | | * æ¶æ¯æå¡ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @Slf4j |
| | | @RequiredArgsConstructor |
| | | public class RemoteMessageServiceStub implements RemoteMessageService { |
| | | |
| | | private final RemoteMessageService remoteMessageService; |
| | | |
| | | /** |
| | | * åéæ¶æ¯ |
| | | * |
| | | * @param sessionKey sessionä¸»é® ä¸è¬ä¸ºç¨æ·id |
| | | * @param message æ¶æ¯ææ¬ |
| | | */ |
| | | public void sendMessage(Long sessionKey, String message) { |
| | | try { |
| | | remoteMessageService.sendMessage(sessionKey, message); |
| | | } catch (Exception e) { |
| | | log.warn("websocket åè½æªå¼å¯ææå¡æªæ¾å°"); |
| | | } |
| | | } |
| | | |
| | | public void publishAll(String message) { |
| | | try { |
| | | remoteMessageService.publishAll(message); |
| | | } catch (Exception e) { |
| | | log.warn("websocket åè½æªå¼å¯ææå¡æªæ¾å°"); |
| | | } |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.resource.api; |
| | | |
| | | import org.dromara.common.core.exception.ServiceException; |
| | | import org.dromara.resource.api.domain.RemoteSms; |
| | | |
| | | import java.util.LinkedHashMap; |
| | | |
| | | /** |
| | | * çä¿¡æå¡ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | public interface RemoteSmsService { |
| | | |
| | | /** |
| | | * åéçä¿¡ |
| | | * |
| | | * @param phones çµè¯å·(å¤ä¸ªéå·åå²) |
| | | * @param templateId 模æ¿id |
| | | * @param param 模æ¿å¯¹åºåæ° |
| | | */ |
| | | RemoteSms send(String phones, String templateId, LinkedHashMap<String, String> param) throws ServiceException; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.resource.api.domain; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * æä»¶ä¿¡æ¯ |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | @Data |
| | | public class RemoteFile implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * ossä¸»é® |
| | | */ |
| | | private Long ossId; |
| | | |
| | | /** |
| | | * æä»¶åç§° |
| | | */ |
| | | private String name; |
| | | |
| | | /** |
| | | * æä»¶å°å |
| | | */ |
| | | private String url; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.resource.api.domain; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * æä»¶ä¿¡æ¯ |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | @Data |
| | | public class RemoteSms implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * æ¯å¦æå |
| | | */ |
| | | private Boolean isSuccess; |
| | | |
| | | /** |
| | | * ååºæ¶æ¯ |
| | | */ |
| | | private String message; |
| | | |
| | | /** |
| | | * å®é
ååºä½ |
| | | * <p> |
| | | * å¯èªè¡è½¬æ¢ä¸º SDK 对åºç SendSmsResponse |
| | | */ |
| | | private String response; |
| | | |
| | | } |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| | | xmlns="http://maven.apache.org/POM/4.0.0" |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | <parent> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-api</artifactId> |
| | | <version>${revision}</version> |
| | | </parent> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | |
| | | <artifactId>ruoyi-api-system</artifactId> |
| | | |
| | | <description> |
| | | ruoyi-api-systemç³»ç»æ¥å£æ¨¡å |
| | | </description> |
| | | |
| | | <dependencies> |
| | | |
| | | <!-- RuoYi Common Core--> |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-core</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-excel</artifactId> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | |
| | | </project> |
New file |
| | |
| | | package org.dromara.system.api; |
| | | |
| | | import org.dromara.system.api.domain.vo.RemoteClientVo; |
| | | |
| | | /** |
| | | * 客æ·ç«¯æå¡ |
| | | * |
| | | * @author Michelle.Chung |
| | | */ |
| | | public interface RemoteClientService { |
| | | |
| | | /** |
| | | * æ ¹æ®å®¢æ·ç«¯idè·å客æ·ç«¯è¯¦æ
|
| | | * |
| | | * @param clientId 客æ·ç«¯id |
| | | * @return 客æ·ç«¯å¯¹è±¡ |
| | | */ |
| | | RemoteClientVo queryByClientId(String clientId); |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api; |
| | | |
| | | /** |
| | | * é
ç½®æå¡ |
| | | * |
| | | * @author Michelle.Chung |
| | | */ |
| | | public interface RemoteConfigService { |
| | | |
| | | /** |
| | | * è·å注åå¼å
³ |
| | | * @param tenantId ç§æ·id |
| | | * @return trueå¼å¯ï¼falseå
³é |
| | | */ |
| | | boolean selectRegisterEnabled(String tenantId); |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api; |
| | | |
| | | /** |
| | | * æ°æ®æéæå¡ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | public interface RemoteDataScopeService { |
| | | |
| | | /** |
| | | * è·åè§è²èªå®ä¹æéè¯å¥ |
| | | */ |
| | | String getRoleCustom(Long roleId); |
| | | |
| | | /** |
| | | * è·åé¨é¨åä¸çº§æéè¯å¥ |
| | | */ |
| | | String getDeptAndChild(Long deptId); |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api; |
| | | |
| | | /** |
| | | * é¨é¨æå¡ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | public interface RemoteDeptService { |
| | | |
| | | /** |
| | | * éè¿é¨é¨IDæ¥è¯¢é¨é¨åç§° |
| | | * |
| | | * @param deptIds é¨é¨ID串éå·åé |
| | | * @return é¨é¨å称串éå·åé |
| | | */ |
| | | String selectDeptNameByIds(String deptIds); |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api; |
| | | |
| | | import org.dromara.system.api.domain.vo.RemoteDictDataVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * åå
¸æå¡ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | public interface RemoteDictService { |
| | | |
| | | /** |
| | | * æ ¹æ®åå
¸ç±»åæ¥è¯¢åå
¸æ°æ® |
| | | * |
| | | * @param dictType åå
¸ç±»å |
| | | * @return åå
¸æ°æ®éåä¿¡æ¯ |
| | | */ |
| | | List<RemoteDictDataVo> selectDictDataByType(String dictType); |
| | | } |
New file |
| | |
| | | package org.dromara.system.api; |
| | | |
| | | import org.dromara.system.api.domain.bo.RemoteLogininforBo; |
| | | import org.dromara.system.api.domain.bo.RemoteOperLogBo; |
| | | |
| | | /** |
| | | * æ¥å¿æå¡ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | public interface RemoteLogService { |
| | | |
| | | /** |
| | | * ä¿åç³»ç»æ¥å¿ |
| | | * |
| | | * @param sysOperLog æ¥å¿å®ä½ |
| | | */ |
| | | void saveLog(RemoteOperLogBo sysOperLog); |
| | | |
| | | /** |
| | | * ä¿å访é®è®°å½ |
| | | * |
| | | * @param sysLogininfor 访é®å®ä½ |
| | | */ |
| | | void saveLogininfor(RemoteLogininforBo sysLogininfor); |
| | | } |
New file |
| | |
| | | package org.dromara.system.api; |
| | | |
| | | import org.dromara.system.api.domain.bo.RemoteSocialBo; |
| | | import org.dromara.system.api.domain.vo.RemoteSocialVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 社ä¼åå
³ç³»æå¡ |
| | | * |
| | | * @author Michelle.Chung |
| | | */ |
| | | public interface RemoteSocialService { |
| | | |
| | | /** |
| | | * æ ¹æ® authId æ¥è¯¢ç¨æ·ä¿¡æ¯ |
| | | */ |
| | | List<RemoteSocialVo> selectByAuthId(String authId); |
| | | |
| | | /** |
| | | * ä¿å社ä¼åå
³ç³» |
| | | */ |
| | | void insertByBo(RemoteSocialBo bo); |
| | | |
| | | /** |
| | | * æ´æ°ç¤¾ä¼åå
³ç³» |
| | | */ |
| | | void updateByBo(RemoteSocialBo bo); |
| | | |
| | | /** |
| | | * å é¤ç¤¾ä¼åå
³ç³» |
| | | */ |
| | | Boolean deleteWithValidById(Long socialId); |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api; |
| | | |
| | | |
| | | import org.dromara.system.api.domain.vo.RemoteTenantVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhujie |
| | | */ |
| | | public interface RemoteTenantService { |
| | | |
| | | /** |
| | | * æ ¹æ®ç§æ·idè·åç§æ·è¯¦æ
|
| | | * @param tenantId ç§æ·id |
| | | * @return ç»æ |
| | | */ |
| | | RemoteTenantVo queryByTenantId(String tenantId); |
| | | |
| | | /** |
| | | * è·åç§æ·å表 |
| | | * @return ç»æ |
| | | */ |
| | | List<RemoteTenantVo> queryList(); |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api; |
| | | |
| | | import org.dromara.common.core.exception.ServiceException; |
| | | import org.dromara.common.core.exception.user.UserException; |
| | | import org.dromara.system.api.domain.bo.RemoteUserBo; |
| | | import org.dromara.system.api.model.LoginUser; |
| | | import org.dromara.system.api.model.XcxLoginUser; |
| | | |
| | | /** |
| | | * ç¨æ·æå¡ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | public interface RemoteUserService { |
| | | |
| | | /** |
| | | * éè¿ç¨æ·åæ¥è¯¢ç¨æ·ä¿¡æ¯ |
| | | * |
| | | * @param username ç¨æ·å |
| | | * @param tenantId ç§æ·id |
| | | * @return ç»æ |
| | | */ |
| | | LoginUser getUserInfo(String username, String tenantId) throws UserException; |
| | | |
| | | /** |
| | | * éè¿ç¨æ·idæ¥è¯¢ç¨æ·ä¿¡æ¯ |
| | | * |
| | | * @param userId ç¨æ·id |
| | | * @param tenantId ç§æ·id |
| | | * @return ç»æ |
| | | */ |
| | | LoginUser getUserInfo(Long userId, String tenantId) throws UserException; |
| | | |
| | | /** |
| | | * éè¿ææºå·æ¥è¯¢ç¨æ·ä¿¡æ¯ |
| | | * |
| | | * @param phonenumber ææºå· |
| | | * @param tenantId ç§æ·id |
| | | * @return ç»æ |
| | | */ |
| | | LoginUser getUserInfoByPhonenumber(String phonenumber, String tenantId) throws UserException; |
| | | |
| | | /** |
| | | * éè¿é®ç®±æ¥è¯¢ç¨æ·ä¿¡æ¯ |
| | | * |
| | | * @param email é®ç®± |
| | | * @param tenantId ç§æ·id |
| | | * @return ç»æ |
| | | */ |
| | | LoginUser getUserInfoByEmail(String email, String tenantId) throws UserException; |
| | | |
| | | /** |
| | | * éè¿openidæ¥è¯¢ç¨æ·ä¿¡æ¯ |
| | | * |
| | | * @param openid openid |
| | | * @return ç»æ |
| | | */ |
| | | XcxLoginUser getUserInfoByOpenid(String openid) throws UserException; |
| | | |
| | | /** |
| | | * 注åç¨æ·ä¿¡æ¯ |
| | | * |
| | | * @param remoteUserBo ç¨æ·ä¿¡æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | Boolean registerUserInfo(RemoteUserBo remoteUserBo) throws UserException, ServiceException; |
| | | |
| | | /** |
| | | * éè¿userIdæ¥è¯¢ç¨æ·è´¦æ· |
| | | * |
| | | * @param userId ç¨æ·id |
| | | * @return ç»æ |
| | | */ |
| | | String selectUserNameById(Long userId); |
| | | |
| | | /** |
| | | * éè¿ç¨æ·IDæ¥è¯¢ç¨æ·æµç§° |
| | | * |
| | | * @param userId ç¨æ·id |
| | | * @return ç»æ |
| | | */ |
| | | String selectNicknameById(Long userId); |
| | | |
| | | /** |
| | | * æ´æ°ç¨æ·ä¿¡æ¯ |
| | | * |
| | | * @param userId ç¨æ·ID |
| | | * @param ip IPå°å |
| | | */ |
| | | void recordLoginInfo(Long userId, String ip); |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.domain; |
| | | |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * å½åå¨çº¿ä¼è¯ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | public class SysUserOnline implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * ä¼è¯ç¼å· |
| | | */ |
| | | private String tokenId; |
| | | |
| | | /** |
| | | * é¨é¨åç§° |
| | | */ |
| | | private String deptName; |
| | | |
| | | /** |
| | | * ç¨æ·åç§° |
| | | */ |
| | | private String userName; |
| | | |
| | | /** |
| | | * 客æ·ç«¯ |
| | | */ |
| | | private String clientKey; |
| | | |
| | | /** |
| | | * 设å¤ç±»å |
| | | */ |
| | | private String deviceType; |
| | | |
| | | /** |
| | | * ç»å½IPå°å |
| | | */ |
| | | private String ipaddr; |
| | | |
| | | /** |
| | | * ç»å½å°å |
| | | */ |
| | | private String loginLocation; |
| | | |
| | | /** |
| | | * æµè§å¨ç±»å |
| | | */ |
| | | private String browser; |
| | | |
| | | /** |
| | | * æä½ç³»ç» |
| | | */ |
| | | private String os; |
| | | |
| | | /** |
| | | * ç»å½æ¶é´ |
| | | */ |
| | | private Long loginTime; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.domain.bo; |
| | | |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.HashMap; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * ç³»ç»è®¿é®è®°å½è¡¨ sys_logininfor |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | public class RemoteLogininforBo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 访é®ID |
| | | */ |
| | | private Long infoId; |
| | | |
| | | /** |
| | | * ç§æ·ç¼å· |
| | | */ |
| | | private String tenantId; |
| | | |
| | | /** |
| | | * ç¨æ·è´¦å· |
| | | */ |
| | | private String userName; |
| | | |
| | | /** |
| | | * 客æ·ç«¯ |
| | | */ |
| | | private String clientKey; |
| | | |
| | | /** |
| | | * 设å¤ç±»å |
| | | */ |
| | | private String deviceType; |
| | | |
| | | /** |
| | | * ç»å½IPå°å |
| | | */ |
| | | private String ipaddr; |
| | | |
| | | /** |
| | | * ç»å½å°ç¹ |
| | | */ |
| | | private String loginLocation; |
| | | |
| | | /** |
| | | * æµè§å¨ç±»å |
| | | */ |
| | | private String browser; |
| | | |
| | | /** |
| | | * æä½ç³»ç» |
| | | */ |
| | | private String os; |
| | | |
| | | /** |
| | | * ç»å½ç¶æï¼0æå 1å¤±è´¥ï¼ |
| | | */ |
| | | private String status; |
| | | |
| | | /** |
| | | * æç¤ºæ¶æ¯ |
| | | */ |
| | | private String msg; |
| | | |
| | | /** |
| | | * è®¿é®æ¶é´ |
| | | */ |
| | | private Date loginTime; |
| | | |
| | | /** |
| | | * 请æ±åæ° |
| | | */ |
| | | private Map<String, Object> params = new HashMap<>(); |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.domain.bo; |
| | | |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.HashMap; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * æä½æ¥å¿è®°å½è¡¨ oper_log |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | public class RemoteOperLogBo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * æ¥å¿ä¸»é® |
| | | */ |
| | | private Long operId; |
| | | |
| | | /** |
| | | * ç§æ·ç¼å· |
| | | */ |
| | | private String tenantId; |
| | | |
| | | /** |
| | | * æ¨¡åæ é¢ |
| | | */ |
| | | private String title; |
| | | |
| | | /** |
| | | * ä¸å¡ç±»åï¼0å
¶å® 1æ°å¢ 2ä¿®æ¹ 3å é¤ï¼ |
| | | */ |
| | | private Integer businessType; |
| | | |
| | | /** |
| | | * æ¹æ³åç§° |
| | | */ |
| | | private String method; |
| | | |
| | | /** |
| | | * è¯·æ±æ¹å¼ |
| | | */ |
| | | private String requestMethod; |
| | | |
| | | /** |
| | | * æä½ç±»å«ï¼0å
¶å® 1åå°ç¨æ· 2ææºç«¯ç¨æ·ï¼ |
| | | */ |
| | | private Integer operatorType; |
| | | |
| | | /** |
| | | * æä½äººå |
| | | */ |
| | | private String operName; |
| | | |
| | | /** |
| | | * é¨é¨åç§° |
| | | */ |
| | | private String deptName; |
| | | |
| | | /** |
| | | * 请æ±URL |
| | | */ |
| | | private String operUrl; |
| | | |
| | | /** |
| | | * 主æºå°å |
| | | */ |
| | | private String operIp; |
| | | |
| | | /** |
| | | * æä½å°ç¹ |
| | | */ |
| | | private String operLocation; |
| | | |
| | | /** |
| | | * 请æ±åæ° |
| | | */ |
| | | private String operParam; |
| | | |
| | | /** |
| | | * è¿ååæ° |
| | | */ |
| | | private String jsonResult; |
| | | |
| | | /** |
| | | * æä½ç¶æï¼0æ£å¸¸ 1å¼å¸¸ï¼ |
| | | */ |
| | | private Integer status; |
| | | |
| | | /** |
| | | * éè¯¯æ¶æ¯ |
| | | */ |
| | | private String errorMsg; |
| | | |
| | | /** |
| | | * æä½æ¶é´ |
| | | */ |
| | | private Date operTime; |
| | | |
| | | /** |
| | | * æ¶èæ¶é´ |
| | | */ |
| | | private Long costTime; |
| | | |
| | | /** |
| | | * 请æ±åæ° |
| | | */ |
| | | private Map<String, Object> params = new HashMap<>(); |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.domain.bo; |
| | | |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * 社ä¼åå
³ç³»ä¸å¡å¯¹è±¡ sys_social |
| | | * |
| | | * @author Michelle.Chung |
| | | */ |
| | | @Data |
| | | @NoArgsConstructor |
| | | public class RemoteSocialBo implements Serializable { |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | /** |
| | | * ä¸»é® |
| | | */ |
| | | private Long id; |
| | | |
| | | /** |
| | | * çå¯ä¸ID |
| | | */ |
| | | private String authId; |
| | | |
| | | /** |
| | | * ç¨æ·æ¥æº |
| | | */ |
| | | private String source; |
| | | |
| | | /** |
| | | * ç¨æ·çææä»¤ç |
| | | */ |
| | | private String accessToken; |
| | | |
| | | /** |
| | | * ç¨æ·çææä»¤ççæææï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private int expireIn; |
| | | |
| | | /** |
| | | * å·æ°ä»¤çï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String refreshToken; |
| | | |
| | | /** |
| | | * å¹³å°å¯ä¸id |
| | | */ |
| | | private String openId; |
| | | |
| | | /** |
| | | * ç¨æ·ç ID |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * å¹³å°çææä¿¡æ¯ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String accessCode; |
| | | |
| | | /** |
| | | * ç¨æ·ç unionid |
| | | */ |
| | | private String unionId; |
| | | |
| | | /** |
| | | * æäºçæéï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String scope; |
| | | |
| | | /** |
| | | * ææçç¬¬ä¸æ¹è´¦å· |
| | | */ |
| | | private String userName; |
| | | |
| | | /** |
| | | * ææçç¬¬ä¸æ¹æµç§° |
| | | */ |
| | | private String nickName; |
| | | |
| | | /** |
| | | * ææçç¬¬ä¸æ¹é®ç®± |
| | | */ |
| | | private String email; |
| | | |
| | | /** |
| | | * ææçç¬¬ä¸æ¹å¤´åå°å |
| | | */ |
| | | private String avatar; |
| | | |
| | | /** |
| | | * 个å«å¹³å°çææä¿¡æ¯ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String tokenType; |
| | | |
| | | /** |
| | | * id tokenï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String idToken; |
| | | |
| | | /** |
| | | * å°ç±³å¹³å°ç¨æ·çé另屿§ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String macAlgorithm; |
| | | |
| | | /** |
| | | * å°ç±³å¹³å°ç¨æ·çé另屿§ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String macKey; |
| | | |
| | | /** |
| | | * ç¨æ·çææcodeï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String code; |
| | | |
| | | /** |
| | | * Twitterå¹³å°ç¨æ·çé另屿§ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String oauthToken; |
| | | |
| | | /** |
| | | * Twitterå¹³å°ç¨æ·çé另屿§ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String oauthTokenSecret; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.domain.bo; |
| | | |
| | | |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import org.dromara.common.core.constant.UserConstants; |
| | | import org.dromara.common.core.xss.Xss; |
| | | |
| | | import jakarta.validation.constraints.Email; |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import jakarta.validation.constraints.Size; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * ç¨æ·ä¿¡æ¯ä¸å¡å¯¹è±¡ sys_user |
| | | * |
| | | * @author Michelle.Chung |
| | | */ |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | public class RemoteUserBo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * ç¨æ·ID |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * ç§æ·ID |
| | | */ |
| | | private String tenantId; |
| | | |
| | | /** |
| | | * é¨é¨ID |
| | | */ |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * ç¨æ·è´¦å· |
| | | */ |
| | | @Xss(message = "ç¨æ·è´¦å·ä¸è½å
å«èæ¬å符") |
| | | @NotBlank(message = "ç¨æ·è´¦å·ä¸è½ä¸ºç©º") |
| | | @Size(min = 0, max = 30, message = "ç¨æ·è´¦å·é¿åº¦ä¸è½è¶
è¿{max}个å符") |
| | | private String userName; |
| | | |
| | | /** |
| | | * ç¨æ·æµç§° |
| | | */ |
| | | @Xss(message = "ç¨æ·æµç§°ä¸è½å
å«èæ¬å符") |
| | | @Size(min = 0, max = 30, message = "ç¨æ·æµç§°é¿åº¦ä¸è½è¶
è¿{max}个å符") |
| | | private String nickName; |
| | | |
| | | /** |
| | | * ç¨æ·ç±»åï¼sys_userç³»ç»ç¨æ·ï¼ |
| | | */ |
| | | private String userType; |
| | | |
| | | /** |
| | | * ç¨æ·é®ç®± |
| | | */ |
| | | @Email(message = "é®ç®±æ ¼å¼ä¸æ£ç¡®") |
| | | @Size(min = 0, max = 50, message = "é®ç®±é¿åº¦ä¸è½è¶
è¿{max}个å符") |
| | | private String email; |
| | | |
| | | /** |
| | | * ææºå·ç |
| | | */ |
| | | private String phonenumber; |
| | | |
| | | /** |
| | | * ç¨æ·æ§å«ï¼0ç· 1女 2æªç¥ï¼ |
| | | */ |
| | | private String sex; |
| | | |
| | | /** |
| | | * 头åå°å |
| | | */ |
| | | private Long avatar; |
| | | |
| | | /** |
| | | * å¯ç |
| | | */ |
| | | private String password; |
| | | |
| | | /** |
| | | * å¸å·ç¶æï¼0æ£å¸¸ 1åç¨ï¼ |
| | | */ |
| | | private String status; |
| | | |
| | | /** |
| | | * æåç»å½IP |
| | | */ |
| | | private String loginIp; |
| | | |
| | | /** |
| | | * æåç»å½æ¶é´ |
| | | */ |
| | | private Date loginDate; |
| | | |
| | | /** |
| | | * 夿³¨ |
| | | */ |
| | | private String remark; |
| | | |
| | | /** |
| | | * æ°æ®æé å½åè§è²ID |
| | | */ |
| | | private Long roleId; |
| | | |
| | | public RemoteUserBo(Long userId) { |
| | | this.userId = userId; |
| | | } |
| | | |
| | | public boolean isSuperAdmin() { |
| | | return UserConstants.SUPER_ADMIN_ID.equals(this.userId); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.domain.vo; |
| | | |
| | | import lombok.Data; |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | |
| | | /** |
| | | * ææç®¡çè§å¾å¯¹è±¡ sys_client |
| | | * |
| | | * @author Michelle.Chung |
| | | */ |
| | | @Data |
| | | public class RemoteClientVo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * id |
| | | */ |
| | | private Long id; |
| | | |
| | | /** |
| | | * 客æ·ç«¯id |
| | | */ |
| | | private String clientId; |
| | | |
| | | /** |
| | | * 客æ·ç«¯key |
| | | */ |
| | | private String clientKey; |
| | | |
| | | /** |
| | | * 客æ·ç«¯ç§é¥ |
| | | */ |
| | | private String clientSecret; |
| | | |
| | | /** |
| | | * ææç±»å |
| | | */ |
| | | private List<String> grantTypeList; |
| | | |
| | | /** |
| | | * ææç±»å |
| | | */ |
| | | private String grantType; |
| | | |
| | | /** |
| | | * 设å¤ç±»å |
| | | */ |
| | | private String deviceType; |
| | | |
| | | /** |
| | | * tokenæ´»è·è¶
æ¶æ¶é´ |
| | | */ |
| | | private Long activeTimeout; |
| | | |
| | | /** |
| | | * tokenåºå®è¶
æ¶æ¶é´ |
| | | */ |
| | | private Long timeout; |
| | | |
| | | /** |
| | | * ç¶æï¼0æ£å¸¸ 1åç¨ï¼ |
| | | */ |
| | | private String status; |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.domain.vo; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * åå
¸æ°æ®è§å¾å¯¹è±¡ sys_dict_data |
| | | * |
| | | * @author Michelle.Chung |
| | | */ |
| | | @Data |
| | | public class RemoteDictDataVo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * åå
¸ç¼ç |
| | | */ |
| | | private Long dictCode; |
| | | |
| | | /** |
| | | * åå
¸æåº |
| | | */ |
| | | private Integer dictSort; |
| | | |
| | | /** |
| | | * åå
¸æ ç¾ |
| | | */ |
| | | private String dictLabel; |
| | | |
| | | /** |
| | | * åå
¸é®å¼ |
| | | */ |
| | | private String dictValue; |
| | | |
| | | /** |
| | | * åå
¸ç±»å |
| | | */ |
| | | private String dictType; |
| | | |
| | | /** |
| | | * æ ·å¼å±æ§ï¼å
¶ä»æ ·å¼æ©å±ï¼ |
| | | */ |
| | | private String cssClass; |
| | | |
| | | /** |
| | | * è¡¨æ ¼åæ¾æ ·å¼ |
| | | */ |
| | | private String listClass; |
| | | |
| | | /** |
| | | * æ¯å¦é»è®¤ï¼Yæ¯ Nå¦ï¼ |
| | | */ |
| | | private String isDefault; |
| | | |
| | | /** |
| | | * ç¶æï¼0æ£å¸¸ 1åç¨ï¼ |
| | | */ |
| | | private String status; |
| | | |
| | | /** |
| | | * 夿³¨ |
| | | */ |
| | | private String remark; |
| | | |
| | | /** |
| | | * å建æ¶é´ |
| | | */ |
| | | private Date createTime; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.domain.vo; |
| | | |
| | | import lombok.Data; |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | |
| | | |
| | | /** |
| | | * 社ä¼åå
³ç³»è§å¾å¯¹è±¡ sys_social |
| | | * |
| | | * @author thiszhc |
| | | */ |
| | | @Data |
| | | public class RemoteSocialVo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * ä¸»é® |
| | | */ |
| | | private Long id; |
| | | |
| | | /** |
| | | * ç¨æ·ID |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * ç§æ·ID |
| | | */ |
| | | private String tenantId; |
| | | |
| | | /** |
| | | * çå¯ä¸ID |
| | | */ |
| | | private String authId; |
| | | |
| | | /** |
| | | * ç¨æ·æ¥æº |
| | | */ |
| | | private String source; |
| | | |
| | | /** |
| | | * ç¨æ·çææä»¤ç |
| | | */ |
| | | private String accessToken; |
| | | |
| | | /** |
| | | * ç¨æ·çææä»¤ççæææï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private int expireIn; |
| | | |
| | | /** |
| | | * å·æ°ä»¤çï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String refreshToken; |
| | | |
| | | /** |
| | | * ç¨æ·ç open id |
| | | */ |
| | | private String openId; |
| | | |
| | | /** |
| | | * ææçç¬¬ä¸æ¹è´¦å· |
| | | */ |
| | | private String userName; |
| | | |
| | | /** |
| | | * ææçç¬¬ä¸æ¹æµç§° |
| | | */ |
| | | private String nickName; |
| | | |
| | | /** |
| | | * ææçç¬¬ä¸æ¹é®ç®± |
| | | */ |
| | | private String email; |
| | | |
| | | /** |
| | | * ææçç¬¬ä¸æ¹å¤´åå°å |
| | | */ |
| | | private String avatar; |
| | | |
| | | |
| | | /** |
| | | * å¹³å°çææä¿¡æ¯ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String accessCode; |
| | | |
| | | /** |
| | | * ç¨æ·ç unionid |
| | | */ |
| | | private String unionId; |
| | | |
| | | /** |
| | | * æäºçæéï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String scope; |
| | | |
| | | /** |
| | | * 个å«å¹³å°çææä¿¡æ¯ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String tokenType; |
| | | |
| | | /** |
| | | * id tokenï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String idToken; |
| | | |
| | | /** |
| | | * å°ç±³å¹³å°ç¨æ·çé另屿§ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String macAlgorithm; |
| | | |
| | | /** |
| | | * å°ç±³å¹³å°ç¨æ·çé另屿§ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String macKey; |
| | | |
| | | /** |
| | | * ç¨æ·çææcodeï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String code; |
| | | |
| | | /** |
| | | * Twitterå¹³å°ç¨æ·çé另屿§ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String oauthToken; |
| | | |
| | | /** |
| | | * Twitterå¹³å°ç¨æ·çé另屿§ï¼é¨åå¹³å°å¯è½æ²¡æ |
| | | */ |
| | | private String oauthTokenSecret; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.domain.vo; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * ç§æ·è§å¾å¯¹è±¡ |
| | | * |
| | | * @author zhujie |
| | | */ |
| | | @Data |
| | | public class RemoteTenantVo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * id |
| | | */ |
| | | private Long id; |
| | | |
| | | /** |
| | | * ç§æ·ç¼å· |
| | | */ |
| | | private String tenantId; |
| | | |
| | | /** |
| | | * è系人 |
| | | */ |
| | | private String contactUserName; |
| | | |
| | | /** |
| | | * èç³»çµè¯ |
| | | */ |
| | | private String contactPhone; |
| | | |
| | | /** |
| | | * ä¼ä¸åç§° |
| | | */ |
| | | private String companyName; |
| | | |
| | | /** |
| | | * ç»ä¸ç¤¾ä¼ä¿¡ç¨ä»£ç |
| | | */ |
| | | private String licenseNumber; |
| | | |
| | | /** |
| | | * å°å |
| | | */ |
| | | private String address; |
| | | |
| | | /** |
| | | * åå |
| | | */ |
| | | private String domain; |
| | | |
| | | /** |
| | | * ä¼ä¸ç®ä» |
| | | */ |
| | | private String intro; |
| | | |
| | | /** |
| | | * 夿³¨ |
| | | */ |
| | | private String remark; |
| | | |
| | | /** |
| | | * ç§æ·å¥é¤ç¼å· |
| | | */ |
| | | private Long packageId; |
| | | |
| | | /** |
| | | * è¿ææ¶é´ |
| | | */ |
| | | private Date expireTime; |
| | | |
| | | /** |
| | | * ç¨æ·æ°éï¼-1ä¸éå¶ï¼ |
| | | */ |
| | | private Long accountCount; |
| | | |
| | | /** |
| | | * ç§æ·ç¶æï¼0æ£å¸¸ 1åç¨ï¼ |
| | | */ |
| | | private String status; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.model; |
| | | |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | import java.util.Set; |
| | | |
| | | /** |
| | | * ç¨æ·ä¿¡æ¯ |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | @Data |
| | | @NoArgsConstructor |
| | | public class LoginUser implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * ç§æ·ID |
| | | */ |
| | | private String tenantId; |
| | | |
| | | /** |
| | | * ç¨æ·ID |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * é¨é¨ID |
| | | */ |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * é¨é¨å |
| | | */ |
| | | private String deptName; |
| | | |
| | | /** |
| | | * ç¨æ·å¯ä¸æ è¯ |
| | | */ |
| | | private String token; |
| | | |
| | | /** |
| | | * ç¨æ·ç±»å |
| | | */ |
| | | private String userType; |
| | | |
| | | /** |
| | | * ç»å½æ¶é´ |
| | | */ |
| | | private Long loginTime; |
| | | |
| | | /** |
| | | * è¿ææ¶é´ |
| | | */ |
| | | private Long expireTime; |
| | | |
| | | /** |
| | | * ç»å½IPå°å |
| | | */ |
| | | private String ipaddr; |
| | | |
| | | /** |
| | | * ç»å½å°ç¹ |
| | | */ |
| | | private String loginLocation; |
| | | |
| | | /** |
| | | * æµè§å¨ç±»å |
| | | */ |
| | | private String browser; |
| | | |
| | | /** |
| | | * æä½ç³»ç» |
| | | */ |
| | | private String os; |
| | | |
| | | /** |
| | | * èåæé |
| | | */ |
| | | private Set<String> menuPermission; |
| | | |
| | | /** |
| | | * è§è²æé |
| | | */ |
| | | private Set<String> rolePermission; |
| | | |
| | | /** |
| | | * ç¨æ·å |
| | | */ |
| | | private String username; |
| | | |
| | | /** |
| | | * ç¨æ·æµç§° |
| | | */ |
| | | private String nickname; |
| | | |
| | | /** |
| | | * å¯ç |
| | | */ |
| | | private String password; |
| | | |
| | | /** |
| | | * è§è²å¯¹è±¡ |
| | | */ |
| | | private List<RoleDTO> roles; |
| | | |
| | | /** |
| | | * æ°æ®æé å½åè§è²ID |
| | | */ |
| | | private Long roleId; |
| | | |
| | | /** |
| | | * 客æ·ç«¯ |
| | | */ |
| | | private String clientKey; |
| | | |
| | | /** |
| | | * 设å¤ç±»å |
| | | */ |
| | | private String deviceType; |
| | | |
| | | /** |
| | | * è·åç»å½id |
| | | */ |
| | | public String getLoginId() { |
| | | if (userType == null) { |
| | | throw new IllegalArgumentException("ç¨æ·ç±»åä¸è½ä¸ºç©º"); |
| | | } |
| | | if (userId == null) { |
| | | throw new IllegalArgumentException("ç¨æ·IDä¸è½ä¸ºç©º"); |
| | | } |
| | | return userType + ":" + userId; |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.model; |
| | | |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * è§è² |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | public class RoleDTO implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * è§è²ID |
| | | */ |
| | | private Long roleId; |
| | | |
| | | /** |
| | | * è§è²åç§° |
| | | */ |
| | | private String roleName; |
| | | |
| | | /** |
| | | * è§è²æé |
| | | */ |
| | | private String roleKey; |
| | | |
| | | /** |
| | | * æ°æ®èå´ï¼1ï¼æææ°æ®æéï¼2ï¼èªå®ä¹æ°æ®æéï¼3ï¼æ¬é¨é¨æ°æ®æéï¼4ï¼æ¬é¨é¨å以䏿°æ®æéï¼5ï¼ä»
æ¬äººæ°æ®æéï¼ |
| | | */ |
| | | private String dataScope; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.system.api.model; |
| | | |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.io.Serial; |
| | | |
| | | /** |
| | | * å°ç¨åºç»å½ç¨æ·èº«ä»½æé |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @NoArgsConstructor |
| | | public class XcxLoginUser extends LoginUser { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * openid |
| | | */ |
| | | private String openid; |
| | | |
| | | } |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | <parent> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-cloud-plus</artifactId> |
| | | <version>${revision}</version> |
| | | </parent> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | |
| | | <modules> |
| | | <module>ruoyi-demo</module> |
| | | <module>ruoyi-stream-mq</module> |
| | | </modules> |
| | | |
| | | <artifactId>ruoyi-example</artifactId> |
| | | <packaging>pom</packaging> |
| | | |
| | | <description> |
| | | ruoyi-example ä¾å模å |
| | | </description> |
| | | |
| | | <dependencies> |
| | | <!-- èªå®ä¹è´è½½åè¡¡(å¤å¢éå¼å使ç¨) --> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.dromara</groupId>--> |
| | | <!-- <artifactId>ruoyi-common-loadbalancer</artifactId>--> |
| | | <!-- </dependency>--> |
| | | |
| | | <!-- skywalking æ¥å¿æ¶é --> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.dromara</groupId>--> |
| | | <!-- <artifactId>ruoyi-common-skylog</artifactId>--> |
| | | <!-- </dependency>--> |
| | | |
| | | <!-- prometheus çæ§ --> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.dromara</groupId>--> |
| | | <!-- <artifactId>ruoyi-common-prometheus</artifactId>--> |
| | | <!-- </dependency>--> |
| | | </dependencies> |
| | | |
| | | </project> |
New file |
| | |
| | | # 使ç¨è¯´æ |
| | | éè¦å¨ `ry-cloud` æ°æ®åºå
æ§è¡ `test.sql` æä»¶ åå§åæµè¯æ°æ® |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| | | xmlns="http://maven.apache.org/POM/4.0.0" |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | <parent> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-example</artifactId> |
| | | <version>${revision}</version> |
| | | </parent> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | |
| | | <artifactId>ruoyi-demo</artifactId> |
| | | |
| | | <description> |
| | | ruoyi-demo æ¼ç¤ºæ¨¡å |
| | | </description> |
| | | |
| | | <dependencies> |
| | | |
| | | <!-- SpringCloud Alibaba Nacos --> |
| | | <dependency> |
| | | <groupId>com.alibaba.cloud</groupId> |
| | | <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
| | | </dependency> |
| | | |
| | | <!-- SpringCloud Alibaba Nacos Config --> |
| | | <dependency> |
| | | <groupId>com.alibaba.cloud</groupId> |
| | | <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-sentinel</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-log</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-doc</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-security</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-web</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-mybatis</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-dubbo</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-idempotent</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-mail</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-sms</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-encrypt</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-tenant</artifactId> |
| | | </dependency> |
| | | |
| | | <!-- çä¿¡ ç¨åªä¸ªå¯¼å
¥åªä¸ªä¾èµ --> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>com.aliyun</groupId>--> |
| | | <!-- <artifactId>dysmsapi20170525</artifactId>--> |
| | | <!-- </dependency>--> |
| | | |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>com.tencentcloudapi</groupId>--> |
| | | <!-- <artifactId>tencentcloud-sdk-java-sms</artifactId>--> |
| | | <!-- </dependency>--> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-elasticsearch</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-sensitive</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-test</artifactId> |
| | | <scope>test</scope> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <finalName>${project.artifactId}</finalName> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <version>${spring-boot.version}</version> |
| | | <executions> |
| | | <execution> |
| | | <goals> |
| | | <goal>repackage</goal> |
| | | </goals> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |
| | | </project> |
New file |
| | |
| | | package org.dromara.demo; |
| | | |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.boot.context.metrics.buffering.BufferingApplicationStartup; |
| | | |
| | | /** |
| | | * æ¼ç¤ºæ¨¡å |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @SpringBootApplication |
| | | public class RuoYiDemoApplication { |
| | | public static void main(String[] args) { |
| | | SpringApplication application = new SpringApplication(RuoYiDemoApplication.class); |
| | | application.setApplicationStartup(new BufferingApplicationStartup(2048)); |
| | | application.run(args); |
| | | System.out.println("(â¥â â¿â )ï¾ï¾ æ¼ç¤ºæ¨¡åå¯å¨æå á(´ڡ`á)ï¾ "); |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.demo.domain.Document; |
| | | import org.dromara.demo.esmapper.DocumentMapper; |
| | | import org.dromara.easyes.core.conditions.select.LambdaEsQueryWrapper; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * æç´¢å¼æ crud æ¼ç¤ºæ¡ä¾ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @ConditionalOnProperty(value = "easy-es.enable", havingValue = "true") |
| | | @RequiredArgsConstructor |
| | | @RestController |
| | | @RequestMapping("/es") |
| | | public class EsCrudController { |
| | | |
| | | private final DocumentMapper documentMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢(æå®) |
| | | * |
| | | * @param title æ é¢ |
| | | */ |
| | | @GetMapping("/select") |
| | | public Document select(String title) { |
| | | LambdaEsQueryWrapper<Document> wrapper = new LambdaEsQueryWrapper<>(); |
| | | wrapper.eq(Document::getTitle, title); |
| | | return documentMapper.selectOne(wrapper); |
| | | } |
| | | |
| | | /** |
| | | * æç´¢(模ç³) |
| | | * |
| | | * @param key æç´¢å
³é®å |
| | | */ |
| | | @GetMapping("/search") |
| | | public List<Document> search(String key) { |
| | | LambdaEsQueryWrapper<Document> wrapper = new LambdaEsQueryWrapper<>(); |
| | | wrapper.like(Document::getTitle, key); |
| | | return documentMapper.selectList(wrapper); |
| | | } |
| | | |
| | | /** |
| | | * æå
¥ |
| | | */ |
| | | @PostMapping("/insert") |
| | | public Integer insert(@RequestBody Document document) { |
| | | return documentMapper.insert(document); |
| | | } |
| | | |
| | | /** |
| | | * æ´æ° |
| | | */ |
| | | @PutMapping("/update") |
| | | public R<Void> update(@RequestBody Document document) { |
| | | // æµè¯æ´æ° æ´æ°æä¸¤ç§æ
åµ å嫿¼ç¤ºå¦ä¸: |
| | | // case1: å·²ç¥id, æ ¹æ®idæ´æ° (ä¸ºäºæ¼ç¤ºæ¹ä¾¿,æ¤idæ¯ä»ä¸ä¸æ¥æ¥è¯¢ä¸å¤å¶è¿æ¥ç,å®é
ä¸å¡å¯ä»¥èªè¡æ¥è¯¢) |
| | | documentMapper.updateById(document); |
| | | |
| | | // case2: idæªç¥, æ ¹æ®æ¡ä»¶æ´æ° |
| | | // LambdaEsUpdateWrapper<Document> wrapper = new LambdaEsUpdateWrapper<>(); |
| | | // wrapper.like(Document::getTitle, document.getTitle()); |
| | | // Document document2 = new Document(); |
| | | // document2.setTitle(document.getTitle()); |
| | | // document2.setContent(document.getContent()); |
| | | // documentMapper.update(document2, wrapper); |
| | | |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * å é¤ |
| | | * |
| | | * @param id ä¸»é® |
| | | */ |
| | | @DeleteMapping("/delete/{id}") |
| | | public R<Integer> delete(@PathVariable String id) { |
| | | // æµè¯å 餿°æ® å é¤æä¸¤ç§æ
åµ:æ ¹æ®idå ææ ¹æ®æ¡ä»¶å |
| | | return R.ok(documentMapper.deleteById(id)); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.common.mail.utils.MailUtils; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.io.File; |
| | | |
| | | |
| | | /** |
| | | * é®ä»¶åéæ¡ä¾ |
| | | * |
| | | * @author Michelle.Chung |
| | | */ |
| | | @Validated |
| | | @RequiredArgsConstructor |
| | | @RestController |
| | | @RequestMapping("/mail") |
| | | public class MailController { |
| | | |
| | | /** |
| | | * åéé®ä»¶ |
| | | * |
| | | * @param to æ¥æ¶äºº |
| | | * @param subject æ é¢ |
| | | * @param text å
容 |
| | | */ |
| | | @GetMapping("/sendSimpleMessage") |
| | | public R<Void> sendSimpleMessage(String to, String subject, String text) { |
| | | MailUtils.sendText(to, subject, text); |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * åéé®ä»¶ï¼å¸¦éä»¶ï¼ |
| | | * |
| | | * @param to æ¥æ¶äºº |
| | | * @param subject æ é¢ |
| | | * @param text å
容 |
| | | * @param filePath éä»¶è·¯å¾ |
| | | */ |
| | | @GetMapping("/sendMessageWithAttachment") |
| | | public R<Void> sendMessageWithAttachment(String to, String subject, String text, String filePath) { |
| | | MailUtils.sendText(to, subject, text, new File(filePath)); |
| | | return R.ok(); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import org.dromara.common.core.constant.CacheNames; |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.common.redis.utils.RedisUtils; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.cache.annotation.CacheEvict; |
| | | import org.springframework.cache.annotation.CachePut; |
| | | import org.springframework.cache.annotation.Cacheable; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.time.Duration; |
| | | |
| | | /** |
| | | * spring-cache æ¼ç¤ºæ¡ä¾ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | // ç±»çº§å« ç¼åç»ä¸é
ç½® |
| | | //@CacheConfig(cacheNames = CacheNames.DEMO_CACHE) |
| | | @RequiredArgsConstructor |
| | | @RestController |
| | | @RequestMapping("/cache") |
| | | public class RedisCacheController { |
| | | |
| | | /** |
| | | * æµè¯ @Cacheable |
| | | * <p> |
| | | * 表示è¿ä¸ªæ¹æ³æäºç¼åçåè½,æ¹æ³çè¿åå¼ä¼è¢«ç¼å䏿¥ |
| | | * ä¸ä¸æ¬¡è°ç¨è¯¥æ¹æ³å,ä¼å»æ£æ¥æ¯å¦ç¼åä¸å·²ç»æå¼ |
| | | * 妿æå°±ç´æ¥è¿å,ä¸è°ç¨æ¹æ³ |
| | | * å¦ææ²¡æ,å°±è°ç¨æ¹æ³,ç¶åæç»æç¼åèµ·æ¥ |
| | | * è¿ä¸ªæ³¨è§£ãä¸è¬ç¨å¨æ¥è¯¢æ¹æ³ä¸ã |
| | | * <p> |
| | | * éç¹è¯´æ: ç¼å注解严ç¦ä¸å
¶ä»çéæ°æ®åè½ä¸èµ·ä½¿ç¨ |
| | | * ä¾å¦: æ°æ®æé注解 ä¼é æ ç¼åå»ç©¿ ä¸ æ°æ®ä¸ä¸è´é®é¢ |
| | | * <p> |
| | | * cacheNames å½åè§å æ¥ç {@link CacheNames} æ³¨é æ¯æå¤åæ° |
| | | */ |
| | | @Cacheable(cacheNames = "demo:cache#60s#10m#20", key = "#key", condition = "#key != null") |
| | | @GetMapping("/test1") |
| | | public R<String> test1(String key, String value) { |
| | | return R.ok("æä½æå", value); |
| | | } |
| | | |
| | | /** |
| | | * æµè¯ @CachePut |
| | | * <p> |
| | | * å äº@CachePutæ³¨è§£çæ¹æ³,ä¼ææ¹æ³çè¿åå¼putå°ç¼åéé¢ç¼åèµ·æ¥,ä¾å
¶å®å°æ¹ä½¿ç¨ |
| | | * å®ãé常ç¨å¨æ°å¢æè
宿¶æ´æ°æ¹æ³ä¸ã |
| | | * <p> |
| | | * cacheNames å½åè§å æ¥ç {@link CacheNames} æ³¨é æ¯æå¤åæ° |
| | | */ |
| | | @CachePut(cacheNames = CacheNames.DEMO_CACHE, key = "#key", condition = "#key != null") |
| | | @GetMapping("/test2") |
| | | public R<String> test2(String key, String value) { |
| | | return R.ok("æä½æå", value); |
| | | } |
| | | |
| | | /** |
| | | * æµè¯ @CacheEvict |
| | | * <p> |
| | | * 使ç¨äºCacheEvictæ³¨è§£çæ¹æ³,伿¸
空æå®ç¼å |
| | | * ãä¸è¬ç¨å¨å é¤çæ¹æ³ä¸ã |
| | | * <p> |
| | | * cacheNames å½åè§å æ¥ç {@link CacheNames} æ³¨é æ¯æå¤åæ° |
| | | */ |
| | | @CacheEvict(cacheNames = CacheNames.DEMO_CACHE, key = "#key", condition = "#key != null") |
| | | @GetMapping("/test3") |
| | | public R<String> test3(String key, String value) { |
| | | return R.ok("æä½æå", value); |
| | | } |
| | | |
| | | /** |
| | | * æµè¯è®¾ç½®è¿ææ¶é´ |
| | | * æå¨è®¾ç½®è¿ææ¶é´10ç§ |
| | | * 11ç§åè·å 夿æ¯å¦ç¸ç |
| | | */ |
| | | @GetMapping("/test6") |
| | | public R<Boolean> test6(String key, String value) { |
| | | RedisUtils.setCacheObject(key, value); |
| | | boolean flag = RedisUtils.expire(key, Duration.ofSeconds(10)); |
| | | System.out.println("***********" + flag); |
| | | try { |
| | | Thread.sleep(11 * 1000); |
| | | } catch (InterruptedException e) { |
| | | e.printStackTrace(); |
| | | } |
| | | Object obj = RedisUtils.getCacheObject(key); |
| | | return R.ok(value.equals(obj)); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import com.baomidou.lock.LockInfo; |
| | | import com.baomidou.lock.LockTemplate; |
| | | import com.baomidou.lock.annotation.Lock4j; |
| | | import com.baomidou.lock.executor.RedissonLockExecutor; |
| | | import org.dromara.common.core.domain.R; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.time.LocalTime; |
| | | |
| | | |
| | | /** |
| | | * æµè¯åå¸å¼éçæ ·ä¾ |
| | | * |
| | | * @author shenxinquan |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @RequestMapping("/redisLock") |
| | | public class RedisLockController { |
| | | |
| | | @Autowired |
| | | private LockTemplate lockTemplate; |
| | | |
| | | /** |
| | | * æµè¯lock4j 注解 |
| | | */ |
| | | @Lock4j(keys = {"#key"}) |
| | | @GetMapping("/testLock4j") |
| | | public R<String> testLock4j(String key, String value) { |
| | | System.out.println("start:" + key + ",time:" + LocalTime.now()); |
| | | try { |
| | | Thread.sleep(10000); |
| | | } catch (InterruptedException e) { |
| | | e.printStackTrace(); |
| | | } |
| | | System.out.println("end :" + key + ",time:" + LocalTime.now()); |
| | | return R.ok("æä½æå", value); |
| | | } |
| | | |
| | | /** |
| | | * æµè¯lock4j å·¥å
· |
| | | */ |
| | | @GetMapping("/testLock4jLockTemplate") |
| | | public R<String> testLock4jLockTemplate(String key, String value) { |
| | | final LockInfo lockInfo = lockTemplate.lock(key, 30000L, 5000L, RedissonLockExecutor.class); |
| | | if (null == lockInfo) { |
| | | throw new RuntimeException("ä¸å¡å¤çä¸,请ç¨ååè¯"); |
| | | } |
| | | // è·åéæåï¼å¤çä¸å¡ |
| | | try { |
| | | try { |
| | | Thread.sleep(8000); |
| | | } catch (InterruptedException e) { |
| | | // |
| | | } |
| | | System.out.println("æ§è¡ç®åæ¹æ³1 , å½å线ç¨:" + Thread.currentThread().getName()); |
| | | } finally { |
| | | //éæ¾é |
| | | lockTemplate.releaseLock(lockInfo); |
| | | } |
| | | //ç»æ |
| | | return R.ok("æä½æå", value); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.common.redis.utils.RedisUtils; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | /** |
| | | * Redis åå¸è®¢é
æ¼ç¤ºæ¡ä¾ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @RequiredArgsConstructor |
| | | @RestController |
| | | @RequestMapping("/redis/pubsub") |
| | | public class RedisPubSubController { |
| | | |
| | | /** |
| | | * å叿¶æ¯ |
| | | * |
| | | * @param key ééKey |
| | | * @param value åéå
容 |
| | | */ |
| | | @GetMapping("/pub") |
| | | public R<Void> pub(String key, String value) { |
| | | RedisUtils.publish(key, value, consumer -> { |
| | | System.out.println("åå¸éé => " + key + ", åéå¼ => " + value); |
| | | }); |
| | | return R.ok("æä½æå"); |
| | | } |
| | | |
| | | /** |
| | | * 订é
æ¶æ¯ |
| | | * |
| | | * @param key ééKey |
| | | */ |
| | | @GetMapping("/sub") |
| | | public R<Void> sub(String key) { |
| | | RedisUtils.subscribe(key, String.class, msg -> { |
| | | System.out.println("订é
éé => " + key + ", æ¥æ¶å¼ => " + msg); |
| | | }); |
| | | return R.ok("æä½æå"); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.sms4j.api.SmsBlend; |
| | | import org.dromara.sms4j.api.entity.SmsResponse; |
| | | import org.dromara.sms4j.core.factory.SmsFactory; |
| | | import org.dromara.sms4j.provider.enumerate.SupplierType; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.LinkedHashMap; |
| | | |
| | | /** |
| | | * çä¿¡æ¼ç¤ºæ¡ä¾ |
| | | * 请å
é
è¯»ææ¡£ å¦åæ æ³ä½¿ç¨ |
| | | * |
| | | * @author Lion Li |
| | | * @version 4.2.0 |
| | | */ |
| | | @Validated |
| | | @RequiredArgsConstructor |
| | | @RestController |
| | | @RequestMapping("/sms") |
| | | public class SmsController { |
| | | /** |
| | | * åéçä¿¡Aliyun |
| | | * |
| | | * @param phones çµè¯å· |
| | | * @param templateId 模æ¿ID |
| | | */ |
| | | @GetMapping("/sendAliyun") |
| | | public R<Object> sendAliyun(String phones, String templateId) { |
| | | LinkedHashMap<String, String> map = new LinkedHashMap<>(1); |
| | | map.put("code", "1234"); |
| | | SmsBlend smsBlend = SmsFactory.createSmsBlend(SupplierType.ALIBABA); |
| | | SmsResponse smsResponse = smsBlend.sendMessage(phones, templateId, map); |
| | | return R.ok(smsResponse); |
| | | } |
| | | |
| | | /** |
| | | * åéçä¿¡Tencent |
| | | * |
| | | * @param phones çµè¯å· |
| | | * @param templateId 模æ¿ID |
| | | */ |
| | | @GetMapping("/sendTencent") |
| | | public R<Object> sendTencent(String phones, String templateId) { |
| | | LinkedHashMap<String, String> map = new LinkedHashMap<>(1); |
| | | // map.put("2", "æµè¯æµè¯"); |
| | | map.put("1", "1234"); |
| | | SmsBlend smsBlend = SmsFactory.createSmsBlend(SupplierType.TENCENT); |
| | | SmsResponse smsResponse = smsBlend.sendMessage(phones, templateId, map); |
| | | return R.ok(smsResponse); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import org.dromara.common.core.domain.R; |
| | | import org.springframework.http.MediaType; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestPart; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | /** |
| | | * swagger3 ç¨æ³ç¤ºä¾ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/swagger/demo") |
| | | public class Swagger3DemoController { |
| | | |
| | | /** |
| | | * ä¸ä¼ è¯·æ± |
| | | * å¿
é¡»ä½¿ç¨ @RequestPart æ³¨è§£æ æ³¨ä¸ºæä»¶ |
| | | * |
| | | * @param file æä»¶ |
| | | */ |
| | | @PostMapping(value = "/upload", consumes = MediaType.MULTIPART_FORM_DATA_VALUE) |
| | | public R<String> upload(@RequestPart("file") MultipartFile file) { |
| | | return R.ok("æä½æå", file.getOriginalFilename()); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.common.web.core.BaseController; |
| | | import org.dromara.demo.domain.TestDemo; |
| | | import org.dromara.demo.mapper.TestDemoMapper; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.web.bind.annotation.DeleteMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * æµè¯æ¹éæ¹æ³ |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-05-30 |
| | | */ |
| | | @RequiredArgsConstructor |
| | | @RestController |
| | | @RequestMapping("/batch") |
| | | public class TestBatchController extends BaseController { |
| | | |
| | | /** |
| | | * 为äºä¾¿äºæµè¯ ç´æ¥å¼å
¥mapper |
| | | */ |
| | | private final TestDemoMapper testDemoMapper; |
| | | |
| | | /** |
| | | * æ°å¢æ¹éæ¹æ³ å¯å®ç¾æ¿ä»£ saveBatch ç§çº§æå
¥ä¸ä¸æ°æ® (对mysqlè´è·è¾å¤§) |
| | | * <p> |
| | | * 3.5.0 çæ¬ å¢å rewriteBatchedStatements=true æ¹å¤çåæ° 使 MP åçæ¹å¤çå¯ä»¥è¾¾å°åæ ·çé度 |
| | | */ |
| | | @PostMapping("/add") |
| | | // @DS("slave") |
| | | public R<Void> add() { |
| | | List<TestDemo> list = new ArrayList<>(); |
| | | for (int i = 0; i < 1000; i++) { |
| | | TestDemo testDemo = new TestDemo(); |
| | | testDemo.setOrderNum(-1); |
| | | testDemo.setTestKey("æ¹éæ°å¢"); |
| | | testDemo.setValue("æµè¯æ°å¢"); |
| | | list.add(testDemo); |
| | | } |
| | | return toAjax(testDemoMapper.insertBatch(list)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ææ´æ° å¯å®ç¾æ¿ä»£ saveOrUpdateBatch 髿§è½ |
| | | * <p> |
| | | * 3.5.0 çæ¬ å¢å rewriteBatchedStatements=true æ¹å¤çåæ° 使 MP åçæ¹å¤çå¯ä»¥è¾¾å°åæ ·çé度 |
| | | */ |
| | | @PostMapping("/addOrUpdate") |
| | | // @DS("slave") |
| | | public R<Void> addOrUpdate() { |
| | | List<TestDemo> list = new ArrayList<>(); |
| | | for (int i = 0; i < 1000; i++) { |
| | | TestDemo testDemo = new TestDemo(); |
| | | testDemo.setOrderNum(-1); |
| | | testDemo.setTestKey("æ¹éæ°å¢"); |
| | | testDemo.setValue("æµè¯æ°å¢"); |
| | | list.add(testDemo); } |
| | | testDemoMapper.insertBatch(list); |
| | | for (int i = 0; i < list.size(); i++) { |
| | | TestDemo testDemo = list.get(i); |
| | | testDemo.setTestKey("æ¹éæ°å¢æä¿®æ¹"); |
| | | testDemo.setValue("æ¹éæ°å¢æä¿®æ¹"); |
| | | if (i % 2 == 0) { |
| | | testDemo.setId(null); |
| | | } |
| | | } |
| | | return toAjax(testDemoMapper.insertOrUpdateBatch(list)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹éæ¹æ³ |
| | | */ |
| | | @DeleteMapping() |
| | | // @DS("slave") |
| | | public R<Void> remove() { |
| | | return toAjax(testDemoMapper.delete(new LambdaQueryWrapper<TestDemo>() |
| | | .eq(TestDemo::getOrderNum, -1L))); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import cn.dev33.satoken.annotation.SaCheckPermission; |
| | | import cn.hutool.core.bean.BeanUtil; |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.common.core.utils.ValidatorUtils; |
| | | import org.dromara.common.core.validate.AddGroup; |
| | | import org.dromara.common.core.validate.EditGroup; |
| | | import org.dromara.common.core.validate.QueryGroup; |
| | | import org.dromara.common.web.core.BaseController; |
| | | import org.dromara.common.excel.core.ExcelResult; |
| | | import org.dromara.common.excel.utils.ExcelUtil; |
| | | import org.dromara.common.idempotent.annotation.RepeatSubmit; |
| | | import org.dromara.common.log.annotation.Log; |
| | | import org.dromara.common.log.enums.BusinessType; |
| | | import org.dromara.common.mybatis.core.page.PageQuery; |
| | | import org.dromara.common.mybatis.core.page.TableDataInfo; |
| | | import org.dromara.demo.domain.TestDemo; |
| | | import org.dromara.demo.domain.bo.TestDemoBo; |
| | | import org.dromara.demo.domain.bo.TestDemoImportVo; |
| | | import org.dromara.demo.domain.vo.TestDemoVo; |
| | | import org.dromara.demo.service.ITestDemoService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.http.MediaType; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import jakarta.validation.constraints.NotEmpty; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | import java.util.concurrent.TimeUnit; |
| | | |
| | | /** |
| | | * æµè¯å表Controller |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | @Validated |
| | | @RequiredArgsConstructor |
| | | @RestController |
| | | @RequestMapping("/demo") |
| | | public class TestDemoController extends BaseController { |
| | | |
| | | private final ITestDemoService iTestDemoService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æµè¯å表å表 |
| | | */ |
| | | @SaCheckPermission("demo:demo:list") |
| | | @GetMapping("/list") |
| | | public TableDataInfo<TestDemoVo> list(TestDemoBo bo, PageQuery pageQuery) { |
| | | return iTestDemoService.queryPageList(bo, pageQuery); |
| | | } |
| | | |
| | | /** |
| | | * èªå®ä¹å页æ¥è¯¢ |
| | | */ |
| | | @SaCheckPermission("demo:demo:list") |
| | | @GetMapping("/page") |
| | | public TableDataInfo<TestDemoVo> page(@Validated(QueryGroup.class) TestDemoBo bo, PageQuery pageQuery) { |
| | | return iTestDemoService.customPageList(bo, pageQuery); |
| | | } |
| | | |
| | | /** |
| | | * 导å
¥æµè¯-æ ¡éª |
| | | * |
| | | * @param file 导å
¥æä»¶ |
| | | */ |
| | | @Log(title = "æµè¯å表", businessType = BusinessType.IMPORT) |
| | | @SaCheckPermission("demo:demo:import") |
| | | @PostMapping(value = "/importData", consumes = MediaType.MULTIPART_FORM_DATA_VALUE) |
| | | public R<Void> importData(@RequestPart("file") MultipartFile file) throws Exception { |
| | | ExcelResult<TestDemoImportVo> excelResult = ExcelUtil.importExcel(file.getInputStream(), TestDemoImportVo.class, true); |
| | | List<TestDemoImportVo> volist = excelResult.getList(); |
| | | List<TestDemo> list = BeanUtil.copyToList(volist, TestDemo.class); |
| | | iTestDemoService.saveBatch(list); |
| | | return R.ok(excelResult.getAnalysis()); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæµè¯å表å表 |
| | | */ |
| | | @SaCheckPermission("demo:demo:export") |
| | | @Log(title = "æµè¯å表", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(@Validated TestDemoBo bo, HttpServletResponse response) { |
| | | List<TestDemoVo> list = iTestDemoService.queryList(bo); |
| | | // æµè¯éªè±idå¯¼åº |
| | | // for (TestDemoVo vo : list) { |
| | | // vo.setId(1234567891234567893L); |
| | | // } |
| | | ExcelUtil.exportExcel(list, "æµè¯å表", TestDemoVo.class, response); |
| | | } |
| | | |
| | | /** |
| | | * è·åæµè¯å表详ç»ä¿¡æ¯ |
| | | * |
| | | * @param id æµè¯ID |
| | | */ |
| | | @SaCheckPermission("demo:demo:query") |
| | | @GetMapping("/{id}") |
| | | public R<TestDemoVo> getInfo(@NotNull(message = "主é®ä¸è½ä¸ºç©º") @PathVariable("id") Long id) { |
| | | return R.ok(iTestDemoService.queryById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æµè¯å表 |
| | | */ |
| | | @SaCheckPermission("demo:demo:add") |
| | | @Log(title = "æµè¯å表", businessType = BusinessType.INSERT) |
| | | @RepeatSubmit(interval = 2, timeUnit = TimeUnit.SECONDS, message = "{repeat.submit.message}") |
| | | @PostMapping() |
| | | public R<Void> add(@RequestBody TestDemoBo bo) { |
| | | // ä½¿ç¨æ ¡éªå·¥å
·å¯¹æ @Validated(AddGroup.class) 注解 |
| | | // ç¨äºå¨é Controller çå°æ¹æ ¡éªå¯¹è±¡ |
| | | ValidatorUtils.validate(bo, AddGroup.class); |
| | | return toAjax(iTestDemoService.insertByBo(bo)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æµè¯å表 |
| | | */ |
| | | @SaCheckPermission("demo:demo:edit") |
| | | @Log(title = "æµè¯å表", businessType = BusinessType.UPDATE) |
| | | @RepeatSubmit |
| | | @PutMapping() |
| | | public R<Void> edit(@Validated(EditGroup.class) @RequestBody TestDemoBo bo) { |
| | | return toAjax(iTestDemoService.updateByBo(bo)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿µè¯å表 |
| | | * |
| | | * @param ids æµè¯ID串 |
| | | */ |
| | | @SaCheckPermission("demo:demo:remove") |
| | | @Log(title = "æµè¯å表", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public R<Void> remove(@NotEmpty(message = "主é®ä¸è½ä¸ºç©º") @PathVariable Long[] ids) { |
| | | return toAjax(iTestDemoService.deleteWithValidByIds(Arrays.asList(ids), true)); |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.demo.domain.TestDemoEncrypt; |
| | | import org.dromara.demo.mapper.TestDemoEncryptMapper; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.Map; |
| | | |
| | | |
| | | /** |
| | | * æµè¯æ°æ®åºå è§£å¯åè½ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @Validated |
| | | @RestController |
| | | @RequestMapping("/encrypt") |
| | | public class TestEncryptController { |
| | | |
| | | @Autowired |
| | | private TestDemoEncryptMapper mapper; |
| | | @Value("${mybatis-encryptor.enable}") |
| | | private Boolean encryptEnable; |
| | | |
| | | /** |
| | | * æµè¯æ°æ®åºå è§£å¯ |
| | | * |
| | | * @param key æµè¯key |
| | | * @param value æµè¯value |
| | | */ |
| | | @GetMapping() |
| | | public R<Map<String, TestDemoEncrypt>> test(String key, String value) { |
| | | if (!encryptEnable) { |
| | | throw new RuntimeException("å å¯åè½æªå¼å¯!"); |
| | | } |
| | | Map<String, TestDemoEncrypt> map = new HashMap<>(2); |
| | | TestDemoEncrypt demo = new TestDemoEncrypt(); |
| | | demo.setTestKey(key); |
| | | demo.setValue(value); |
| | | mapper.insert(demo); |
| | | map.put("å å¯", demo); |
| | | TestDemoEncrypt testDemo = mapper.selectById(demo.getId()); |
| | | map.put("è§£å¯", testDemo); |
| | | return R.ok(map); |
| | | } |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import cn.hutool.core.collection.CollUtil; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.dromara.common.excel.core.ExcelResult; |
| | | import org.dromara.common.excel.utils.ExcelUtil; |
| | | import org.dromara.demo.domain.vo.ExportDemoVo; |
| | | import org.dromara.demo.listener.ExportDemoListener; |
| | | import org.dromara.demo.service.IExportExcelService; |
| | | import org.springframework.http.MediaType; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * æµè¯Excelåè½ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @RequiredArgsConstructor |
| | | @RestController |
| | | @RequestMapping("/excel") |
| | | public class TestExcelController { |
| | | |
| | | private final IExportExcelService exportExcelService; |
| | | |
| | | /** |
| | | * ååè¡¨å¤æ°æ® |
| | | */ |
| | | @GetMapping("/exportTemplateOne") |
| | | public void exportTemplateOne(HttpServletResponse response) { |
| | | Map<String, String> map = new HashMap<>(); |
| | | map.put("title", "ååè¡¨å¤æ°æ®"); |
| | | map.put("test1", "æ°æ®æµè¯1"); |
| | | map.put("test2", "æ°æ®æµè¯2"); |
| | | map.put("test3", "æ°æ®æµè¯3"); |
| | | map.put("test4", "æ°æ®æµè¯4"); |
| | | map.put("testTest", "666"); |
| | | List<TestObj> list = new ArrayList<>(); |
| | | list.add(new TestObj("åå表æµè¯1", "å表æµè¯1", "å表æµè¯2", "å表æµè¯3", "å表æµè¯4")); |
| | | list.add(new TestObj("åå表æµè¯2", "å表æµè¯5", "å表æµè¯6", "å表æµè¯7", "å表æµè¯8")); |
| | | list.add(new TestObj("åå表æµè¯3", "å表æµè¯9", "å表æµè¯10", "å表æµè¯11", "å表æµè¯12")); |
| | | ExcelUtil.exportTemplate(CollUtil.newArrayList(map, list), "åå表.xlsx", "excel/åå表.xlsx", response); |
| | | } |
| | | |
| | | /** |
| | | * å¤åè¡¨å¤æ°æ® |
| | | */ |
| | | @GetMapping("/exportTemplateMuliti") |
| | | public void exportTemplateMuliti(HttpServletResponse response) { |
| | | Map<String, String> map = new HashMap<>(); |
| | | map.put("title1", "æ é¢1"); |
| | | map.put("title2", "æ é¢2"); |
| | | map.put("title3", "æ é¢3"); |
| | | map.put("title4", "æ é¢4"); |
| | | map.put("author", "Lion Li"); |
| | | List<TestObj1> list1 = new ArrayList<>(); |
| | | list1.add(new TestObj1("list1æµè¯1", "list1æµè¯2", "list1æµè¯3")); |
| | | list1.add(new TestObj1("list1æµè¯4", "list1æµè¯5", "list1æµè¯6")); |
| | | list1.add(new TestObj1("list1æµè¯7", "list1æµè¯8", "list1æµè¯9")); |
| | | List<TestObj1> list2 = new ArrayList<>(); |
| | | list2.add(new TestObj1("list2æµè¯1", "list2æµè¯2", "list2æµè¯3")); |
| | | list2.add(new TestObj1("list2æµè¯4", "list2æµè¯5", "list2æµè¯6")); |
| | | List<TestObj1> list3 = new ArrayList<>(); |
| | | list3.add(new TestObj1("list3æµè¯1", "list3æµè¯2", "list3æµè¯3")); |
| | | List<TestObj1> list4 = new ArrayList<>(); |
| | | list4.add(new TestObj1("list4æµè¯1", "list4æµè¯2", "list4æµè¯3")); |
| | | list4.add(new TestObj1("list4æµè¯4", "list4æµè¯5", "list4æµè¯6")); |
| | | list4.add(new TestObj1("list4æµè¯7", "list4æµè¯8", "list4æµè¯9")); |
| | | list4.add(new TestObj1("list4æµè¯10", "list4æµè¯11", "list4æµè¯12")); |
| | | Map<String, Object> multiListMap = new HashMap<>(); |
| | | multiListMap.put("map", map); |
| | | multiListMap.put("data1", list1); |
| | | multiListMap.put("data2", list2); |
| | | multiListMap.put("data3", list3); |
| | | multiListMap.put("data4", list4); |
| | | ExcelUtil.exportTemplateMultiList(multiListMap, "å¤å表.xlsx", "excel/å¤å表.xlsx", response); |
| | | } |
| | | |
| | | /** |
| | | * 导åºä¸ææ¡ |
| | | * |
| | | * @param response / |
| | | */ |
| | | @GetMapping("/exportWithOptions") |
| | | public void exportWithOptions(HttpServletResponse response) { |
| | | exportExcelService.exportWithOptions(response); |
| | | } |
| | | |
| | | /** |
| | | * å¤ä¸ªsheetå¯¼åº |
| | | */ |
| | | @GetMapping("/exportTemplateMultiSheet") |
| | | public void exportTemplateMultiSheet(HttpServletResponse response) { |
| | | List<TestObj1> list1 = new ArrayList<>(); |
| | | list1.add(new TestObj1("list1æµè¯1", "list1æµè¯2", "list1æµè¯3")); |
| | | list1.add(new TestObj1("list1æµè¯4", "list1æµè¯5", "list1æµè¯6")); |
| | | List<TestObj1> list2 = new ArrayList<>(); |
| | | list2.add(new TestObj1("list2æµè¯1", "list2æµè¯2", "list2æµè¯3")); |
| | | list2.add(new TestObj1("list2æµè¯4", "list2æµè¯5", "list2æµè¯6")); |
| | | List<TestObj1> list3 = new ArrayList<>(); |
| | | list3.add(new TestObj1("list3æµè¯1", "list3æµè¯2", "list3æµè¯3")); |
| | | list3.add(new TestObj1("list3æµè¯4", "list3æµè¯5", "list3æµè¯6")); |
| | | List<TestObj1> list4 = new ArrayList<>(); |
| | | list4.add(new TestObj1("list4æµè¯1", "list4æµè¯2", "list4æµè¯3")); |
| | | list4.add(new TestObj1("list4æµè¯4", "list4æµè¯5", "list4æµè¯6")); |
| | | |
| | | List<Map<String, Object>> list = new ArrayList<>(); |
| | | Map<String, Object> sheetMap1 = new HashMap<>(); |
| | | sheetMap1.put("data1", list1); |
| | | Map<String, Object> sheetMap2 = new HashMap<>(); |
| | | sheetMap2.put("data2", list2); |
| | | Map<String, Object> sheetMap3 = new HashMap<>(); |
| | | sheetMap3.put("data3", list3); |
| | | Map<String, Object> sheetMap4 = new HashMap<>(); |
| | | sheetMap4.put("data4", list4); |
| | | |
| | | list.add(sheetMap1); |
| | | list.add(sheetMap2); |
| | | list.add(sheetMap3); |
| | | list.add(sheetMap4); |
| | | ExcelUtil.exportTemplateMultiSheet(list, "å¤sheetå表", "excel/å¤sheetå表.xlsx", response); |
| | | } |
| | | |
| | | /** |
| | | * 导å
¥è¡¨æ ¼ |
| | | */ |
| | | @PostMapping(value = "/importWithOptions", consumes = MediaType.MULTIPART_FORM_DATA_VALUE) |
| | | public List<ExportDemoVo> importWithOptions(@RequestPart("file") MultipartFile file) throws Exception { |
| | | // å¤çè§£æç»æ |
| | | ExcelResult<ExportDemoVo> excelResult = ExcelUtil.importExcel(file.getInputStream(), ExportDemoVo.class, new ExportDemoListener()); |
| | | return excelResult.getList(); |
| | | } |
| | | |
| | | @Data |
| | | @AllArgsConstructor |
| | | static class TestObj1 { |
| | | private String test1; |
| | | private String test2; |
| | | private String test3; |
| | | } |
| | | |
| | | @Data |
| | | @AllArgsConstructor |
| | | static class TestObj { |
| | | private String name; |
| | | private String list1; |
| | | private String list2; |
| | | private String list3; |
| | | private String list4; |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.common.core.utils.MessageUtils; |
| | | import lombok.Data; |
| | | import org.hibernate.validator.constraints.Range; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import jakarta.validation.constraints.NotNull; |
| | | |
| | | |
| | | /** |
| | | * æµè¯å½é
å |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @Validated |
| | | @RestController |
| | | @RequestMapping("/i18n") |
| | | public class TestI18nController { |
| | | |
| | | /** |
| | | * éè¿codeè·åå½é
åå
容 |
| | | * code为 messages.properties ä¸ç key |
| | | * <p> |
| | | * æµè¯ä½¿ç¨ user.register.success |
| | | * |
| | | * @param code å½é
åcode |
| | | */ |
| | | @GetMapping() |
| | | public R<Void> get(String code) { |
| | | return R.ok(MessageUtils.message(code)); |
| | | } |
| | | |
| | | /** |
| | | * Validator æ ¡éªå½é
å |
| | | * ä¸ä¼ å¼ å嫿¥çå¼å¸¸è¿å |
| | | * <p> |
| | | * æµè¯ä½¿ç¨ not.null |
| | | */ |
| | | @GetMapping("/test1") |
| | | public R<Void> test1(@NotBlank(message = "{not.null}") String str) { |
| | | return R.ok(str); |
| | | } |
| | | |
| | | /** |
| | | * Bean æ ¡éªå½é
å |
| | | * ä¸ä¼ å¼ å嫿¥çå¼å¸¸è¿å |
| | | * <p> |
| | | * æµè¯ä½¿ç¨ not.null |
| | | */ |
| | | @GetMapping("/test2") |
| | | public R<TestI18nBo> test2(@Validated TestI18nBo bo) { |
| | | return R.ok(bo); |
| | | } |
| | | |
| | | @Data |
| | | public static class TestI18nBo { |
| | | |
| | | @NotBlank(message = "{not.null}") |
| | | private String name; |
| | | |
| | | @NotNull(message = "{not.null}") |
| | | @Range(min = 0, max = 100, message = "{length.not.valid}") |
| | | private Integer age; |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.common.sensitive.annotation.Sensitive; |
| | | import org.dromara.common.sensitive.core.SensitiveStrategy; |
| | | import org.dromara.common.web.core.BaseController; |
| | | import lombok.Data; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | /** |
| | | * æµè¯æ°æ®è±ææ§å¶å¨ |
| | | * <p> |
| | | * é»è®¤ç®¡çåä¸è¿æ»¤ |
| | | * éèªè¡æ ¹æ®ä¸å¡éåå®ç° |
| | | * |
| | | * @author Lion Li |
| | | * @version 3.6.0 |
| | | * @see org.dromara.common.sensitive.core.SensitiveService |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/sensitive") |
| | | public class TestSensitiveController extends BaseController { |
| | | |
| | | /** |
| | | * æµè¯æ°æ®è±æ |
| | | */ |
| | | @GetMapping("/test") |
| | | public R<TestSensitive> test() { |
| | | TestSensitive testSensitive = new TestSensitive(); |
| | | testSensitive.setIdCard("210397198608215431"); |
| | | testSensitive.setPhone("17640125371"); |
| | | testSensitive.setAddress("åäº¬å¸æé³åºææååé¢1203室"); |
| | | testSensitive.setEmail("17640125371@163.com"); |
| | | testSensitive.setBankCard("6226456952351452853"); |
| | | return R.ok(testSensitive); |
| | | } |
| | | |
| | | @Data |
| | | static class TestSensitive { |
| | | |
| | | /** |
| | | * èº«ä»½è¯ |
| | | */ |
| | | @Sensitive(strategy = SensitiveStrategy.ID_CARD) |
| | | private String idCard; |
| | | |
| | | /** |
| | | * çµè¯ |
| | | */ |
| | | @Sensitive(strategy = SensitiveStrategy.PHONE, roleKey = "common") |
| | | private String phone; |
| | | |
| | | /** |
| | | * å°å |
| | | */ |
| | | @Sensitive(strategy = SensitiveStrategy.ADDRESS, perms = "system:user:query") |
| | | private String address; |
| | | |
| | | /** |
| | | * é®ç®± |
| | | */ |
| | | @Sensitive(strategy = SensitiveStrategy.EMAIL, roleKey = "common", perms = "system:user:query1") |
| | | private String email; |
| | | |
| | | /** |
| | | * é¶è¡å¡ |
| | | */ |
| | | @Sensitive(strategy = SensitiveStrategy.BANK_CARD, roleKey = "common1", perms = "system:user:query") |
| | | private String bankCard; |
| | | |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.demo.domain.ShardingOrder; |
| | | import org.dromara.demo.mapper.ShardingOrderMapper; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | /** |
| | | * ä½¿ç¨æ¹å¼ çå®ç½ææ¡£æ©å±é¡¹ç® |
| | | */ |
| | | @RequiredArgsConstructor |
| | | @RestController |
| | | @RequestMapping("/sharding") |
| | | public class TestShardingController { |
| | | |
| | | private final ShardingOrderMapper torderMapper; |
| | | |
| | | @GetMapping("/page") |
| | | public R<Page<ShardingOrder>> page() { |
| | | Page<ShardingOrder> page = new Page<>(); |
| | | page.setCurrent(3L); |
| | | LambdaQueryWrapper<ShardingOrder> lqw = new LambdaQueryWrapper<>(); |
| | | lqw.orderByAsc(ShardingOrder::getOrderId); |
| | | torderMapper.selectPage(page, lqw); |
| | | return R.ok(page); |
| | | } |
| | | |
| | | @GetMapping("/insert") |
| | | public R<Void> insert() { |
| | | for (Long i = 1L; i <= 100L; i++) { |
| | | ShardingOrder torder = new ShardingOrder(); |
| | | torder.setUserId(i); |
| | | torder.setTotalMoney(100 + Integer.parseInt(i + "")); |
| | | torderMapper.insert(torder); |
| | | } |
| | | |
| | | return R.ok("ååºåè¡¨æ°æ®æ¹éæå
¥æåï¼"); |
| | | |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
| | | |
| | | import cn.dev33.satoken.annotation.SaCheckPermission; |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.common.core.validate.AddGroup; |
| | | import org.dromara.common.core.validate.EditGroup; |
| | | import org.dromara.common.web.core.BaseController; |
| | | import org.dromara.common.excel.utils.ExcelUtil; |
| | | import org.dromara.common.idempotent.annotation.RepeatSubmit; |
| | | import org.dromara.common.log.annotation.Log; |
| | | import org.dromara.common.log.enums.BusinessType; |
| | | import org.dromara.demo.domain.bo.TestTreeBo; |
| | | import org.dromara.demo.domain.vo.TestTreeVo; |
| | | import org.dromara.demo.service.ITestTreeService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import jakarta.validation.constraints.NotEmpty; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * æµè¯æ 表Controller |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | @Validated |
| | | @RequiredArgsConstructor |
| | | @RestController |
| | | @RequestMapping("/tree") |
| | | public class TestTreeController extends BaseController { |
| | | |
| | | private final ITestTreeService iTestTreeService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æµè¯æ 表å表 |
| | | */ |
| | | @SaCheckPermission("demo:tree:list") |
| | | @GetMapping("/list") |
| | | public R<List<TestTreeVo>> list(TestTreeBo bo) { |
| | | List<TestTreeVo> list = iTestTreeService.queryList(bo); |
| | | return R.ok(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæµè¯æ 表å表 |
| | | */ |
| | | @SaCheckPermission("demo:tree:export") |
| | | @Log(title = "æµè¯æ 表", businessType = BusinessType.EXPORT) |
| | | @GetMapping("/export") |
| | | public void export(@Validated TestTreeBo bo, HttpServletResponse response) { |
| | | List<TestTreeVo> list = iTestTreeService.queryList(bo); |
| | | ExcelUtil.exportExcel(list, "æµè¯æ 表", TestTreeVo.class, response); |
| | | } |
| | | |
| | | /** |
| | | * è·åæµè¯æ 表详ç»ä¿¡æ¯ |
| | | * |
| | | * @param id æµè¯æ ID |
| | | */ |
| | | @SaCheckPermission("demo:tree:query") |
| | | @GetMapping("/{id}") |
| | | public R<TestTreeVo> getInfo(@NotNull(message = "主é®ä¸è½ä¸ºç©º") @PathVariable("id") Long id) { |
| | | return R.ok(iTestTreeService.queryById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æµè¯æ 表 |
| | | */ |
| | | @SaCheckPermission("demo:tree:add") |
| | | @Log(title = "æµè¯æ 表", businessType = BusinessType.INSERT) |
| | | @RepeatSubmit |
| | | @PostMapping() |
| | | public R<Void> add(@Validated(AddGroup.class) @RequestBody TestTreeBo bo) { |
| | | return toAjax(iTestTreeService.insertByBo(bo)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æµè¯æ 表 |
| | | */ |
| | | @SaCheckPermission("demo:tree:edit") |
| | | @Log(title = "æµè¯æ 表", businessType = BusinessType.UPDATE) |
| | | @RepeatSubmit |
| | | @PutMapping() |
| | | public R<Void> edit(@Validated(EditGroup.class) @RequestBody TestTreeBo bo) { |
| | | return toAjax(iTestTreeService.updateByBo(bo)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿µè¯æ 表 |
| | | * |
| | | * @param ids æµè¯æ ID串 |
| | | */ |
| | | @SaCheckPermission("demo:tree:remove") |
| | | @Log(title = "æµè¯æ 表", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public R<Void> remove(@NotEmpty(message = "主é®ä¸è½ä¸ºç©º") @PathVariable Long[] ids) { |
| | | return toAjax(iTestTreeService.deleteWithValidByIds(Arrays.asList(ids), true)); |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.demo.controller; |
New file |
| | |
| | | package org.dromara.demo.domain; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * ææ¡£å®ä½ |
| | | */ |
| | | @Data |
| | | public class Document { |
| | | |
| | | /** |
| | | * esä¸çå¯ä¸id |
| | | */ |
| | | private String id; |
| | | |
| | | /** |
| | | * ææ¡£æ é¢ |
| | | */ |
| | | private String title; |
| | | |
| | | /** |
| | | * ææ¡£å
容 |
| | | */ |
| | | private String content; |
| | | } |
New file |
| | |
| | | package org.dromara.demo.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | @TableName("t_order") |
| | | @Data |
| | | public class ShardingOrder { |
| | | |
| | | |
| | | private Long orderId; |
| | | |
| | | private Long userId; |
| | | |
| | | private int totalMoney; |
| | | } |
New file |
| | |
| | | package org.dromara.demo.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | @TableName("t_order_item") |
| | | @Data |
| | | public class ShardingOrderItem { |
| | | |
| | | private Long orderItemId; |
| | | |
| | | private Long orderId; |
| | | |
| | | private Long userId; |
| | | |
| | | private int totalMoney; |
| | | } |
New file |
| | |
| | | package org.dromara.demo.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import org.dromara.common.mybatis.core.domain.BaseEntity; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.io.Serial; |
| | | |
| | | /** |
| | | * æµè¯å表对象 test_demo |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @TableName("test_demo") |
| | | public class TestDemo extends BaseEntity { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | /** |
| | | * ä¸»é® |
| | | */ |
| | | @TableId(value = "id") |
| | | private Long id; |
| | | |
| | | /** |
| | | * é¨é¨id |
| | | */ |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * ç¨æ·id |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * æåºå· |
| | | */ |
| | | @OrderBy(asc = false, sort = 1) |
| | | private Integer orderNum; |
| | | |
| | | /** |
| | | * keyé® |
| | | */ |
| | | private String testKey; |
| | | |
| | | /** |
| | | * å¼ |
| | | */ |
| | | private String value; |
| | | |
| | | /** |
| | | * çæ¬ |
| | | */ |
| | | @Version |
| | | private Long version; |
| | | |
| | | /** |
| | | * å 餿 å¿ |
| | | */ |
| | | @TableLogic |
| | | private Long delFlag; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import org.dromara.common.encrypt.annotation.EncryptField; |
| | | import org.dromara.common.encrypt.enumd.AlgorithmType; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @TableName("test_demo") |
| | | public class TestDemoEncrypt extends TestDemo { |
| | | |
| | | /** |
| | | * keyé® |
| | | */ |
| | | // @EncryptField(algorithm=AlgorithmType.SM2, privateKey = "MIGTAgEAMBMGByqGSM49AgEGCCqBHM9VAYItBHkwdwIBAQQgZSlOvw8FBiH+aFJWLYZP/VRjg9wjfRarTkGBZd/T3N+gCgYIKoEcz1UBgi2hRANCAAR5DGuQwJqkxnbCsP+iPSDoHWIF4RwcR5EsSvT8QPxO1wRkR2IhCkzvRb32x2CUgJFdvoqVqfApFDPZzShqzBwX", publicKey = "MFkwEwYHKoZIzj0CAQYIKoEcz1UBgi0DQgAEeQxrkMCapMZ2wrD/oj0g6B1iBeEcHEeRLEr0/ED8TtcEZEdiIQpM70W99sdglICRXb6KlanwKRQz2c0oaswcFw==") |
| | | @EncryptField(algorithm = AlgorithmType.RSA, privateKey = "MIICdQIBADANBgkqhkiG9w0BAQEFAASCAl8wggJbAgEAAoGBANBBEeueWlXlkkj2+WY5l+IWe42d8b5K28g+G/CFKC/yYAEHtqGlCsBOrb+YBkG9mPzmuYA/n9k0NFIc8E8yY5vZQaroyFBrTTWEzG9RY2f7Y3svVyybs6jpXSUs4xff8abo7wL1Y/wUaeatTViamxYnyTvdTmLm3d+JjRij68rxAgMBAAECgYAB0TnhXraSopwIVRfmboea1b0upl+BUdTJcmci412UjrKr5aE695ZLPkXbFXijVu7HJlyyv94NVUdaMACV7Ku/S2RuNB70M7YJm8rAjHFC3/i2ZeIM60h1Ziy4QKv0XM3pRATlDCDNhC1WUrtQCQSgU8kcp6eUUppruOqDzcY04QJBAPm9+sBP9CwDRgy3e5+V8aZtJkwDstb0lVVV/KY890cydVxiCwvX3fqVnxKMlb+x0YtH0sb9v+71xvK2lGobaRECQQDVePU6r/cCEfpc+nkWF6osAH1f8Mux3rYv2DoBGvaPzV2BGfsLed4neRfCwWNCKvGPCdW+L0xMJg8+RwaoBUPhAkAT5kViqXxFPYWJYd1h2+rDXhMdH3ZSlm6HvDBDdrwlWinr0Iwcx3iSjPV93uHXwm118aUj4fg3LDJMCKxOwBxhAkByrQXfvwOMYygBprRBf/j0plazoWFrbd6lGR0f1uI5IfNnFRPdeFw1DEINZ2Hw+6zEUF44SqRMC+4IYJNc02dBAkBCgy7RvfyV/A7N6kKXxTHauY0v6XwSSvpeKtRJkbIcRWOdIYvaHO9L7cklj3vIEdwjSUp9K4VTBYYlmAz1xh03", publicKey = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQQRHrnlpV5ZJI9vlmOZfiFnuNnfG+StvIPhvwhSgv8mABB7ahpQrATq2/mAZBvZj85rmAP5/ZNDRSHPBPMmOb2UGq6MhQa001hMxvUWNn+2N7L1csm7Oo6V0lLOMX3/Gm6O8C9WP8FGnmrU1YmpsWJ8k73U5i5t3fiY0Yo+vK8QIDAQAB") |
| | | private String testKey; |
| | | |
| | | /** |
| | | * å¼ |
| | | */ |
| | | // @EncryptField // ä»ä¹ä¹ä¸åèµ°é»è®¤ymlé
ç½® |
| | | // @EncryptField(algorithm = AlgorithmType.SM4, password = "10rfylhtccpuyke5") |
| | | @EncryptField(algorithm = AlgorithmType.AES, password = "10rfylhtccpuyke5") |
| | | private String value; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.Version; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.dromara.common.mybatis.core.domain.BaseEntity; |
| | | |
| | | import java.io.Serial; |
| | | |
| | | /** |
| | | * æµè¯æ 表对象 test_tree |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @TableName("test_tree") |
| | | public class TestTree extends BaseEntity { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | /** |
| | | * ä¸»é® |
| | | */ |
| | | @TableId(value = "id") |
| | | private Long id; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | private Long parentId; |
| | | |
| | | /** |
| | | * é¨é¨id |
| | | */ |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * ç¨æ·id |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * æ èç¹å |
| | | */ |
| | | private String treeName; |
| | | |
| | | /** |
| | | * çæ¬ |
| | | */ |
| | | @Version |
| | | private Long version; |
| | | |
| | | /** |
| | | * å 餿 å¿ |
| | | */ |
| | | @TableLogic |
| | | private Long delFlag; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.domain.bo; |
| | | |
| | | import io.github.linpeilie.annotations.AutoMapper; |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.dromara.common.core.validate.AddGroup; |
| | | import org.dromara.common.core.validate.EditGroup; |
| | | import org.dromara.common.mybatis.core.domain.BaseEntity; |
| | | import org.dromara.demo.domain.TestDemo; |
| | | |
| | | /** |
| | | * æµè¯å表ä¸å¡å¯¹è±¡ test_demo |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @AutoMapper(target = TestDemo.class, reverseConvertGenerate = false) |
| | | public class TestDemoBo extends BaseEntity { |
| | | |
| | | /** |
| | | * ä¸»é® |
| | | */ |
| | | @NotNull(message = "主é®ä¸è½ä¸ºç©º", groups = {EditGroup.class}) |
| | | private Long id; |
| | | |
| | | /** |
| | | * é¨é¨id |
| | | */ |
| | | @NotNull(message = "é¨é¨idä¸è½ä¸ºç©º", groups = {AddGroup.class, EditGroup.class}) |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * ç¨æ·id |
| | | */ |
| | | @NotNull(message = "ç¨æ·idä¸è½ä¸ºç©º", groups = {AddGroup.class, EditGroup.class}) |
| | | private Long userId; |
| | | |
| | | /** |
| | | * æåºå· |
| | | */ |
| | | @NotNull(message = "æåºå·ä¸è½ä¸ºç©º", groups = {AddGroup.class, EditGroup.class}) |
| | | private Integer orderNum; |
| | | |
| | | /** |
| | | * keyé® |
| | | */ |
| | | @NotBlank(message = "keyé®ä¸è½ä¸ºç©º", groups = {AddGroup.class, EditGroup.class}) |
| | | private String testKey; |
| | | |
| | | /** |
| | | * å¼ |
| | | */ |
| | | @NotBlank(message = "å¼ä¸è½ä¸ºç©º", groups = {AddGroup.class, EditGroup.class}) |
| | | private String value; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.domain.bo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.Data; |
| | | |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import jakarta.validation.constraints.NotNull; |
| | | |
| | | /** |
| | | * æµè¯å表ä¸å¡å¯¹è±¡ test_demo |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | @Data |
| | | public class TestDemoImportVo { |
| | | |
| | | /** |
| | | * é¨é¨id |
| | | */ |
| | | @NotNull(message = "é¨é¨idä¸è½ä¸ºç©º") |
| | | @ExcelProperty(value = "é¨é¨id") |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * ç¨æ·id |
| | | */ |
| | | @NotNull(message = "ç¨æ·idä¸è½ä¸ºç©º") |
| | | @ExcelProperty(value = "ç¨æ·id") |
| | | private Long userId; |
| | | |
| | | /** |
| | | * æåºå· |
| | | */ |
| | | @NotNull(message = "æåºå·ä¸è½ä¸ºç©º") |
| | | @ExcelProperty(value = "æåºå·") |
| | | private Long orderNum; |
| | | |
| | | /** |
| | | * keyé® |
| | | */ |
| | | @NotBlank(message = "keyé®ä¸è½ä¸ºç©º") |
| | | @ExcelProperty(value = "keyé®") |
| | | private String testKey; |
| | | |
| | | /** |
| | | * å¼ |
| | | */ |
| | | @NotBlank(message = "å¼ä¸è½ä¸ºç©º") |
| | | @ExcelProperty(value = "å¼") |
| | | private String value; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.domain.bo; |
| | | |
| | | import io.github.linpeilie.annotations.AutoMapper; |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.dromara.common.core.validate.AddGroup; |
| | | import org.dromara.common.core.validate.EditGroup; |
| | | import org.dromara.common.mybatis.core.domain.BaseEntity; |
| | | import org.dromara.demo.domain.TestTree; |
| | | |
| | | /** |
| | | * æµè¯æ 表ä¸å¡å¯¹è±¡ test_tree |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @AutoMapper(target = TestTree.class, reverseConvertGenerate = false) |
| | | public class TestTreeBo extends BaseEntity { |
| | | |
| | | /** |
| | | * ä¸»é® |
| | | */ |
| | | @NotNull(message = "主é®ä¸è½ä¸ºç©º", groups = {EditGroup.class}) |
| | | private Long id; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | private Long parentId; |
| | | |
| | | /** |
| | | * é¨é¨id |
| | | */ |
| | | @NotNull(message = "é¨é¨idä¸è½ä¸ºç©º", groups = {AddGroup.class, EditGroup.class}) |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * ç¨æ·id |
| | | */ |
| | | @NotNull(message = "ç¨æ·idä¸è½ä¸ºç©º", groups = {AddGroup.class, EditGroup.class}) |
| | | private Long userId; |
| | | |
| | | /** |
| | | * æ èç¹å |
| | | */ |
| | | @NotBlank(message = "æ èç¹åä¸è½ä¸ºç©º", groups = {AddGroup.class, EditGroup.class}) |
| | | private String treeName; |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.domain; |
New file |
| | |
| | | package org.dromara.demo.domain.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import jakarta.validation.constraints.NotEmpty; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import org.dromara.common.core.enums.UserStatus; |
| | | import org.dromara.common.core.validate.AddGroup; |
| | | import org.dromara.common.core.validate.EditGroup; |
| | | import org.dromara.common.excel.annotation.ExcelDictFormat; |
| | | import org.dromara.common.excel.annotation.ExcelEnumFormat; |
| | | import org.dromara.common.excel.convert.ExcelDictConvert; |
| | | import org.dromara.common.excel.convert.ExcelEnumConvert; |
| | | |
| | | /** |
| | | * 带æä¸æéçExcelå¯¼åº |
| | | * |
| | | * @author Emil.Zhang |
| | | */ |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @AllArgsConstructor |
| | | @NoArgsConstructor |
| | | public class ExportDemoVo { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * ç¨æ·æµç§° |
| | | */ |
| | | @ExcelProperty(value = "ç¨æ·å", index = 0) |
| | | @NotEmpty(message = "ç¨æ·åä¸è½ä¸ºç©º", groups = AddGroup.class) |
| | | private String nickName; |
| | | |
| | | /** |
| | | * ç¨æ·ç±»å |
| | | * </p> |
| | | * 使ç¨ExcelEnumFormat注解éè¦è¿è¡ä¸æéçé¨å |
| | | */ |
| | | @ExcelProperty(value = "ç¨æ·ç±»å", index = 1, converter = ExcelEnumConvert.class) |
| | | @ExcelEnumFormat(enumClass = UserStatus.class, textField = "info") |
| | | @NotEmpty(message = "ç¨æ·ç±»åä¸è½ä¸ºç©º", groups = AddGroup.class) |
| | | private String userStatus; |
| | | |
| | | /** |
| | | * æ§å« |
| | | * <p> |
| | | * 使ç¨ExcelDictFormat注解éè¦è¿è¡ä¸æéçé¨å |
| | | */ |
| | | @ExcelProperty(value = "æ§å«", index = 2, converter = ExcelDictConvert.class) |
| | | @ExcelDictFormat(dictType = "sys_user_sex") |
| | | @NotEmpty(message = "æ§å«ä¸è½ä¸ºç©º", groups = AddGroup.class) |
| | | private String gender; |
| | | |
| | | /** |
| | | * ææºå· |
| | | */ |
| | | @ExcelProperty(value = "ææºå·", index = 3) |
| | | @NotEmpty(message = "ææºå·ä¸è½ä¸ºç©º", groups = AddGroup.class) |
| | | private String phoneNumber; |
| | | |
| | | /** |
| | | * Email |
| | | */ |
| | | @ExcelProperty(value = "Email", index = 4) |
| | | @NotEmpty(message = "Emailä¸è½ä¸ºç©º", groups = AddGroup.class) |
| | | private String email; |
| | | |
| | | /** |
| | | * ç |
| | | * <p> |
| | | * 级è䏿ï¼ä»
夿æ¯å¦éäº |
| | | */ |
| | | @ExcelProperty(value = "ç", index = 5) |
| | | @NotNull(message = "çä¸è½ä¸ºç©º", groups = AddGroup.class) |
| | | private String province; |
| | | |
| | | /** |
| | | * æ°æ®åºä¸ççID |
| | | * </p> |
| | | * å¤ç宿¯åå夿æ¯å¦å¸æ£ç¡®çå¼ |
| | | */ |
| | | @NotNull(message = "è¯·å¿æå¨è¾å
¥", groups = EditGroup.class) |
| | | private Integer provinceId; |
| | | |
| | | /** |
| | | * å¸ |
| | | * <p> |
| | | * 级è䏿 |
| | | */ |
| | | @ExcelProperty(value = "å¸", index = 6) |
| | | @NotNull(message = "å¸ä¸è½ä¸ºç©º", groups = AddGroup.class) |
| | | private String city; |
| | | |
| | | /** |
| | | * æ°æ®åºä¸çå¸ID |
| | | */ |
| | | @NotNull(message = "è¯·å¿æå¨è¾å
¥", groups = EditGroup.class) |
| | | private Integer cityId; |
| | | |
| | | /** |
| | | * å¿ |
| | | * <p> |
| | | * 级è䏿 |
| | | */ |
| | | @ExcelProperty(value = "å¿", index = 7) |
| | | @NotNull(message = "å¿ä¸è½ä¸ºç©º", groups = AddGroup.class) |
| | | private String area; |
| | | |
| | | /** |
| | | * æ°æ®åºä¸çå¿ID |
| | | */ |
| | | @NotNull(message = "è¯·å¿æå¨è¾å
¥", groups = EditGroup.class) |
| | | private Integer areaId; |
| | | } |
New file |
| | |
| | | package org.dromara.demo.domain.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import io.github.linpeilie.annotations.AutoMapper; |
| | | import lombok.Data; |
| | | import org.dromara.demo.domain.TestDemo; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * æµè¯å表è§å¾å¯¹è±¡ test_demo |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @AutoMapper(target = TestDemo.class) |
| | | public class TestDemoVo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * ä¸»é® |
| | | */ |
| | | @ExcelProperty(value = "主é®") |
| | | private Long id; |
| | | |
| | | /** |
| | | * é¨é¨id |
| | | */ |
| | | @ExcelProperty(value = "é¨é¨id") |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * ç¨æ·id |
| | | */ |
| | | @ExcelProperty(value = "ç¨æ·id") |
| | | private Long userId; |
| | | |
| | | /** |
| | | * æåºå· |
| | | */ |
| | | @ExcelProperty(value = "æåºå·") |
| | | private Integer orderNum; |
| | | |
| | | /** |
| | | * keyé® |
| | | */ |
| | | @ExcelProperty(value = "keyé®") |
| | | private String testKey; |
| | | |
| | | /** |
| | | * å¼ |
| | | */ |
| | | @ExcelProperty(value = "å¼") |
| | | private String value; |
| | | |
| | | /** |
| | | * å建æ¶é´ |
| | | */ |
| | | @ExcelProperty(value = "å建æ¶é´") |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * å建人 |
| | | */ |
| | | @ExcelProperty(value = "å建人") |
| | | private String createBy; |
| | | |
| | | /** |
| | | * æ´æ°æ¶é´ |
| | | */ |
| | | @ExcelProperty(value = "æ´æ°æ¶é´") |
| | | private Date updateTime; |
| | | |
| | | /** |
| | | * æ´æ°äºº |
| | | */ |
| | | @ExcelProperty(value = "æ´æ°äºº") |
| | | private String updateBy; |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.domain.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import io.github.linpeilie.annotations.AutoMapper; |
| | | import lombok.Data; |
| | | import org.dromara.demo.domain.TestTree; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * æµè¯æ 表è§å¾å¯¹è±¡ test_tree |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | @AutoMapper(target = TestTree.class) |
| | | public class TestTreeVo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * ä¸»é® |
| | | */ |
| | | private Long id; |
| | | |
| | | /** |
| | | * ç¶id |
| | | */ |
| | | @ExcelProperty(value = "ç¶id") |
| | | private Long parentId; |
| | | |
| | | /** |
| | | * é¨é¨id |
| | | */ |
| | | @ExcelProperty(value = "é¨é¨id") |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * ç¨æ·id |
| | | */ |
| | | @ExcelProperty(value = "ç¨æ·id") |
| | | private Long userId; |
| | | |
| | | /** |
| | | * æ èç¹å |
| | | */ |
| | | @ExcelProperty(value = "æ èç¹å") |
| | | private String treeName; |
| | | |
| | | /** |
| | | * å建æ¶é´ |
| | | */ |
| | | @ExcelProperty(value = "å建æ¶é´") |
| | | private Date createTime; |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.esmapper; |
| | | |
| | | import org.dromara.demo.domain.Document; |
| | | import org.dromara.easyes.core.core.BaseEsMapper; |
| | | |
| | | public interface DocumentMapper extends BaseEsMapper<Document> { |
| | | } |
New file |
| | |
| | | package org.dromara.demo.listener; |
| | | |
| | | import cn.hutool.core.util.NumberUtil; |
| | | import com.alibaba.excel.context.AnalysisContext; |
| | | import org.dromara.common.core.utils.ValidatorUtils; |
| | | import org.dromara.common.core.validate.AddGroup; |
| | | import org.dromara.common.core.validate.EditGroup; |
| | | import org.dromara.common.excel.core.DefaultExcelListener; |
| | | import org.dromara.common.excel.core.DropDownOptions; |
| | | import org.dromara.demo.domain.vo.ExportDemoVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * Excel另䏿æ¡çè§£æå¤çå¨ |
| | | * |
| | | * @author Emil.Zhang |
| | | */ |
| | | public class ExportDemoListener extends DefaultExcelListener<ExportDemoVo> { |
| | | |
| | | public ExportDemoListener() { |
| | | // æ¾ç¤ºä½¿ç¨æé 彿°ï¼å¦åå°å¯¼è´ç©ºæé |
| | | super(true); |
| | | } |
| | | |
| | | @Override |
| | | public void invoke(ExportDemoVo data, AnalysisContext context) { |
| | | // å
æ ¡éªå¿
å¡« |
| | | ValidatorUtils.validate(data, AddGroup.class); |
| | | |
| | | // å¤ç级è䏿çé¨å |
| | | String province = data.getProvince(); |
| | | String city = data.getCity(); |
| | | String area = data.getArea(); |
| | | // æ¬è¡ç¨æ·éæ©çç |
| | | List<String> thisRowSelectedProvinceOption = DropDownOptions.analyzeOptionValue(province); |
| | | if (thisRowSelectedProvinceOption.size() == 2) { |
| | | String provinceIdStr = thisRowSelectedProvinceOption.get(1); |
| | | if (NumberUtil.isNumber(provinceIdStr)) { |
| | | // ä¸¥æ ¼è¦æ±æ°æ®çè¯å¯ä»¥å¨è¿éå䏿°æ®åºç¸å
³ç夿 |
| | | // ä¾å¦å¤æçä¿¡æ¯æ¯å¦å¨æ°æ®åºä¸åå¨çï¼å»ºè®®ç»åRedisCacheåç¼å10sï¼åå°æ°æ®åºè°ç¨ |
| | | data.setProvinceId(Integer.parseInt(provinceIdStr)); |
| | | } |
| | | } |
| | | // æ¬è¡ç¨æ·éæ©çå¸ |
| | | List<String> thisRowSelectedCityOption = DropDownOptions.analyzeOptionValue(city); |
| | | if (thisRowSelectedCityOption.size() == 2) { |
| | | String cityIdStr = thisRowSelectedCityOption.get(1); |
| | | if (NumberUtil.isNumber(cityIdStr)) { |
| | | data.setCityId(Integer.parseInt(cityIdStr)); |
| | | } |
| | | } |
| | | // æ¬è¡ç¨æ·éæ©çå¿ |
| | | List<String> thisRowSelectedAreaOption = DropDownOptions.analyzeOptionValue(area); |
| | | if (thisRowSelectedAreaOption.size() == 2) { |
| | | String areaIdStr = thisRowSelectedAreaOption.get(1); |
| | | if (NumberUtil.isNumber(areaIdStr)) { |
| | | data.setAreaId(Integer.parseInt(areaIdStr)); |
| | | } |
| | | } |
| | | |
| | | // å¤ç宿¯ä»¥å夿æ¯å¦ç¬¦åè§å |
| | | ValidatorUtils.validate(data, EditGroup.class); |
| | | |
| | | // æ·»å å°å¤çç»æä¸ |
| | | getExcelResult().getList().add(data); |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.demo.mapper; |
| | | |
| | | import com.baomidou.dynamic.datasource.annotation.DS; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.dromara.demo.domain.ShardingOrderItem; |
| | | |
| | | @Mapper |
| | | @DS("sharding") |
| | | public interface ShardingOrderItemMapper extends BaseMapper<ShardingOrderItem> { |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.mapper; |
| | | |
| | | import com.baomidou.dynamic.datasource.annotation.DS; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.dromara.demo.domain.ShardingOrder; |
| | | |
| | | |
| | | @Mapper |
| | | @DS("sharding") |
| | | public interface ShardingOrderMapper extends BaseMapper<ShardingOrder> { |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.mapper; |
| | | |
| | | import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
| | | import org.dromara.demo.domain.TestDemoEncrypt; |
| | | |
| | | /** |
| | | * æµè¯å å¯åè½ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | public interface TestDemoEncryptMapper extends BaseMapperPlus<TestDemoEncrypt, TestDemoEncrypt> { |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.core.toolkit.Constants; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.dromara.common.mybatis.annotation.DataColumn; |
| | | import org.dromara.common.mybatis.annotation.DataPermission; |
| | | import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
| | | import org.dromara.demo.domain.TestDemo; |
| | | import org.dromara.demo.domain.vo.TestDemoVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * æµè¯å表Mapperæ¥å£ |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | public interface TestDemoMapper extends BaseMapperPlus<TestDemo, TestDemoVo> { |
| | | |
| | | @DataPermission({ |
| | | @DataColumn(key = "deptName", value = "dept_id"), |
| | | @DataColumn(key = "userName", value = "user_id") |
| | | }) |
| | | Page<TestDemoVo> customPageList(@Param("page") Page<TestDemo> page, @Param("ew") Wrapper<TestDemo> wrapper); |
| | | |
| | | @Override |
| | | @DataPermission({ |
| | | @DataColumn(key = "deptName", value = "dept_id"), |
| | | @DataColumn(key = "userName", value = "user_id") |
| | | }) |
| | | List<TestDemo> selectList(IPage<TestDemo> page, @Param(Constants.WRAPPER) Wrapper<TestDemo> queryWrapper); |
| | | |
| | | |
| | | @Override |
| | | @DataPermission({ |
| | | @DataColumn(key = "deptName", value = "dept_id"), |
| | | @DataColumn(key = "userName", value = "user_id") |
| | | }) |
| | | List<TestDemo> selectList(@Param(Constants.WRAPPER) Wrapper<TestDemo> queryWrapper); |
| | | |
| | | @Override |
| | | @DataPermission({ |
| | | @DataColumn(key = "deptName", value = "dept_id"), |
| | | @DataColumn(key = "userName", value = "user_id") |
| | | }) |
| | | int updateById(@Param(Constants.ENTITY) TestDemo entity); |
| | | |
| | | @Override |
| | | @DataPermission({ |
| | | @DataColumn(key = "deptName", value = "dept_id"), |
| | | @DataColumn(key = "userName", value = "user_id") |
| | | }) |
| | | int deleteBatchIds(@Param(Constants.COLL) Collection<?> idList); |
| | | } |
New file |
| | |
| | | package org.dromara.demo.mapper; |
| | | |
| | | import org.dromara.common.mybatis.annotation.DataColumn; |
| | | import org.dromara.common.mybatis.annotation.DataPermission; |
| | | import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; |
| | | import org.dromara.demo.domain.TestTree; |
| | | import org.dromara.demo.domain.vo.TestTreeVo; |
| | | |
| | | /** |
| | | * æµè¯æ 表Mapperæ¥å£ |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | @DataPermission({ |
| | | @DataColumn(key = "deptName", value = "dept_id"), |
| | | @DataColumn(key = "userName", value = "user_id") |
| | | }) |
| | | public interface TestTreeMapper extends BaseMapperPlus<TestTree, TestTreeVo> { |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.mapper; |
New file |
| | |
| | | package org.dromara.demo.service; |
| | | |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | |
| | | /** |
| | | * 导åºä¸ææ¡Excelç¤ºä¾ |
| | | * |
| | | * @author Emil.Zhang |
| | | */ |
| | | public interface IExportExcelService { |
| | | |
| | | /** |
| | | * 导åºä¸ææ¡ |
| | | * |
| | | * @param response / |
| | | */ |
| | | void exportWithOptions(HttpServletResponse response); |
| | | } |
New file |
| | |
| | | package org.dromara.demo.service; |
| | | |
| | | import org.dromara.common.mybatis.core.page.PageQuery; |
| | | import org.dromara.common.mybatis.core.page.TableDataInfo; |
| | | import org.dromara.demo.domain.TestDemo; |
| | | import org.dromara.demo.domain.bo.TestDemoBo; |
| | | import org.dromara.demo.domain.vo.TestDemoVo; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * æµè¯å表Serviceæ¥å£ |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | public interface ITestDemoService { |
| | | |
| | | /** |
| | | * æ¥è¯¢å个 |
| | | * |
| | | * @return |
| | | */ |
| | | TestDemoVo queryById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢å表 |
| | | */ |
| | | TableDataInfo<TestDemoVo> queryPageList(TestDemoBo bo, PageQuery pageQuery); |
| | | |
| | | /** |
| | | * èªå®ä¹å页æ¥è¯¢ |
| | | */ |
| | | TableDataInfo<TestDemoVo> customPageList(TestDemoBo bo, PageQuery pageQuery); |
| | | |
| | | /** |
| | | * æ¥è¯¢å表 |
| | | */ |
| | | List<TestDemoVo> queryList(TestDemoBo bo); |
| | | |
| | | /** |
| | | * æ ¹æ®æ°å¢ä¸å¡å¯¹è±¡æå
¥æµè¯å表 |
| | | * |
| | | * @param bo æµè¯å表æ°å¢ä¸å¡å¯¹è±¡ |
| | | * @return |
| | | */ |
| | | Boolean insertByBo(TestDemoBo bo); |
| | | |
| | | /** |
| | | * æ ¹æ®ç¼è¾ä¸å¡å¯¹è±¡ä¿®æ¹æµè¯å表 |
| | | * |
| | | * @param bo æµè¯å表ç¼è¾ä¸å¡å¯¹è±¡ |
| | | * @return |
| | | */ |
| | | Boolean updateByBo(TestDemoBo bo); |
| | | |
| | | /** |
| | | * æ ¡éªå¹¶å 餿°æ® |
| | | * |
| | | * @param ids 主é®éå |
| | | * @param isValid æ¯å¦æ ¡éª,true-å é¤åæ ¡éª,false-䏿 ¡éª |
| | | * @return |
| | | */ |
| | | Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid); |
| | | |
| | | /** |
| | | * æ¹éä¿å |
| | | */ |
| | | Boolean saveBatch(List<TestDemo> list); |
| | | } |
New file |
| | |
| | | package org.dromara.demo.service; |
| | | |
| | | import org.dromara.demo.domain.bo.TestTreeBo; |
| | | import org.dromara.demo.domain.vo.TestTreeVo; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * æµè¯æ 表Serviceæ¥å£ |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | public interface ITestTreeService { |
| | | /** |
| | | * æ¥è¯¢å个 |
| | | * |
| | | * @return |
| | | */ |
| | | TestTreeVo queryById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢å表 |
| | | */ |
| | | List<TestTreeVo> queryList(TestTreeBo bo); |
| | | |
| | | /** |
| | | * æ ¹æ®æ°å¢ä¸å¡å¯¹è±¡æå
¥æµè¯æ 表 |
| | | * |
| | | * @param bo æµè¯æ 表æ°å¢ä¸å¡å¯¹è±¡ |
| | | * @return |
| | | */ |
| | | Boolean insertByBo(TestTreeBo bo); |
| | | |
| | | /** |
| | | * æ ¹æ®ç¼è¾ä¸å¡å¯¹è±¡ä¿®æ¹æµè¯æ 表 |
| | | * |
| | | * @param bo æµè¯æ 表ç¼è¾ä¸å¡å¯¹è±¡ |
| | | * @return |
| | | */ |
| | | Boolean updateByBo(TestTreeBo bo); |
| | | |
| | | /** |
| | | * æ ¡éªå¹¶å 餿°æ® |
| | | * |
| | | * @param ids 主é®éå |
| | | * @param isValid æ¯å¦æ ¡éª,true-å é¤åæ ¡éª,false-䏿 ¡éª |
| | | * @return |
| | | */ |
| | | Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid); |
| | | } |
New file |
| | |
| | | package org.dromara.demo.service.impl; |
| | | |
| | | import cn.hutool.core.util.StrUtil; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import lombok.Data; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.dromara.common.core.enums.UserStatus; |
| | | import org.dromara.common.core.utils.StreamUtils; |
| | | import org.dromara.common.excel.core.DropDownOptions; |
| | | import org.dromara.common.excel.utils.ExcelUtil; |
| | | import org.dromara.demo.domain.vo.ExportDemoVo; |
| | | import org.dromara.demo.service.IExportExcelService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.stream.Collectors; |
| | | |
| | | /** |
| | | * 导åºä¸ææ¡Excelç¤ºä¾ |
| | | * |
| | | * @author Emil.Zhang |
| | | */ |
| | | @Service |
| | | @RequiredArgsConstructor |
| | | public class ExportExcelServiceImpl implements IExportExcelService { |
| | | |
| | | @Override |
| | | public void exportWithOptions(HttpServletResponse response) { |
| | | // åå»ºè¡¨æ ¼æ°æ®ï¼ä¸å¡ä¸ä¸è¬éè¿æ°æ®åºæ¥è¯¢ |
| | | List<ExportDemoVo> excelDataList = new ArrayList<>(); |
| | | for (int i = 0; i < 3; i++) { |
| | | // æ¨¡ææ°æ®åºä¸ç䏿¡æ°æ® |
| | | ExportDemoVo everyRowData = new ExportDemoVo(); |
| | | everyRowData.setNickName("ç¨æ·-" + i); |
| | | everyRowData.setUserStatus(UserStatus.OK.getCode()); |
| | | everyRowData.setGender("1"); |
| | | everyRowData.setPhoneNumber(String.format("175%08d", i)); |
| | | everyRowData.setEmail(String.format("175%08d", i) + "@163.com"); |
| | | everyRowData.setProvinceId(i); |
| | | everyRowData.setCityId(i); |
| | | everyRowData.setAreaId(i); |
| | | excelDataList.add(everyRowData); |
| | | } |
| | | |
| | | // éè¿@ExcelIgnoreUnannotatedé
å@ExcelPropertyåçæ¾ç¤ºéè¦çå |
| | | // å¹¶éè¿@DropDown注解æå®ä¸æå¼ï¼æè
éè¿å建ExcelOptionsæ¥æå®ä¸ææ¡ |
| | | // 使ç¨ExcelOptionsæ¶å»ºè®®æå®åindexï¼é²æ¢åºç°ä¸æåè§£æä¸å¯¹é½ |
| | | |
| | | // é¦å
仿°æ®åºä¸æ¥è¯¢ä¸ææ¡å
çå¯é项 |
| | | // è¿éæ¨¡ææ¥è¯¢ç»æ |
| | | List<DemoCityData> provinceList = getProvinceList(), |
| | | cityList = getCityList(provinceList), |
| | | areaList = getAreaList(cityList); |
| | | int provinceIndex = 5, cityIndex = 6, areaIndex = 7; |
| | | |
| | | DropDownOptions provinceToCity = DropDownOptions.buildLinkedOptions( |
| | | provinceList, |
| | | provinceIndex, |
| | | cityList, |
| | | cityIndex, |
| | | DemoCityData::getId, |
| | | DemoCityData::getPid, |
| | | everyOptions -> DropDownOptions.createOptionValue( |
| | | everyOptions.getName(), |
| | | everyOptions.getId() |
| | | ) |
| | | ); |
| | | |
| | | DropDownOptions cityToArea = DropDownOptions.buildLinkedOptions( |
| | | cityList, |
| | | cityIndex, |
| | | areaList, |
| | | areaIndex, |
| | | DemoCityData::getId, |
| | | DemoCityData::getPid, |
| | | everyOptions -> DropDownOptions.createOptionValue( |
| | | everyOptions.getName(), |
| | | everyOptions.getId() |
| | | ) |
| | | ); |
| | | |
| | | // æææç䏿æ¡åå¨ |
| | | List<DropDownOptions> options = new ArrayList<>(); |
| | | options.add(provinceToCity); |
| | | options.add(cityToArea); |
| | | |
| | | // å°æ¤ä¸ºæ¢ææç䏿æ¡å¯é项已å
¨é¨é
ç½®å®æ¯ |
| | | |
| | | // æ¥ä¸æ¥éè¦å°Excelä¸çå±ç¤ºæ°æ®è½¬æ¢ä¸ºå¯¹åºç䏿é |
| | | List<ExportDemoVo> outList = StreamUtils.toList(excelDataList, everyRowData -> { |
| | | // åªéè¦å¤ç没æä½¿ç¨@ExcelDictFormat注解çä¸ææ¡ |
| | | // ä¸è¬æ¥è¯´ï¼å¯ä»¥ç´æ¥å¨æ°æ®åºæ¥è¯¢å³æ¥è¯¢åºçå¸å¿ä¿¡æ¯ï¼è¿ééè¿æ¨¡ææä½èµå¼ |
| | | everyRowData.setProvince(buildOptions(provinceList, everyRowData.getProvinceId())); |
| | | everyRowData.setCity(buildOptions(cityList, everyRowData.getCityId())); |
| | | everyRowData.setArea(buildOptions(areaList, everyRowData.getAreaId())); |
| | | return everyRowData; |
| | | }); |
| | | |
| | | ExcelUtil.exportExcel(outList, "䏿æ¡ç¤ºä¾", ExportDemoVo.class, response, options); |
| | | } |
| | | |
| | | private String buildOptions(List<DemoCityData> cityDataList, Integer id) { |
| | | Map<Integer, List<DemoCityData>> groupByIdMap = |
| | | cityDataList.stream().collect(Collectors.groupingBy(DemoCityData::getId)); |
| | | if (groupByIdMap.containsKey(id)) { |
| | | DemoCityData demoCityData = groupByIdMap.get(id).get(0); |
| | | return DropDownOptions.createOptionValue(demoCityData.getName(), demoCityData.getId()); |
| | | } else { |
| | | return StrUtil.EMPTY; |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * æ¨¡ææ¥è¯¢æ°æ®åºæä½ |
| | | * |
| | | * @return / |
| | | */ |
| | | private List<DemoCityData> getProvinceList() { |
| | | List<DemoCityData> provinceList = new ArrayList<>(); |
| | | |
| | | // å®é
ä¸å¡ä¸ä¸è¬éç¨æ°æ®åºè¯»åçå½¢å¼ï¼è¿éç´æ¥æ¼æ¥å建 |
| | | provinceList.add(new DemoCityData(0, null, "å®å¾½ç")); |
| | | provinceList.add(new DemoCityData(1, null, "æ±èç")); |
| | | |
| | | return provinceList; |
| | | } |
| | | |
| | | /** |
| | | * æ¨¡ææ¥æ¾æ°æ®åºæä½ï¼éè¦è¿å¸¦æ¥è¯¢åºççæ°æ® |
| | | * |
| | | * @param provinceList 模æçç¶çæ°æ® |
| | | * @return / |
| | | */ |
| | | private List<DemoCityData> getCityList(List<DemoCityData> provinceList) { |
| | | List<DemoCityData> cityList = new ArrayList<>(); |
| | | |
| | | // å®é
ä¸å¡ä¸ä¸è¬éç¨æ°æ®åºè¯»åçå½¢å¼ï¼è¿éç´æ¥æ¼æ¥å建 |
| | | cityList.add(new DemoCityData(0, 0, "åè¥å¸")); |
| | | cityList.add(new DemoCityData(1, 0, "èæ¹å¸")); |
| | | cityList.add(new DemoCityData(2, 1, "å京å¸")); |
| | | cityList.add(new DemoCityData(3, 1, "æ é¡å¸")); |
| | | cityList.add(new DemoCityData(4, 1, "å¾å·å¸")); |
| | | |
| | | selectParentData(provinceList, cityList); |
| | | |
| | | return cityList; |
| | | } |
| | | |
| | | /** |
| | | * æ¨¡ææ¥æ¾æ°æ®åºæä½ï¼éè¦è¿å¸¦æ¥è¯¢åºå¸çæ°æ® |
| | | * |
| | | * @param cityList 模æçç¶å¸æ°æ® |
| | | * @return / |
| | | */ |
| | | private List<DemoCityData> getAreaList(List<DemoCityData> cityList) { |
| | | List<DemoCityData> areaList = new ArrayList<>(); |
| | | |
| | | // å®é
ä¸å¡ä¸ä¸è¬éç¨æ°æ®åºè¯»åçå½¢å¼ï¼è¿éç´æ¥æ¼æ¥å建 |
| | | areaList.add(new DemoCityData(0, 0, "ç¶æµ·åº")); |
| | | areaList.add(new DemoCityData(1, 0, "åºæ±åº")); |
| | | areaList.add(new DemoCityData(2, 1, "åå®å¿")); |
| | | areaList.add(new DemoCityData(3, 1, "éæ¹åº")); |
| | | areaList.add(new DemoCityData(4, 2, "çæ¦åº")); |
| | | areaList.add(new DemoCityData(5, 2, "秦淮åº")); |
| | | areaList.add(new DemoCityData(6, 3, "å®å
´å¸")); |
| | | areaList.add(new DemoCityData(7, 3, "æ°å´åº")); |
| | | areaList.add(new DemoCityData(8, 4, "鼿¥¼åº")); |
| | | areaList.add(new DemoCityData(9, 4, "丰å¿")); |
| | | |
| | | selectParentData(cityList, areaList); |
| | | |
| | | return areaList; |
| | | } |
| | | |
| | | /** |
| | | * æ¨¡ææ°æ®åºçæ¥è¯¢ç¶æ°æ®æä½ |
| | | * |
| | | * @param parentList / |
| | | * @param sonList / |
| | | */ |
| | | private void selectParentData(List<DemoCityData> parentList, List<DemoCityData> sonList) { |
| | | Map<Integer, List<DemoCityData>> parentGroupByIdMap = |
| | | parentList.stream().collect(Collectors.groupingBy(DemoCityData::getId)); |
| | | |
| | | sonList.forEach(everySon -> { |
| | | if (parentGroupByIdMap.containsKey(everySon.getPid())) { |
| | | everySon.setPData(parentGroupByIdMap.get(everySon.getPid()).get(0)); |
| | | } |
| | | }); |
| | | } |
| | | |
| | | /** |
| | | * 模æçæ°æ®åºçå¸å¿ |
| | | */ |
| | | @Data |
| | | private static class DemoCityData { |
| | | /** |
| | | * æ°æ®åºidåæ®µ |
| | | */ |
| | | private Integer id; |
| | | /** |
| | | * æ°æ®åºpidåæ®µ |
| | | */ |
| | | private Integer pid; |
| | | /** |
| | | * æ°æ®åºnameåæ®µ |
| | | */ |
| | | private String name; |
| | | /** |
| | | * MyBatisPlusè¿å¸¦æ¥è¯¢ç¶æ°æ® |
| | | */ |
| | | private DemoCityData pData; |
| | | |
| | | public DemoCityData(Integer id, Integer pid, String name) { |
| | | this.id = id; |
| | | this.pid = pid; |
| | | this.name = name; |
| | | } |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.demo.service.impl; |
| | | |
| | | import cn.dev33.satoken.stp.StpUtil; |
| | | import org.dromara.common.core.utils.StringUtils; |
| | | import org.dromara.common.satoken.utils.LoginHelper; |
| | | import org.dromara.common.sensitive.core.SensitiveService; |
| | | import org.dromara.common.tenant.helper.TenantHelper; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * è±ææå¡ |
| | | * é»è®¤ç®¡çåä¸è¿æ»¤ |
| | | * éèªè¡æ ¹æ®ä¸å¡éåå®ç° |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @Service |
| | | public class SensitiveServiceImpl implements SensitiveService { |
| | | |
| | | /** |
| | | * æ¯å¦è±æ |
| | | */ |
| | | @Override |
| | | public boolean isSensitive(String roleKey, String perms) { |
| | | if (!LoginHelper.isLogin()) { |
| | | return true; |
| | | } |
| | | boolean roleExist = StringUtils.isNotBlank(roleKey); |
| | | boolean permsExist = StringUtils.isNotBlank(perms); |
| | | if (roleExist && permsExist) { |
| | | if (StpUtil.hasRole(roleKey) && StpUtil.hasPermission(perms)) { |
| | | return false; |
| | | } |
| | | } else if (roleExist && StpUtil.hasRole(roleKey)) { |
| | | return false; |
| | | } else if (permsExist && StpUtil.hasPermission(perms)) { |
| | | return false; |
| | | } |
| | | |
| | | if (TenantHelper.isEnable()) { |
| | | return !LoginHelper.isSuperAdmin() && !LoginHelper.isTenantAdmin(); |
| | | } |
| | | return !LoginHelper.isSuperAdmin(); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo.service.impl; |
| | | |
| | | import cn.hutool.core.bean.BeanUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.dromara.common.core.utils.StringUtils; |
| | | import org.dromara.common.mybatis.core.page.PageQuery; |
| | | import org.dromara.common.mybatis.core.page.TableDataInfo; |
| | | import org.dromara.demo.domain.TestDemo; |
| | | import org.dromara.demo.domain.bo.TestDemoBo; |
| | | import org.dromara.demo.domain.vo.TestDemoVo; |
| | | import org.dromara.demo.mapper.TestDemoMapper; |
| | | import org.dromara.demo.service.ITestDemoService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * æµè¯å表Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | @RequiredArgsConstructor |
| | | @Service |
| | | public class TestDemoServiceImpl implements ITestDemoService { |
| | | |
| | | private final TestDemoMapper baseMapper; |
| | | |
| | | @Override |
| | | public TestDemoVo queryById(Long id) { |
| | | return baseMapper.selectVoById(id); |
| | | } |
| | | |
| | | @Override |
| | | public TableDataInfo<TestDemoVo> queryPageList(TestDemoBo bo, PageQuery pageQuery) { |
| | | LambdaQueryWrapper<TestDemo> lqw = buildQueryWrapper(bo); |
| | | Page<TestDemoVo> result = baseMapper.selectVoPage(pageQuery.build(), lqw); |
| | | return TableDataInfo.build(result); |
| | | } |
| | | |
| | | /** |
| | | * èªå®ä¹å页æ¥è¯¢ |
| | | */ |
| | | @Override |
| | | public TableDataInfo<TestDemoVo> customPageList(TestDemoBo bo, PageQuery pageQuery) { |
| | | LambdaQueryWrapper<TestDemo> lqw = buildQueryWrapper(bo); |
| | | Page<TestDemoVo> result = baseMapper.customPageList(pageQuery.build(), lqw); |
| | | return TableDataInfo.build(result); |
| | | } |
| | | |
| | | @Override |
| | | public List<TestDemoVo> queryList(TestDemoBo bo) { |
| | | return baseMapper.selectVoList(buildQueryWrapper(bo)); |
| | | } |
| | | |
| | | private LambdaQueryWrapper<TestDemo> buildQueryWrapper(TestDemoBo bo) { |
| | | Map<String, Object> params = bo.getParams(); |
| | | LambdaQueryWrapper<TestDemo> lqw = Wrappers.lambdaQuery(); |
| | | lqw.like(StringUtils.isNotBlank(bo.getTestKey()), TestDemo::getTestKey, bo.getTestKey()); |
| | | lqw.eq(StringUtils.isNotBlank(bo.getValue()), TestDemo::getValue, bo.getValue()); |
| | | lqw.between(params.get("beginCreateTime") != null && params.get("endCreateTime") != null, |
| | | TestDemo::getCreateTime, params.get("beginCreateTime"), params.get("endCreateTime")); |
| | | lqw.orderByAsc(TestDemo::getId); |
| | | return lqw; |
| | | } |
| | | |
| | | @Override |
| | | public Boolean insertByBo(TestDemoBo bo) { |
| | | TestDemo add = BeanUtil.toBean(bo, TestDemo.class); |
| | | validEntityBeforeSave(add); |
| | | boolean flag = baseMapper.insert(add) > 0; |
| | | if (flag) { |
| | | bo.setId(add.getId()); |
| | | } |
| | | return flag; |
| | | } |
| | | |
| | | @Override |
| | | public Boolean updateByBo(TestDemoBo bo) { |
| | | TestDemo update = BeanUtil.toBean(bo, TestDemo.class); |
| | | validEntityBeforeSave(update); |
| | | return baseMapper.updateById(update) > 0; |
| | | } |
| | | |
| | | /** |
| | | * ä¿ååçæ°æ®æ ¡éª |
| | | * |
| | | * @param entity å®ä½ç±»æ°æ® |
| | | */ |
| | | private void validEntityBeforeSave(TestDemo entity) { |
| | | //TODO åä¸äºæ°æ®æ ¡éª,å¦å¯ä¸çº¦æ |
| | | } |
| | | |
| | | @Override |
| | | public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) { |
| | | if (isValid) { |
| | | //TODO åä¸äºä¸å¡ä¸çæ ¡éª,夿æ¯å¦éè¦æ ¡éª |
| | | } |
| | | return baseMapper.deleteBatchIds(ids) > 0; |
| | | } |
| | | |
| | | @Override |
| | | public Boolean saveBatch(List<TestDemo> list) { |
| | | return baseMapper.insertBatch(list); |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.demo.service.impl; |
| | | |
| | | import cn.hutool.core.bean.BeanUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
| | | import org.dromara.common.core.utils.StringUtils; |
| | | import org.dromara.demo.domain.TestTree; |
| | | import org.dromara.demo.domain.bo.TestTreeBo; |
| | | import org.dromara.demo.domain.vo.TestTreeVo; |
| | | import org.dromara.demo.mapper.TestTreeMapper; |
| | | import org.dromara.demo.service.ITestTreeService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * æµè¯æ 表Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author Lion Li |
| | | * @date 2021-07-26 |
| | | */ |
| | | // @DS("slave") // 忢ä»åºæ¥è¯¢ |
| | | @RequiredArgsConstructor |
| | | @Service |
| | | public class TestTreeServiceImpl implements ITestTreeService { |
| | | |
| | | private final TestTreeMapper baseMapper; |
| | | |
| | | @Override |
| | | public TestTreeVo queryById(Long id) { |
| | | return baseMapper.selectVoById(id); |
| | | } |
| | | |
| | | // @DS("slave") // 忢ä»åºæ¥è¯¢ |
| | | @Override |
| | | public List<TestTreeVo> queryList(TestTreeBo bo) { |
| | | LambdaQueryWrapper<TestTree> lqw = buildQueryWrapper(bo); |
| | | return baseMapper.selectVoList(lqw); |
| | | } |
| | | |
| | | private LambdaQueryWrapper<TestTree> buildQueryWrapper(TestTreeBo bo) { |
| | | Map<String, Object> params = bo.getParams(); |
| | | LambdaQueryWrapper<TestTree> lqw = Wrappers.lambdaQuery(); |
| | | lqw.like(StringUtils.isNotBlank(bo.getTreeName()), TestTree::getTreeName, bo.getTreeName()); |
| | | lqw.between(params.get("beginCreateTime") != null && params.get("endCreateTime") != null, |
| | | TestTree::getCreateTime, params.get("beginCreateTime"), params.get("endCreateTime")); |
| | | lqw.orderByAsc(TestTree::getId); |
| | | return lqw; |
| | | } |
| | | |
| | | @Override |
| | | public Boolean insertByBo(TestTreeBo bo) { |
| | | TestTree add = BeanUtil.toBean(bo, TestTree.class); |
| | | validEntityBeforeSave(add); |
| | | boolean flag = baseMapper.insert(add) > 0; |
| | | if (flag) { |
| | | bo.setId(add.getId()); |
| | | } |
| | | return flag; |
| | | } |
| | | |
| | | @Override |
| | | public Boolean updateByBo(TestTreeBo bo) { |
| | | TestTree update = BeanUtil.toBean(bo, TestTree.class); |
| | | validEntityBeforeSave(update); |
| | | return baseMapper.updateById(update) > 0; |
| | | } |
| | | |
| | | /** |
| | | * ä¿ååçæ°æ®æ ¡éª |
| | | * |
| | | * @param entity å®ä½ç±»æ°æ® |
| | | */ |
| | | private void validEntityBeforeSave(TestTree entity) { |
| | | //TODO åä¸äºæ°æ®æ ¡éª,å¦å¯ä¸çº¦æ |
| | | } |
| | | |
| | | @Override |
| | | public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) { |
| | | if (isValid) { |
| | | //TODO åä¸äºä¸å¡ä¸çæ ¡éª,夿æ¯å¦éè¦æ ¡éª |
| | | } |
| | | return baseMapper.deleteBatchIds(ids) > 0; |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.demo.service.impl; |
New file |
| | |
| | | package org.dromara.demo.service; |
New file |
| | |
| | | # Tomcat |
| | | server: |
| | | port: 9401 |
| | | |
| | | # Spring |
| | | spring: |
| | | application: |
| | | # åºç¨åç§° |
| | | name: ruoyi-demo |
| | | profiles: |
| | | # ç¯å¢é
ç½® |
| | | active: @profiles.active@ |
| | | |
| | | --- # nacos é
ç½® |
| | | spring: |
| | | cloud: |
| | | nacos: |
| | | # nacos æå¡å°å |
| | | server-addr: @nacos.server@ |
| | | discovery: |
| | | # 注åç» |
| | | group: @nacos.discovery.group@ |
| | | namespace: ${spring.profiles.active} |
| | | config: |
| | | # é
ç½®ç» |
| | | group: @nacos.config.group@ |
| | | namespace: ${spring.profiles.active} |
| | | config: |
| | | import: |
| | | - optional:nacos:application-common.yml |
| | | - optional:nacos:ruoyi-resource.yml |
| | | - optional:nacos:datasource.yml |
| | | |
| | | --- # æ°æ®æºè®¾ç½® éå¨ system æ°æ®æºä¸ æ§è¡ test.sql æä»¶ |
| | | spring: |
| | | datasource: |
| | | dynamic: |
| | | seata: false |
| | | # 设置é»è®¤çæ°æ®æºæè
æ°æ®æºç»,é»è®¤å¼å³ä¸º master |
| | | primary: master |
| | | datasource: |
| | | # ä¸»åºæ°æ®æº |
| | | master: |
| | | type: ${spring.datasource.type} |
| | | driver-class-name: com.mysql.cj.jdbc.Driver |
| | | url: ${datasource.system-master.url} |
| | | username: ${datasource.system-master.username} |
| | | password: ${datasource.system-master.password} |
| | | sharding: |
| | | lazy: true |
| | | type: ${spring.datasource.type} |
| | | driver-class-name: com.mysql.cj.jdbc.Driver |
| | | # shardingproxy æå¡çipå°å |
| | | url: jdbc:mysql://127.0.0.1:3307/data-center_db?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&tinyInt1isBit=false&allowMultiQueries=true&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true |
| | | username: root |
| | | password: root |
| | | # oracle: |
| | | # type: ${spring.datasource.type} |
| | | # driverClassName: oracle.jdbc.OracleDriver |
| | | # url: ${datasource.system-oracle.url} |
| | | # username: ${datasource.system-oracle.username} |
| | | # password: ${datasource.system-oracle.password} |
| | | # hikari: |
| | | # connectionTestQuery: SELECT 1 FROM DUAL |
| | | # postgres: |
| | | # type: ${spring.datasource.type} |
| | | # driverClassName: org.postgresql.Driver |
| | | # url: ${datasource.system-postgres.url} |
| | | # username: ${datasource.system-postgres.username} |
| | | # password: ${datasource.system-postgres.password} |
| | | |
| | | --- # elasticsearch åè½é
ç½® |
| | | # ææ¡£å°å: https://www.easy-es.cn/ |
| | | # æ´æ¹å
åéè¦å» EasyEsConfiguration ä¿®æ¹å
æ«æ(åç»çæ¬æ¯æé
ç½®æä»¶è¯»å) |
| | | easy-es: |
| | | # æ¯å¦å¼å¯EEèªå¨é
ç½® |
| | | enable: false |
| | | # esè¿æ¥å°å+ç«¯å£ æ ¼å¼å¿
须为ip:port,妿æ¯é群åå¯ç¨éå·éå¼ |
| | | address : localhost:9200 |
| | | # é»è®¤ä¸ºhttp |
| | | schema: http |
| | | # 注æES建议使ç¨è´¦å·è®¤è¯ ä¸ä½¿ç¨ä¼æ¥è¦åæ¥å¿ |
| | | #妿æ è´¦å·å¯ç åå¯ä¸é
ç½®æ¤è¡ |
| | | #username: |
| | | #妿æ è´¦å·å¯ç åå¯ä¸é
ç½®æ¤è¡ |
| | | #password: |
| | | # å¿è·³çç¥æ¶é´ åä½:ms |
| | | keep-alive-millis: 18000 |
| | | # è¿æ¥è¶
æ¶æ¶é´ åä½:ms |
| | | connectTimeout: 5000 |
| | | # éä¿¡è¶
æ¶æ¶é´ åä½:ms |
| | | socketTimeout: 5000 |
| | | # è¿æ¥è¯·æ±è¶
æ¶æ¶é´ åä½:ms |
| | | connectionRequestTimeout: 5000 |
| | | # æå¤§è¿æ¥æ° åä½:个 |
| | | maxConnTotal: 100 |
| | | # æå¤§è¿æ¥è·¯ç±æ° åä½:个 |
| | | maxConnPerRoute: 100 |
| | | global-config: |
| | | # å¼å¯æ§å¶å°æå°éè¿æ¬æ¡æ¶çæçDSLè¯å¥,é»è®¤ä¸ºå¼å¯,æµè¯ç¨³å®åçç产ç¯å¢å»ºè®®å
³é,以æåå°éæ§è½ |
| | | print-dsl: true |
| | | # 弿¥å¤çç´¢å¼æ¯å¦é»å¡ä¸»çº¿ç¨ é»è®¤é»å¡ æ°æ®éè¿å¤§æ¶è°æ´ä¸ºéé»å¡å¼æ¥è¿è¡ 项ç®å¯å¨æ´å¿« |
| | | asyncProcessIndexBlocking: true |
| | | db-config: |
| | | # æ¯å¦å¼å¯ä¸å线转驼峰 é»è®¤ä¸ºfalse |
| | | map-underscore-to-camel-case: true |
| | | # idçæçç¥ customize为èªå®ä¹,idå¼ç±ç¨æ·çæ,æ¯å¦åMySQLä¸çæ°æ®id,å¦ç¼ºçæ¤é¡¹é
ç½®,åidé»è®¤çç¥ä¸ºesèªå¨çæ |
| | | id-type: customize |
| | | # åæ®µæ´æ°çç¥ é»è®¤ä¸ºnot_null |
| | | field-strategy: not_null |
| | | # é»è®¤å¼å¯,æ¥è¯¢è¥æå®äºsizeè¶
è¿1wæ¡æ¶ä¹ä¼èªå¨å¼å¯,å¼å¯åæ¥è¯¢ææå¹é
æ°æ®,è¥ä¸å¼å¯,ä¼å¯¼è´æ æ³è·åæ°æ®æ»æ¡æ°,å
¶å®åè½ä¸åå½±å. |
| | | enable-track-total-hits: true |
| | | # æ°æ®å·æ°çç¥,é»è®¤ä¸ºä¸å·æ° |
| | | refresh-policy: immediate |
New file |
| | |
| | | Spring Boot Version: ${spring-boot.version} |
| | | Spring Application Name: ${spring.application.name} |
| | | _ _ |
| | | (_) | | |
| | | _ __ _ _ ___ _ _ _ ______ __| | ___ _ __ ___ ___ |
| | | | '__| | | |/ _ \| | | | |______/ _` |/ _ \ '_ ` _ \ / _ \ |
| | | | | | |_| | (_) | |_| | | | (_| | __/ | | | | | (_) | |
| | | |_| \__,_|\___/ \__, |_| \__,_|\___|_| |_| |_|\___/ |
| | | __/ | |
| | | |___/ |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <configuration scan="true" scanPeriod="60 seconds" debug="false"> |
| | | <!-- æ¥å¿åæ¾è·¯å¾ --> |
| | | <property name="log.path" value="logs/${project.artifactId}" /> |
| | | <!-- æ¥å¿è¾åºæ ¼å¼ --> |
| | | <property name="console.log.pattern" |
| | | value="%red(%d{yyyy-MM-dd HH:mm:ss}) %green([%thread]) %highlight(%-5level) %boldMagenta(%logger{36}%n) - %msg%n"/> |
| | | |
| | | <!-- æ§å¶å°è¾åº --> |
| | | <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> |
| | | <encoder> |
| | | <pattern>${console.log.pattern}</pattern> |
| | | <charset>utf-8</charset> |
| | | </encoder> |
| | | </appender> |
| | | |
| | | <include resource="logback-common.xml" /> |
| | | |
| | | <!--ç³»ç»æä½æ¥å¿--> |
| | | <root level="info"> |
| | | <appender-ref ref="console" /> |
| | | </root> |
| | | </configuration> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="org.dromara.demo.mapper.ShardingOrderItemMapper"> |
| | | |
| | | </mapper> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="org.dromara.demo.mapper.ShardingOrderMapper"> |
| | | |
| | | </mapper> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="org.dromara.demo.mapper.TestDemoMapper"> |
| | | |
| | | <resultMap type="org.dromara.demo.domain.TestDemo" id="TestDemoResult"> |
| | | <result property="id" column="id"/> |
| | | <result property="deptId" column="dept_id"/> |
| | | <result property="userId" column="user_id"/> |
| | | <result property="orderNum" column="order_num"/> |
| | | <result property="testKey" column="test_key"/> |
| | | <result property="value" column="value"/> |
| | | <result property="version" column="version"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | </resultMap> |
| | | <select id="customPageList" resultType="org.dromara.demo.domain.vo.TestDemoVo"> |
| | | SELECT * FROM test_demo ${ew.customSqlSegment} |
| | | </select> |
| | | |
| | | |
| | | </mapper> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="org.dromara.demo.mapper.TestTreeMapper"> |
| | | |
| | | <resultMap type="org.dromara.demo.domain.TestTree" id="TestTreeResult"> |
| | | <result property="id" column="id"/> |
| | | <result property="parentId" column="parent_id"/> |
| | | <result property="deptId" column="dept_id"/> |
| | | <result property="userId" column="user_id"/> |
| | | <result property="treeName" column="tree_name"/> |
| | | <result property="version" column="version"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | </resultMap> |
| | | |
| | | |
| | | </mapper> |
New file |
| | |
| | | javaå
ä½¿ç¨ `.` åå² resource ç®å½ä½¿ç¨ `/` åå² |
| | | <br> |
| | | æ¤æä»¶ç®ç 鲿¢æä»¶å¤¹ç²è¿æ¾ä¸å° `xml` æä»¶ |
New file |
| | |
| | | # p6spy æ§è½åææä»¶é
ç½®æä»¶ |
| | | modulelist=com.baomidou.mybatisplus.extension.p6spy.MybatisPlusLogFactory,com.p6spy.engine.outage.P6OutageFactory |
| | | # èªå®ä¹æ¥å¿æå° |
| | | logMessageFormat=com.baomidou.mybatisplus.extension.p6spy.P6SpyLogger |
| | | #æ¥å¿è¾åºå°æ§å¶å° |
| | | appender=com.baomidou.mybatisplus.extension.p6spy.StdoutLogger |
| | | # ä½¿ç¨æ¥å¿ç³»ç»è®°å½ sql |
| | | #appender=com.p6spy.engine.spy.appender.Slf4JLogger |
| | | # 设置 p6spy driver 代ç |
| | | #deregisterdrivers=true |
| | | # åæ¶JDBC URLåç¼ |
| | | useprefix=true |
| | | # é
ç½®è®°å½ Log ä¾å¤,å¯å»æçç»æéæerror,info,batch,debug,statement,commit,rollback,result,resultset. |
| | | excludecategories=info,debug,result,commit,resultset |
| | | # æ¥ææ ¼å¼ |
| | | dateformat=yyyy-MM-dd HH:mm:ss |
| | | # SQLè¯å¥æå°æ¶é´æ ¼å¼ |
| | | databaseDialectTimestampFormat=yyyy-MM-dd HH:mm:ss |
| | | # å®é
驱å¨å¯å¤ä¸ª |
| | | #driverlist=org.h2.Driver |
| | | # æ¯å¦å¼å¯æ
¢SQLè®°å½ |
| | | outagedetection=true |
| | | # æ
¢SQLè®°å½æ å 2 ç§ |
| | | outagedetectioninterval=2 |
| | | # æ¯å¦è¿æ»¤ Log |
| | | filter=true |
| | | # è¿æ»¤ Log æ¶ææé¤ç sql å
³é®åï¼ä»¥éå·åé |
| | | exclude=SELECT 1 |
New file |
| | |
| | | package org.dromara.demo; |
| | | |
| | | import org.junit.jupiter.api.Assertions; |
| | | import org.junit.jupiter.api.DisplayName; |
| | | import org.junit.jupiter.api.Test; |
| | | |
| | | /** |
| | | * æè¨åå
æµè¯æ¡ä¾ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @DisplayName("æè¨åå
æµè¯æ¡ä¾") |
| | | public class AssertUnitTest { |
| | | |
| | | @DisplayName("æµè¯ assertEquals æ¹æ³") |
| | | @Test |
| | | public void testAssertEquals() { |
| | | Assertions.assertEquals("666", new String("666")); |
| | | Assertions.assertNotEquals("666", new String("666")); |
| | | } |
| | | |
| | | @DisplayName("æµè¯ assertSame æ¹æ³") |
| | | @Test |
| | | public void testAssertSame() { |
| | | Object obj = new Object(); |
| | | Object obj1 = obj; |
| | | Assertions.assertSame(obj, obj1); |
| | | Assertions.assertNotSame(obj, obj1); |
| | | } |
| | | |
| | | @DisplayName("æµè¯ assertTrue æ¹æ³") |
| | | @Test |
| | | public void testAssertTrue() { |
| | | Assertions.assertTrue(true); |
| | | Assertions.assertFalse(true); |
| | | } |
| | | |
| | | @DisplayName("æµè¯ assertNull æ¹æ³") |
| | | @Test |
| | | public void testAssertNull() { |
| | | Assertions.assertNull(null); |
| | | Assertions.assertNotNull(null); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo; |
| | | |
| | | import org.junit.jupiter.api.*; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.boot.test.context.SpringBootTest; |
| | | |
| | | import java.util.concurrent.TimeUnit; |
| | | |
| | | /** |
| | | * åå
æµè¯æ¡ä¾ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @SpringBootTest // æ¤æ³¨è§£åªè½å¨ springboot 主å
ä¸ä½¿ç¨ éå
å« main æ¹æ³ä¸ yml é
ç½®æä»¶ |
| | | @DisplayName("åå
æµè¯æ¡ä¾") |
| | | public class DemoUnitTest { |
| | | |
| | | @Value("${spring.application.name}") |
| | | private String appName; |
| | | |
| | | @DisplayName("æµè¯ @SpringBootTest @Test @DisplayName 注解") |
| | | @Test |
| | | public void testTest() { |
| | | System.out.println(appName); |
| | | } |
| | | |
| | | @Disabled |
| | | @DisplayName("æµè¯ @Disabled 注解") |
| | | @Test |
| | | public void testDisabled() { |
| | | System.out.println(appName); |
| | | } |
| | | |
| | | @Timeout(value = 2L, unit = TimeUnit.SECONDS) |
| | | @DisplayName("æµè¯ @Timeout 注解") |
| | | @Test |
| | | public void testTimeout() throws InterruptedException { |
| | | Thread.sleep(3000); |
| | | System.out.println(appName); |
| | | } |
| | | |
| | | |
| | | @DisplayName("æµè¯ @RepeatedTest 注解") |
| | | @RepeatedTest(3) |
| | | public void testRepeatedTest() { |
| | | System.out.println(666); |
| | | } |
| | | |
| | | @BeforeAll |
| | | public static void testBeforeAll() { |
| | | System.out.println("@BeforeAll =================="); |
| | | } |
| | | |
| | | @BeforeEach |
| | | public void testBeforeEach() { |
| | | System.out.println("@BeforeEach =================="); |
| | | } |
| | | |
| | | @AfterEach |
| | | public void testAfterEach() { |
| | | System.out.println("@AfterEach =================="); |
| | | } |
| | | |
| | | @AfterAll |
| | | public static void testAfterAll() { |
| | | System.out.println("@AfterAll =================="); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo; |
| | | |
| | | import org.dromara.common.core.enums.UserType; |
| | | import org.junit.jupiter.api.AfterEach; |
| | | import org.junit.jupiter.api.BeforeEach; |
| | | import org.junit.jupiter.api.DisplayName; |
| | | import org.junit.jupiter.params.ParameterizedTest; |
| | | import org.junit.jupiter.params.provider.EnumSource; |
| | | import org.junit.jupiter.params.provider.MethodSource; |
| | | import org.junit.jupiter.params.provider.NullSource; |
| | | import org.junit.jupiter.params.provider.ValueSource; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.stream.Stream; |
| | | |
| | | /** |
| | | * 另忰åå
æµè¯æ¡ä¾ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @DisplayName("另忰åå
æµè¯æ¡ä¾") |
| | | public class ParamUnitTest { |
| | | |
| | | @DisplayName("æµè¯ @ValueSource 注解") |
| | | @ParameterizedTest |
| | | @ValueSource(strings = {"t1", "t2", "t3"}) |
| | | public void testValueSource(String str) { |
| | | System.out.println(str); |
| | | } |
| | | |
| | | @DisplayName("æµè¯ @NullSource 注解") |
| | | @ParameterizedTest |
| | | @NullSource |
| | | public void testNullSource(String str) { |
| | | System.out.println(str); |
| | | } |
| | | |
| | | @DisplayName("æµè¯ @EnumSource 注解") |
| | | @ParameterizedTest |
| | | @EnumSource(UserType.class) |
| | | public void testEnumSource(UserType type) { |
| | | System.out.println(type.getUserType()); |
| | | } |
| | | |
| | | @DisplayName("æµè¯ @MethodSource 注解") |
| | | @ParameterizedTest |
| | | @MethodSource("getParam") |
| | | public void testMethodSource(String str) { |
| | | System.out.println(str); |
| | | } |
| | | |
| | | public static Stream<String> getParam() { |
| | | List<String> list = new ArrayList<>(); |
| | | list.add("t1"); |
| | | list.add("t2"); |
| | | list.add("t3"); |
| | | return list.stream(); |
| | | } |
| | | |
| | | @BeforeEach |
| | | public void testBeforeEach() { |
| | | System.out.println("@BeforeEach =================="); |
| | | } |
| | | |
| | | @AfterEach |
| | | public void testAfterEach() { |
| | | System.out.println("@AfterEach =================="); |
| | | } |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | |
| | | import org.dromara.demo.domain.ShardingOrder; |
| | | import org.dromara.demo.mapper.ShardingOrderMapper; |
| | | import org.junit.jupiter.api.Test; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.boot.test.context.SpringBootTest; |
| | | |
| | | @SpringBootTest |
| | | class TOrderTest { |
| | | |
| | | @Autowired |
| | | ShardingOrderMapper torderMapper; |
| | | |
| | | |
| | | @Test |
| | | void find() { |
| | | //Order order = orderMapper.selectById(1640990702722723841L); |
| | | } |
| | | |
| | | @Test |
| | | void page() { |
| | | Page<ShardingOrder> page = new Page<>(); |
| | | page.setCurrent(3L); |
| | | QueryWrapper<ShardingOrder> queryWrapper = new QueryWrapper<>(); |
| | | queryWrapper.orderByAsc("order_id"); |
| | | torderMapper.selectPage(page,queryWrapper); |
| | | System.out.println(page.getTotal()); |
| | | for(ShardingOrder order : page.getRecords()){ |
| | | System.out.print(order.getTotalMoney()+" "); |
| | | } |
| | | } |
| | | |
| | | @Test |
| | | void insert() { |
| | | for(Long i = 1L; i <= 100L; i++){ |
| | | ShardingOrder torder = new ShardingOrder(); |
| | | torder.setUserId(i); |
| | | torder.setTotalMoney(100 + Integer.parseInt(i+"")); |
| | | torderMapper.insert(torder); |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.demo; |
| | | |
| | | import org.junit.jupiter.api.*; |
| | | import org.springframework.boot.test.context.SpringBootTest; |
| | | |
| | | /** |
| | | * æ ç¾åå
æµè¯æ¡ä¾ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @SpringBootTest |
| | | @DisplayName("æ ç¾åå
æµè¯æ¡ä¾") |
| | | public class TagUnitTest { |
| | | |
| | | @Tag("dev") |
| | | @DisplayName("æµè¯ @Tag dev") |
| | | @Test |
| | | public void testTagDev() { |
| | | System.out.println("dev"); |
| | | } |
| | | |
| | | @Tag("prod") |
| | | @DisplayName("æµè¯ @Tag prod") |
| | | @Test |
| | | public void testTagProd() { |
| | | System.out.println("prod"); |
| | | } |
| | | |
| | | @Tag("local") |
| | | @DisplayName("æµè¯ @Tag local") |
| | | @Test |
| | | public void testTagLocal() { |
| | | System.out.println("local"); |
| | | } |
| | | |
| | | @Tag("exclude") |
| | | @DisplayName("æµè¯ @Tag exclude") |
| | | @Test |
| | | public void testTagExclude() { |
| | | System.out.println("exclude"); |
| | | } |
| | | |
| | | @BeforeEach |
| | | public void testBeforeEach() { |
| | | System.out.println("@BeforeEach =================="); |
| | | } |
| | | |
| | | @AfterEach |
| | | public void testAfterEach() { |
| | | System.out.println("@AfterEach =================="); |
| | | } |
| | | |
| | | |
| | | } |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| | | xmlns="http://maven.apache.org/POM/4.0.0" |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | <parent> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-example</artifactId> |
| | | <version>${revision}</version> |
| | | </parent> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | |
| | | <artifactId>ruoyi-stream-mq</artifactId> |
| | | |
| | | <description> |
| | | ruoyi-stream-mq SpringCloud-Stream-MQ æ¡ä¾é¡¹ç® |
| | | </description> |
| | | |
| | | <dependencies> |
| | | |
| | | <!-- SpringCloud Alibaba Nacos --> |
| | | <dependency> |
| | | <groupId>com.alibaba.cloud</groupId> |
| | | <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
| | | </dependency> |
| | | |
| | | <!-- SpringCloud Alibaba Nacos Config --> |
| | | <dependency> |
| | | <groupId>com.alibaba.cloud</groupId> |
| | | <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.springframework.cloud</groupId> |
| | | <artifactId>spring-cloud-starter-stream-rabbit</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>com.alibaba.cloud</groupId> |
| | | <artifactId>spring-cloud-starter-stream-rocketmq</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.springframework.cloud</groupId> |
| | | <artifactId>spring-cloud-starter-stream-kafka</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-sentinel</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-security</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-doc</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-web</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-tenant</artifactId> |
| | | <exclusions> |
| | | <exclusion> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-common-mybatis</artifactId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <finalName>${project.artifactId}</finalName> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <version>${spring-boot.version}</version> |
| | | <executions> |
| | | <execution> |
| | | <goals> |
| | | <goal>repackage</goal> |
| | | </goals> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |
| | | </project> |
New file |
| | |
| | | package org.dromara.stream; |
| | | |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.boot.context.metrics.buffering.BufferingApplicationStartup; |
| | | |
| | | /** |
| | | * SpringCloud-Stream-MQ æ¡ä¾é¡¹ç® |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @SpringBootApplication |
| | | public class RuoYiStreamMqApplication { |
| | | |
| | | public static void main(String[] args) { |
| | | SpringApplication application = new SpringApplication(RuoYiStreamMqApplication.class); |
| | | application.setApplicationStartup(new BufferingApplicationStartup(2048)); |
| | | application.run(args); |
| | | System.out.println("(â¥â â¿â )ï¾ï¾ MQæ¡ä¾æ¨¡åå¯å¨æå á(´ڡ`á)ï¾ "); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.stream.controller; |
| | | |
| | | import org.dromara.common.core.domain.R; |
| | | import org.dromara.stream.mq.producer.DelayProducer; |
| | | import org.dromara.stream.mq.producer.LogStreamProducer; |
| | | import org.dromara.stream.mq.producer.TestStreamProducer; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | /** |
| | | * æµè¯mq |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @AllArgsConstructor |
| | | @RequestMapping("/test-mq") |
| | | public class TestMqController { |
| | | |
| | | private final DelayProducer delayProducer; |
| | | private final TestStreamProducer testStreamProducer; |
| | | private final LogStreamProducer logStreamProducer; |
| | | |
| | | /** |
| | | * åéæ¶æ¯Rabbitmq |
| | | * |
| | | * @param msg æ¶æ¯å
容 |
| | | * @param delay å»¶æ¶æ¶é´ |
| | | */ |
| | | @GetMapping("/sendRabbitmq") |
| | | public R<Void> sendRabbitmq(String msg, Long delay) { |
| | | delayProducer.sendMsg(msg, delay); |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * åéæ¶æ¯Rocketmq |
| | | * |
| | | * @param msg æ¶æ¯å
容 |
| | | */ |
| | | @GetMapping("/sendRocketmq") |
| | | public R<Void> sendRocketmq(String msg) { |
| | | testStreamProducer.streamTestMsg(msg); |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * åéæ¶æ¯Kafka |
| | | * |
| | | * @param msg æ¶æ¯å
容 |
| | | */ |
| | | @GetMapping("/sendKafka") |
| | | public R<Void> sendKafka(String msg) { |
| | | logStreamProducer.streamLogMsg(msg); |
| | | return R.ok(); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.stream.mq; |
| | | |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | /** |
| | | * @author Lion Li |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | public class TestMessaging { |
| | | /** |
| | | * æ¶æ¯id |
| | | */ |
| | | private String msgId; |
| | | /** |
| | | * æ¶æ¯å
容 |
| | | */ |
| | | private String msgText; |
| | | } |
New file |
| | |
| | | package org.dromara.stream.mq.consumer; |
| | | |
| | | |
| | | import org.dromara.stream.mq.TestMessaging; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.function.Consumer; |
| | | |
| | | @Slf4j |
| | | @Component |
| | | public class DelayConsumer { |
| | | |
| | | @Bean |
| | | Consumer<TestMessaging> delay() { |
| | | log.info("åå§å订é
"); |
| | | return obj -> { |
| | | log.info("æ¶æ¯æ¥æ¶æåï¼" + obj); |
| | | }; |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.stream.mq.consumer; |
| | | |
| | | import org.dromara.stream.mq.TestMessaging; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.function.Consumer; |
| | | |
| | | @Slf4j |
| | | @Component |
| | | public class LogStreamConsumer { |
| | | |
| | | @Bean |
| | | Consumer<TestMessaging> log() { |
| | | log.info("åå§å订é
"); |
| | | return msg -> { |
| | | log.info("éè¿streamæ¶è´¹å°æ¶æ¯ => {}", msg.toString()); |
| | | }; |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.stream.mq.consumer; |
| | | |
| | | import org.dromara.stream.mq.TestMessaging; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.function.Consumer; |
| | | |
| | | @Slf4j |
| | | @Component |
| | | public class TestStreamConsumer { |
| | | |
| | | @Bean |
| | | Consumer<TestMessaging> demo() { |
| | | log.info("åå§å订é
"); |
| | | return msg -> { |
| | | log.info("éè¿streamæ¶è´¹å°æ¶æ¯ => {}", msg.toString()); |
| | | }; |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package org.dromara.stream.mq.producer; |
| | | |
| | | import org.dromara.stream.mq.TestMessaging; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.cloud.stream.function.StreamBridge; |
| | | import org.springframework.messaging.Message; |
| | | import org.springframework.messaging.support.MessageBuilder; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.UUID; |
| | | |
| | | @Component |
| | | public class DelayProducer { |
| | | |
| | | @Autowired |
| | | private StreamBridge streamBridge; |
| | | |
| | | public void sendMsg(String msg, Long delay) { |
| | | // æå»ºæ¶æ¯å¯¹è±¡ |
| | | TestMessaging testMessaging = new TestMessaging() |
| | | .setMsgId(UUID.randomUUID().toString()) |
| | | .setMsgText(msg); |
| | | Message<TestMessaging> message = MessageBuilder.withPayload(testMessaging) |
| | | .setHeader("x-delay", delay).build(); |
| | | streamBridge.send("delay-out-0", message); |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.stream.mq.producer; |
| | | |
| | | import org.dromara.stream.mq.TestMessaging; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.cloud.stream.function.StreamBridge; |
| | | import org.springframework.messaging.support.MessageBuilder; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.UUID; |
| | | |
| | | @Component |
| | | public class LogStreamProducer { |
| | | |
| | | @Autowired |
| | | private StreamBridge streamBridge; |
| | | |
| | | public void streamLogMsg(String msg) { |
| | | // æå»ºæ¶æ¯å¯¹è±¡ |
| | | TestMessaging testMessaging = new TestMessaging() |
| | | .setMsgId(UUID.randomUUID().toString()) |
| | | .setMsgText(msg); |
| | | streamBridge.send("log-out-0", MessageBuilder.withPayload(testMessaging).build()); |
| | | } |
| | | } |
New file |
| | |
| | | package org.dromara.stream.mq.producer; |
| | | |
| | | import org.dromara.stream.mq.TestMessaging; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.cloud.stream.function.StreamBridge; |
| | | import org.springframework.messaging.support.MessageBuilder; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.UUID; |
| | | |
| | | @Component |
| | | public class TestStreamProducer { |
| | | |
| | | @Autowired |
| | | private StreamBridge streamBridge; |
| | | |
| | | public void streamTestMsg(String msg) { |
| | | // æå»ºæ¶æ¯å¯¹è±¡ |
| | | TestMessaging testMessaging = new TestMessaging() |
| | | .setMsgId(UUID.randomUUID().toString()) |
| | | .setMsgText(msg); |
| | | streamBridge.send("demo-out-0", MessageBuilder.withPayload(testMessaging).build()); |
| | | } |
| | | } |
New file |
| | |
| | | server: |
| | | port: 9402 |
| | | |
| | | # Spring |
| | | spring: |
| | | application: |
| | | # åºç¨åç§° |
| | | name: ruoyi-stream-mq |
| | | profiles: |
| | | # ç¯å¢é
ç½® |
| | | active: @profiles.active@ |
| | | cloud: |
| | | stream: |
| | | function: |
| | | # éç¹é
ç½® ä¸ binding å䏿¶è´¹è
å¯¹åº |
| | | definition: delay;demo;log |
| | | |
| | | --- # rabbitmq é
ç½® |
| | | spring: |
| | | rabbitmq: |
| | | host: localhost |
| | | port: 5672 |
| | | username: root |
| | | password: root |
| | | cloud: |
| | | stream: |
| | | rabbit: |
| | | bindings: |
| | | delay-in-0: |
| | | consumer: |
| | | delayedExchange: true |
| | | delay-out-0: |
| | | producer: |
| | | delayedExchange: true |
| | | bindings: |
| | | delay-in-0: |
| | | destination: delay.exchange.cloud |
| | | content-type: application/json |
| | | group: delay-group |
| | | binder: rabbit |
| | | delay-out-0: |
| | | destination: delay.exchange.cloud |
| | | content-type: application/json |
| | | group: delay-group |
| | | binder: rabbit |
| | | |
| | | --- # rocketmq é
ç½® |
| | | spring: |
| | | cloud: |
| | | stream: |
| | | rocketmq: |
| | | binder: |
| | | # rocketmq å°å |
| | | name-server: localhost:9876 |
| | | bindings: |
| | | demo-out-0: |
| | | producer: |
| | | # å¿
é¡»å¾å |
| | | group: default |
| | | bindings: |
| | | demo-out-0: |
| | | content-type: application/json |
| | | destination: stream-test-topic |
| | | group: test-group |
| | | binder: rocketmq |
| | | demo-in-0: |
| | | content-type: application/json |
| | | destination: stream-test-topic |
| | | group: test-group |
| | | binder: rocketmq |
| | | |
| | | --- # kafka é
ç½® |
| | | spring: |
| | | cloud: |
| | | stream: |
| | | kafka: |
| | | binder: |
| | | brokers: localhost:9092 |
| | | bindings: |
| | | log-out-0: |
| | | destination: stream-log-topic |
| | | contentType: application/json |
| | | group: log_group |
| | | binder: kafka |
| | | log-in-0: |
| | | destination: stream-log-topic |
| | | contentType: application/json |
| | | group: log_group |
| | | binder: kafka |
| | | |
| | | --- # nacos é
ç½® |
| | | spring: |
| | | cloud: |
| | | nacos: |
| | | # nacos æå¡å°å |
| | | server-addr: @nacos.server@ |
| | | discovery: |
| | | # 注åç» |
| | | group: @nacos.discovery.group@ |
| | | namespace: ${spring.profiles.active} |
| | | config: |
| | | # é
ç½®ç» |
| | | group: @nacos.config.group@ |
| | | namespace: ${spring.profiles.active} |
| | | config: |
| | | import: |
| | | - optional:nacos:application-common.yml |
New file |
| | |
| | | Spring Boot Version: ${spring-boot.version} |
| | | Spring Application Name: ${spring.application.name} |
| | | _ _ |
| | | (_) | | |
| | | _ __ _ _ ___ _ _ _ ______ ___| |_ _ __ ___ __ _ _ __ ___ ______ _ __ ___ __ _ |
| | | | '__| | | |/ _ \| | | | |______/ __| __| '__/ _ \/ _` | '_ ` _ \______| '_ ` _ \ / _` | |
| | | | | | |_| | (_) | |_| | | \__ \ |_| | | __/ (_| | | | | | | | | | | | | (_| | |
| | | |_| \__,_|\___/ \__, |_| |___/\__|_| \___|\__,_|_| |_| |_| |_| |_| |_|\__, | |
| | | __/ | | | |
| | | |___/ |_| |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <configuration scan="true" scanPeriod="60 seconds" debug="false"> |
| | | <!-- æ¥å¿åæ¾è·¯å¾ --> |
| | | <property name="log.path" value="logs/${project.artifactId}" /> |
| | | <!-- æ¥å¿è¾åºæ ¼å¼ --> |
| | | <property name="console.log.pattern" |
| | | value="%red(%d{yyyy-MM-dd HH:mm:ss}) %green([%thread]) %highlight(%-5level) %boldMagenta(%logger{36}%n) - %msg%n"/> |
| | | |
| | | <!-- æ§å¶å°è¾åº --> |
| | | <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> |
| | | <encoder> |
| | | <pattern>${console.log.pattern}</pattern> |
| | | <charset>utf-8</charset> |
| | | </encoder> |
| | | </appender> |
| | | |
| | | <include resource="logback-common.xml" /> |
| | | |
| | | <!-- å¼å¯ skywalking æ¥å¿æ¶é --> |
| | | <include resource="logback-skylog.xml" /> |
| | | |
| | | <!--ç³»ç»æä½æ¥å¿--> |
| | | <root level="info"> |
| | | <appender-ref ref="console" /> |
| | | </root> |
| | | </configuration> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | <parent> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-cloud-plus</artifactId> |
| | | <version>${revision}</version> |
| | | </parent> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | |
| | | <modules> |
| | | <module>ruoyi-monitor</module> |
| | | <module>ruoyi-sentinel-dashboard</module> |
| | | <module>ruoyi-seata-server</module> |
| | | <module>ruoyi-nacos</module> |
| | | <module>ruoyi-powerjob-server</module> |
| | | </modules> |
| | | |
| | | <artifactId>ruoyi-visual</artifactId> |
| | | <packaging>pom</packaging> |
| | | |
| | | <description> |
| | | ruoyi-visualå¾å½¢åç®¡çæ¨¡å |
| | | </description> |
| | | |
| | | <dependencies> |
| | | <!-- ELK æ¥å¿æ¶é --> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.dromara</groupId>--> |
| | | <!-- <artifactId>ruoyi-common-logstash</artifactId>--> |
| | | <!-- </dependency>--> |
| | | |
| | | <!-- skywalking æ¥å¿æ¶é --> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.dromara</groupId>--> |
| | | <!-- <artifactId>ruoyi-common-skylog</artifactId>--> |
| | | <!-- </dependency>--> |
| | | |
| | | <!-- prometheus çæ§ --> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.dromara</groupId>--> |
| | | <!-- <artifactId>ruoyi-common-prometheus</artifactId>--> |
| | | <!-- </dependency>--> |
| | | </dependencies> |
| | | |
| | | </project> |
New file |
| | |
| | | #FROM findepi/graalvm:java17-native |
| | | FROM openjdk:17.0.2-oraclelinux8 |
| | | |
| | | MAINTAINER Lion Li |
| | | |
| | | RUN mkdir -p /ruoyi/nacos |
| | | |
| | | WORKDIR /ruoyi/nacos |
| | | |
| | | EXPOSE 8848 |
| | | |
| | | ENV TZ=Asia/Shanghai LANG=C.UTF-8 LC_ALL=C.UTF-8 JAVA_OPTS="-Xms512m -Xmx1024m" |
| | | |
| | | ADD ./target/ruoyi-nacos.jar ./app.jar |
| | | |
| | | ENTRYPOINT java -Djava.security.egd=file:/dev/./urandom -jar app.jar ${JAVA_OPTS} |
| | | |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ~ Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | ~ |
| | | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| | | ~ you may not use this file except in compliance with the License. |
| | | ~ You may obtain a copy of the License at |
| | | ~ |
| | | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| | | ~ |
| | | ~ Unless required by applicable law or agreed to in writing, software |
| | | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| | | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | ~ See the License for the specific language governing permissions and |
| | | ~ limitations under the License. |
| | | --> |
| | | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| | | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | <parent> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-visual</artifactId> |
| | | <version>${revision}</version> |
| | | </parent> |
| | | <artifactId>ruoyi-nacos</artifactId> |
| | | <packaging>jar</packaging> |
| | | |
| | | <properties> |
| | | <nacos.version>2.2.1</nacos.version> |
| | | <!-- éè¦ä¸ Nacos å
ç½® Boot çæ¬ä¿æä¸è´ --> |
| | | <spring-boot.version>2.7.18</spring-boot.version> |
| | | <spring-boot-admin.version>2.7.11</spring-boot-admin.version> |
| | | <nacos.lib.path>${project.basedir}/src/main/resources/lib</nacos.lib.path> |
| | | </properties> |
| | | |
| | | <dependencyManagement> |
| | | <dependencies> |
| | | <!-- SpringBoot ä¾èµé
ç½® --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-dependencies</artifactId> |
| | | <version>${spring-boot.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-all</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | </dependencies> |
| | | </dependencyManagement> |
| | | |
| | | <dependencies> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-auth</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <scope>system</scope> |
| | | <systemPath>${nacos.lib.path}/nacos-auth-${nacos.version}.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-cmdb</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <scope>system</scope> |
| | | <systemPath>${nacos.lib.path}/nacos-cmdb-${nacos.version}.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-config</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <scope>system</scope> |
| | | <systemPath>${nacos.lib.path}/nacos-config-${nacos.version}.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-consistency</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <scope>system</scope> |
| | | <systemPath>${nacos.lib.path}/nacos-consistency-${nacos.version}.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-contrl-plugin</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <scope>system</scope> |
| | | <systemPath>${nacos.lib.path}/nacos-contrl-plugin-${nacos.version}.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-core</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <scope>system</scope> |
| | | <systemPath>${nacos.lib.path}/nacos-core-${nacos.version}.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-istio</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <scope>system</scope> |
| | | <systemPath>${nacos.lib.path}/nacos-istio-${nacos.version}.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-naming</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <scope>system</scope> |
| | | <systemPath>${nacos.lib.path}/nacos-naming-${nacos.version}.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-plugin-default-impl</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <scope>system</scope> |
| | | <systemPath>${nacos.lib.path}/nacos-plugin-default-impl-${nacos.version}.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-prometheus</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <scope>system</scope> |
| | | <systemPath>${nacos.lib.path}/nacos-prometheus-${nacos.version}.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-sys</artifactId> |
| | | <version>${nacos.version}</version> |
| | | <scope>system</scope> |
| | | <systemPath>${nacos.lib.path}/nacos-sys-${nacos.version}.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-custom-environment-plugin</artifactId> |
| | | <version>${nacos.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-datasource-plugin</artifactId> |
| | | <version>${nacos.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-encryption-plugin</artifactId> |
| | | <version>${nacos.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-trace-plugin</artifactId> |
| | | <version>${nacos.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-common</artifactId> |
| | | <version>${nacos.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.nacos</groupId> |
| | | <artifactId>nacos-client</artifactId> |
| | | </dependency> |
| | | |
| | | <!-- SpringBoot Webå®¹å¨ --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-web</artifactId> |
| | | <exclusions> |
| | | <exclusion> |
| | | <artifactId>spring-boot-starter-tomcat</artifactId> |
| | | <groupId>org.springframework.boot</groupId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <artifactId>log4j-to-slf4j</artifactId> |
| | | <groupId>org.apache.logging.log4j</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <!-- web 容å¨ä½¿ç¨ undertow æ§è½æ´å¼º --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-undertow</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-jdbc</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-aop</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework.ldap</groupId> |
| | | <artifactId>spring-ldap-core</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>com.caucho</groupId> |
| | | <artifactId>hessian</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>commons-collections</groupId> |
| | | <artifactId>commons-collections</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>ch.qos.logback</groupId> |
| | | <artifactId>logback-classic</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>ch.qos.logback</groupId> |
| | | <artifactId>logback-core</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.mysql</groupId> |
| | | <artifactId>mysql-connector-j</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.apache.derby</groupId> |
| | | <artifactId>derby</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alipay.sofa</groupId> |
| | | <artifactId>jraft-core</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alipay.sofa</groupId> |
| | | <artifactId>rpc-grpc-impl</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.codehaus.jackson</groupId> |
| | | <artifactId>jackson-core-asl</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.jsonwebtoken</groupId> |
| | | <artifactId>jjwt-api</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.jsonwebtoken</groupId> |
| | | <artifactId>jjwt-impl</artifactId> |
| | | <scope>runtime</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.jsonwebtoken</groupId> |
| | | <artifactId>jjwt-jackson</artifactId> |
| | | <scope>runtime</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.google.guava</groupId> |
| | | <artifactId>guava</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.javatuples</groupId> |
| | | <artifactId>javatuples</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.google.code.gson</groupId> |
| | | <artifactId>gson</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.micrometer</groupId> |
| | | <artifactId>micrometer-registry-prometheus</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.micrometer</groupId> |
| | | <artifactId>micrometer-registry-influx</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.micrometer</groupId> |
| | | <artifactId>micrometer-registry-elastic</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-actuator</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>io.envoyproxy.controlplane</groupId> |
| | | <artifactId>api</artifactId> |
| | | <version>0.1.27</version> |
| | | </dependency> |
| | | |
| | | <!-- log --> |
| | | <!-- apache commons loggingéè¿slf4jæ¥ä»£ç --> |
| | | <dependency> |
| | | <groupId>org.slf4j</groupId> |
| | | <artifactId>jcl-over-slf4j</artifactId> |
| | | </dependency> |
| | | <!-- java.util.logging éè¿slf4jæ¥ä»£ç --> |
| | | <dependency> |
| | | <groupId>org.slf4j</groupId> |
| | | <artifactId>jul-to-slf4j</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-security</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>de.codecentric</groupId> |
| | | <artifactId>spring-boot-admin-client</artifactId> |
| | | <version>${spring-boot-admin.version}</version> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <finalName>${project.artifactId}</finalName> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <version>${spring-boot.version}</version> |
| | | <executions> |
| | | <execution> |
| | | <goals> |
| | | <goal>repackage</goal> |
| | | </goals> |
| | | </execution> |
| | | </executions> |
| | | <configuration> |
| | | <!-- ä½ç¨:é¡¹ç®ææjarçåæ¶å°æ¬å°jarå
ä¹å¼å
¥è¿å» --> |
| | | <includeSystemScope>true</includeSystemScope> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |
| | | </project> |
New file |
| | |
| | | # |
| | | # Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | # |
| | | # Licensed under the Apache License, Version 2.0 (the "License"); |
| | | # you may not use this file except in compliance with the License. |
| | | # You may obtain a copy of the License at |
| | | # |
| | | # http://www.apache.org/licenses/LICENSE-2.0 |
| | | # |
| | | # Unless required by applicable law or agreed to in writing, software |
| | | # distributed under the License is distributed on an "AS IS" BASIS, |
| | | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | # See the License for the specific language governing permissions and |
| | | # limitations under the License. |
| | | # |
| | | |
| | | #*************** Spring Boot Related Configurations ***************# |
| | | server.port=8848 |
| | | ### Default web context path: |
| | | server.servlet.contextPath=/nacos |
| | | ### Include message field |
| | | server.error.include-message=ON_PARAM |
| | | ### Default web server port: |
| | | |
| | | #*************** Network Related Configurations ***************# |
| | | ### If prefer hostname over ip for Nacos server addresses in cluster.conf: |
| | | # nacos.inetutils.prefer-hostname-over-ip=false |
| | | |
| | | ### Specify local server's IP: |
| | | # nacos.inetutils.ip-address= |
| | | |
| | | spring.application.name=ruoyi-nacos |
| | | #*************** Config Module Related Configurations ***************# |
| | | ### Deprecated configuration property, it is recommended to use `spring.sql.init.platform` replaced. |
| | | spring.sql.init.platform=mysql |
| | | nacos.plugin.datasource.log.enabled=true |
| | | |
| | | ### Count of DB: |
| | | db.num=1 |
| | | |
| | | ### Connect URL of DB: |
| | | db.url.0=jdbc:mysql://127.0.0.1:3306/ry-config?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true |
| | | db.user.0=root |
| | | db.password.0=root |
| | | |
| | | #*************** Naming Module Related Configurations ***************# |
| | | ### Data dispatch task execution period in milliseconds: |
| | | # nacos.naming.distro.taskDispatchPeriod=200 |
| | | |
| | | ### Data count of batch sync task: |
| | | # nacos.naming.distro.batchSyncKeyCount=1000 |
| | | |
| | | ### Retry delay in milliseconds if sync task failed: |
| | | # nacos.naming.distro.syncRetryDelay=5000 |
| | | |
| | | ### If enable data warmup. If set to false, the server would accept request without local data preparation: |
| | | # nacos.naming.data.warmup=true |
| | | |
| | | ### If enable the instance auto expiration, kind like of health check of instance: |
| | | # nacos.naming.expireInstance=true |
| | | |
| | | nacos.naming.empty-service.auto-clean=true |
| | | nacos.naming.empty-service.clean.initial-delay-ms=50000 |
| | | nacos.naming.empty-service.clean.period-time-ms=30000 |
| | | |
| | | |
| | | #*************** CMDB Module Related Configurations ***************# |
| | | ### The interval to dump external CMDB in seconds: |
| | | # nacos.cmdb.dumpTaskInterval=3600 |
| | | |
| | | ### The interval of polling data change event in seconds: |
| | | # nacos.cmdb.eventTaskInterval=10 |
| | | |
| | | ### The interval of loading labels in seconds: |
| | | # nacos.cmdb.labelTaskInterval=300 |
| | | |
| | | ### If turn on data loading task: |
| | | # nacos.cmdb.loadDataAtStart=false |
| | | |
| | | |
| | | #*************** Metrics Related Configurations ***************# |
| | | # æå ruoyi-monitor çæ§ |
| | | spring.boot.admin.client.url=http://127.0.0.1:9100 |
| | | spring.boot.admin.client.username=ruoyi |
| | | spring.boot.admin.client.password=123456 |
| | | spring.boot.admin.client.instance.service-host-type=IP |
| | | |
| | | ### Metrics for prometheus |
| | | management.endpoints.web.exposure.include=* |
| | | |
| | | ### Metrics for elastic search |
| | | management.metrics.export.elastic.enabled=false |
| | | #management.metrics.export.elastic.host=http://localhost:9200 |
| | | |
| | | ### Metrics for influx |
| | | management.metrics.export.influx.enabled=false |
| | | #management.metrics.export.influx.db=springboot |
| | | #management.metrics.export.influx.uri=http://localhost:8086 |
| | | #management.metrics.export.influx.auto-create-db=true |
| | | #management.metrics.export.influx.consistency=one |
| | | #management.metrics.export.influx.compressed=true |
| | | |
| | | #*************** Access Control Related Configurations ***************# |
| | | ### If enable spring security, this option is deprecated in 1.2.0: |
| | | #spring.security.enabled=false |
| | | |
| | | ### The ignore urls of auth, is deprecated in 1.2.0: |
| | | nacos.security.ignore.urls=/,/error,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.ico,/console-ui/public/**,/v1/auth/**,/v1/console/health/**,/actuator/**,/v1/console/server/** |
| | | |
| | | ### The auth system to use, currently only 'nacos' and 'ldap' is supported: |
| | | nacos.core.auth.system.type=nacos |
| | | |
| | | ### If turn on auth system: |
| | | nacos.core.auth.enabled=false |
| | | |
| | | ### Turn on/off caching of auth information. By turning on this switch, the update of auth information would have a 15 seconds delay. |
| | | nacos.core.auth.caching.enabled=true |
| | | |
| | | ### Since 1.4.1, Turn on/off white auth for user-agent: nacos-server, only for upgrade from old version. |
| | | nacos.core.auth.enable.userAgentAuthWhite=false |
| | | |
| | | ### Since 1.4.1, worked when nacos.core.auth.enabled=true and nacos.core.auth.enable.userAgentAuthWhite=false. |
| | | ### The two properties is the white list for auth and used by identity the request from other server. |
| | | ### æ¤å¤ä¸ºç¨æ·åå¯ç éè¦èªè¡ä¿®æ¹ |
| | | nacos.core.auth.server.identity.key=serverIdentity |
| | | nacos.core.auth.server.identity.value=security |
| | | |
| | | ### worked when nacos.core.auth.system.type=nacos |
| | | ### The token expiration in seconds: |
| | | nacos.core.auth.plugin.nacos.token.cache.enable=false |
| | | nacos.core.auth.plugin.nacos.token.expire.seconds=18000 |
| | | ### The default token (Base64 string): |
| | | #nacos.core.auth.plugin.nacos.token.secret.key=SecretKey012345678901234567890123456789012345678901234567890123456789 |
| | | ### æ¤å¤ä¸ºtokenå¯é¥ éè¦èªè¡ä¿®æ¹ |
| | | nacos.core.auth.plugin.nacos.token.secret.key=SecretKey012345678901234567890123456789012345678901234567890123456789 |
| | | |
| | | ### worked when nacos.core.auth.system.type=ldapï¼{0} is Placeholder,replace login username |
| | | #nacos.core.auth.ldap.url=ldap://localhost:389 |
| | | #nacos.core.auth.ldap.basedc=dc=example,dc=org |
| | | #nacos.core.auth.ldap.userDn=cn=admin,${nacos.core.auth.ldap.basedc} |
| | | #nacos.core.auth.ldap.password=admin |
| | | #nacos.core.auth.ldap.userdn=cn={0},dc=example,dc=org |
| | | #nacos.core.auth.ldap.filter.prefix=uid |
| | | #nacos.core.auth.ldap.case.sensitive=true |
| | | |
| | | |
| | | #*************** Istio Related Configurations ***************# |
| | | ### If turn on the MCP server: |
| | | nacos.istio.mcp.server.enabled=false |
| | | |
| | | |
| | | |
| | | ###*************** Add from 1.3.0 ***************### |
| | | |
| | | |
| | | #*************** Core Related Configurations ***************# |
| | | |
| | | ### set the WorkerID manually |
| | | # nacos.core.snowflake.worker-id= |
| | | |
| | | ### Member-MetaData |
| | | # nacos.core.member.meta.site= |
| | | # nacos.core.member.meta.adweight= |
| | | # nacos.core.member.meta.weight= |
| | | |
| | | ### MemberLookup |
| | | ### Addressing pattern category, If set, the priority is highest |
| | | # nacos.core.member.lookup.type=[file,address-server] |
| | | ## Set the cluster list with a configuration file or command-line argument |
| | | # nacos.member.list=192.168.16.101:8847?raft_port=8807,192.168.16.101?raft_port=8808,192.168.16.101:8849?raft_port=8809 |
| | | ## for AddressServerMemberLookup |
| | | # Maximum number of retries to query the address server upon initialization |
| | | # nacos.core.address-server.retry=5 |
| | | ## Server domain name address of [address-server] mode |
| | | # address.server.domain=jmenv.tbsite.net |
| | | ## Server port of [address-server] mode |
| | | # address.server.port=8080 |
| | | ## Request address of [address-server] mode |
| | | # address.server.url=/nacos/serverlist |
| | | |
| | | #*************** JRaft Related Configurations ***************# |
| | | |
| | | ### Sets the Raft cluster election timeout, default value is 5 second |
| | | # nacos.core.protocol.raft.data.election_timeout_ms=5000 |
| | | ### Sets the amount of time the Raft snapshot will execute periodically, default is 30 minute |
| | | # nacos.core.protocol.raft.data.snapshot_interval_secs=30 |
| | | ### raft internal worker threads |
| | | # nacos.core.protocol.raft.data.core_thread_num=8 |
| | | ### Number of threads required for raft business request processing |
| | | # nacos.core.protocol.raft.data.cli_service_thread_num=4 |
| | | ### raft linear read strategy. Safe linear reads are used by default, that is, the Leader tenure is confirmed by heartbeat |
| | | # nacos.core.protocol.raft.data.read_index_type=ReadOnlySafe |
| | | ### rpc request timeout, default 5 seconds |
| | | # nacos.core.protocol.raft.data.rpc_request_timeout_ms=5000 |
| | | ### enable to support prometheus service discovery |
| | | #nacos.prometheus.metrics.enabled=true |
New file |
| | |
| | | |
| | | ,--. |
| | | ,--.'| |
| | | ,--,: : | Nacos ${application.version} |
| | | ,`--.'`| ' : ,---. Running in ${nacos.mode} mode, ${nacos.function.mode} function modules |
| | | | : : | | ' ,'\ .--.--. Port: ${server.port} |
| | | : | \ | : ,--.--. ,---. / / | / / ' Pid: ${pid} |
| | | | : ' '; | / \ / \. ; ,. :| : /`./ Console: http://${nacos.local.ip}:${server.port}${server.servlet.contextPath}/index.html |
| | | ' ' ;. ;.--. .-. | / / '' | |: :| : ;_ |
| | | | | | \ | \__\/: . .. ' / ' | .; : \ \ `. https://nacos.io |
| | | ' : | ; .' ," .--.; |' ; :__| : | `----. \ |
| | | | | '`--' / / ,. |' | '.'|\ \ / / /`--' / |
| | | ' : | ; : .' \ : : `----' '--'. / |
| | | ; |.' | , .-./\ \ / `--'---' |
| | | '---' `--`---' `----' |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | |
| | | (function(mod) { |
| | | if (typeof exports == "object" && typeof module == "object") // CommonJS |
| | | mod(require("../../lib/codemirror")); |
| | | else if (typeof define == "function" && define.amd) // AMD |
| | | define(["../../lib/codemirror"], mod); |
| | | else // Plain browser env |
| | | mod(CodeMirror); |
| | | })(function(CodeMirror) { |
| | | "use strict"; |
| | | |
| | | CodeMirror.defineOption("fullScreen", false, function(cm, val, old) { |
| | | if (old == CodeMirror.Init) old = false; |
| | | if (!old == !val) return; |
| | | if (val) setFullscreen(cm); |
| | | else setNormal(cm); |
| | | }); |
| | | |
| | | function setFullscreen(cm) { |
| | | var wrap = cm.getWrapperElement(); |
| | | cm.state.fullScreenRestore = {scrollTop: window.pageYOffset, scrollLeft: window.pageXOffset, |
| | | width: wrap.style.width, height: wrap.style.height}; |
| | | wrap.style.width = ""; |
| | | wrap.style.height = "auto"; |
| | | wrap.className += " CodeMirror-fullscreen"; |
| | | document.documentElement.style.overflow = "hidden"; |
| | | cm.refresh(); |
| | | } |
| | | |
| | | function setNormal(cm) { |
| | | var wrap = cm.getWrapperElement(); |
| | | wrap.className = wrap.className.replace(/\s*CodeMirror-fullscreen\b/, ""); |
| | | document.documentElement.style.overflow = ""; |
| | | var info = cm.state.fullScreenRestore; |
| | | wrap.style.width = info.width; wrap.style.height = info.height; |
| | | window.scrollTo(info.scrollLeft, info.scrollTop); |
| | | cm.refresh(); |
| | | } |
| | | }); |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | |
| | | // Depends on jsonlint.js from https://github.com/zaach/jsonlint |
| | | |
| | | // declare global: jsonlint |
| | | |
| | | (function(mod) { |
| | | if (typeof exports == "object" && typeof module == "object") // CommonJS |
| | | mod(require("../../lib/codemirror")); |
| | | else if (typeof define == "function" && define.amd) // AMD |
| | | define(["../../lib/codemirror"], mod); |
| | | else // Plain browser env |
| | | mod(CodeMirror); |
| | | })(function(CodeMirror) { |
| | | "use strict"; |
| | | |
| | | CodeMirror.registerHelper("lint", "json", function(text) { |
| | | var found = []; |
| | | jsonlint.parseError = function(str, hash) { |
| | | var loc = hash.loc; |
| | | found.push({from: CodeMirror.Pos(loc.first_line - 1, loc.first_column), |
| | | to: CodeMirror.Pos(loc.last_line - 1, loc.last_column), |
| | | message: str}); |
| | | }; |
| | | try { jsonlint.parse(text); } |
| | | catch(e) {} |
| | | return found; |
| | | }); |
| | | |
| | | }); |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | |
| | | (function(mod) { |
| | | if (typeof exports == "object" && typeof module == "object") // CommonJS |
| | | mod(require("../../lib/codemirror")); |
| | | else if (typeof define == "function" && define.amd) // AMD |
| | | define(["../../lib/codemirror"], mod); |
| | | else // Plain browser env |
| | | mod(CodeMirror); |
| | | })(function(CodeMirror) { |
| | | "use strict"; |
| | | var GUTTER_ID = "CodeMirror-lint-markers"; |
| | | |
| | | function showTooltip(e, content) { |
| | | var tt = document.createElement("div"); |
| | | tt.className = "CodeMirror-lint-tooltip"; |
| | | tt.appendChild(content.cloneNode(true)); |
| | | document.body.appendChild(tt); |
| | | |
| | | function position(e) { |
| | | if (!tt.parentNode) return CodeMirror.off(document, "mousemove", position); |
| | | tt.style.top = Math.max(0, e.clientY - tt.offsetHeight - 5) + "px"; |
| | | tt.style.left = (e.clientX + 5) + "px"; |
| | | } |
| | | CodeMirror.on(document, "mousemove", position); |
| | | position(e); |
| | | if (tt.style.opacity != null) tt.style.opacity = 1; |
| | | return tt; |
| | | } |
| | | function rm(elt) { |
| | | if (elt.parentNode) elt.parentNode.removeChild(elt); |
| | | } |
| | | function hideTooltip(tt) { |
| | | if (!tt.parentNode) return; |
| | | if (tt.style.opacity == null) rm(tt); |
| | | tt.style.opacity = 0; |
| | | setTimeout(function() { rm(tt); }, 600); |
| | | } |
| | | |
| | | function showTooltipFor(e, content, node) { |
| | | var tooltip = showTooltip(e, content); |
| | | function hide() { |
| | | CodeMirror.off(node, "mouseout", hide); |
| | | if (tooltip) { hideTooltip(tooltip); tooltip = null; } |
| | | } |
| | | var poll = setInterval(function() { |
| | | if (tooltip) for (var n = node;; n = n.parentNode) { |
| | | if (n && n.nodeType == 11) n = n.host; |
| | | if (n == document.body) return; |
| | | if (!n) { hide(); break; } |
| | | } |
| | | if (!tooltip) return clearInterval(poll); |
| | | }, 400); |
| | | CodeMirror.on(node, "mouseout", hide); |
| | | } |
| | | |
| | | function LintState(cm, options, hasGutter) { |
| | | this.marked = []; |
| | | this.options = options; |
| | | this.timeout = null; |
| | | this.hasGutter = hasGutter; |
| | | this.onMouseOver = function(e) { onMouseOver(cm, e); }; |
| | | this.waitingFor = 0 |
| | | } |
| | | |
| | | function parseOptions(_cm, options) { |
| | | if (options instanceof Function) return {getAnnotations: options}; |
| | | if (!options || options === true) options = {}; |
| | | return options; |
| | | } |
| | | |
| | | function clearMarks(cm) { |
| | | var state = cm.state.lint; |
| | | if (state.hasGutter) cm.clearGutter(GUTTER_ID); |
| | | for (var i = 0; i < state.marked.length; ++i) |
| | | state.marked[i].clear(); |
| | | state.marked.length = 0; |
| | | } |
| | | |
| | | function makeMarker(labels, severity, multiple, tooltips) { |
| | | var marker = document.createElement("div"), inner = marker; |
| | | marker.className = "CodeMirror-lint-marker-" + severity; |
| | | if (multiple) { |
| | | inner = marker.appendChild(document.createElement("div")); |
| | | inner.className = "CodeMirror-lint-marker-multiple"; |
| | | } |
| | | |
| | | if (tooltips != false) CodeMirror.on(inner, "mouseover", function(e) { |
| | | showTooltipFor(e, labels, inner); |
| | | }); |
| | | |
| | | return marker; |
| | | } |
| | | |
| | | function getMaxSeverity(a, b) { |
| | | if (a == "error") return a; |
| | | else return b; |
| | | } |
| | | |
| | | function groupByLine(annotations) { |
| | | var lines = []; |
| | | for (var i = 0; i < annotations.length; ++i) { |
| | | var ann = annotations[i], line = ann.from.line; |
| | | (lines[line] || (lines[line] = [])).push(ann); |
| | | } |
| | | return lines; |
| | | } |
| | | |
| | | function annotationTooltip(ann) { |
| | | var severity = ann.severity; |
| | | if (!severity) severity = "error"; |
| | | var tip = document.createElement("div"); |
| | | tip.className = "CodeMirror-lint-message-" + severity; |
| | | tip.appendChild(document.createTextNode(ann.message)); |
| | | return tip; |
| | | } |
| | | |
| | | function lintAsync(cm, getAnnotations, passOptions) { |
| | | var state = cm.state.lint |
| | | var id = ++state.waitingFor |
| | | function abort() { |
| | | id = -1 |
| | | cm.off("change", abort) |
| | | } |
| | | cm.on("change", abort) |
| | | getAnnotations(cm.getValue(), function(annotations, arg2) { |
| | | cm.off("change", abort) |
| | | if (state.waitingFor != id) return |
| | | if (arg2 && annotations instanceof CodeMirror) annotations = arg2 |
| | | updateLinting(cm, annotations) |
| | | }, passOptions, cm); |
| | | } |
| | | |
| | | function startLinting(cm) { |
| | | var state = cm.state.lint, options = state.options; |
| | | var passOptions = options.options || options; // Support deprecated passing of `options` property in options |
| | | var getAnnotations = options.getAnnotations || cm.getHelper(CodeMirror.Pos(0, 0), "lint"); |
| | | if (!getAnnotations) return; |
| | | if (options.async || getAnnotations.async) { |
| | | lintAsync(cm, getAnnotations, passOptions) |
| | | } else { |
| | | updateLinting(cm, getAnnotations(cm.getValue(), passOptions, cm)); |
| | | } |
| | | } |
| | | |
| | | function updateLinting(cm, annotationsNotSorted) { |
| | | clearMarks(cm); |
| | | var state = cm.state.lint, options = state.options; |
| | | |
| | | var annotations = groupByLine(annotationsNotSorted); |
| | | |
| | | for (var line = 0; line < annotations.length; ++line) { |
| | | var anns = annotations[line]; |
| | | if (!anns) continue; |
| | | |
| | | var maxSeverity = null; |
| | | var tipLabel = state.hasGutter && document.createDocumentFragment(); |
| | | |
| | | for (var i = 0; i < anns.length; ++i) { |
| | | var ann = anns[i]; |
| | | var severity = ann.severity; |
| | | if (!severity) severity = "error"; |
| | | maxSeverity = getMaxSeverity(maxSeverity, severity); |
| | | |
| | | if (options.formatAnnotation) ann = options.formatAnnotation(ann); |
| | | if (state.hasGutter) tipLabel.appendChild(annotationTooltip(ann)); |
| | | |
| | | if (ann.to) state.marked.push(cm.markText(ann.from, ann.to, { |
| | | className: "CodeMirror-lint-mark-" + severity, |
| | | __annotation: ann |
| | | })); |
| | | } |
| | | |
| | | if (state.hasGutter) |
| | | cm.setGutterMarker(line, GUTTER_ID, makeMarker(tipLabel, maxSeverity, anns.length > 1, |
| | | state.options.tooltips)); |
| | | } |
| | | if (options.onUpdateLinting) options.onUpdateLinting(annotationsNotSorted, annotations, cm); |
| | | } |
| | | |
| | | function onChange(cm) { |
| | | var state = cm.state.lint; |
| | | if (!state) return; |
| | | clearTimeout(state.timeout); |
| | | state.timeout = setTimeout(function(){startLinting(cm);}, state.options.delay || 500); |
| | | } |
| | | |
| | | function popupTooltips(annotations, e) { |
| | | var target = e.target || e.srcElement; |
| | | var tooltip = document.createDocumentFragment(); |
| | | for (var i = 0; i < annotations.length; i++) { |
| | | var ann = annotations[i]; |
| | | tooltip.appendChild(annotationTooltip(ann)); |
| | | } |
| | | showTooltipFor(e, tooltip, target); |
| | | } |
| | | |
| | | function onMouseOver(cm, e) { |
| | | var target = e.target || e.srcElement; |
| | | if (!/\bCodeMirror-lint-mark-/.test(target.className)) return; |
| | | var box = target.getBoundingClientRect(), x = (box.left + box.right) / 2, y = (box.top + box.bottom) / 2; |
| | | var spans = cm.findMarksAt(cm.coordsChar({left: x, top: y}, "client")); |
| | | |
| | | var annotations = []; |
| | | for (var i = 0; i < spans.length; ++i) { |
| | | annotations.push(spans[i].__annotation); |
| | | } |
| | | if (annotations.length) popupTooltips(annotations, e); |
| | | } |
| | | |
| | | CodeMirror.defineOption("lint", false, function(cm, val, old) { |
| | | if (old && old != CodeMirror.Init) { |
| | | clearMarks(cm); |
| | | if (cm.state.lint.options.lintOnChange !== false) |
| | | cm.off("change", onChange); |
| | | CodeMirror.off(cm.getWrapperElement(), "mouseover", cm.state.lint.onMouseOver); |
| | | clearTimeout(cm.state.lint.timeout); |
| | | delete cm.state.lint; |
| | | } |
| | | |
| | | if (val) { |
| | | var gutters = cm.getOption("gutters"), hasLintGutter = false; |
| | | for (var i = 0; i < gutters.length; ++i) if (gutters[i] == GUTTER_ID) hasLintGutter = true; |
| | | var state = cm.state.lint = new LintState(cm, parseOptions(cm, val), hasLintGutter); |
| | | if (state.options.lintOnChange !== false) |
| | | cm.on("change", onChange); |
| | | if (state.options.tooltips != false) |
| | | CodeMirror.on(cm.getWrapperElement(), "mouseover", state.onMouseOver); |
| | | |
| | | startLinting(cm); |
| | | } |
| | | }); |
| | | |
| | | CodeMirror.defineExtension("performLint", function() { |
| | | if (this.state.lint) startLinting(this); |
| | | }); |
| | | }); |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | |
| | | (function(mod) { |
| | | if (typeof exports == "object" && typeof module == "object") // CommonJS |
| | | mod(require("../../lib/codemirror")); |
| | | else if (typeof define == "function" && define.amd) // AMD |
| | | define(["../../lib/codemirror"], mod); |
| | | else // Plain browser env |
| | | mod(CodeMirror); |
| | | })(function(CodeMirror) { |
| | | "use strict"; |
| | | |
| | | function Context(indented, column, type, info, align, prev) { |
| | | this.indented = indented; |
| | | this.column = column; |
| | | this.type = type; |
| | | this.info = info; |
| | | this.align = align; |
| | | this.prev = prev; |
| | | } |
| | | function pushContext(state, col, type, info) { |
| | | var indent = state.indented; |
| | | if (state.context && state.context.type == "statement" && type != "statement") |
| | | indent = state.context.indented; |
| | | return state.context = new Context(indent, col, type, info, null, state.context); |
| | | } |
| | | function popContext(state) { |
| | | var t = state.context.type; |
| | | if (t == ")" || t == "]" || t == "}") |
| | | state.indented = state.context.indented; |
| | | return state.context = state.context.prev; |
| | | } |
| | | |
| | | function typeBefore(stream, state, pos) { |
| | | if (state.prevToken == "variable" || state.prevToken == "type") return true; |
| | | if (/\S(?:[^- ]>|[*\]])\s*$|\*$/.test(stream.string.slice(0, pos))) return true; |
| | | if (state.typeAtEndOfLine && stream.column() == stream.indentation()) return true; |
| | | } |
| | | |
| | | function isTopScope(context) { |
| | | for (;;) { |
| | | if (!context || context.type == "top") return true; |
| | | if (context.type == "}" && context.prev.info != "namespace") return false; |
| | | context = context.prev; |
| | | } |
| | | } |
| | | |
| | | CodeMirror.defineMode("clike", function(config, parserConfig) { |
| | | var indentUnit = config.indentUnit, |
| | | statementIndentUnit = parserConfig.statementIndentUnit || indentUnit, |
| | | dontAlignCalls = parserConfig.dontAlignCalls, |
| | | keywords = parserConfig.keywords || {}, |
| | | types = parserConfig.types || {}, |
| | | builtin = parserConfig.builtin || {}, |
| | | blockKeywords = parserConfig.blockKeywords || {}, |
| | | defKeywords = parserConfig.defKeywords || {}, |
| | | atoms = parserConfig.atoms || {}, |
| | | hooks = parserConfig.hooks || {}, |
| | | multiLineStrings = parserConfig.multiLineStrings, |
| | | indentStatements = parserConfig.indentStatements !== false, |
| | | indentSwitch = parserConfig.indentSwitch !== false, |
| | | namespaceSeparator = parserConfig.namespaceSeparator, |
| | | isPunctuationChar = parserConfig.isPunctuationChar || /[\[\]{}\(\),;\:\.]/, |
| | | numberStart = parserConfig.numberStart || /[\d\.]/, |
| | | number = parserConfig.number || /^(?:0x[a-f\d]+|0b[01]+|(?:\d+\.?\d*|\.\d+)(?:e[-+]?\d+)?)(u|ll?|l|f)?/i, |
| | | isOperatorChar = parserConfig.isOperatorChar || /[+\-*&%=<>!?|\/]/, |
| | | isIdentifierChar = parserConfig.isIdentifierChar || /[\w\$_\xa1-\uffff]/; |
| | | |
| | | var curPunc, isDefKeyword; |
| | | |
| | | function tokenBase(stream, state) { |
| | | var ch = stream.next(); |
| | | if (hooks[ch]) { |
| | | var result = hooks[ch](stream, state); |
| | | if (result !== false) return result; |
| | | } |
| | | if (ch == '"' || ch == "'") { |
| | | state.tokenize = tokenString(ch); |
| | | return state.tokenize(stream, state); |
| | | } |
| | | if (isPunctuationChar.test(ch)) { |
| | | curPunc = ch; |
| | | return null; |
| | | } |
| | | if (numberStart.test(ch)) { |
| | | stream.backUp(1) |
| | | if (stream.match(number)) return "number" |
| | | stream.next() |
| | | } |
| | | if (ch == "/") { |
| | | if (stream.eat("*")) { |
| | | state.tokenize = tokenComment; |
| | | return tokenComment(stream, state); |
| | | } |
| | | if (stream.eat("/")) { |
| | | stream.skipToEnd(); |
| | | return "comment"; |
| | | } |
| | | } |
| | | if (isOperatorChar.test(ch)) { |
| | | while (!stream.match(/^\/[\/*]/, false) && stream.eat(isOperatorChar)) {} |
| | | return "operator"; |
| | | } |
| | | stream.eatWhile(isIdentifierChar); |
| | | if (namespaceSeparator) while (stream.match(namespaceSeparator)) |
| | | stream.eatWhile(isIdentifierChar); |
| | | |
| | | var cur = stream.current(); |
| | | if (contains(keywords, cur)) { |
| | | if (contains(blockKeywords, cur)) curPunc = "newstatement"; |
| | | if (contains(defKeywords, cur)) isDefKeyword = true; |
| | | return "keyword"; |
| | | } |
| | | if (contains(types, cur)) return "type"; |
| | | if (contains(builtin, cur)) { |
| | | if (contains(blockKeywords, cur)) curPunc = "newstatement"; |
| | | return "builtin"; |
| | | } |
| | | if (contains(atoms, cur)) return "atom"; |
| | | return "variable"; |
| | | } |
| | | |
| | | function tokenString(quote) { |
| | | return function(stream, state) { |
| | | var escaped = false, next, end = false; |
| | | while ((next = stream.next()) != null) { |
| | | if (next == quote && !escaped) {end = true; break;} |
| | | escaped = !escaped && next == "\\"; |
| | | } |
| | | if (end || !(escaped || multiLineStrings)) |
| | | state.tokenize = null; |
| | | return "string"; |
| | | }; |
| | | } |
| | | |
| | | function tokenComment(stream, state) { |
| | | var maybeEnd = false, ch; |
| | | while (ch = stream.next()) { |
| | | if (ch == "/" && maybeEnd) { |
| | | state.tokenize = null; |
| | | break; |
| | | } |
| | | maybeEnd = (ch == "*"); |
| | | } |
| | | return "comment"; |
| | | } |
| | | |
| | | function maybeEOL(stream, state) { |
| | | if (parserConfig.typeFirstDefinitions && stream.eol() && isTopScope(state.context)) |
| | | state.typeAtEndOfLine = typeBefore(stream, state, stream.pos) |
| | | } |
| | | |
| | | // Interface |
| | | |
| | | return { |
| | | startState: function(basecolumn) { |
| | | return { |
| | | tokenize: null, |
| | | context: new Context((basecolumn || 0) - indentUnit, 0, "top", null, false), |
| | | indented: 0, |
| | | startOfLine: true, |
| | | prevToken: null |
| | | }; |
| | | }, |
| | | |
| | | token: function(stream, state) { |
| | | var ctx = state.context; |
| | | if (stream.sol()) { |
| | | if (ctx.align == null) ctx.align = false; |
| | | state.indented = stream.indentation(); |
| | | state.startOfLine = true; |
| | | } |
| | | if (stream.eatSpace()) { maybeEOL(stream, state); return null; } |
| | | curPunc = isDefKeyword = null; |
| | | var style = (state.tokenize || tokenBase)(stream, state); |
| | | if (style == "comment" || style == "meta") return style; |
| | | if (ctx.align == null) ctx.align = true; |
| | | |
| | | if (curPunc == ";" || curPunc == ":" || (curPunc == "," && stream.match(/^\s*(?:\/\/.*)?$/, false))) |
| | | while (state.context.type == "statement") popContext(state); |
| | | else if (curPunc == "{") pushContext(state, stream.column(), "}"); |
| | | else if (curPunc == "[") pushContext(state, stream.column(), "]"); |
| | | else if (curPunc == "(") pushContext(state, stream.column(), ")"); |
| | | else if (curPunc == "}") { |
| | | while (ctx.type == "statement") ctx = popContext(state); |
| | | if (ctx.type == "}") ctx = popContext(state); |
| | | while (ctx.type == "statement") ctx = popContext(state); |
| | | } |
| | | else if (curPunc == ctx.type) popContext(state); |
| | | else if (indentStatements && |
| | | (((ctx.type == "}" || ctx.type == "top") && curPunc != ";") || |
| | | (ctx.type == "statement" && curPunc == "newstatement"))) { |
| | | pushContext(state, stream.column(), "statement", stream.current()); |
| | | } |
| | | |
| | | if (style == "variable" && |
| | | ((state.prevToken == "def" || |
| | | (parserConfig.typeFirstDefinitions && typeBefore(stream, state, stream.start) && |
| | | isTopScope(state.context) && stream.match(/^\s*\(/, false))))) |
| | | style = "def"; |
| | | |
| | | if (hooks.token) { |
| | | var result = hooks.token(stream, state, style); |
| | | if (result !== undefined) style = result; |
| | | } |
| | | |
| | | if (style == "def" && parserConfig.styleDefs === false) style = "variable"; |
| | | |
| | | state.startOfLine = false; |
| | | state.prevToken = isDefKeyword ? "def" : style || curPunc; |
| | | maybeEOL(stream, state); |
| | | return style; |
| | | }, |
| | | |
| | | indent: function(state, textAfter) { |
| | | if (state.tokenize != tokenBase && state.tokenize != null || state.typeAtEndOfLine) return CodeMirror.Pass; |
| | | var ctx = state.context, firstChar = textAfter && textAfter.charAt(0); |
| | | if (ctx.type == "statement" && firstChar == "}") ctx = ctx.prev; |
| | | if (parserConfig.dontIndentStatements) |
| | | while (ctx.type == "statement" && parserConfig.dontIndentStatements.test(ctx.info)) |
| | | ctx = ctx.prev |
| | | if (hooks.indent) { |
| | | var hook = hooks.indent(state, ctx, textAfter); |
| | | if (typeof hook == "number") return hook |
| | | } |
| | | var closing = firstChar == ctx.type; |
| | | var switchBlock = ctx.prev && ctx.prev.info == "switch"; |
| | | if (parserConfig.allmanIndentation && /[{(]/.test(firstChar)) { |
| | | while (ctx.type != "top" && ctx.type != "}") ctx = ctx.prev |
| | | return ctx.indented |
| | | } |
| | | if (ctx.type == "statement") |
| | | return ctx.indented + (firstChar == "{" ? 0 : statementIndentUnit); |
| | | if (ctx.align && (!dontAlignCalls || ctx.type != ")")) |
| | | return ctx.column + (closing ? 0 : 1); |
| | | if (ctx.type == ")" && !closing) |
| | | return ctx.indented + statementIndentUnit; |
| | | |
| | | return ctx.indented + (closing ? 0 : indentUnit) + |
| | | (!closing && switchBlock && !/^(?:case|default)\b/.test(textAfter) ? indentUnit : 0); |
| | | }, |
| | | |
| | | electricInput: indentSwitch ? /^\s*(?:case .*?:|default:|\{\}?|\})$/ : /^\s*[{}]$/, |
| | | blockCommentStart: "/*", |
| | | blockCommentEnd: "*/", |
| | | lineComment: "//", |
| | | fold: "brace" |
| | | }; |
| | | }); |
| | | |
| | | function words(str) { |
| | | var obj = {}, words = str.split(" "); |
| | | for (var i = 0; i < words.length; ++i) obj[words[i]] = true; |
| | | return obj; |
| | | } |
| | | function contains(words, word) { |
| | | if (typeof words === "function") { |
| | | return words(word); |
| | | } else { |
| | | return words.propertyIsEnumerable(word); |
| | | } |
| | | } |
| | | var cKeywords = "auto if break case register continue return default do sizeof " + |
| | | "static else struct switch extern typedef union for goto while enum const volatile"; |
| | | var cTypes = "int long char short double float unsigned signed void size_t ptrdiff_t"; |
| | | |
| | | function cppHook(stream, state) { |
| | | if (!state.startOfLine) return false |
| | | for (var ch, next = null; ch = stream.peek();) { |
| | | if (ch == "\\" && stream.match(/^.$/)) { |
| | | next = cppHook |
| | | break |
| | | } else if (ch == "/" && stream.match(/^\/[\/\*]/, false)) { |
| | | break |
| | | } |
| | | stream.next() |
| | | } |
| | | state.tokenize = next |
| | | return "meta" |
| | | } |
| | | |
| | | function pointerHook(_stream, state) { |
| | | if (state.prevToken == "type") return "type"; |
| | | return false; |
| | | } |
| | | |
| | | function cpp14Literal(stream) { |
| | | stream.eatWhile(/[\w\.']/); |
| | | return "number"; |
| | | } |
| | | |
| | | function cpp11StringHook(stream, state) { |
| | | stream.backUp(1); |
| | | // Raw strings. |
| | | if (stream.match(/(R|u8R|uR|UR|LR)/)) { |
| | | var match = stream.match(/"([^\s\\()]{0,16})\(/); |
| | | if (!match) { |
| | | return false; |
| | | } |
| | | state.cpp11RawStringDelim = match[1]; |
| | | state.tokenize = tokenRawString; |
| | | return tokenRawString(stream, state); |
| | | } |
| | | // Unicode strings/chars. |
| | | if (stream.match(/(u8|u|U|L)/)) { |
| | | if (stream.match(/["']/, /* eat */ false)) { |
| | | return "string"; |
| | | } |
| | | return false; |
| | | } |
| | | // Ignore this hook. |
| | | stream.next(); |
| | | return false; |
| | | } |
| | | |
| | | function cppLooksLikeConstructor(word) { |
| | | var lastTwo = /(\w+)::~?(\w+)$/.exec(word); |
| | | return lastTwo && lastTwo[1] == lastTwo[2]; |
| | | } |
| | | |
| | | // C#-style strings where "" escapes a quote. |
| | | function tokenAtString(stream, state) { |
| | | var next; |
| | | while ((next = stream.next()) != null) { |
| | | if (next == '"' && !stream.eat('"')) { |
| | | state.tokenize = null; |
| | | break; |
| | | } |
| | | } |
| | | return "string"; |
| | | } |
| | | |
| | | // C++11 raw string literal is <prefix>"<delim>( anything )<delim>", where |
| | | // <delim> can be a string up to 16 characters long. |
| | | function tokenRawString(stream, state) { |
| | | // Escape characters that have special regex meanings. |
| | | var delim = state.cpp11RawStringDelim.replace(/[^\w\s]/g, '\\$&'); |
| | | var match = stream.match(new RegExp(".*?\\)" + delim + '"')); |
| | | if (match) |
| | | state.tokenize = null; |
| | | else |
| | | stream.skipToEnd(); |
| | | return "string"; |
| | | } |
| | | |
| | | function def(mimes, mode) { |
| | | if (typeof mimes == "string") mimes = [mimes]; |
| | | var words = []; |
| | | function add(obj) { |
| | | if (obj) for (var prop in obj) if (obj.hasOwnProperty(prop)) |
| | | words.push(prop); |
| | | } |
| | | add(mode.keywords); |
| | | add(mode.types); |
| | | add(mode.builtin); |
| | | add(mode.atoms); |
| | | if (words.length) { |
| | | mode.helperType = mimes[0]; |
| | | CodeMirror.registerHelper("hintWords", mimes[0], words); |
| | | } |
| | | |
| | | for (var i = 0; i < mimes.length; ++i) |
| | | CodeMirror.defineMIME(mimes[i], mode); |
| | | } |
| | | |
| | | def(["text/x-csrc", "text/x-c", "text/x-chdr"], { |
| | | name: "clike", |
| | | keywords: words(cKeywords), |
| | | types: words(cTypes + " bool _Complex _Bool float_t double_t intptr_t intmax_t " + |
| | | "int8_t int16_t int32_t int64_t uintptr_t uintmax_t uint8_t uint16_t " + |
| | | "uint32_t uint64_t"), |
| | | blockKeywords: words("case do else for if switch while struct"), |
| | | defKeywords: words("struct"), |
| | | typeFirstDefinitions: true, |
| | | atoms: words("null true false"), |
| | | hooks: {"#": cppHook, "*": pointerHook}, |
| | | modeProps: {fold: ["brace", "include"]} |
| | | }); |
| | | |
| | | def(["text/x-c++src", "text/x-c++hdr"], { |
| | | name: "clike", |
| | | keywords: words(cKeywords + " asm dynamic_cast namespace reinterpret_cast try explicit new " + |
| | | "static_cast typeid catch operator template typename class friend private " + |
| | | "this using const_cast inline public throw virtual delete mutable protected " + |
| | | "alignas alignof constexpr decltype nullptr noexcept thread_local final " + |
| | | "static_assert override"), |
| | | types: words(cTypes + " bool wchar_t"), |
| | | blockKeywords: words("catch class do else finally for if struct switch try while"), |
| | | defKeywords: words("class namespace struct enum union"), |
| | | typeFirstDefinitions: true, |
| | | atoms: words("true false null"), |
| | | dontIndentStatements: /^template$/, |
| | | isIdentifierChar: /[\w\$_~\xa1-\uffff]/, |
| | | hooks: { |
| | | "#": cppHook, |
| | | "*": pointerHook, |
| | | "u": cpp11StringHook, |
| | | "U": cpp11StringHook, |
| | | "L": cpp11StringHook, |
| | | "R": cpp11StringHook, |
| | | "0": cpp14Literal, |
| | | "1": cpp14Literal, |
| | | "2": cpp14Literal, |
| | | "3": cpp14Literal, |
| | | "4": cpp14Literal, |
| | | "5": cpp14Literal, |
| | | "6": cpp14Literal, |
| | | "7": cpp14Literal, |
| | | "8": cpp14Literal, |
| | | "9": cpp14Literal, |
| | | token: function(stream, state, style) { |
| | | if (style == "variable" && stream.peek() == "(" && |
| | | (state.prevToken == ";" || state.prevToken == null || |
| | | state.prevToken == "}") && |
| | | cppLooksLikeConstructor(stream.current())) |
| | | return "def"; |
| | | } |
| | | }, |
| | | namespaceSeparator: "::", |
| | | modeProps: {fold: ["brace", "include"]} |
| | | }); |
| | | |
| | | def("text/x-java", { |
| | | name: "clike", |
| | | keywords: words("abstract assert break case catch class const continue default " + |
| | | "do else enum extends final finally float for goto if implements import " + |
| | | "instanceof interface native new package private protected public " + |
| | | "return static strictfp super switch synchronized this throw throws transient " + |
| | | "try volatile while @interface"), |
| | | types: words("byte short int long float double boolean char void Boolean Byte Character Double Float " + |
| | | "Integer Long Number Object Short String StringBuffer StringBuilder Void"), |
| | | blockKeywords: words("catch class do else finally for if switch try while"), |
| | | defKeywords: words("class interface package enum @interface"), |
| | | typeFirstDefinitions: true, |
| | | atoms: words("true false null"), |
| | | number: /^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+\.?\d*|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i, |
| | | hooks: { |
| | | "@": function(stream) { |
| | | // Don't match the @interface keyword. |
| | | if (stream.match('interface', false)) return false; |
| | | |
| | | stream.eatWhile(/[\w\$_]/); |
| | | return "meta"; |
| | | } |
| | | }, |
| | | modeProps: {fold: ["brace", "import"]} |
| | | }); |
| | | |
| | | def("text/x-csharp", { |
| | | name: "clike", |
| | | keywords: words("abstract as async await base break case catch checked class const continue" + |
| | | " default delegate do else enum event explicit extern finally fixed for" + |
| | | " foreach goto if implicit in interface internal is lock namespace new" + |
| | | " operator out override params private protected public readonly ref return sealed" + |
| | | " sizeof stackalloc static struct switch this throw try typeof unchecked" + |
| | | " unsafe using virtual void volatile while add alias ascending descending dynamic from get" + |
| | | " global group into join let orderby partial remove select set value var yield"), |
| | | types: words("Action Boolean Byte Char DateTime DateTimeOffset Decimal Double Func" + |
| | | " Guid Int16 Int32 Int64 Object SByte Single String Task TimeSpan UInt16 UInt32" + |
| | | " UInt64 bool byte char decimal double short int long object" + |
| | | " sbyte float string ushort uint ulong"), |
| | | blockKeywords: words("catch class do else finally for foreach if struct switch try while"), |
| | | defKeywords: words("class interface namespace struct var"), |
| | | typeFirstDefinitions: true, |
| | | atoms: words("true false null"), |
| | | hooks: { |
| | | "@": function(stream, state) { |
| | | if (stream.eat('"')) { |
| | | state.tokenize = tokenAtString; |
| | | return tokenAtString(stream, state); |
| | | } |
| | | stream.eatWhile(/[\w\$_]/); |
| | | return "meta"; |
| | | } |
| | | } |
| | | }); |
| | | |
| | | function tokenTripleString(stream, state) { |
| | | var escaped = false; |
| | | while (!stream.eol()) { |
| | | if (!escaped && stream.match('"""')) { |
| | | state.tokenize = null; |
| | | break; |
| | | } |
| | | escaped = stream.next() == "\\" && !escaped; |
| | | } |
| | | return "string"; |
| | | } |
| | | |
| | | def("text/x-scala", { |
| | | name: "clike", |
| | | keywords: words( |
| | | |
| | | /* scala */ |
| | | "abstract case catch class def do else extends final finally for forSome if " + |
| | | "implicit import lazy match new null object override package private protected return " + |
| | | "sealed super this throw trait try type val var while with yield _ " + |
| | | |
| | | /* package scala */ |
| | | "assert assume require print println printf readLine readBoolean readByte readShort " + |
| | | "readChar readInt readLong readFloat readDouble" |
| | | ), |
| | | types: words( |
| | | "AnyVal App Application Array BufferedIterator BigDecimal BigInt Char Console Either " + |
| | | "Enumeration Equiv Error Exception Fractional Function IndexedSeq Int Integral Iterable " + |
| | | "Iterator List Map Numeric Nil NotNull Option Ordered Ordering PartialFunction PartialOrdering " + |
| | | "Product Proxy Range Responder Seq Serializable Set Specializable Stream StringBuilder " + |
| | | "StringContext Symbol Throwable Traversable TraversableOnce Tuple Unit Vector " + |
| | | |
| | | /* package java.lang */ |
| | | "Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable " + |
| | | "Compiler Double Exception Float Integer Long Math Number Object Package Pair Process " + |
| | | "Runtime Runnable SecurityManager Short StackTraceElement StrictMath String " + |
| | | "StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void" |
| | | ), |
| | | multiLineStrings: true, |
| | | blockKeywords: words("catch class enum do else finally for forSome if match switch try while"), |
| | | defKeywords: words("class enum def object package trait type val var"), |
| | | atoms: words("true false null"), |
| | | indentStatements: false, |
| | | indentSwitch: false, |
| | | isOperatorChar: /[+\-*&%=<>!?|\/#:@]/, |
| | | hooks: { |
| | | "@": function(stream) { |
| | | stream.eatWhile(/[\w\$_]/); |
| | | return "meta"; |
| | | }, |
| | | '"': function(stream, state) { |
| | | if (!stream.match('""')) return false; |
| | | state.tokenize = tokenTripleString; |
| | | return state.tokenize(stream, state); |
| | | }, |
| | | "'": function(stream) { |
| | | stream.eatWhile(/[\w\$_\xa1-\uffff]/); |
| | | return "atom"; |
| | | }, |
| | | "=": function(stream, state) { |
| | | var cx = state.context |
| | | if (cx.type == "}" && cx.align && stream.eat(">")) { |
| | | state.context = new Context(cx.indented, cx.column, cx.type, cx.info, null, cx.prev) |
| | | return "operator" |
| | | } else { |
| | | return false |
| | | } |
| | | } |
| | | }, |
| | | modeProps: {closeBrackets: {triples: '"'}} |
| | | }); |
| | | |
| | | function tokenKotlinString(tripleString){ |
| | | return function (stream, state) { |
| | | var escaped = false, next, end = false; |
| | | while (!stream.eol()) { |
| | | if (!tripleString && !escaped && stream.match('"') ) {end = true; break;} |
| | | if (tripleString && stream.match('"""')) {end = true; break;} |
| | | next = stream.next(); |
| | | if(!escaped && next == "$" && stream.match('{')) |
| | | stream.skipTo("}"); |
| | | escaped = !escaped && next == "\\" && !tripleString; |
| | | } |
| | | if (end || !tripleString) |
| | | state.tokenize = null; |
| | | return "string"; |
| | | } |
| | | } |
| | | |
| | | def("text/x-kotlin", { |
| | | name: "clike", |
| | | keywords: words( |
| | | /*keywords*/ |
| | | "package as typealias class interface this super val " + |
| | | "var fun for is in This throw return " + |
| | | "break continue object if else while do try when !in !is as? " + |
| | | |
| | | /*soft keywords*/ |
| | | "file import where by get set abstract enum open inner override private public internal " + |
| | | "protected catch finally out final vararg reified dynamic companion constructor init " + |
| | | "sealed field property receiver param sparam lateinit data inline noinline tailrec " + |
| | | "external annotation crossinline const operator infix suspend" |
| | | ), |
| | | types: words( |
| | | /* package java.lang */ |
| | | "Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable " + |
| | | "Compiler Double Exception Float Integer Long Math Number Object Package Pair Process " + |
| | | "Runtime Runnable SecurityManager Short StackTraceElement StrictMath String " + |
| | | "StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void" |
| | | ), |
| | | intendSwitch: false, |
| | | indentStatements: false, |
| | | multiLineStrings: true, |
| | | number: /^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+\.?\d*|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i, |
| | | blockKeywords: words("catch class do else finally for if where try while enum"), |
| | | defKeywords: words("class val var object package interface fun"), |
| | | atoms: words("true false null this"), |
| | | hooks: { |
| | | '"': function(stream, state) { |
| | | state.tokenize = tokenKotlinString(stream.match('""')); |
| | | return state.tokenize(stream, state); |
| | | } |
| | | }, |
| | | modeProps: {closeBrackets: {triples: '"'}} |
| | | }); |
| | | |
| | | def(["x-shader/x-vertex", "x-shader/x-fragment"], { |
| | | name: "clike", |
| | | keywords: words("sampler1D sampler2D sampler3D samplerCube " + |
| | | "sampler1DShadow sampler2DShadow " + |
| | | "const attribute uniform varying " + |
| | | "break continue discard return " + |
| | | "for while do if else struct " + |
| | | "in out inout"), |
| | | types: words("float int bool void " + |
| | | "vec2 vec3 vec4 ivec2 ivec3 ivec4 bvec2 bvec3 bvec4 " + |
| | | "mat2 mat3 mat4"), |
| | | blockKeywords: words("for while do if else struct"), |
| | | builtin: words("radians degrees sin cos tan asin acos atan " + |
| | | "pow exp log exp2 sqrt inversesqrt " + |
| | | "abs sign floor ceil fract mod min max clamp mix step smoothstep " + |
| | | "length distance dot cross normalize ftransform faceforward " + |
| | | "reflect refract matrixCompMult " + |
| | | "lessThan lessThanEqual greaterThan greaterThanEqual " + |
| | | "equal notEqual any all not " + |
| | | "texture1D texture1DProj texture1DLod texture1DProjLod " + |
| | | "texture2D texture2DProj texture2DLod texture2DProjLod " + |
| | | "texture3D texture3DProj texture3DLod texture3DProjLod " + |
| | | "textureCube textureCubeLod " + |
| | | "shadow1D shadow2D shadow1DProj shadow2DProj " + |
| | | "shadow1DLod shadow2DLod shadow1DProjLod shadow2DProjLod " + |
| | | "dFdx dFdy fwidth " + |
| | | "noise1 noise2 noise3 noise4"), |
| | | atoms: words("true false " + |
| | | "gl_FragColor gl_SecondaryColor gl_Normal gl_Vertex " + |
| | | "gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 " + |
| | | "gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 " + |
| | | "gl_FogCoord gl_PointCoord " + |
| | | "gl_Position gl_PointSize gl_ClipVertex " + |
| | | "gl_FrontColor gl_BackColor gl_FrontSecondaryColor gl_BackSecondaryColor " + |
| | | "gl_TexCoord gl_FogFragCoord " + |
| | | "gl_FragCoord gl_FrontFacing " + |
| | | "gl_FragData gl_FragDepth " + |
| | | "gl_ModelViewMatrix gl_ProjectionMatrix gl_ModelViewProjectionMatrix " + |
| | | "gl_TextureMatrix gl_NormalMatrix gl_ModelViewMatrixInverse " + |
| | | "gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse " + |
| | | "gl_TexureMatrixTranspose gl_ModelViewMatrixInverseTranspose " + |
| | | "gl_ProjectionMatrixInverseTranspose " + |
| | | "gl_ModelViewProjectionMatrixInverseTranspose " + |
| | | "gl_TextureMatrixInverseTranspose " + |
| | | "gl_NormalScale gl_DepthRange gl_ClipPlane " + |
| | | "gl_Point gl_FrontMaterial gl_BackMaterial gl_LightSource gl_LightModel " + |
| | | "gl_FrontLightModelProduct gl_BackLightModelProduct " + |
| | | "gl_TextureColor gl_EyePlaneS gl_EyePlaneT gl_EyePlaneR gl_EyePlaneQ " + |
| | | "gl_FogParameters " + |
| | | "gl_MaxLights gl_MaxClipPlanes gl_MaxTextureUnits gl_MaxTextureCoords " + |
| | | "gl_MaxVertexAttribs gl_MaxVertexUniformComponents gl_MaxVaryingFloats " + |
| | | "gl_MaxVertexTextureImageUnits gl_MaxTextureImageUnits " + |
| | | "gl_MaxFragmentUniformComponents gl_MaxCombineTextureImageUnits " + |
| | | "gl_MaxDrawBuffers"), |
| | | indentSwitch: false, |
| | | hooks: {"#": cppHook}, |
| | | modeProps: {fold: ["brace", "include"]} |
| | | }); |
| | | |
| | | def("text/x-nesc", { |
| | | name: "clike", |
| | | keywords: words(cKeywords + "as atomic async call command component components configuration event generic " + |
| | | "implementation includes interface module new norace nx_struct nx_union post provides " + |
| | | "signal task uses abstract extends"), |
| | | types: words(cTypes), |
| | | blockKeywords: words("case do else for if switch while struct"), |
| | | atoms: words("null true false"), |
| | | hooks: {"#": cppHook}, |
| | | modeProps: {fold: ["brace", "include"]} |
| | | }); |
| | | |
| | | def("text/x-objectivec", { |
| | | name: "clike", |
| | | keywords: words(cKeywords + "inline restrict _Bool _Complex _Imaginary BOOL Class bycopy byref id IMP in " + |
| | | "inout nil oneway out Protocol SEL self super atomic nonatomic retain copy readwrite readonly"), |
| | | types: words(cTypes), |
| | | atoms: words("YES NO NULL NILL ON OFF true false"), |
| | | hooks: { |
| | | "@": function(stream) { |
| | | stream.eatWhile(/[\w\$]/); |
| | | return "keyword"; |
| | | }, |
| | | "#": cppHook, |
| | | indent: function(_state, ctx, textAfter) { |
| | | if (ctx.type == "statement" && /^@\w/.test(textAfter)) return ctx.indented |
| | | } |
| | | }, |
| | | modeProps: {fold: "brace"} |
| | | }); |
| | | |
| | | def("text/x-squirrel", { |
| | | name: "clike", |
| | | keywords: words("base break clone continue const default delete enum extends function in class" + |
| | | " foreach local resume return this throw typeof yield constructor instanceof static"), |
| | | types: words(cTypes), |
| | | blockKeywords: words("case catch class else for foreach if switch try while"), |
| | | defKeywords: words("function local class"), |
| | | typeFirstDefinitions: true, |
| | | atoms: words("true false null"), |
| | | hooks: {"#": cppHook}, |
| | | modeProps: {fold: ["brace", "include"]} |
| | | }); |
| | | |
| | | // Ceylon Strings need to deal with interpolation |
| | | var stringTokenizer = null; |
| | | function tokenCeylonString(type) { |
| | | return function(stream, state) { |
| | | var escaped = false, next, end = false; |
| | | while (!stream.eol()) { |
| | | if (!escaped && stream.match('"') && |
| | | (type == "single" || stream.match('""'))) { |
| | | end = true; |
| | | break; |
| | | } |
| | | if (!escaped && stream.match('``')) { |
| | | stringTokenizer = tokenCeylonString(type); |
| | | end = true; |
| | | break; |
| | | } |
| | | next = stream.next(); |
| | | escaped = type == "single" && !escaped && next == "\\"; |
| | | } |
| | | if (end) |
| | | state.tokenize = null; |
| | | return "string"; |
| | | } |
| | | } |
| | | |
| | | def("text/x-ceylon", { |
| | | name: "clike", |
| | | keywords: words("abstracts alias assembly assert assign break case catch class continue dynamic else" + |
| | | " exists extends finally for function given if import in interface is let module new" + |
| | | " nonempty object of out outer package return satisfies super switch then this throw" + |
| | | " try value void while"), |
| | | types: function(word) { |
| | | // In Ceylon all identifiers that start with an uppercase are types |
| | | var first = word.charAt(0); |
| | | return (first === first.toUpperCase() && first !== first.toLowerCase()); |
| | | }, |
| | | blockKeywords: words("case catch class dynamic else finally for function if interface module new object switch try while"), |
| | | defKeywords: words("class dynamic function interface module object package value"), |
| | | builtin: words("abstract actual aliased annotation by default deprecated doc final formal late license" + |
| | | " native optional sealed see serializable shared suppressWarnings tagged throws variable"), |
| | | isPunctuationChar: /[\[\]{}\(\),;\:\.`]/, |
| | | isOperatorChar: /[+\-*&%=<>!?|^~:\/]/, |
| | | numberStart: /[\d#$]/, |
| | | number: /^(?:#[\da-fA-F_]+|\$[01_]+|[\d_]+[kMGTPmunpf]?|[\d_]+\.[\d_]+(?:[eE][-+]?\d+|[kMGTPmunpf]|)|)/i, |
| | | multiLineStrings: true, |
| | | typeFirstDefinitions: true, |
| | | atoms: words("true false null larger smaller equal empty finished"), |
| | | indentSwitch: false, |
| | | styleDefs: false, |
| | | hooks: { |
| | | "@": function(stream) { |
| | | stream.eatWhile(/[\w\$_]/); |
| | | return "meta"; |
| | | }, |
| | | '"': function(stream, state) { |
| | | state.tokenize = tokenCeylonString(stream.match('""') ? "triple" : "single"); |
| | | return state.tokenize(stream, state); |
| | | }, |
| | | '`': function(stream, state) { |
| | | if (!stringTokenizer || !stream.match('`')) return false; |
| | | state.tokenize = stringTokenizer; |
| | | stringTokenizer = null; |
| | | return state.tokenize(stream, state); |
| | | }, |
| | | "'": function(stream) { |
| | | stream.eatWhile(/[\w\$_\xa1-\uffff]/); |
| | | return "atom"; |
| | | }, |
| | | token: function(_stream, state, style) { |
| | | if ((style == "variable" || style == "type") && |
| | | state.prevToken == ".") { |
| | | return "variable-2"; |
| | | } |
| | | } |
| | | }, |
| | | modeProps: { |
| | | fold: ["brace", "import"], |
| | | closeBrackets: {triples: '"'} |
| | | } |
| | | }); |
| | | |
| | | }); |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | |
| | | /* Jison generated parser */ |
| | | var jsonlint = (function(){ |
| | | var parser = {trace: function trace() { }, |
| | | yy: {}, |
| | | symbols_: {"error":2,"JSONString":3,"STRING":4,"JSONNumber":5,"NUMBER":6,"JSONNullLiteral":7,"NULL":8,"JSONBooleanLiteral":9,"TRUE":10,"FALSE":11,"JSONText":12,"JSONValue":13,"EOF":14,"JSONObject":15,"JSONArray":16,"{":17,"}":18,"JSONMemberList":19,"JSONMember":20,":":21,",":22,"[":23,"]":24,"JSONElementList":25,"$accept":0,"$end":1}, |
| | | terminals_: {2:"error",4:"STRING",6:"NUMBER",8:"NULL",10:"TRUE",11:"FALSE",14:"EOF",17:"{",18:"}",21:":",22:",",23:"[",24:"]"}, |
| | | productions_: [0,[3,1],[5,1],[7,1],[9,1],[9,1],[12,2],[13,1],[13,1],[13,1],[13,1],[13,1],[13,1],[15,2],[15,3],[20,3],[19,1],[19,3],[16,2],[16,3],[25,1],[25,3]], |
| | | performAction: function anonymous(yytext,yyleng,yylineno,yy,yystate,$$,_$) { |
| | | |
| | | var $0 = $$.length - 1; |
| | | switch (yystate) { |
| | | case 1: // replace escaped characters with actual character |
| | | this.$ = yytext.replace(/\\(\\|")/g, "$"+"1") |
| | | .replace(/\\n/g,'\n') |
| | | .replace(/\\r/g,'\r') |
| | | .replace(/\\t/g,'\t') |
| | | .replace(/\\v/g,'\v') |
| | | .replace(/\\f/g,'\f') |
| | | .replace(/\\b/g,'\b'); |
| | | |
| | | break; |
| | | case 2:this.$ = Number(yytext); |
| | | break; |
| | | case 3:this.$ = null; |
| | | break; |
| | | case 4:this.$ = true; |
| | | break; |
| | | case 5:this.$ = false; |
| | | break; |
| | | case 6:return this.$ = $$[$0-1]; |
| | | break; |
| | | case 13:this.$ = {}; |
| | | break; |
| | | case 14:this.$ = $$[$0-1]; |
| | | break; |
| | | case 15:this.$ = [$$[$0-2], $$[$0]]; |
| | | break; |
| | | case 16:this.$ = {}; this.$[$$[$0][0]] = $$[$0][1]; |
| | | break; |
| | | case 17:this.$ = $$[$0-2]; $$[$0-2][$$[$0][0]] = $$[$0][1]; |
| | | break; |
| | | case 18:this.$ = []; |
| | | break; |
| | | case 19:this.$ = $$[$0-1]; |
| | | break; |
| | | case 20:this.$ = [$$[$0]]; |
| | | break; |
| | | case 21:this.$ = $$[$0-2]; $$[$0-2].push($$[$0]); |
| | | break; |
| | | } |
| | | }, |
| | | table: [{3:5,4:[1,12],5:6,6:[1,13],7:3,8:[1,9],9:4,10:[1,10],11:[1,11],12:1,13:2,15:7,16:8,17:[1,14],23:[1,15]},{1:[3]},{14:[1,16]},{14:[2,7],18:[2,7],22:[2,7],24:[2,7]},{14:[2,8],18:[2,8],22:[2,8],24:[2,8]},{14:[2,9],18:[2,9],22:[2,9],24:[2,9]},{14:[2,10],18:[2,10],22:[2,10],24:[2,10]},{14:[2,11],18:[2,11],22:[2,11],24:[2,11]},{14:[2,12],18:[2,12],22:[2,12],24:[2,12]},{14:[2,3],18:[2,3],22:[2,3],24:[2,3]},{14:[2,4],18:[2,4],22:[2,4],24:[2,4]},{14:[2,5],18:[2,5],22:[2,5],24:[2,5]},{14:[2,1],18:[2,1],21:[2,1],22:[2,1],24:[2,1]},{14:[2,2],18:[2,2],22:[2,2],24:[2,2]},{3:20,4:[1,12],18:[1,17],19:18,20:19},{3:5,4:[1,12],5:6,6:[1,13],7:3,8:[1,9],9:4,10:[1,10],11:[1,11],13:23,15:7,16:8,17:[1,14],23:[1,15],24:[1,21],25:22},{1:[2,6]},{14:[2,13],18:[2,13],22:[2,13],24:[2,13]},{18:[1,24],22:[1,25]},{18:[2,16],22:[2,16]},{21:[1,26]},{14:[2,18],18:[2,18],22:[2,18],24:[2,18]},{22:[1,28],24:[1,27]},{22:[2,20],24:[2,20]},{14:[2,14],18:[2,14],22:[2,14],24:[2,14]},{3:20,4:[1,12],20:29},{3:5,4:[1,12],5:6,6:[1,13],7:3,8:[1,9],9:4,10:[1,10],11:[1,11],13:30,15:7,16:8,17:[1,14],23:[1,15]},{14:[2,19],18:[2,19],22:[2,19],24:[2,19]},{3:5,4:[1,12],5:6,6:[1,13],7:3,8:[1,9],9:4,10:[1,10],11:[1,11],13:31,15:7,16:8,17:[1,14],23:[1,15]},{18:[2,17],22:[2,17]},{18:[2,15],22:[2,15]},{22:[2,21],24:[2,21]}], |
| | | defaultActions: {16:[2,6]}, |
| | | parseError: function parseError(str, hash) { |
| | | throw new Error(str); |
| | | }, |
| | | parse: function parse(input) { |
| | | var self = this, |
| | | stack = [0], |
| | | vstack = [null], // semantic value stack |
| | | lstack = [], // location stack |
| | | table = this.table, |
| | | yytext = '', |
| | | yylineno = 0, |
| | | yyleng = 0, |
| | | recovering = 0, |
| | | TERROR = 2, |
| | | EOF = 1; |
| | | |
| | | //this.reductionCount = this.shiftCount = 0; |
| | | |
| | | this.lexer.setInput(input); |
| | | this.lexer.yy = this.yy; |
| | | this.yy.lexer = this.lexer; |
| | | if (typeof this.lexer.yylloc == 'undefined') |
| | | this.lexer.yylloc = {}; |
| | | var yyloc = this.lexer.yylloc; |
| | | lstack.push(yyloc); |
| | | |
| | | if (typeof this.yy.parseError === 'function') |
| | | this.parseError = this.yy.parseError; |
| | | |
| | | function popStack (n) { |
| | | stack.length = stack.length - 2*n; |
| | | vstack.length = vstack.length - n; |
| | | lstack.length = lstack.length - n; |
| | | } |
| | | |
| | | function lex() { |
| | | var token; |
| | | token = self.lexer.lex() || 1; // $end = 1 |
| | | // if token isn't its numeric value, convert |
| | | if (typeof token !== 'number') { |
| | | token = self.symbols_[token] || token; |
| | | } |
| | | return token; |
| | | } |
| | | |
| | | var symbol, preErrorSymbol, state, action, a, r, yyval={},p,len,newState, expected; |
| | | while (true) { |
| | | // retreive state number from top of stack |
| | | state = stack[stack.length-1]; |
| | | |
| | | // use default actions if available |
| | | if (this.defaultActions[state]) { |
| | | action = this.defaultActions[state]; |
| | | } else { |
| | | if (symbol == null) |
| | | symbol = lex(); |
| | | // read action for current state and first input |
| | | action = table[state] && table[state][symbol]; |
| | | } |
| | | |
| | | // handle parse error |
| | | _handle_error: |
| | | if (typeof action === 'undefined' || !action.length || !action[0]) { |
| | | |
| | | if (!recovering) { |
| | | // Report error |
| | | expected = []; |
| | | for (p in table[state]) if (this.terminals_[p] && p > 2) { |
| | | expected.push("'"+this.terminals_[p]+"'"); |
| | | } |
| | | var errStr = ''; |
| | | if (this.lexer.showPosition) { |
| | | errStr = 'Parse error on line '+(yylineno+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+expected.join(', ') + ", got '" + this.terminals_[symbol]+ "'"; |
| | | } else { |
| | | errStr = 'Parse error on line '+(yylineno+1)+": Unexpected " + |
| | | (symbol == 1 /*EOF*/ ? "end of input" : |
| | | ("'"+(this.terminals_[symbol] || symbol)+"'")); |
| | | } |
| | | this.parseError(errStr, |
| | | {text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.lexer.yylineno, loc: yyloc, expected: expected}); |
| | | } |
| | | |
| | | // just recovered from another error |
| | | if (recovering == 3) { |
| | | if (symbol == EOF) { |
| | | throw new Error(errStr || 'Parsing halted.'); |
| | | } |
| | | |
| | | // discard current lookahead and grab another |
| | | yyleng = this.lexer.yyleng; |
| | | yytext = this.lexer.yytext; |
| | | yylineno = this.lexer.yylineno; |
| | | yyloc = this.lexer.yylloc; |
| | | symbol = lex(); |
| | | } |
| | | |
| | | // try to recover from error |
| | | while (1) { |
| | | // check for error recovery rule in this state |
| | | if ((TERROR.toString()) in table[state]) { |
| | | break; |
| | | } |
| | | if (state == 0) { |
| | | throw new Error(errStr || 'Parsing halted.'); |
| | | } |
| | | popStack(1); |
| | | state = stack[stack.length-1]; |
| | | } |
| | | |
| | | preErrorSymbol = symbol; // save the lookahead token |
| | | symbol = TERROR; // insert generic error symbol as new lookahead |
| | | state = stack[stack.length-1]; |
| | | action = table[state] && table[state][TERROR]; |
| | | recovering = 3; // allow 3 real symbols to be shifted before reporting a new error |
| | | } |
| | | |
| | | // this shouldn't happen, unless resolve defaults are off |
| | | if (action[0] instanceof Array && action.length > 1) { |
| | | throw new Error('Parse Error: multiple actions possible at state: '+state+', token: '+symbol); |
| | | } |
| | | |
| | | switch (action[0]) { |
| | | |
| | | case 1: // shift |
| | | //this.shiftCount++; |
| | | |
| | | stack.push(symbol); |
| | | vstack.push(this.lexer.yytext); |
| | | lstack.push(this.lexer.yylloc); |
| | | stack.push(action[1]); // push state |
| | | symbol = null; |
| | | if (!preErrorSymbol) { // normal execution/no error |
| | | yyleng = this.lexer.yyleng; |
| | | yytext = this.lexer.yytext; |
| | | yylineno = this.lexer.yylineno; |
| | | yyloc = this.lexer.yylloc; |
| | | if (recovering > 0) |
| | | recovering--; |
| | | } else { // error just occurred, resume old lookahead f/ before error |
| | | symbol = preErrorSymbol; |
| | | preErrorSymbol = null; |
| | | } |
| | | break; |
| | | |
| | | case 2: // reduce |
| | | //this.reductionCount++; |
| | | |
| | | len = this.productions_[action[1]][1]; |
| | | |
| | | // perform semantic action |
| | | yyval.$ = vstack[vstack.length-len]; // default to $$ = $1 |
| | | // default location, uses first token for firsts, last for lasts |
| | | yyval._$ = { |
| | | first_line: lstack[lstack.length-(len||1)].first_line, |
| | | last_line: lstack[lstack.length-1].last_line, |
| | | first_column: lstack[lstack.length-(len||1)].first_column, |
| | | last_column: lstack[lstack.length-1].last_column |
| | | }; |
| | | r = this.performAction.call(yyval, yytext, yyleng, yylineno, this.yy, action[1], vstack, lstack); |
| | | |
| | | if (typeof r !== 'undefined') { |
| | | return r; |
| | | } |
| | | |
| | | // pop off stack |
| | | if (len) { |
| | | stack = stack.slice(0,-1*len*2); |
| | | vstack = vstack.slice(0, -1*len); |
| | | lstack = lstack.slice(0, -1*len); |
| | | } |
| | | |
| | | stack.push(this.productions_[action[1]][0]); // push nonterminal (reduce) |
| | | vstack.push(yyval.$); |
| | | lstack.push(yyval._$); |
| | | // goto new state = table[STATE][NONTERMINAL] |
| | | newState = table[stack[stack.length-2]][stack[stack.length-1]]; |
| | | stack.push(newState); |
| | | break; |
| | | |
| | | case 3: // accept |
| | | return true; |
| | | } |
| | | |
| | | } |
| | | |
| | | return true; |
| | | }}; |
| | | /* Jison generated lexer */ |
| | | var lexer = (function(){ |
| | | var lexer = ({EOF:1, |
| | | parseError:function parseError(str, hash) { |
| | | if (this.yy.parseError) { |
| | | this.yy.parseError(str, hash); |
| | | } else { |
| | | throw new Error(str); |
| | | } |
| | | }, |
| | | setInput:function (input) { |
| | | this._input = input; |
| | | this._more = this._less = this.done = false; |
| | | this.yylineno = this.yyleng = 0; |
| | | this.yytext = this.matched = this.match = ''; |
| | | this.conditionStack = ['INITIAL']; |
| | | this.yylloc = {first_line:1,first_column:0,last_line:1,last_column:0}; |
| | | return this; |
| | | }, |
| | | input:function () { |
| | | var ch = this._input[0]; |
| | | this.yytext+=ch; |
| | | this.yyleng++; |
| | | this.match+=ch; |
| | | this.matched+=ch; |
| | | var lines = ch.match(/\n/); |
| | | if (lines) this.yylineno++; |
| | | this._input = this._input.slice(1); |
| | | return ch; |
| | | }, |
| | | unput:function (ch) { |
| | | this._input = ch + this._input; |
| | | return this; |
| | | }, |
| | | more:function () { |
| | | this._more = true; |
| | | return this; |
| | | }, |
| | | less:function (n) { |
| | | this._input = this.match.slice(n) + this._input; |
| | | }, |
| | | pastInput:function () { |
| | | var past = this.matched.substr(0, this.matched.length - this.match.length); |
| | | return (past.length > 20 ? '...':'') + past.substr(-20).replace(/\n/g, ""); |
| | | }, |
| | | upcomingInput:function () { |
| | | var next = this.match; |
| | | if (next.length < 20) { |
| | | next += this._input.substr(0, 20-next.length); |
| | | } |
| | | return (next.substr(0,20)+(next.length > 20 ? '...':'')).replace(/\n/g, ""); |
| | | }, |
| | | showPosition:function () { |
| | | var pre = this.pastInput(); |
| | | var c = new Array(pre.length + 1).join("-"); |
| | | return pre + this.upcomingInput() + "\n" + c+"^"; |
| | | }, |
| | | next:function () { |
| | | if (this.done) { |
| | | return this.EOF; |
| | | } |
| | | if (!this._input) this.done = true; |
| | | |
| | | var token, |
| | | match, |
| | | tempMatch, |
| | | index, |
| | | col, |
| | | lines; |
| | | if (!this._more) { |
| | | this.yytext = ''; |
| | | this.match = ''; |
| | | } |
| | | var rules = this._currentRules(); |
| | | for (var i=0;i < rules.length; i++) { |
| | | tempMatch = this._input.match(this.rules[rules[i]]); |
| | | if (tempMatch && (!match || tempMatch[0].length > match[0].length)) { |
| | | match = tempMatch; |
| | | index = i; |
| | | if (!this.options.flex) break; |
| | | } |
| | | } |
| | | if (match) { |
| | | lines = match[0].match(/\n.*/g); |
| | | if (lines) this.yylineno += lines.length; |
| | | this.yylloc = {first_line: this.yylloc.last_line, |
| | | last_line: this.yylineno+1, |
| | | first_column: this.yylloc.last_column, |
| | | last_column: lines ? lines[lines.length-1].length-1 : this.yylloc.last_column + match[0].length} |
| | | this.yytext += match[0]; |
| | | this.match += match[0]; |
| | | this.yyleng = this.yytext.length; |
| | | this._more = false; |
| | | this._input = this._input.slice(match[0].length); |
| | | this.matched += match[0]; |
| | | token = this.performAction.call(this, this.yy, this, rules[index],this.conditionStack[this.conditionStack.length-1]); |
| | | if (this.done && this._input) this.done = false; |
| | | if (token) return token; |
| | | else return; |
| | | } |
| | | if (this._input === "") { |
| | | return this.EOF; |
| | | } else { |
| | | this.parseError('Lexical error on line '+(this.yylineno+1)+'. Unrecognized text.\n'+this.showPosition(), |
| | | {text: "", token: null, line: this.yylineno}); |
| | | } |
| | | }, |
| | | lex:function lex() { |
| | | var r = this.next(); |
| | | if (typeof r !== 'undefined') { |
| | | return r; |
| | | } else { |
| | | return this.lex(); |
| | | } |
| | | }, |
| | | begin:function begin(condition) { |
| | | this.conditionStack.push(condition); |
| | | }, |
| | | popState:function popState() { |
| | | return this.conditionStack.pop(); |
| | | }, |
| | | _currentRules:function _currentRules() { |
| | | return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules; |
| | | }, |
| | | topState:function () { |
| | | return this.conditionStack[this.conditionStack.length-2]; |
| | | }, |
| | | pushState:function begin(condition) { |
| | | this.begin(condition); |
| | | }}); |
| | | lexer.options = {}; |
| | | lexer.performAction = function anonymous(yy,yy_,$avoiding_name_collisions,YY_START) { |
| | | |
| | | var YYSTATE=YY_START |
| | | switch($avoiding_name_collisions) { |
| | | case 0:/* skip whitespace */ |
| | | break; |
| | | case 1:return 6 |
| | | break; |
| | | case 2:yy_.yytext = yy_.yytext.substr(1,yy_.yyleng-2); return 4 |
| | | break; |
| | | case 3:return 17 |
| | | break; |
| | | case 4:return 18 |
| | | break; |
| | | case 5:return 23 |
| | | break; |
| | | case 6:return 24 |
| | | break; |
| | | case 7:return 22 |
| | | break; |
| | | case 8:return 21 |
| | | break; |
| | | case 9:return 10 |
| | | break; |
| | | case 10:return 11 |
| | | break; |
| | | case 11:return 8 |
| | | break; |
| | | case 12:return 14 |
| | | break; |
| | | case 13:return 'INVALID' |
| | | break; |
| | | } |
| | | }; |
| | | lexer.rules = [/^(?:\s+)/,/^(?:(-?([0-9]|[1-9][0-9]+))(\.[0-9]+)?([eE][-+]?[0-9]+)?\b)/,/^(?:"(?:\\[\\"bfnrt/]|\\u[a-fA-F0-9]{4}|[^\\\0-\x09\x0a-\x1f"])*")/,/^(?:\{)/,/^(?:\})/,/^(?:\[)/,/^(?:\])/,/^(?:,)/,/^(?::)/,/^(?:true\b)/,/^(?:false\b)/,/^(?:null\b)/,/^(?:$)/,/^(?:.)/]; |
| | | lexer.conditions = {"INITIAL":{"rules":[0,1,2,3,4,5,6,7,8,9,10,11,12,13],"inclusive":true}}; |
| | | |
| | | |
| | | ; |
| | | return lexer;})() |
| | | parser.lexer = lexer; |
| | | return parser; |
| | | })(); |
| | | if (typeof require !== 'undefined' && typeof exports !== 'undefined') { |
| | | exports.parser = jsonlint; |
| | | exports.parse = function () { return jsonlint.parse.apply(jsonlint, arguments); } |
| | | exports.main = function commonjsMain(args) { |
| | | if (!args[1]) |
| | | throw new Error('Usage: '+args[0]+' FILE'); |
| | | if (typeof process !== 'undefined') { |
| | | var source = require('fs').readFileSync(require('path').join(process.cwd(), args[1]), "utf8"); |
| | | } else { |
| | | var cwd = require("file").path(require("file").cwd()); |
| | | var source = cwd.join(args[1]).read({charset: "utf-8"}); |
| | | } |
| | | return exports.parser.parse(source); |
| | | } |
| | | if (typeof module !== 'undefined' && require.main === module) { |
| | | exports.main(typeof process !== 'undefined' ? process.argv.slice(1) : require("system").args); |
| | | } |
| | | } |
New file |
| | |
| | | (function(){function diff_match_patch(){this.Diff_Timeout=1;this.Diff_EditCost=4;this.Match_Threshold=0.5;this.Match_Distance=1E3;this.Patch_DeleteThreshold=0.5;this.Patch_Margin=4;this.Match_MaxBits=32} |
| | | diff_match_patch.prototype.diff_main=function(a,b,c,d){"undefined"==typeof d&&(d=0>=this.Diff_Timeout?Number.MAX_VALUE:(new Date).getTime()+1E3*this.Diff_Timeout);if(null==a||null==b)throw Error("Null input. (diff_main)");if(a==b)return a?[[0,a]]:[];"undefined"==typeof c&&(c=!0);var e=c,f=this.diff_commonPrefix(a,b);c=a.substring(0,f);a=a.substring(f);b=b.substring(f);var f=this.diff_commonSuffix(a,b),g=a.substring(a.length-f);a=a.substring(0,a.length-f);b=b.substring(0,b.length-f);a=this.diff_compute_(a, |
| | | b,e,d);c&&a.unshift([0,c]);g&&a.push([0,g]);this.diff_cleanupMerge(a);return a}; |
| | | diff_match_patch.prototype.diff_compute_=function(a,b,c,d){if(!a)return[[1,b]];if(!b)return[[-1,a]];var e=a.length>b.length?a:b,f=a.length>b.length?b:a,g=e.indexOf(f);return-1!=g?(c=[[1,e.substring(0,g)],[0,f],[1,e.substring(g+f.length)]],a.length>b.length&&(c[0][0]=c[2][0]=-1),c):1==f.length?[[-1,a],[1,b]]:(e=this.diff_halfMatch_(a,b))?(f=e[0],a=e[1],g=e[2],b=e[3],e=e[4],f=this.diff_main(f,g,c,d),c=this.diff_main(a,b,c,d),f.concat([[0,e]],c)):c&&100<a.length&&100<b.length?this.diff_lineMode_(a,b, |
| | | d):this.diff_bisect_(a,b,d)}; |
| | | diff_match_patch.prototype.diff_lineMode_=function(a,b,c){var d=this.diff_linesToChars_(a,b);a=d.chars1;b=d.chars2;d=d.lineArray;a=this.diff_main(a,b,!1,c);this.diff_charsToLines_(a,d);this.diff_cleanupSemantic(a);a.push([0,""]);for(var e=d=b=0,f="",g="";b<a.length;){switch(a[b][0]){case 1:e++;g+=a[b][1];break;case -1:d++;f+=a[b][1];break;case 0:if(1<=d&&1<=e){a.splice(b-d-e,d+e);b=b-d-e;d=this.diff_main(f,g,!1,c);for(e=d.length-1;0<=e;e--)a.splice(b,0,d[e]);b+=d.length}d=e=0;g=f=""}b++}a.pop();return a}; |
| | | diff_match_patch.prototype.diff_bisect_=function(a,b,c){for(var d=a.length,e=b.length,f=Math.ceil((d+e)/2),g=f,h=2*f,j=Array(h),i=Array(h),k=0;k<h;k++)j[k]=-1,i[k]=-1;j[g+1]=0;i[g+1]=0;for(var k=d-e,q=0!=k%2,r=0,t=0,p=0,w=0,v=0;v<f&&!((new Date).getTime()>c);v++){for(var n=-v+r;n<=v-t;n+=2){var l=g+n,m;m=n==-v||n!=v&&j[l-1]<j[l+1]?j[l+1]:j[l-1]+1;for(var s=m-n;m<d&&s<e&&a.charAt(m)==b.charAt(s);)m++,s++;j[l]=m;if(m>d)t+=2;else if(s>e)r+=2;else if(q&&(l=g+k-n,0<=l&&l<h&&-1!=i[l])){var u=d-i[l];if(m>= |
| | | u)return this.diff_bisectSplit_(a,b,m,s,c)}}for(n=-v+p;n<=v-w;n+=2){l=g+n;u=n==-v||n!=v&&i[l-1]<i[l+1]?i[l+1]:i[l-1]+1;for(m=u-n;u<d&&m<e&&a.charAt(d-u-1)==b.charAt(e-m-1);)u++,m++;i[l]=u;if(u>d)w+=2;else if(m>e)p+=2;else if(!q&&(l=g+k-n,0<=l&&(l<h&&-1!=j[l])&&(m=j[l],s=g+m-l,u=d-u,m>=u)))return this.diff_bisectSplit_(a,b,m,s,c)}}return[[-1,a],[1,b]]}; |
| | | diff_match_patch.prototype.diff_bisectSplit_=function(a,b,c,d,e){var f=a.substring(0,c),g=b.substring(0,d);a=a.substring(c);b=b.substring(d);f=this.diff_main(f,g,!1,e);e=this.diff_main(a,b,!1,e);return f.concat(e)}; |
| | | diff_match_patch.prototype.diff_linesToChars_=function(a,b){function c(a){for(var b="",c=0,f=-1,g=d.length;f<a.length-1;){f=a.indexOf("\n",c);-1==f&&(f=a.length-1);var r=a.substring(c,f+1),c=f+1;(e.hasOwnProperty?e.hasOwnProperty(r):void 0!==e[r])?b+=String.fromCharCode(e[r]):(b+=String.fromCharCode(g),e[r]=g,d[g++]=r)}return b}var d=[],e={};d[0]="";var f=c(a),g=c(b);return{chars1:f,chars2:g,lineArray:d}}; |
| | | diff_match_patch.prototype.diff_charsToLines_=function(a,b){for(var c=0;c<a.length;c++){for(var d=a[c][1],e=[],f=0;f<d.length;f++)e[f]=b[d.charCodeAt(f)];a[c][1]=e.join("")}};diff_match_patch.prototype.diff_commonPrefix=function(a,b){if(!a||!b||a.charAt(0)!=b.charAt(0))return 0;for(var c=0,d=Math.min(a.length,b.length),e=d,f=0;c<e;)a.substring(f,e)==b.substring(f,e)?f=c=e:d=e,e=Math.floor((d-c)/2+c);return e}; |
| | | diff_match_patch.prototype.diff_commonSuffix=function(a,b){if(!a||!b||a.charAt(a.length-1)!=b.charAt(b.length-1))return 0;for(var c=0,d=Math.min(a.length,b.length),e=d,f=0;c<e;)a.substring(a.length-e,a.length-f)==b.substring(b.length-e,b.length-f)?f=c=e:d=e,e=Math.floor((d-c)/2+c);return e}; |
| | | diff_match_patch.prototype.diff_commonOverlap_=function(a,b){var c=a.length,d=b.length;if(0==c||0==d)return 0;c>d?a=a.substring(c-d):c<d&&(b=b.substring(0,c));c=Math.min(c,d);if(a==b)return c;for(var d=0,e=1;;){var f=a.substring(c-e),f=b.indexOf(f);if(-1==f)return d;e+=f;if(0==f||a.substring(c-e)==b.substring(0,e))d=e,e++}}; |
| | | diff_match_patch.prototype.diff_halfMatch_=function(a,b){function c(a,b,c){for(var d=a.substring(c,c+Math.floor(a.length/4)),e=-1,g="",h,j,n,l;-1!=(e=b.indexOf(d,e+1));){var m=f.diff_commonPrefix(a.substring(c),b.substring(e)),s=f.diff_commonSuffix(a.substring(0,c),b.substring(0,e));g.length<s+m&&(g=b.substring(e-s,e)+b.substring(e,e+m),h=a.substring(0,c-s),j=a.substring(c+m),n=b.substring(0,e-s),l=b.substring(e+m))}return 2*g.length>=a.length?[h,j,n,l,g]:null}if(0>=this.Diff_Timeout)return null; |
| | | var d=a.length>b.length?a:b,e=a.length>b.length?b:a;if(4>d.length||2*e.length<d.length)return null;var f=this,g=c(d,e,Math.ceil(d.length/4)),d=c(d,e,Math.ceil(d.length/2)),h;if(!g&&!d)return null;h=d?g?g[4].length>d[4].length?g:d:d:g;var j;a.length>b.length?(g=h[0],d=h[1],e=h[2],j=h[3]):(e=h[0],j=h[1],g=h[2],d=h[3]);h=h[4];return[g,d,e,j,h]}; |
| | | diff_match_patch.prototype.diff_cleanupSemantic=function(a){for(var b=!1,c=[],d=0,e=null,f=0,g=0,h=0,j=0,i=0;f<a.length;)0==a[f][0]?(c[d++]=f,g=j,h=i,i=j=0,e=a[f][1]):(1==a[f][0]?j+=a[f][1].length:i+=a[f][1].length,e&&(e.length<=Math.max(g,h)&&e.length<=Math.max(j,i))&&(a.splice(c[d-1],0,[-1,e]),a[c[d-1]+1][0]=1,d--,d--,f=0<d?c[d-1]:-1,i=j=h=g=0,e=null,b=!0)),f++;b&&this.diff_cleanupMerge(a);this.diff_cleanupSemanticLossless(a);for(f=1;f<a.length;){if(-1==a[f-1][0]&&1==a[f][0]){b=a[f-1][1];c=a[f][1]; |
| | | d=this.diff_commonOverlap_(b,c);e=this.diff_commonOverlap_(c,b);if(d>=e){if(d>=b.length/2||d>=c.length/2)a.splice(f,0,[0,c.substring(0,d)]),a[f-1][1]=b.substring(0,b.length-d),a[f+1][1]=c.substring(d),f++}else if(e>=b.length/2||e>=c.length/2)a.splice(f,0,[0,b.substring(0,e)]),a[f-1][0]=1,a[f-1][1]=c.substring(0,c.length-e),a[f+1][0]=-1,a[f+1][1]=b.substring(e),f++;f++}f++}}; |
| | | diff_match_patch.prototype.diff_cleanupSemanticLossless=function(a){function b(a,b){if(!a||!b)return 6;var c=a.charAt(a.length-1),d=b.charAt(0),e=c.match(diff_match_patch.nonAlphaNumericRegex_),f=d.match(diff_match_patch.nonAlphaNumericRegex_),g=e&&c.match(diff_match_patch.whitespaceRegex_),h=f&&d.match(diff_match_patch.whitespaceRegex_),c=g&&c.match(diff_match_patch.linebreakRegex_),d=h&&d.match(diff_match_patch.linebreakRegex_),i=c&&a.match(diff_match_patch.blanklineEndRegex_),j=d&&b.match(diff_match_patch.blanklineStartRegex_); |
| | | return i||j?5:c||d?4:e&&!g&&h?3:g||h?2:e||f?1:0}for(var c=1;c<a.length-1;){if(0==a[c-1][0]&&0==a[c+1][0]){var d=a[c-1][1],e=a[c][1],f=a[c+1][1],g=this.diff_commonSuffix(d,e);if(g)var h=e.substring(e.length-g),d=d.substring(0,d.length-g),e=h+e.substring(0,e.length-g),f=h+f;for(var g=d,h=e,j=f,i=b(d,e)+b(e,f);e.charAt(0)===f.charAt(0);){var d=d+e.charAt(0),e=e.substring(1)+f.charAt(0),f=f.substring(1),k=b(d,e)+b(e,f);k>=i&&(i=k,g=d,h=e,j=f)}a[c-1][1]!=g&&(g?a[c-1][1]=g:(a.splice(c-1,1),c--),a[c][1]= |
| | | h,j?a[c+1][1]=j:(a.splice(c+1,1),c--))}c++}};diff_match_patch.nonAlphaNumericRegex_=/[^a-zA-Z0-9]/;diff_match_patch.whitespaceRegex_=/\s/;diff_match_patch.linebreakRegex_=/[\r\n]/;diff_match_patch.blanklineEndRegex_=/\n\r?\n$/;diff_match_patch.blanklineStartRegex_=/^\r?\n\r?\n/; |
| | | diff_match_patch.prototype.diff_cleanupEfficiency=function(a){for(var b=!1,c=[],d=0,e=null,f=0,g=!1,h=!1,j=!1,i=!1;f<a.length;){if(0==a[f][0])a[f][1].length<this.Diff_EditCost&&(j||i)?(c[d++]=f,g=j,h=i,e=a[f][1]):(d=0,e=null),j=i=!1;else if(-1==a[f][0]?i=!0:j=!0,e&&(g&&h&&j&&i||e.length<this.Diff_EditCost/2&&3==g+h+j+i))a.splice(c[d-1],0,[-1,e]),a[c[d-1]+1][0]=1,d--,e=null,g&&h?(j=i=!0,d=0):(d--,f=0<d?c[d-1]:-1,j=i=!1),b=!0;f++}b&&this.diff_cleanupMerge(a)}; |
| | | diff_match_patch.prototype.diff_cleanupMerge=function(a){a.push([0,""]);for(var b=0,c=0,d=0,e="",f="",g;b<a.length;)switch(a[b][0]){case 1:d++;f+=a[b][1];b++;break;case -1:c++;e+=a[b][1];b++;break;case 0:1<c+d?(0!==c&&0!==d&&(g=this.diff_commonPrefix(f,e),0!==g&&(0<b-c-d&&0==a[b-c-d-1][0]?a[b-c-d-1][1]+=f.substring(0,g):(a.splice(0,0,[0,f.substring(0,g)]),b++),f=f.substring(g),e=e.substring(g)),g=this.diff_commonSuffix(f,e),0!==g&&(a[b][1]=f.substring(f.length-g)+a[b][1],f=f.substring(0,f.length- |
| | | g),e=e.substring(0,e.length-g))),0===c?a.splice(b-d,c+d,[1,f]):0===d?a.splice(b-c,c+d,[-1,e]):a.splice(b-c-d,c+d,[-1,e],[1,f]),b=b-c-d+(c?1:0)+(d?1:0)+1):0!==b&&0==a[b-1][0]?(a[b-1][1]+=a[b][1],a.splice(b,1)):b++,c=d=0,f=e=""}""===a[a.length-1][1]&&a.pop();c=!1;for(b=1;b<a.length-1;)0==a[b-1][0]&&0==a[b+1][0]&&(a[b][1].substring(a[b][1].length-a[b-1][1].length)==a[b-1][1]?(a[b][1]=a[b-1][1]+a[b][1].substring(0,a[b][1].length-a[b-1][1].length),a[b+1][1]=a[b-1][1]+a[b+1][1],a.splice(b-1,1),c=!0):a[b][1].substring(0, |
| | | a[b+1][1].length)==a[b+1][1]&&(a[b-1][1]+=a[b+1][1],a[b][1]=a[b][1].substring(a[b+1][1].length)+a[b+1][1],a.splice(b+1,1),c=!0)),b++;c&&this.diff_cleanupMerge(a)};diff_match_patch.prototype.diff_xIndex=function(a,b){var c=0,d=0,e=0,f=0,g;for(g=0;g<a.length;g++){1!==a[g][0]&&(c+=a[g][1].length);-1!==a[g][0]&&(d+=a[g][1].length);if(c>b)break;e=c;f=d}return a.length!=g&&-1===a[g][0]?f:f+(b-e)}; |
| | | diff_match_patch.prototype.diff_prettyHtml=function(a){for(var b=[],c=/&/g,d=/</g,e=/>/g,f=/\n/g,g=0;g<a.length;g++){var h=a[g][0],j=a[g][1],j=j.replace(c,"&").replace(d,"<").replace(e,">").replace(f,"¶<br>");switch(h){case 1:b[g]='<ins style="background:#e6ffe6;">'+j+"</ins>";break;case -1:b[g]='<del style="background:#ffe6e6;">'+j+"</del>";break;case 0:b[g]="<span>"+j+"</span>"}}return b.join("")}; |
| | | diff_match_patch.prototype.diff_text1=function(a){for(var b=[],c=0;c<a.length;c++)1!==a[c][0]&&(b[c]=a[c][1]);return b.join("")};diff_match_patch.prototype.diff_text2=function(a){for(var b=[],c=0;c<a.length;c++)-1!==a[c][0]&&(b[c]=a[c][1]);return b.join("")};diff_match_patch.prototype.diff_levenshtein=function(a){for(var b=0,c=0,d=0,e=0;e<a.length;e++){var f=a[e][0],g=a[e][1];switch(f){case 1:c+=g.length;break;case -1:d+=g.length;break;case 0:b+=Math.max(c,d),d=c=0}}return b+=Math.max(c,d)}; |
| | | diff_match_patch.prototype.diff_toDelta=function(a){for(var b=[],c=0;c<a.length;c++)switch(a[c][0]){case 1:b[c]="+"+encodeURI(a[c][1]);break;case -1:b[c]="-"+a[c][1].length;break;case 0:b[c]="="+a[c][1].length}return b.join("\t").replace(/%20/g," ")}; |
| | | diff_match_patch.prototype.diff_fromDelta=function(a,b){for(var c=[],d=0,e=0,f=b.split(/\t/g),g=0;g<f.length;g++){var h=f[g].substring(1);switch(f[g].charAt(0)){case "+":try{c[d++]=[1,decodeURI(h)]}catch(j){throw Error("Illegal escape in diff_fromDelta: "+h);}break;case "-":case "=":var i=parseInt(h,10);if(isNaN(i)||0>i)throw Error("Invalid number in diff_fromDelta: "+h);h=a.substring(e,e+=i);"="==f[g].charAt(0)?c[d++]=[0,h]:c[d++]=[-1,h];break;default:if(f[g])throw Error("Invalid diff operation in diff_fromDelta: "+ |
| | | f[g]);}}if(e!=a.length)throw Error("Delta length ("+e+") does not equal source text length ("+a.length+").");return c};diff_match_patch.prototype.match_main=function(a,b,c){if(null==a||null==b||null==c)throw Error("Null input. (match_main)");c=Math.max(0,Math.min(c,a.length));return a==b?0:a.length?a.substring(c,c+b.length)==b?c:this.match_bitap_(a,b,c):-1}; |
| | | diff_match_patch.prototype.match_bitap_=function(a,b,c){function d(a,d){var e=a/b.length,g=Math.abs(c-d);return!f.Match_Distance?g?1:e:e+g/f.Match_Distance}if(b.length>this.Match_MaxBits)throw Error("Pattern too long for this browser.");var e=this.match_alphabet_(b),f=this,g=this.Match_Threshold,h=a.indexOf(b,c);-1!=h&&(g=Math.min(d(0,h),g),h=a.lastIndexOf(b,c+b.length),-1!=h&&(g=Math.min(d(0,h),g)));for(var j=1<<b.length-1,h=-1,i,k,q=b.length+a.length,r,t=0;t<b.length;t++){i=0;for(k=q;i<k;)d(t,c+ |
| | | k)<=g?i=k:q=k,k=Math.floor((q-i)/2+i);q=k;i=Math.max(1,c-k+1);var p=Math.min(c+k,a.length)+b.length;k=Array(p+2);for(k[p+1]=(1<<t)-1;p>=i;p--){var w=e[a.charAt(p-1)];k[p]=0===t?(k[p+1]<<1|1)&w:(k[p+1]<<1|1)&w|((r[p+1]|r[p])<<1|1)|r[p+1];if(k[p]&j&&(w=d(t,p-1),w<=g))if(g=w,h=p-1,h>c)i=Math.max(1,2*c-h);else break}if(d(t+1,c)>g)break;r=k}return h}; |
| | | diff_match_patch.prototype.match_alphabet_=function(a){for(var b={},c=0;c<a.length;c++)b[a.charAt(c)]=0;for(c=0;c<a.length;c++)b[a.charAt(c)]|=1<<a.length-c-1;return b}; |
| | | diff_match_patch.prototype.patch_addContext_=function(a,b){if(0!=b.length){for(var c=b.substring(a.start2,a.start2+a.length1),d=0;b.indexOf(c)!=b.lastIndexOf(c)&&c.length<this.Match_MaxBits-this.Patch_Margin-this.Patch_Margin;)d+=this.Patch_Margin,c=b.substring(a.start2-d,a.start2+a.length1+d);d+=this.Patch_Margin;(c=b.substring(a.start2-d,a.start2))&&a.diffs.unshift([0,c]);(d=b.substring(a.start2+a.length1,a.start2+a.length1+d))&&a.diffs.push([0,d]);a.start1-=c.length;a.start2-=c.length;a.length1+= |
| | | c.length+d.length;a.length2+=c.length+d.length}}; |
| | | diff_match_patch.prototype.patch_make=function(a,b,c){var d;if("string"==typeof a&&"string"==typeof b&&"undefined"==typeof c)d=a,b=this.diff_main(d,b,!0),2<b.length&&(this.diff_cleanupSemantic(b),this.diff_cleanupEfficiency(b));else if(a&&"object"==typeof a&&"undefined"==typeof b&&"undefined"==typeof c)b=a,d=this.diff_text1(b);else if("string"==typeof a&&b&&"object"==typeof b&&"undefined"==typeof c)d=a;else if("string"==typeof a&&"string"==typeof b&&c&&"object"==typeof c)d=a,b=c;else throw Error("Unknown call format to patch_make."); |
| | | if(0===b.length)return[];c=[];a=new diff_match_patch.patch_obj;for(var e=0,f=0,g=0,h=d,j=0;j<b.length;j++){var i=b[j][0],k=b[j][1];!e&&0!==i&&(a.start1=f,a.start2=g);switch(i){case 1:a.diffs[e++]=b[j];a.length2+=k.length;d=d.substring(0,g)+k+d.substring(g);break;case -1:a.length1+=k.length;a.diffs[e++]=b[j];d=d.substring(0,g)+d.substring(g+k.length);break;case 0:k.length<=2*this.Patch_Margin&&e&&b.length!=j+1?(a.diffs[e++]=b[j],a.length1+=k.length,a.length2+=k.length):k.length>=2*this.Patch_Margin&& |
| | | e&&(this.patch_addContext_(a,h),c.push(a),a=new diff_match_patch.patch_obj,e=0,h=d,f=g)}1!==i&&(f+=k.length);-1!==i&&(g+=k.length)}e&&(this.patch_addContext_(a,h),c.push(a));return c};diff_match_patch.prototype.patch_deepCopy=function(a){for(var b=[],c=0;c<a.length;c++){var d=a[c],e=new diff_match_patch.patch_obj;e.diffs=[];for(var f=0;f<d.diffs.length;f++)e.diffs[f]=d.diffs[f].slice();e.start1=d.start1;e.start2=d.start2;e.length1=d.length1;e.length2=d.length2;b[c]=e}return b}; |
| | | diff_match_patch.prototype.patch_apply=function(a,b){if(0==a.length)return[b,[]];a=this.patch_deepCopy(a);var c=this.patch_addPadding(a);b=c+b+c;this.patch_splitMax(a);for(var d=0,e=[],f=0;f<a.length;f++){var g=a[f].start2+d,h=this.diff_text1(a[f].diffs),j,i=-1;if(h.length>this.Match_MaxBits){if(j=this.match_main(b,h.substring(0,this.Match_MaxBits),g),-1!=j&&(i=this.match_main(b,h.substring(h.length-this.Match_MaxBits),g+h.length-this.Match_MaxBits),-1==i||j>=i))j=-1}else j=this.match_main(b,h,g); |
| | | if(-1==j)e[f]=!1,d-=a[f].length2-a[f].length1;else if(e[f]=!0,d=j-g,g=-1==i?b.substring(j,j+h.length):b.substring(j,i+this.Match_MaxBits),h==g)b=b.substring(0,j)+this.diff_text2(a[f].diffs)+b.substring(j+h.length);else if(g=this.diff_main(h,g,!1),h.length>this.Match_MaxBits&&this.diff_levenshtein(g)/h.length>this.Patch_DeleteThreshold)e[f]=!1;else{this.diff_cleanupSemanticLossless(g);for(var h=0,k,i=0;i<a[f].diffs.length;i++){var q=a[f].diffs[i];0!==q[0]&&(k=this.diff_xIndex(g,h));1===q[0]?b=b.substring(0, |
| | | j+k)+q[1]+b.substring(j+k):-1===q[0]&&(b=b.substring(0,j+k)+b.substring(j+this.diff_xIndex(g,h+q[1].length)));-1!==q[0]&&(h+=q[1].length)}}}b=b.substring(c.length,b.length-c.length);return[b,e]}; |
| | | diff_match_patch.prototype.patch_addPadding=function(a){for(var b=this.Patch_Margin,c="",d=1;d<=b;d++)c+=String.fromCharCode(d);for(d=0;d<a.length;d++)a[d].start1+=b,a[d].start2+=b;var d=a[0],e=d.diffs;if(0==e.length||0!=e[0][0])e.unshift([0,c]),d.start1-=b,d.start2-=b,d.length1+=b,d.length2+=b;else if(b>e[0][1].length){var f=b-e[0][1].length;e[0][1]=c.substring(e[0][1].length)+e[0][1];d.start1-=f;d.start2-=f;d.length1+=f;d.length2+=f}d=a[a.length-1];e=d.diffs;0==e.length||0!=e[e.length-1][0]?(e.push([0, |
| | | c]),d.length1+=b,d.length2+=b):b>e[e.length-1][1].length&&(f=b-e[e.length-1][1].length,e[e.length-1][1]+=c.substring(0,f),d.length1+=f,d.length2+=f);return c}; |
| | | diff_match_patch.prototype.patch_splitMax=function(a){for(var b=this.Match_MaxBits,c=0;c<a.length;c++)if(!(a[c].length1<=b)){var d=a[c];a.splice(c--,1);for(var e=d.start1,f=d.start2,g="";0!==d.diffs.length;){var h=new diff_match_patch.patch_obj,j=!0;h.start1=e-g.length;h.start2=f-g.length;""!==g&&(h.length1=h.length2=g.length,h.diffs.push([0,g]));for(;0!==d.diffs.length&&h.length1<b-this.Patch_Margin;){var g=d.diffs[0][0],i=d.diffs[0][1];1===g?(h.length2+=i.length,f+=i.length,h.diffs.push(d.diffs.shift()), |
| | | j=!1):-1===g&&1==h.diffs.length&&0==h.diffs[0][0]&&i.length>2*b?(h.length1+=i.length,e+=i.length,j=!1,h.diffs.push([g,i]),d.diffs.shift()):(i=i.substring(0,b-h.length1-this.Patch_Margin),h.length1+=i.length,e+=i.length,0===g?(h.length2+=i.length,f+=i.length):j=!1,h.diffs.push([g,i]),i==d.diffs[0][1]?d.diffs.shift():d.diffs[0][1]=d.diffs[0][1].substring(i.length))}g=this.diff_text2(h.diffs);g=g.substring(g.length-this.Patch_Margin);i=this.diff_text1(d.diffs).substring(0,this.Patch_Margin);""!==i&& |
| | | (h.length1+=i.length,h.length2+=i.length,0!==h.diffs.length&&0===h.diffs[h.diffs.length-1][0]?h.diffs[h.diffs.length-1][1]+=i:h.diffs.push([0,i]));j||a.splice(++c,0,h)}}};diff_match_patch.prototype.patch_toText=function(a){for(var b=[],c=0;c<a.length;c++)b[c]=a[c];return b.join("")}; |
| | | diff_match_patch.prototype.patch_fromText=function(a){var b=[];if(!a)return b;a=a.split("\n");for(var c=0,d=/^@@ -(\d+),?(\d*) \+(\d+),?(\d*) @@$/;c<a.length;){var e=a[c].match(d);if(!e)throw Error("Invalid patch string: "+a[c]);var f=new diff_match_patch.patch_obj;b.push(f);f.start1=parseInt(e[1],10);""===e[2]?(f.start1--,f.length1=1):"0"==e[2]?f.length1=0:(f.start1--,f.length1=parseInt(e[2],10));f.start2=parseInt(e[3],10);""===e[4]?(f.start2--,f.length2=1):"0"==e[4]?f.length2=0:(f.start2--,f.length2= |
| | | parseInt(e[4],10));for(c++;c<a.length;){e=a[c].charAt(0);try{var g=decodeURI(a[c].substring(1))}catch(h){throw Error("Illegal escape in patch_fromText: "+g);}if("-"==e)f.diffs.push([-1,g]);else if("+"==e)f.diffs.push([1,g]);else if(" "==e)f.diffs.push([0,g]);else if("@"==e)break;else if(""!==e)throw Error('Invalid patch mode "'+e+'" in: '+g);c++}}return b};diff_match_patch.patch_obj=function(){this.diffs=[];this.start2=this.start1=null;this.length2=this.length1=0}; |
| | | diff_match_patch.patch_obj.prototype.toString=function(){var a,b;a=0===this.length1?this.start1+",0":1==this.length1?this.start1+1:this.start1+1+","+this.length1;b=0===this.length2?this.start2+",0":1==this.length2?this.start2+1:this.start2+1+","+this.length2;a=["@@ -"+a+" +"+b+" @@\n"];var c;for(b=0;b<this.diffs.length;b++){switch(this.diffs[b][0]){case 1:c="+";break;case -1:c="-";break;case 0:c=" "}a[b+1]=c+encodeURI(this.diffs[b][1])+"\n"}return a.join("").replace(/%20/g," ")}; |
| | | this.diff_match_patch=diff_match_patch;this.DIFF_DELETE=-1;this.DIFF_INSERT=1;this.DIFF_EQUAL=0;})() |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | |
| | | (function(mod) { |
| | | if (typeof exports == "object" && typeof module == "object") // CommonJS |
| | | mod(require("../../lib/codemirror")); |
| | | else if (typeof define == "function" && define.amd) // AMD |
| | | define(["../../lib/codemirror"], mod); |
| | | else // Plain browser env |
| | | mod(CodeMirror); |
| | | })(function(CodeMirror) { |
| | | "use strict"; |
| | | |
| | | function expressionAllowed(stream, state, backUp) { |
| | | return /^(?:operator|sof|keyword c|case|new|export|default|[\[{}\(,;:]|=>)$/.test(state.lastType) || |
| | | (state.lastType == "quasi" && /\{\s*$/.test(stream.string.slice(0, stream.pos - (backUp || 0)))) |
| | | } |
| | | |
| | | CodeMirror.defineMode("javascript", function(config, parserConfig) { |
| | | var indentUnit = config.indentUnit; |
| | | var statementIndent = parserConfig.statementIndent; |
| | | var jsonldMode = parserConfig.jsonld; |
| | | var jsonMode = parserConfig.json || jsonldMode; |
| | | var isTS = parserConfig.typescript; |
| | | var wordRE = parserConfig.wordCharacters || /[\w$\xa1-\uffff]/; |
| | | |
| | | // Tokenizer |
| | | |
| | | var keywords = function(){ |
| | | function kw(type) {return {type: type, style: "keyword"};} |
| | | var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c"); |
| | | var operator = kw("operator"), atom = {type: "atom", style: "atom"}; |
| | | |
| | | var jsKeywords = { |
| | | "if": kw("if"), "while": A, "with": A, "else": B, "do": B, "try": B, "finally": B, |
| | | "return": C, "break": C, "continue": C, "new": kw("new"), "delete": C, "throw": C, "debugger": C, |
| | | "var": kw("var"), "const": kw("var"), "let": kw("var"), |
| | | "function": kw("function"), "catch": kw("catch"), |
| | | "for": kw("for"), "switch": kw("switch"), "case": kw("case"), "default": kw("default"), |
| | | "in": operator, "typeof": operator, "instanceof": operator, |
| | | "true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom, |
| | | "this": kw("this"), "class": kw("class"), "super": kw("atom"), |
| | | "yield": C, "export": kw("export"), "import": kw("import"), "extends": C, |
| | | "await": C |
| | | }; |
| | | |
| | | // Extend the 'normal' keywords with the TypeScript language extensions |
| | | if (isTS) { |
| | | var type = {type: "variable", style: "type"}; |
| | | var tsKeywords = { |
| | | // object-like things |
| | | "interface": kw("class"), |
| | | "implements": C, |
| | | "namespace": C, |
| | | "module": kw("module"), |
| | | "enum": kw("module"), |
| | | |
| | | // scope modifiers |
| | | "public": kw("modifier"), |
| | | "private": kw("modifier"), |
| | | "protected": kw("modifier"), |
| | | "abstract": kw("modifier"), |
| | | |
| | | // types |
| | | "string": type, "number": type, "boolean": type, "any": type |
| | | }; |
| | | |
| | | for (var attr in tsKeywords) { |
| | | jsKeywords[attr] = tsKeywords[attr]; |
| | | } |
| | | } |
| | | |
| | | return jsKeywords; |
| | | }(); |
| | | |
| | | var isOperatorChar = /[+\-*&%=<>!?|~^@]/; |
| | | var isJsonldKeyword = /^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/; |
| | | |
| | | function readRegexp(stream) { |
| | | var escaped = false, next, inSet = false; |
| | | while ((next = stream.next()) != null) { |
| | | if (!escaped) { |
| | | if (next == "/" && !inSet) return; |
| | | if (next == "[") inSet = true; |
| | | else if (inSet && next == "]") inSet = false; |
| | | } |
| | | escaped = !escaped && next == "\\"; |
| | | } |
| | | } |
| | | |
| | | // Used as scratch variables to communicate multiple values without |
| | | // consing up tons of objects. |
| | | var type, content; |
| | | function ret(tp, style, cont) { |
| | | type = tp; content = cont; |
| | | return style; |
| | | } |
| | | function tokenBase(stream, state) { |
| | | var ch = stream.next(); |
| | | if (ch == '"' || ch == "'") { |
| | | state.tokenize = tokenString(ch); |
| | | return state.tokenize(stream, state); |
| | | } else if (ch == "." && stream.match(/^\d+(?:[eE][+\-]?\d+)?/)) { |
| | | return ret("number", "number"); |
| | | } else if (ch == "." && stream.match("..")) { |
| | | return ret("spread", "meta"); |
| | | } else if (/[\[\]{}\(\),;\:\.]/.test(ch)) { |
| | | return ret(ch); |
| | | } else if (ch == "=" && stream.eat(">")) { |
| | | return ret("=>", "operator"); |
| | | } else if (ch == "0" && stream.eat(/x/i)) { |
| | | stream.eatWhile(/[\da-f]/i); |
| | | return ret("number", "number"); |
| | | } else if (ch == "0" && stream.eat(/o/i)) { |
| | | stream.eatWhile(/[0-7]/i); |
| | | return ret("number", "number"); |
| | | } else if (ch == "0" && stream.eat(/b/i)) { |
| | | stream.eatWhile(/[01]/i); |
| | | return ret("number", "number"); |
| | | } else if (/\d/.test(ch)) { |
| | | stream.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/); |
| | | return ret("number", "number"); |
| | | } else if (ch == "/") { |
| | | if (stream.eat("*")) { |
| | | state.tokenize = tokenComment; |
| | | return tokenComment(stream, state); |
| | | } else if (stream.eat("/")) { |
| | | stream.skipToEnd(); |
| | | return ret("comment", "comment"); |
| | | } else if (expressionAllowed(stream, state, 1)) { |
| | | readRegexp(stream); |
| | | stream.match(/^\b(([gimyu])(?![gimyu]*\2))+\b/); |
| | | return ret("regexp", "string-2"); |
| | | } else { |
| | | stream.eatWhile(isOperatorChar); |
| | | return ret("operator", "operator", stream.current()); |
| | | } |
| | | } else if (ch == "`") { |
| | | state.tokenize = tokenQuasi; |
| | | return tokenQuasi(stream, state); |
| | | } else if (ch == "#") { |
| | | stream.skipToEnd(); |
| | | return ret("error", "error"); |
| | | } else if (isOperatorChar.test(ch)) { |
| | | if (ch != ">" || !state.lexical || state.lexical.type != ">") |
| | | stream.eatWhile(isOperatorChar); |
| | | return ret("operator", "operator", stream.current()); |
| | | } else if (wordRE.test(ch)) { |
| | | stream.eatWhile(wordRE); |
| | | var word = stream.current() |
| | | if (state.lastType != ".") { |
| | | if (keywords.propertyIsEnumerable(word)) { |
| | | var kw = keywords[word] |
| | | return ret(kw.type, kw.style, word) |
| | | } |
| | | if (word == "async" && stream.match(/^\s*[\(\w]/, false)) |
| | | return ret("async", "keyword", word) |
| | | } |
| | | return ret("variable", "variable", word) |
| | | } |
| | | } |
| | | |
| | | function tokenString(quote) { |
| | | return function(stream, state) { |
| | | var escaped = false, next; |
| | | if (jsonldMode && stream.peek() == "@" && stream.match(isJsonldKeyword)){ |
| | | state.tokenize = tokenBase; |
| | | return ret("jsonld-keyword", "meta"); |
| | | } |
| | | while ((next = stream.next()) != null) { |
| | | if (next == quote && !escaped) break; |
| | | escaped = !escaped && next == "\\"; |
| | | } |
| | | if (!escaped) state.tokenize = tokenBase; |
| | | return ret("string", "string"); |
| | | }; |
| | | } |
| | | |
| | | function tokenComment(stream, state) { |
| | | var maybeEnd = false, ch; |
| | | while (ch = stream.next()) { |
| | | if (ch == "/" && maybeEnd) { |
| | | state.tokenize = tokenBase; |
| | | break; |
| | | } |
| | | maybeEnd = (ch == "*"); |
| | | } |
| | | return ret("comment", "comment"); |
| | | } |
| | | |
| | | function tokenQuasi(stream, state) { |
| | | var escaped = false, next; |
| | | while ((next = stream.next()) != null) { |
| | | if (!escaped && (next == "`" || next == "$" && stream.eat("{"))) { |
| | | state.tokenize = tokenBase; |
| | | break; |
| | | } |
| | | escaped = !escaped && next == "\\"; |
| | | } |
| | | return ret("quasi", "string-2", stream.current()); |
| | | } |
| | | |
| | | var brackets = "([{}])"; |
| | | // This is a crude lookahead trick to try and notice that we're |
| | | // parsing the argument patterns for a fat-arrow function before we |
| | | // actually hit the arrow token. It only works if the arrow is on |
| | | // the same line as the arguments and there's no strange noise |
| | | // (comments) in between. Fallback is to only notice when we hit the |
| | | // arrow, and not declare the arguments as locals for the arrow |
| | | // body. |
| | | function findFatArrow(stream, state) { |
| | | if (state.fatArrowAt) state.fatArrowAt = null; |
| | | var arrow = stream.string.indexOf("=>", stream.start); |
| | | if (arrow < 0) return; |
| | | |
| | | if (isTS) { // Try to skip TypeScript return type declarations after the arguments |
| | | var m = /:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(stream.string.slice(stream.start, arrow)) |
| | | if (m) arrow = m.index |
| | | } |
| | | |
| | | var depth = 0, sawSomething = false; |
| | | for (var pos = arrow - 1; pos >= 0; --pos) { |
| | | var ch = stream.string.charAt(pos); |
| | | var bracket = brackets.indexOf(ch); |
| | | if (bracket >= 0 && bracket < 3) { |
| | | if (!depth) { ++pos; break; } |
| | | if (--depth == 0) { if (ch == "(") sawSomething = true; break; } |
| | | } else if (bracket >= 3 && bracket < 6) { |
| | | ++depth; |
| | | } else if (wordRE.test(ch)) { |
| | | sawSomething = true; |
| | | } else if (/["'\/]/.test(ch)) { |
| | | return; |
| | | } else if (sawSomething && !depth) { |
| | | ++pos; |
| | | break; |
| | | } |
| | | } |
| | | if (sawSomething && !depth) state.fatArrowAt = pos; |
| | | } |
| | | |
| | | // Parser |
| | | |
| | | var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true, "this": true, "jsonld-keyword": true}; |
| | | |
| | | function JSLexical(indented, column, type, align, prev, info) { |
| | | this.indented = indented; |
| | | this.column = column; |
| | | this.type = type; |
| | | this.prev = prev; |
| | | this.info = info; |
| | | if (align != null) this.align = align; |
| | | } |
| | | |
| | | function inScope(state, varname) { |
| | | for (var v = state.localVars; v; v = v.next) |
| | | if (v.name == varname) return true; |
| | | for (var cx = state.context; cx; cx = cx.prev) { |
| | | for (var v = cx.vars; v; v = v.next) |
| | | if (v.name == varname) return true; |
| | | } |
| | | } |
| | | |
| | | function parseJS(state, style, type, content, stream) { |
| | | var cc = state.cc; |
| | | // Communicate our context to the combinators. |
| | | // (Less wasteful than consing up a hundred closures on every call.) |
| | | cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc; cx.style = style; |
| | | |
| | | if (!state.lexical.hasOwnProperty("align")) |
| | | state.lexical.align = true; |
| | | |
| | | while(true) { |
| | | var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement; |
| | | if (combinator(type, content)) { |
| | | while(cc.length && cc[cc.length - 1].lex) |
| | | cc.pop()(); |
| | | if (cx.marked) return cx.marked; |
| | | if (type == "variable" && inScope(state, content)) return "variable-2"; |
| | | return style; |
| | | } |
| | | } |
| | | } |
| | | |
| | | // Combinator utils |
| | | |
| | | var cx = {state: null, column: null, marked: null, cc: null}; |
| | | function pass() { |
| | | for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]); |
| | | } |
| | | function cont() { |
| | | pass.apply(null, arguments); |
| | | return true; |
| | | } |
| | | function register(varname) { |
| | | function inList(list) { |
| | | for (var v = list; v; v = v.next) |
| | | if (v.name == varname) return true; |
| | | return false; |
| | | } |
| | | var state = cx.state; |
| | | cx.marked = "def"; |
| | | if (state.context) { |
| | | if (inList(state.localVars)) return; |
| | | state.localVars = {name: varname, next: state.localVars}; |
| | | } else { |
| | | if (inList(state.globalVars)) return; |
| | | if (parserConfig.globalVars) |
| | | state.globalVars = {name: varname, next: state.globalVars}; |
| | | } |
| | | } |
| | | |
| | | // Combinators |
| | | |
| | | var defaultVars = {name: "this", next: {name: "arguments"}}; |
| | | function pushcontext() { |
| | | cx.state.context = {prev: cx.state.context, vars: cx.state.localVars}; |
| | | cx.state.localVars = defaultVars; |
| | | } |
| | | function popcontext() { |
| | | cx.state.localVars = cx.state.context.vars; |
| | | cx.state.context = cx.state.context.prev; |
| | | } |
| | | function pushlex(type, info) { |
| | | var result = function() { |
| | | var state = cx.state, indent = state.indented; |
| | | if (state.lexical.type == "stat") indent = state.lexical.indented; |
| | | else for (var outer = state.lexical; outer && outer.type == ")" && outer.align; outer = outer.prev) |
| | | indent = outer.indented; |
| | | state.lexical = new JSLexical(indent, cx.stream.column(), type, null, state.lexical, info); |
| | | }; |
| | | result.lex = true; |
| | | return result; |
| | | } |
| | | function poplex() { |
| | | var state = cx.state; |
| | | if (state.lexical.prev) { |
| | | if (state.lexical.type == ")") |
| | | state.indented = state.lexical.indented; |
| | | state.lexical = state.lexical.prev; |
| | | } |
| | | } |
| | | poplex.lex = true; |
| | | |
| | | function expect(wanted) { |
| | | function exp(type) { |
| | | if (type == wanted) return cont(); |
| | | else if (wanted == ";") return pass(); |
| | | else return cont(exp); |
| | | }; |
| | | return exp; |
| | | } |
| | | |
| | | function statement(type, value) { |
| | | if (type == "var") return cont(pushlex("vardef", value.length), vardef, expect(";"), poplex); |
| | | if (type == "keyword a") return cont(pushlex("form"), parenExpr, statement, poplex); |
| | | if (type == "keyword b") return cont(pushlex("form"), statement, poplex); |
| | | if (type == "{") return cont(pushlex("}"), block, poplex); |
| | | if (type == ";") return cont(); |
| | | if (type == "if") { |
| | | if (cx.state.lexical.info == "else" && cx.state.cc[cx.state.cc.length - 1] == poplex) |
| | | cx.state.cc.pop()(); |
| | | return cont(pushlex("form"), parenExpr, statement, poplex, maybeelse); |
| | | } |
| | | if (type == "function") return cont(functiondef); |
| | | if (type == "for") return cont(pushlex("form"), forspec, statement, poplex); |
| | | if (type == "variable") { |
| | | if (isTS && value == "type") { |
| | | cx.marked = "keyword" |
| | | return cont(typeexpr, expect("operator"), typeexpr, expect(";")); |
| | | } else { |
| | | return cont(pushlex("stat"), maybelabel); |
| | | } |
| | | } |
| | | if (type == "switch") return cont(pushlex("form"), parenExpr, expect("{"), pushlex("}", "switch"), |
| | | block, poplex, poplex); |
| | | if (type == "case") return cont(expression, expect(":")); |
| | | if (type == "default") return cont(expect(":")); |
| | | if (type == "catch") return cont(pushlex("form"), pushcontext, expect("("), funarg, expect(")"), |
| | | statement, poplex, popcontext); |
| | | if (type == "class") return cont(pushlex("form"), className, poplex); |
| | | if (type == "export") return cont(pushlex("stat"), afterExport, poplex); |
| | | if (type == "import") return cont(pushlex("stat"), afterImport, poplex); |
| | | if (type == "module") return cont(pushlex("form"), pattern, expect("{"), pushlex("}"), block, poplex, poplex) |
| | | if (type == "async") return cont(statement) |
| | | if (value == "@") return cont(expression, statement) |
| | | return pass(pushlex("stat"), expression, expect(";"), poplex); |
| | | } |
| | | function expression(type) { |
| | | return expressionInner(type, false); |
| | | } |
| | | function expressionNoComma(type) { |
| | | return expressionInner(type, true); |
| | | } |
| | | function parenExpr(type) { |
| | | if (type != "(") return pass() |
| | | return cont(pushlex(")"), expression, expect(")"), poplex) |
| | | } |
| | | function expressionInner(type, noComma) { |
| | | if (cx.state.fatArrowAt == cx.stream.start) { |
| | | var body = noComma ? arrowBodyNoComma : arrowBody; |
| | | if (type == "(") return cont(pushcontext, pushlex(")"), commasep(pattern, ")"), poplex, expect("=>"), body, popcontext); |
| | | else if (type == "variable") return pass(pushcontext, pattern, expect("=>"), body, popcontext); |
| | | } |
| | | |
| | | var maybeop = noComma ? maybeoperatorNoComma : maybeoperatorComma; |
| | | if (atomicTypes.hasOwnProperty(type)) return cont(maybeop); |
| | | if (type == "function") return cont(functiondef, maybeop); |
| | | if (type == "class") return cont(pushlex("form"), classExpression, poplex); |
| | | if (type == "keyword c" || type == "async") return cont(noComma ? maybeexpressionNoComma : maybeexpression); |
| | | if (type == "(") return cont(pushlex(")"), maybeexpression, expect(")"), poplex, maybeop); |
| | | if (type == "operator" || type == "spread") return cont(noComma ? expressionNoComma : expression); |
| | | if (type == "[") return cont(pushlex("]"), arrayLiteral, poplex, maybeop); |
| | | if (type == "{") return contCommasep(objprop, "}", null, maybeop); |
| | | if (type == "quasi") return pass(quasi, maybeop); |
| | | if (type == "new") return cont(maybeTarget(noComma)); |
| | | return cont(); |
| | | } |
| | | function maybeexpression(type) { |
| | | if (type.match(/[;\}\)\],]/)) return pass(); |
| | | return pass(expression); |
| | | } |
| | | function maybeexpressionNoComma(type) { |
| | | if (type.match(/[;\}\)\],]/)) return pass(); |
| | | return pass(expressionNoComma); |
| | | } |
| | | |
| | | function maybeoperatorComma(type, value) { |
| | | if (type == ",") return cont(expression); |
| | | return maybeoperatorNoComma(type, value, false); |
| | | } |
| | | function maybeoperatorNoComma(type, value, noComma) { |
| | | var me = noComma == false ? maybeoperatorComma : maybeoperatorNoComma; |
| | | var expr = noComma == false ? expression : expressionNoComma; |
| | | if (type == "=>") return cont(pushcontext, noComma ? arrowBodyNoComma : arrowBody, popcontext); |
| | | if (type == "operator") { |
| | | if (/\+\+|--/.test(value)) return cont(me); |
| | | if (value == "?") return cont(expression, expect(":"), expr); |
| | | return cont(expr); |
| | | } |
| | | if (type == "quasi") { return pass(quasi, me); } |
| | | if (type == ";") return; |
| | | if (type == "(") return contCommasep(expressionNoComma, ")", "call", me); |
| | | if (type == ".") return cont(property, me); |
| | | if (type == "[") return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me); |
| | | if (isTS && value == "as") { cx.marked = "keyword"; return cont(typeexpr, me) } |
| | | } |
| | | function quasi(type, value) { |
| | | if (type != "quasi") return pass(); |
| | | if (value.slice(value.length - 2) != "${") return cont(quasi); |
| | | return cont(expression, continueQuasi); |
| | | } |
| | | function continueQuasi(type) { |
| | | if (type == "}") { |
| | | cx.marked = "string-2"; |
| | | cx.state.tokenize = tokenQuasi; |
| | | return cont(quasi); |
| | | } |
| | | } |
| | | function arrowBody(type) { |
| | | findFatArrow(cx.stream, cx.state); |
| | | return pass(type == "{" ? statement : expression); |
| | | } |
| | | function arrowBodyNoComma(type) { |
| | | findFatArrow(cx.stream, cx.state); |
| | | return pass(type == "{" ? statement : expressionNoComma); |
| | | } |
| | | function maybeTarget(noComma) { |
| | | return function(type) { |
| | | if (type == ".") return cont(noComma ? targetNoComma : target); |
| | | else return pass(noComma ? expressionNoComma : expression); |
| | | }; |
| | | } |
| | | function target(_, value) { |
| | | if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorComma); } |
| | | } |
| | | function targetNoComma(_, value) { |
| | | if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorNoComma); } |
| | | } |
| | | function maybelabel(type) { |
| | | if (type == ":") return cont(poplex, statement); |
| | | return pass(maybeoperatorComma, expect(";"), poplex); |
| | | } |
| | | function property(type) { |
| | | if (type == "variable") {cx.marked = "property"; return cont();} |
| | | } |
| | | function objprop(type, value) { |
| | | if (type == "async") { |
| | | cx.marked = "property"; |
| | | return cont(objprop); |
| | | } else if (type == "variable" || cx.style == "keyword") { |
| | | cx.marked = "property"; |
| | | if (value == "get" || value == "set") return cont(getterSetter); |
| | | return cont(afterprop); |
| | | } else if (type == "number" || type == "string") { |
| | | cx.marked = jsonldMode ? "property" : (cx.style + " property"); |
| | | return cont(afterprop); |
| | | } else if (type == "jsonld-keyword") { |
| | | return cont(afterprop); |
| | | } else if (type == "modifier") { |
| | | return cont(objprop) |
| | | } else if (type == "[") { |
| | | return cont(expression, expect("]"), afterprop); |
| | | } else if (type == "spread") { |
| | | return cont(expression, afterprop); |
| | | } else if (type == ":") { |
| | | return pass(afterprop) |
| | | } |
| | | } |
| | | function getterSetter(type) { |
| | | if (type != "variable") return pass(afterprop); |
| | | cx.marked = "property"; |
| | | return cont(functiondef); |
| | | } |
| | | function afterprop(type) { |
| | | if (type == ":") return cont(expressionNoComma); |
| | | if (type == "(") return pass(functiondef); |
| | | } |
| | | function commasep(what, end, sep) { |
| | | function proceed(type, value) { |
| | | if (sep ? sep.indexOf(type) > -1 : type == ",") { |
| | | var lex = cx.state.lexical; |
| | | if (lex.info == "call") lex.pos = (lex.pos || 0) + 1; |
| | | return cont(function(type, value) { |
| | | if (type == end || value == end) return pass() |
| | | return pass(what) |
| | | }, proceed); |
| | | } |
| | | if (type == end || value == end) return cont(); |
| | | return cont(expect(end)); |
| | | } |
| | | return function(type, value) { |
| | | if (type == end || value == end) return cont(); |
| | | return pass(what, proceed); |
| | | }; |
| | | } |
| | | function contCommasep(what, end, info) { |
| | | for (var i = 3; i < arguments.length; i++) |
| | | cx.cc.push(arguments[i]); |
| | | return cont(pushlex(end, info), commasep(what, end), poplex); |
| | | } |
| | | function block(type) { |
| | | if (type == "}") return cont(); |
| | | return pass(statement, block); |
| | | } |
| | | function maybetype(type, value) { |
| | | if (isTS) { |
| | | if (type == ":") return cont(typeexpr); |
| | | if (value == "?") return cont(maybetype); |
| | | } |
| | | } |
| | | function typeexpr(type) { |
| | | if (type == "variable") {cx.marked = "type"; return cont(afterType);} |
| | | if (type == "string" || type == "number" || type == "atom") return cont(afterType); |
| | | if (type == "{") return cont(pushlex("}"), commasep(typeprop, "}", ",;"), poplex, afterType) |
| | | if (type == "(") return cont(commasep(typearg, ")"), maybeReturnType) |
| | | } |
| | | function maybeReturnType(type) { |
| | | if (type == "=>") return cont(typeexpr) |
| | | } |
| | | function typeprop(type, value) { |
| | | if (type == "variable" || cx.style == "keyword") { |
| | | cx.marked = "property" |
| | | return cont(typeprop) |
| | | } else if (value == "?") { |
| | | return cont(typeprop) |
| | | } else if (type == ":") { |
| | | return cont(typeexpr) |
| | | } else if (type == "[") { |
| | | return cont(expression, maybetype, expect("]"), typeprop) |
| | | } |
| | | } |
| | | function typearg(type) { |
| | | if (type == "variable") return cont(typearg) |
| | | else if (type == ":") return cont(typeexpr) |
| | | } |
| | | function afterType(type, value) { |
| | | if (value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, afterType) |
| | | if (value == "|" || type == ".") return cont(typeexpr) |
| | | if (type == "[") return cont(expect("]"), afterType) |
| | | if (value == "extends") return cont(typeexpr) |
| | | } |
| | | function vardef() { |
| | | return pass(pattern, maybetype, maybeAssign, vardefCont); |
| | | } |
| | | function pattern(type, value) { |
| | | if (type == "modifier") return cont(pattern) |
| | | if (type == "variable") { register(value); return cont(); } |
| | | if (type == "spread") return cont(pattern); |
| | | if (type == "[") return contCommasep(pattern, "]"); |
| | | if (type == "{") return contCommasep(proppattern, "}"); |
| | | } |
| | | function proppattern(type, value) { |
| | | if (type == "variable" && !cx.stream.match(/^\s*:/, false)) { |
| | | register(value); |
| | | return cont(maybeAssign); |
| | | } |
| | | if (type == "variable") cx.marked = "property"; |
| | | if (type == "spread") return cont(pattern); |
| | | if (type == "}") return pass(); |
| | | return cont(expect(":"), pattern, maybeAssign); |
| | | } |
| | | function maybeAssign(_type, value) { |
| | | if (value == "=") return cont(expressionNoComma); |
| | | } |
| | | function vardefCont(type) { |
| | | if (type == ",") return cont(vardef); |
| | | } |
| | | function maybeelse(type, value) { |
| | | if (type == "keyword b" && value == "else") return cont(pushlex("form", "else"), statement, poplex); |
| | | } |
| | | function forspec(type) { |
| | | if (type == "(") return cont(pushlex(")"), forspec1, expect(")"), poplex); |
| | | } |
| | | function forspec1(type) { |
| | | if (type == "var") return cont(vardef, expect(";"), forspec2); |
| | | if (type == ";") return cont(forspec2); |
| | | if (type == "variable") return cont(formaybeinof); |
| | | return pass(expression, expect(";"), forspec2); |
| | | } |
| | | function formaybeinof(_type, value) { |
| | | if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); } |
| | | return cont(maybeoperatorComma, forspec2); |
| | | } |
| | | function forspec2(type, value) { |
| | | if (type == ";") return cont(forspec3); |
| | | if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); } |
| | | return pass(expression, expect(";"), forspec3); |
| | | } |
| | | function forspec3(type) { |
| | | if (type != ")") cont(expression); |
| | | } |
| | | function functiondef(type, value) { |
| | | if (value == "*") {cx.marked = "keyword"; return cont(functiondef);} |
| | | if (type == "variable") {register(value); return cont(functiondef);} |
| | | if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, maybetype, statement, popcontext); |
| | | if (isTS && value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, functiondef) |
| | | } |
| | | function funarg(type) { |
| | | if (type == "spread") return cont(funarg); |
| | | return pass(pattern, maybetype, maybeAssign); |
| | | } |
| | | function classExpression(type, value) { |
| | | // Class expressions may have an optional name. |
| | | if (type == "variable") return className(type, value); |
| | | return classNameAfter(type, value); |
| | | } |
| | | function className(type, value) { |
| | | if (type == "variable") {register(value); return cont(classNameAfter);} |
| | | } |
| | | function classNameAfter(type, value) { |
| | | if (value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, classNameAfter) |
| | | if (value == "extends" || value == "implements" || (isTS && type == ",")) |
| | | return cont(isTS ? typeexpr : expression, classNameAfter); |
| | | if (type == "{") return cont(pushlex("}"), classBody, poplex); |
| | | } |
| | | function classBody(type, value) { |
| | | if (type == "variable" || cx.style == "keyword") { |
| | | if ((value == "async" || value == "static" || value == "get" || value == "set" || |
| | | (isTS && (value == "public" || value == "private" || value == "protected" || value == "readonly" || value == "abstract"))) && |
| | | cx.stream.match(/^\s+[\w$\xa1-\uffff]/, false)) { |
| | | cx.marked = "keyword"; |
| | | return cont(classBody); |
| | | } |
| | | cx.marked = "property"; |
| | | return cont(isTS ? classfield : functiondef, classBody); |
| | | } |
| | | if (type == "[") |
| | | return cont(expression, expect("]"), isTS ? classfield : functiondef, classBody) |
| | | if (value == "*") { |
| | | cx.marked = "keyword"; |
| | | return cont(classBody); |
| | | } |
| | | if (type == ";") return cont(classBody); |
| | | if (type == "}") return cont(); |
| | | if (value == "@") return cont(expression, classBody) |
| | | } |
| | | function classfield(type, value) { |
| | | if (value == "?") return cont(classfield) |
| | | if (type == ":") return cont(typeexpr, maybeAssign) |
| | | if (value == "=") return cont(expressionNoComma) |
| | | return pass(functiondef) |
| | | } |
| | | function afterExport(type, value) { |
| | | if (value == "*") { cx.marked = "keyword"; return cont(maybeFrom, expect(";")); } |
| | | if (value == "default") { cx.marked = "keyword"; return cont(expression, expect(";")); } |
| | | if (type == "{") return cont(commasep(exportField, "}"), maybeFrom, expect(";")); |
| | | return pass(statement); |
| | | } |
| | | function exportField(type, value) { |
| | | if (value == "as") { cx.marked = "keyword"; return cont(expect("variable")); } |
| | | if (type == "variable") return pass(expressionNoComma, exportField); |
| | | } |
| | | function afterImport(type) { |
| | | if (type == "string") return cont(); |
| | | return pass(importSpec, maybeMoreImports, maybeFrom); |
| | | } |
| | | function importSpec(type, value) { |
| | | if (type == "{") return contCommasep(importSpec, "}"); |
| | | if (type == "variable") register(value); |
| | | if (value == "*") cx.marked = "keyword"; |
| | | return cont(maybeAs); |
| | | } |
| | | function maybeMoreImports(type) { |
| | | if (type == ",") return cont(importSpec, maybeMoreImports) |
| | | } |
| | | function maybeAs(_type, value) { |
| | | if (value == "as") { cx.marked = "keyword"; return cont(importSpec); } |
| | | } |
| | | function maybeFrom(_type, value) { |
| | | if (value == "from") { cx.marked = "keyword"; return cont(expression); } |
| | | } |
| | | function arrayLiteral(type) { |
| | | if (type == "]") return cont(); |
| | | return pass(commasep(expressionNoComma, "]")); |
| | | } |
| | | |
| | | function isContinuedStatement(state, textAfter) { |
| | | return state.lastType == "operator" || state.lastType == "," || |
| | | isOperatorChar.test(textAfter.charAt(0)) || |
| | | /[,.]/.test(textAfter.charAt(0)); |
| | | } |
| | | |
| | | // Interface |
| | | |
| | | return { |
| | | startState: function(basecolumn) { |
| | | var state = { |
| | | tokenize: tokenBase, |
| | | lastType: "sof", |
| | | cc: [], |
| | | lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false), |
| | | localVars: parserConfig.localVars, |
| | | context: parserConfig.localVars && {vars: parserConfig.localVars}, |
| | | indented: basecolumn || 0 |
| | | }; |
| | | if (parserConfig.globalVars && typeof parserConfig.globalVars == "object") |
| | | state.globalVars = parserConfig.globalVars; |
| | | return state; |
| | | }, |
| | | |
| | | token: function(stream, state) { |
| | | if (stream.sol()) { |
| | | if (!state.lexical.hasOwnProperty("align")) |
| | | state.lexical.align = false; |
| | | state.indented = stream.indentation(); |
| | | findFatArrow(stream, state); |
| | | } |
| | | if (state.tokenize != tokenComment && stream.eatSpace()) return null; |
| | | var style = state.tokenize(stream, state); |
| | | if (type == "comment") return style; |
| | | state.lastType = type == "operator" && (content == "++" || content == "--") ? "incdec" : type; |
| | | return parseJS(state, style, type, content, stream); |
| | | }, |
| | | |
| | | indent: function(state, textAfter) { |
| | | if (state.tokenize == tokenComment) return CodeMirror.Pass; |
| | | if (state.tokenize != tokenBase) return 0; |
| | | var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical, top |
| | | // Kludge to prevent 'maybelse' from blocking lexical scope pops |
| | | if (!/^\s*else\b/.test(textAfter)) for (var i = state.cc.length - 1; i >= 0; --i) { |
| | | var c = state.cc[i]; |
| | | if (c == poplex) lexical = lexical.prev; |
| | | else if (c != maybeelse) break; |
| | | } |
| | | while ((lexical.type == "stat" || lexical.type == "form") && |
| | | (firstChar == "}" || ((top = state.cc[state.cc.length - 1]) && |
| | | (top == maybeoperatorComma || top == maybeoperatorNoComma) && |
| | | !/^[,\.=+\-*:?[\(]/.test(textAfter)))) |
| | | lexical = lexical.prev; |
| | | if (statementIndent && lexical.type == ")" && lexical.prev.type == "stat") |
| | | lexical = lexical.prev; |
| | | var type = lexical.type, closing = firstChar == type; |
| | | |
| | | if (type == "vardef") return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? lexical.info + 1 : 0); |
| | | else if (type == "form" && firstChar == "{") return lexical.indented; |
| | | else if (type == "form") return lexical.indented + indentUnit; |
| | | else if (type == "stat") |
| | | return lexical.indented + (isContinuedStatement(state, textAfter) ? statementIndent || indentUnit : 0); |
| | | else if (lexical.info == "switch" && !closing && parserConfig.doubleIndentSwitch != false) |
| | | return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit); |
| | | else if (lexical.align) return lexical.column + (closing ? 0 : 1); |
| | | else return lexical.indented + (closing ? 0 : indentUnit); |
| | | }, |
| | | |
| | | electricInput: /^\s*(?:case .*?:|default:|\{|\})$/, |
| | | blockCommentStart: jsonMode ? null : "/*", |
| | | blockCommentEnd: jsonMode ? null : "*/", |
| | | lineComment: jsonMode ? null : "//", |
| | | fold: "brace", |
| | | closeBrackets: "()[]{}''\"\"``", |
| | | |
| | | helperType: jsonMode ? "json" : "javascript", |
| | | jsonldMode: jsonldMode, |
| | | jsonMode: jsonMode, |
| | | |
| | | expressionAllowed: expressionAllowed, |
| | | skipExpression: function(state) { |
| | | var top = state.cc[state.cc.length - 1] |
| | | if (top == expression || top == expressionNoComma) state.cc.pop() |
| | | } |
| | | }; |
| | | }); |
| | | |
| | | CodeMirror.registerHelper("wordChars", "javascript", /[\w$]/); |
| | | |
| | | CodeMirror.defineMIME("text/javascript", "javascript"); |
| | | CodeMirror.defineMIME("text/ecmascript", "javascript"); |
| | | CodeMirror.defineMIME("application/javascript", "javascript"); |
| | | CodeMirror.defineMIME("application/x-javascript", "javascript"); |
| | | CodeMirror.defineMIME("application/ecmascript", "javascript"); |
| | | CodeMirror.defineMIME("application/json", {name: "javascript", json: true}); |
| | | CodeMirror.defineMIME("application/x-json", {name: "javascript", json: true}); |
| | | CodeMirror.defineMIME("application/ld+json", {name: "javascript", jsonld: true}); |
| | | CodeMirror.defineMIME("text/typescript", { name: "javascript", typescript: true }); |
| | | CodeMirror.defineMIME("application/typescript", { name: "javascript", typescript: true }); |
| | | |
| | | }); |
New file |
| | |
| | | /*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ |
| | | !function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:y}),"function"==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,S="sizzle"+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),D=function(e,t){return e===t&&(l=!0),0},j={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",F=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="<a id='"+S+"'></a><select id='"+S+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!=C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&j.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(D),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(B," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[k,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[k,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[S]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace($,"$1"));return s[S]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[k,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[S]||(e[S]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===k&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[S]&&(v=Ce(v)),y&&!y[S]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace($,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace($," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[S]?i.push(a):o.push(a);(a=A(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=k+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t==C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument==C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(k=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(k=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=S.split("").sort(D).join("")===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);S.find=d,S.expr=d.selectors,S.expr[":"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1<i.call(n,e)!==r}):S.filter(n,e,r)}S.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,function(e){return 1===e.nodeType}))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(S(e).filter(function(){for(t=0;t<r;t++)if(S.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)S.find(e,i[t],n);return 1<r?S.uniqueSort(n):n},filter:function(e){return this.pushStack(D(this,e||[],!1))},not:function(e){return this.pushStack(D(this,e||[],!0))},is:function(e){return!!D(this,"string"==typeof e&&k.test(e)?S(e):e||[],!1).length}});var j,q=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&S(e);if(!k.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?S.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return h(e,"parentNode")},parentsUntil:function(e,t,n){return h(e,"parentNode",n)},next:function(e){return O(e,"nextSibling")},prev:function(e){return O(e,"previousSibling")},nextAll:function(e){return h(e,"nextSibling")},prevAll:function(e){return h(e,"previousSibling")},nextUntil:function(e,t,n){return h(e,"nextSibling",n)},prevUntil:function(e,t,n){return h(e,"previousSibling",n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,"template")&&(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=S.filter(t,n)),1<this.length&&(H[r]||S.uniqueSort(n),L.test(r)&&n.reverse()),this.pushStack(n)}});var P=/[^\x20\t\r\n\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},S.each(e.match(P)||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1<(n=S.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<S.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[["notify","progress",S.Callbacks("memory"),S.Callbacks("memory"),2],["resolve","done",S.Callbacks("once memory"),S.Callbacks("once memory"),0,"resolved"],["reject","fail",S.Callbacks("once memory"),S.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function(r){S.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==M&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&&(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(I(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&W.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),S.ready()}S.fn.ready=function(e){return F.then(e)["catch"](function(e){S.readyException(e)}),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0)!==e&&0<--S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,"ms-").replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[X(t)]=n;else for(r in t)i[X(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][X(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match(P)||[]).length;while(n--)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,K=/[A-Z]/g;function Z(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(K,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=Q.get(o),1===o.nodeType&&!Y.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){Q.set(this,n)}):$(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=Q.get(o,n))?t:void 0!==(t=Z(o,n))?t:void 0;this.each(function(){Q.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){S.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Y.get(e,n)||Y.access(e,n,{empty:S.Callbacks("once memory").add(function(){Y.remove(e,[t+"queue",n])})})}}),S.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?S.queue(this[0],t):void 0===n?this:this.each(function(){var e=S.queue(this,t,n);S._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&S.dequeue(this,t)})},dequeue:function(e){return this.each(function(){S.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Y.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var ee=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,te=new RegExp("^(?:([+-])=|)("+ee+")([a-z%]*)$","i"),ne=["Top","Right","Bottom","Left"],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&&(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)===e.ownerDocument});var ae=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&ie(e)&&"none"===S.css(e,"display")};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,"")},u=s(),l=n&&n[3]||(S.cssNumber[t]?"":"px"),c=e.nodeType&&(S.cssNumber[t]||"px"!==l&&+u)&&te.exec(S.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)S.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,S.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Y.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&ae(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ue[s]=u)))):"none"!==n&&(l[c]="none",Y.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",y.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Y.set(e[n],"globalEval",!t||Y.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,y.option||(ge.optgroup=ge.option=[1,"<select multiple='multiple'>","</select>"]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))S.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+S.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;S.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<S.inArray(o,r))i&&i.push(o);else if(l=ie(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}var be=/^key/,we=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Te=/^([^.]*)(?:\.(.+)|)/;function Ce(){return!0}function Ee(){return!1}function Se(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function ke(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)ke(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ee;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return S().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=S.guid++)),e.each(function(){S.event.add(this,t,i,r,n)})}function Ae(e,i,o){o?(Y.set(e,i,!1),S.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(S.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Y.set(this,i,{value:S.event.trigger(S.extend(r[0],S.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,i)&&S.event.add(e,i,Ce)}S.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(t);if(V(t)){n.handler&&(n=(o=n).handler,i=o.selector),i&&S.find.matchesSelector(re,i),n.guid||(n.guid=S.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof S&&S.event.triggered!==e.type?S.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(P)||[""]).length;while(l--)d=g=(s=Te.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=S.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=S.event.special[d]||{},c=S.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&S.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),S.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(P)||[""]).length;while(l--)if(d=g=(s=Te.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=S.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||S.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&&Y.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,"events")||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Ae(t,"click",Ce),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Ae(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Y.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Ce:Ee,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Ee,isPropagationStopped:Ee,isImmediatePropagationStopped:Ee,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Ce,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Ce,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Ce,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&be.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&we.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},S.event.addProp),S.each({focus:"focusin",blur:"focusout"},function(e,t){S.event.special[e]={setup:function(){return Ae(this,e,Se),!1},trigger:function(){return Ae(this,e),!0},delegateType:t}}),S.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return ke(this,e,t,n,r)},one:function(e,t,n,r){return ke(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Ee),this.each(function(){S.event.remove(this,e,n,t)})}});var Ne=/<script|<style|<link/i,De=/checked\s*(?:[^=]|=\s*.checked.)/i,je=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&&(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function Pe(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&De.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),Pe(t,r,i,o)});if(f&&(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=S.map(ve(e,"script"),Le)).length;c<f;c++)u=e,c!==p&&(u=S.clone(u,!0,!0),s&&S.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,He),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Y.access(u,"globalEval")&&S.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?S._evalUrl&&!u.noModule&&S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")},l):b(u.textContent.replace(je,""),u,l))}return n}function Re(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(ve(r)),r.parentNode&&(n&&ie(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||S.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Oe(o[r],a[r]);else Oe(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Re(this,e,!0)},remove:function(e){return Re(this,e)},text:function(e){return $(this,function(e){return void 0===e?S.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Pe(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||qe(this,e).appendChild(e)})},prepend:function(){return Pe(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=qe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Pe(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Pe(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(S.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return $(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ne.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(S.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return Pe(this,arguments,function(e){var t=this.parentNode;S.inArray(this,n)<0&&(S.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),S.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){S.fn[e]=function(e){for(var t,n=[],r=S(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),S(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var Me=new RegExp("^("+ee+")(?!px)[a-z%]+$","i"),Ie=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},We=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Fe=new RegExp(ne.join("|"),"i");function Be(e,t,n){var r,i,o,a,s=e.style;return(n=n||Ie(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||ie(e)||(a=S.style(e,t)),!y.pixelBoxStyles()&&Me.test(a)&&Fe.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function $e(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",l.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n="1%"!==e.top,s=12===t(e.marginLeft),l.style.right="60%",o=36===t(e.right),r=36===t(e.width),l.style.position="absolute",i=12===t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement("div"),l=E.createElement("div");l.style&&(l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===l.style.backgroundClip,S.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&&(e=E.createElement("table"),t=E.createElement("tr"),n=E.createElement("div"),e.style.cssText="position:absolute;left:-11111px",t.style.height="1px",n.style.height="9px",re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=3<parseInt(r.height),re.removeChild(e)),a}}))}();var _e=["Webkit","Moz","ms"],ze=E.createElement("div").style,Ue={};function Xe(e){var t=S.cssProps[e]||Ue[e];return t||(e in ze?e:Ue[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=_e.length;while(n--)if((e=_e[n]+t)in ze)return e}(e)||e)}var Ve=/^(none|table(?!-c[ea]).+)/,Ge=/^--/,Ye={position:"absolute",visibility:"hidden",display:"block"},Qe={letterSpacing:"0",fontWeight:"400"};function Je(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Ke(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=S.css(e,n+ne[a],!0,i)),r?("content"===n&&(u-=S.css(e,"padding"+ne[a],!0,i)),"margin"!==n&&(u-=S.css(e,"border"+ne[a]+"Width",!0,i))):(u+=S.css(e,"padding"+ne[a],!0,i),"padding"!==n?u+=S.css(e,"border"+ne[a]+"Width",!0,i):s+=S.css(e,"border"+ne[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Ze(e,t,n){var r=Ie(e),i=(!y.boxSizingReliable()||n)&&"border-box"===S.css(e,"boxSizing",!1,r),o=i,a=Be(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Me.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||!y.reliableTrDimensions()&&A(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===S.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===S.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ke(e,t,n||(i?"border":"content"),o,r,a)+"px"}function et(e,t,n,r,i){return new et.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Be(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Ge.test(t),l=e.style;if(u||(t=Xe(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(S.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Ge.test(t)||(t=Xe(s)),(a=S.cssHooks[t]||S.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Be(e,t,r)),"normal"===i&&t in Qe&&(i=Qe[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each(["height","width"],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ve.test(S.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Ze(e,u,n):We(e,Ye,function(){return Ze(e,u,n)})},set:function(e,t,n){var r,i=Ie(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===S.css(e,"boxSizing",!1,i),s=n?Ke(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Ke(e,u,"border",!1,i)-.5)),s&&(r=te.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=S.css(e,u)),Je(0,t,s)}}}),S.cssHooks.marginLeft=$e(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Be(e,"marginLeft"))||e.getBoundingClientRect().left-We(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),S.each({margin:"",padding:"",border:"Width"},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(S.cssHooks[i+o].set=Je)}),S.fn.extend({css:function(e,t){return $(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Ie(e),i=t.length;a<i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)},e,t,1<arguments.length)}}),((S.Tween=et).prototype={constructor:et,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?"":"px")},cur:function(){var e=et.propHooks[this.prop];return e&&e.get?e.get(this):et.propHooks._default.get(this)},run:function(e){var t,n=et.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):et.propHooks._default.set(this),this}}).init.prototype=et.prototype,(et.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&&null==e.elem.style[Xe(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=et.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},S.fx=et.prototype.init,S.fx.step={};var tt,nt,rt,it,ot=/^(?:toggle|show|hide)$/,at=/queueHooks$/;function st(){nt&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(st):C.setTimeout(st,S.fx.interval),S.fx.tick())}function ut(){return C.setTimeout(function(){tt=void 0}),tt=Date.now()}function lt(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ne[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ct(e,t,n){for(var r,i=(ft.tweeners[t]||[]).concat(ft.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function ft(o,e,t){var n,a,r=0,i=ft.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=tt||ut(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:tt||ut(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=ft.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ct,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(ft,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(P);for(var n,r=0,i=e.length;r<i;r++)n=e[r],ft.tweeners[n]=ft.tweeners[n]||[],ft.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),v=Y.get(e,"fxshow");for(r in n.queue||(null==(a=S._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,S.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],ot.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Y.get(e,"display")),"none"===(c=S.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===S.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Y.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,"fxshow"),d)S.style(e,r,d[r])})),u=ct(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?ft.prefilters.unshift(e):ft.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&&"object"==typeof e?S.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return S.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=ft(this,S.extend({},t),o);(i||Y.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=S.timers,r=Y.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&at.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||S.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Y.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),S.each(["toggle","show","hide"],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(lt(r,!0),e,t,n)}}),S.each({slideDown:lt("show"),slideUp:lt("hide"),slideToggle:lt("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(tt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),tt=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){nt||(nt=!0,st())},S.fx.stop=function(){nt=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(r,e){return r=S.fx&&S.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},rt=E.createElement("input"),it=E.createElement("select").appendChild(E.createElement("option")),rt.type="checkbox",y.checkOn=""!==rt.value,y.optSelected=it.selected,(rt=E.createElement("input")).value="t",rt.type="radio",y.radioValue="t"===rt.value;var pt,dt=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return $(this,S.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){S.removeAttr(this,e)})}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?S.prop(e,t,n):(1===o&&S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?pt:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),pt={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\w+/g),function(e,t){var a=dt[t]||S.find.attr;dt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=dt[o],dt[o]=r,r=null!=a(e,t,n)?o:null,dt[o]=i),r}});var ht=/^(?:input|select|textarea|button)$/i,gt=/^(?:a|area)$/i;function vt(e){return(e.match(P)||[]).join(" ")}function yt(e){return e.getAttribute&&e.getAttribute("class")||""}function mt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(P)||[]}S.fn.extend({prop:function(e,t){return $(this,S.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[S.propFix[e]||e]})}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,"tabindex");return t?parseInt(t,10):ht.test(e.nodeName)||gt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),S.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){S.propFix[this.toLowerCase()]=this}),S.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).addClass(t.call(this,e,yt(this)))});if((e=mt(t)).length)while(n=this[u++])if(i=yt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).removeClass(t.call(this,e,yt(this)))});if(!arguments.length)return this.attr("class","");if((e=mt(t)).length)while(n=this[u++])if(i=yt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){S(this).toggleClass(i.call(this,e,yt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=S(this),r=mt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=yt(this))&&Y.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Y.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+vt(yt(n))+" ").indexOf(t))return!0;return!1}});var xt=/\r/g;S.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,S(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=S.map(t,function(e){return null==e?"":e+""})),(r=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=S.valHooks[t.type]||S.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(xt,""):null==e?"":e:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,"value");return null!=t?t:vt(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=S(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=S.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<S.inArray(S.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each(["radio","checkbox"],function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<S.inArray(S(e).val(),t)}},y.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var bt=/^(?:focusinfocus|focusoutblur)$/,wt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!bt.test(d+S.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[S.expando]?e:new S.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),c=S.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,bt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Y.get(o,"events")||Object.create(null))[e.type]&&Y.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&V(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!V(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),S.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,wt),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,wt),S.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each(function(){S.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),y.focusin||S.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){S.event.simulate(r,e.target,S.event.fix(e))};S.event.special[r]={setup:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r);t||e.addEventListener(n,i,!0),Y.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r)-1;t?Y.access(e,r,t):(e.removeEventListener(n,i,!0),Y.remove(e,r))}}});var Tt=C.location,Ct={guid:Date.now()},Et=/\?/;S.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||S.error("Invalid XML: "+e),t};var St=/\[\]$/,kt=/\r?\n/g,At=/^(?:submit|button|image|reset|file)$/i,Nt=/^(?:input|select|textarea|keygen)/i;function Dt(n,e,r,i){var t;if(Array.isArray(e))S.each(e,function(e,t){r||St.test(n)?i(n,t):Dt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)Dt(n+"["+t+"]",e[t],r,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!S.isPlainObject(e))S.each(e,function(){i(this.name,this.value)});else for(n in e)Dt(n,e[n],t,i);return r.join("&")},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=S.prop(this,"elements");return e?S.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!S(this).is(":disabled")&&Nt.test(this.nodeName)&&!At.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,function(e){return{name:t.name,value:e.replace(kt,"\r\n")}}):{name:t.name,value:n.replace(kt,"\r\n")}}).get()}});var jt=/%20/g,qt=/#.*$/,Lt=/([?&])_=[^&]*/,Ht=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ot=/^(?:GET|HEAD)$/,Pt=/^\/\//,Rt={},Mt={},It="*/".concat("*"),Wt=E.createElement("a");function Ft(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(P)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Bt(t,i,o,a){var s={},u=t===Mt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function $t(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Wt.href=Tt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Tt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Tt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":It,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?$t($t(e,S.ajaxSettings),t):$t(S.ajaxSettings,e)},ajaxPrefilter:Ft(Rt),ajaxTransport:Ft(Mt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=S.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?S(y):S.event,x=S.Deferred(),b=S.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Ht.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Tt.href)+"").replace(Pt,Tt.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(P)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Wt.protocol+"//"+Wt.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=S.param(v.data,v.traditional)),Bt(Rt,v,t,T),h)return T;for(i in(g=S.event&&v.global)&&0==S.active++&&S.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Ot.test(v.type),f=v.url.replace(qt,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(jt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(Et.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Lt,"$1"),o=(Et.test(f)?"&":"?")+"_="+Ct.guid+++o),v.url=f+o),v.ifModified&&(S.lastModified[f]&&T.setRequestHeader("If-Modified-Since",S.lastModified[f]),S.etag[f]&&T.setRequestHeader("If-None-Match",S.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+It+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=Bt(Mt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),!i&&-1<S.inArray("script",v.dataTypes)&&(v.converters["text script"]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(S.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(S.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--S.active||S.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return S.get(e,t,n,"json")},getScript:function(e,t){return S.get(e,void 0,t,"script")}}),S.each(["get","post"],function(e,i){S[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),S.ajax(S.extend({url:e,type:i,dataType:r,data:t,success:n},S.isPlainObject(e)&&e))}}),S.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),S._evalUrl=function(e,t,n){return S.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){S.globalEval(e,t,n)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){S(this).wrapInner(n.call(this,e))}):this.each(function(){var e=S(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){S(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){S(this).replaceWith(this.childNodes)}),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var _t={0:200,1223:204},zt=S.ajaxSettings.xhr();y.cors=!!zt&&"withCredentials"in zt,y.ajax=zt=!!zt,S.ajaxTransport(function(i){var o,a;if(y.cors||zt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(_t[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),S.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=vt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&S.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?S("<div>").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}});var Gt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;S.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=A,S.isFunction=m,S.isWindow=x,S.camelCase=X,S.type=w,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},S.trim=function(e){return null==e?"":(e+"").replace(Gt,"")},"function"==typeof define&&define.amd&&define("jquery",[],function(){return S});var Yt=C.jQuery,Qt=C.$;return S.noConflict=function(e){return C.$===S&&(C.$=Qt),e&&C.jQuery===S&&(C.jQuery=Yt),S},"undefined"==typeof e&&(C.jQuery=C.$=S),S}); |
New file |
| | |
| | | /*!----------------------------------------------------------- |
| | | * Copyright (c) Microsoft Corporation. All rights reserved. |
| | | * Version: 0.10.1(ebbf400719be21761361804bf63fb3916e64a845) |
| | | * Released under the MIT license |
| | | * https://github.com/Microsoft/vscode/blob/master/LICENSE.txt |
| | | *-----------------------------------------------------------*/ |
| | | "use strict";var _amdLoaderGlobal=this,AMDLoader;!function(e){e.global=_amdLoaderGlobal;var t=function(){function t(e){this.isWindows=e.isWindows,this.isNode=e.isNode,this.isElectronRenderer=e.isElectronRenderer,this.isWebWorker=e.isWebWorker}return t.detect=function(){return new t({isWindows:this._isWindows(),isNode:"undefined"!=typeof module&&!!module.exports,isElectronRenderer:"undefined"!=typeof process&&void 0!==process.versions&&void 0!==process.versions.electron&&"renderer"===process.type,isWebWorker:"function"==typeof e.global.importScripts})},t._isWindows=function(){return!!("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.indexOf("Windows")>=0)||"undefined"!=typeof process&&"win32"===process.platform},t}();e.Environment=t}(AMDLoader||(AMDLoader={}));var AMDLoader;!function(e){var t;!function(e){e[e.LoaderAvailable=1]="LoaderAvailable",e[e.BeginLoadingScript=10]="BeginLoadingScript",e[e.EndLoadingScriptOK=11]="EndLoadingScriptOK",e[e.EndLoadingScriptError=12]="EndLoadingScriptError",e[e.BeginInvokeFactory=21]="BeginInvokeFactory",e[e.EndInvokeFactory=22]="EndInvokeFactory",e[e.NodeBeginEvaluatingScript=31]="NodeBeginEvaluatingScript",e[e.NodeEndEvaluatingScript=32]="NodeEndEvaluatingScript",e[e.NodeBeginNativeRequire=33]="NodeBeginNativeRequire",e[e.NodeEndNativeRequire=34]="NodeEndNativeRequire"}(t=e.LoaderEventType||(e.LoaderEventType={}));var r=function(){return function(e,t,r){this.type=e,this.detail=t,this.timestamp=r}}();e.LoaderEvent=r;var n=function(){function n(e){this._events=[new r(t.LoaderAvailable,"",e)]}return n.prototype.record=function(t,n){this._events.push(new r(t,n,e.Utilities.getHighPerformanceTimestamp()))},n.prototype.getEvents=function(){return this._events},n}();e.LoaderEventRecorder=n;var o=function(){function e(){}return e.prototype.record=function(e,t){},e.prototype.getEvents=function(){return[]},e}();o.INSTANCE=new o,e.NullLoaderEventRecorder=o}(AMDLoader||(AMDLoader={}));var AMDLoader;!function(e){var t=function(){function t(){}return t.fileUriToFilePath=function(e,t){if(t=decodeURI(t),e){if(/^file:\/\/\//.test(t))return t.substr(8);if(/^file:\/\//.test(t))return t.substr(5)}else if(/^file:\/\//.test(t))return t.substr(7);return t},t.startsWith=function(e,t){return e.length>=t.length&&e.substr(0,t.length)===t},t.endsWith=function(e,t){return e.length>=t.length&&e.substr(e.length-t.length)===t},t.containsQueryString=function(e){return/^[^\#]*\?/gi.test(e)},t.isAbsolutePath=function(e){return/^((http:\/\/)|(https:\/\/)|(file:\/\/)|(\/))/.test(e)},t.forEachProperty=function(e,t){if(e){var r=void 0;for(r in e)e.hasOwnProperty(r)&&t(r,e[r])}},t.isEmpty=function(e){var r=!0;return t.forEachProperty(e,function(){r=!1}),r},t.recursiveClone=function(e){if(!e||"object"!=typeof e)return e;var r=Array.isArray(e)?[]:{};return t.forEachProperty(e,function(e,n){r[e]=n&&"object"==typeof n?t.recursiveClone(n):n}),r},t.generateAnonymousModule=function(){return"===anonymous"+t.NEXT_ANONYMOUS_ID+++"==="},t.isAnonymousModule=function(e){return/^===anonymous/.test(e)},t.getHighPerformanceTimestamp=function(){return this.PERFORMANCE_NOW_PROBED||(this.PERFORMANCE_NOW_PROBED=!0,this.HAS_PERFORMANCE_NOW=e.global.performance&&"function"==typeof e.global.performance.now),this.HAS_PERFORMANCE_NOW?e.global.performance.now():Date.now()},t}();t.NEXT_ANONYMOUS_ID=1,t.PERFORMANCE_NOW_PROBED=!1,t.HAS_PERFORMANCE_NOW=!1,e.Utilities=t}(AMDLoader||(AMDLoader={}));var AMDLoader;!function(e){var t=function(){function t(){}return t.validateConfigurationOptions=function(t,r){return"string"!=typeof(r=r||{}).baseUrl&&(r.baseUrl=""),"boolean"!=typeof r.isBuild&&(r.isBuild=!1),"object"!=typeof r.paths&&(r.paths={}),"object"!=typeof r.config&&(r.config={}),void 0===r.catchError&&(r.catchError=t),"string"!=typeof r.urlArgs&&(r.urlArgs=""),"function"!=typeof r.onError&&(r.onError=function(e){return"load"===e.errorCode?(console.error('Loading "'+e.moduleId+'" failed'),console.error("Detail: ",e.detail),e.detail&&e.detail.stack&&console.error(e.detail.stack),console.error("Here are the modules that depend on it:"),void console.error(e.neededBy)):"factory"===e.errorCode?(console.error('The factory method of "'+e.moduleId+'" has thrown an exception'),console.error(e.detail),void(e.detail&&e.detail.stack&&console.error(e.detail.stack))):void 0}),"object"==typeof r.ignoreDuplicateModules&&Array.isArray(r.ignoreDuplicateModules)||(r.ignoreDuplicateModules=[]),r.baseUrl.length>0&&(e.Utilities.endsWith(r.baseUrl,"/")||(r.baseUrl+="/")),Array.isArray(r.nodeModules)||(r.nodeModules=[]),("number"!=typeof r.nodeCachedDataWriteDelay||r.nodeCachedDataWriteDelay<0)&&(r.nodeCachedDataWriteDelay=7e3),"function"!=typeof r.onNodeCachedData&&(r.onNodeCachedData=function(e,t){e&&("cachedDataRejected"===e.errorCode?console.warn("Rejected cached data from file: "+e.path):"unlink"===e.errorCode||"writeFile"===e.errorCode?(console.error("Problems writing cached data file: "+e.path),console.error(e.detail)):console.error(e))}),r},t.mergeConfigurationOptions=function(r,n,o){void 0===n&&(n=null),void 0===o&&(o=null);var i=e.Utilities.recursiveClone(o||{});return e.Utilities.forEachProperty(n,function(t,r){"ignoreDuplicateModules"===t&&void 0!==i.ignoreDuplicateModules?i.ignoreDuplicateModules=i.ignoreDuplicateModules.concat(r):"paths"===t&&void 0!==i.paths?e.Utilities.forEachProperty(r,function(e,t){return i.paths[e]=t}):"config"===t&&void 0!==i.config?e.Utilities.forEachProperty(r,function(e,t){return i.config[e]=t}):i[t]=e.Utilities.recursiveClone(r)}),t.validateConfigurationOptions(r,i)},t}();e.ConfigurationOptionsUtil=t;var r=function(){function r(e,r){if(this._env=e,this.options=t.mergeConfigurationOptions(this._env.isWebWorker,r),this._createIgnoreDuplicateModulesMap(),this._createNodeModulesMap(),this._createSortedPathsRules(),""===this.options.baseUrl){if(this._env.isNode&&this.options.nodeRequire&&this.options.nodeRequire.main&&this.options.nodeRequire.main.filename){var n=this.options.nodeRequire.main.filename,o=Math.max(n.lastIndexOf("/"),n.lastIndexOf("\\"));this.options.baseUrl=n.substring(0,o+1)}if(this._env.isNode&&this.options.nodeMain){var n=this.options.nodeMain,o=Math.max(n.lastIndexOf("/"),n.lastIndexOf("\\"));this.options.baseUrl=n.substring(0,o+1)}}}return r.prototype._createIgnoreDuplicateModulesMap=function(){this.ignoreDuplicateModulesMap={};for(var e=0;e<this.options.ignoreDuplicateModules.length;e++)this.ignoreDuplicateModulesMap[this.options.ignoreDuplicateModules[e]]=!0},r.prototype._createNodeModulesMap=function(){this.nodeModulesMap=Object.create(null);for(var e=0,t=this.options.nodeModules;e<t.length;e++){var r=t[e];this.nodeModulesMap[r]=!0}},r.prototype._createSortedPathsRules=function(){var t=this;this.sortedPathsRules=[],e.Utilities.forEachProperty(this.options.paths,function(e,r){Array.isArray(r)?t.sortedPathsRules.push({from:e,to:r}):t.sortedPathsRules.push({from:e,to:[r]})}),this.sortedPathsRules.sort(function(e,t){return t.from.length-e.from.length})},r.prototype.cloneAndMerge=function(e){return new r(this._env,t.mergeConfigurationOptions(this._env.isWebWorker,e,this.options))},r.prototype.getOptionsLiteral=function(){return this.options},r.prototype._applyPaths=function(t){for(var r,n=0,o=this.sortedPathsRules.length;n<o;n++)if(r=this.sortedPathsRules[n],e.Utilities.startsWith(t,r.from)){for(var i=[],s=0,a=r.to.length;s<a;s++)i.push(r.to[s]+t.substr(r.from.length));return i}return[t]},r.prototype._addUrlArgsToUrl=function(t){return e.Utilities.containsQueryString(t)?t+"&"+this.options.urlArgs:t+"?"+this.options.urlArgs},r.prototype._addUrlArgsIfNecessaryToUrl=function(e){return this.options.urlArgs?this._addUrlArgsToUrl(e):e},r.prototype._addUrlArgsIfNecessaryToUrls=function(e){if(this.options.urlArgs)for(var t=0,r=e.length;t<r;t++)e[t]=this._addUrlArgsToUrl(e[t]);return e},r.prototype.moduleIdToPaths=function(t){if(!0===this.nodeModulesMap[t])return this.isBuild()?["empty:"]:["node|"+t];var r,n=t;if(e.Utilities.endsWith(n,".js")||e.Utilities.isAbsolutePath(n))e.Utilities.endsWith(n,".js")||e.Utilities.containsQueryString(n)||(n+=".js"),r=[n];else for(var o=0,i=(r=this._applyPaths(n)).length;o<i;o++)this.isBuild()&&"empty:"===r[o]||(e.Utilities.isAbsolutePath(r[o])||(r[o]=this.options.baseUrl+r[o]),e.Utilities.endsWith(r[o],".js")||e.Utilities.containsQueryString(r[o])||(r[o]=r[o]+".js"));return this._addUrlArgsIfNecessaryToUrls(r)},r.prototype.requireToUrl=function(t){var r=t;return e.Utilities.isAbsolutePath(r)||(r=this._applyPaths(r)[0],e.Utilities.isAbsolutePath(r)||(r=this.options.baseUrl+r)),this._addUrlArgsIfNecessaryToUrl(r)},r.prototype.isBuild=function(){return this.options.isBuild},r.prototype.isDuplicateMessageIgnoredFor=function(e){return this.ignoreDuplicateModulesMap.hasOwnProperty(e)},r.prototype.getConfigForModule=function(e){if(this.options.config)return this.options.config[e]},r.prototype.shouldCatchError=function(){return this.options.catchError},r.prototype.shouldRecordStats=function(){return this.options.recordStats},r.prototype.onError=function(e){this.options.onError(e)},r}();e.Configuration=r}(AMDLoader||(AMDLoader={}));var AMDLoader;!function(e){var t=function(){function e(e){this.actualScriptLoader=e,this.callbackMap={}}return e.prototype.load=function(e,t,r,n){var o=this,i={callback:r,errorback:n};this.callbackMap.hasOwnProperty(t)?this.callbackMap[t].push(i):(this.callbackMap[t]=[i],this.actualScriptLoader.load(e,t,function(){return o.triggerCallback(t)},function(e){return o.triggerErrorback(t,e)}))},e.prototype.triggerCallback=function(e){var t=this.callbackMap[e];delete this.callbackMap[e];for(var r=0;r<t.length;r++)t[r].callback()},e.prototype.triggerErrorback=function(e,t){var r=this.callbackMap[e];delete this.callbackMap[e];for(var n=0;n<r.length;n++)r[n].errorback(t)},e}(),r=function(){function e(){}return e.prototype.attachListeners=function(e,t,r){var n=function(){e.removeEventListener("load",o),e.removeEventListener("error",i)},o=function(e){n(),t()},i=function(e){n(),r(e)};e.addEventListener("load",o),e.addEventListener("error",i)},e.prototype.load=function(e,t,r,n){var o=document.createElement("script");o.setAttribute("async","async"),o.setAttribute("type","text/javascript"),this.attachListeners(o,r,n),o.setAttribute("src",t),document.getElementsByTagName("head")[0].appendChild(o)},e}(),n=function(){function e(){}return e.prototype.load=function(e,t,r,n){try{importScripts(t),r()}catch(e){n(e)}},e}(),o=function(){function t(e){this._env=e,this._didInitialize=!1,this._didPatchNodeRequire=!1}return t.prototype._init=function(e){if(!this._didInitialize){this._didInitialize=!0,this._fs=e("fs"),this._vm=e("vm"),this._path=e("path"),this._crypto=e("crypto"),this._jsflags="";for(var t=0,r=process.argv;t<r.length;t++){var n=r[t];if(0===n.indexOf("--js-flags=")){this._jsflags=n;break}}}},t.prototype._initNodeRequire=function(t,r){function n(e){var t=e.constructor,r=function(t){try{return e.require(t)}finally{}};return r.resolve=function(r){return t._resolveFilename(r,e)},r.main=process.mainModule,r.extensions=t._extensions,r.cache=t._cache,r}var o=r.getConfig().getOptionsLiteral().nodeCachedDataDir;if(o&&!this._didPatchNodeRequire){this._didPatchNodeRequire=!0;var i=this,s=t("module");s.prototype._compile=function(t,a){t=t.replace(/^#!.*/,"");var d=s.wrap(t),l=i._getCachedDataPath(o,a),u={filename:a};try{u.cachedData=i._fs.readFileSync(l)}catch(e){u.produceCachedData=!0}var c=new i._vm.Script(d,u),h=c.runInThisContext(u),f=i._path.dirname(a),p=n(this),g=[this.exports,p,this,a,f,process,e.global,Buffer],v=h.apply(this.exports,g);return i._processCachedData(r,c,l),v}}},t.prototype.load=function(r,n,o,i){var s=this,a=r.getConfig().getOptionsLiteral(),d=a.nodeRequire||e.global.nodeRequire,l=a.nodeInstrumenter||function(e){return e};this._init(d),this._initNodeRequire(d,r);var u=r.getRecorder();if(/^node\|/.test(n)){var c=n.split("|"),h=null;try{h=d(c[1])}catch(e){return void i(e)}r.enqueueDefineAnonymousModule([],function(){return h}),o()}else n=e.Utilities.fileUriToFilePath(this._env.isWindows,n),this._fs.readFile(n,{encoding:"utf8"},function(e,d){if(e)i(e);else{var c=s._path.normalize(n),h=c;if(s._env.isElectronRenderer){var f=h.match(/^([a-z])\:(.*)/i);h=f?"file:///"+(f[1].toUpperCase()+":"+f[2]).replace(/\\/g,"/"):"file://"+h}var p,g="(function (require, define, __filename, __dirname) { ";if(p=d.charCodeAt(0)===t._BOM?g+d.substring(1)+"\n});":g+d+"\n});",p=l(p,c),a.nodeCachedDataDir){var v=s._getCachedDataPath(a.nodeCachedDataDir,n);s._fs.readFile(v,function(e,t){var i={filename:h,produceCachedData:void 0===t,cachedData:t},a=s._loadAndEvalScript(r,n,h,p,i,u);o(),s._processCachedData(r,a,v)})}else s._loadAndEvalScript(r,n,h,p,{filename:h},u),o()}})},t.prototype._loadAndEvalScript=function(t,r,n,o,i,s){s.record(e.LoaderEventType.NodeBeginEvaluatingScript,r);var a=new this._vm.Script(o,i);return a.runInThisContext(i).call(e.global,t.getGlobalAMDRequireFunc(),t.getGlobalAMDDefineFunc(),n,this._path.dirname(r)),s.record(e.LoaderEventType.NodeEndEvaluatingScript,r),a},t.prototype._getCachedDataPath=function(e,t){var r=this._crypto.createHash("md5").update(t,"utf8").update(this._jsflags,"utf8").digest("hex"),n=this._path.basename(t).replace(/\.js$/,"");return this._path.join(e,n+"-"+r+".code")},t.prototype._processCachedData=function(e,r,n){var o=this;r.cachedDataRejected?(e.getConfig().getOptionsLiteral().onNodeCachedData({errorCode:"cachedDataRejected",path:n}),t._runSoon(function(){return o._fs.unlink(n,function(t){t&&e.getConfig().getOptionsLiteral().onNodeCachedData({errorCode:"unlink",path:n,detail:t})})},e.getConfig().getOptionsLiteral().nodeCachedDataWriteDelay)):r.cachedDataProduced&&(e.getConfig().getOptionsLiteral().onNodeCachedData(void 0,{path:n,length:r.cachedData.length}),t._runSoon(function(){return o._fs.writeFile(n,r.cachedData,function(t){t&&e.getConfig().getOptionsLiteral().onNodeCachedData({errorCode:"writeFile",path:n,detail:t})})},e.getConfig().getOptionsLiteral().nodeCachedDataWriteDelay))},t._runSoon=function(e,t){var r=t+Math.ceil(Math.random()*t);setTimeout(e,r)},t}();o._BOM=65279,e.createScriptLoader=function(e){return new t(e.isWebWorker?new n:e.isNode?new o(e):new r)}}(AMDLoader||(AMDLoader={}));var AMDLoader;!function(e){var t=function(){function t(e){var t=e.lastIndexOf("/");this.fromModulePath=-1!==t?e.substr(0,t+1):""}return t._normalizeModuleId=function(e){var t,r=e;for(t=/\/\.\//;t.test(r);)r=r.replace(t,"/");for(r=r.replace(/^\.\//g,""),t=/\/(([^\/])|([^\/][^\/\.])|([^\/\.][^\/])|([^\/][^\/][^\/]+))\/\.\.\//;t.test(r);)r=r.replace(t,"/");return r=r.replace(/^(([^\/])|([^\/][^\/\.])|([^\/\.][^\/])|([^\/][^\/][^\/]+))\/\.\.\//,"")},t.prototype.resolveModule=function(r){var n=r;return e.Utilities.isAbsolutePath(n)||(e.Utilities.startsWith(n,"./")||e.Utilities.startsWith(n,"../"))&&(n=t._normalizeModuleId(this.fromModulePath+n)),n},t}();t.ROOT=new t(""),e.ModuleIdResolver=t;var r=function(){function t(e,t,r,n,o,i){this.id=e,this.strId=t,this.dependencies=r,this._callback=n,this._errorback=o,this.moduleIdResolver=i,this.exports={},this.exportsPassedIn=!1,this.unresolvedDependenciesCount=this.dependencies.length,this._isComplete=!1}return t._safeInvokeFunction=function(t,r){try{return{returnedValue:t.apply(e.global,r),producedError:null}}catch(e){return{returnedValue:null,producedError:e}}},t._invokeFactory=function(t,r,n,o){return t.isBuild()&&!e.Utilities.isAnonymousModule(r)?{returnedValue:null,producedError:null}:t.shouldCatchError()?this._safeInvokeFunction(n,o):{returnedValue:n.apply(e.global,o),producedError:null}},t.prototype.complete=function(r,n,o){this._isComplete=!0;var i=null;if(this._callback)if("function"==typeof this._callback){r.record(e.LoaderEventType.BeginInvokeFactory,this.strId);var s=t._invokeFactory(n,this.strId,this._callback,o);i=s.producedError,r.record(e.LoaderEventType.EndInvokeFactory,this.strId),i||void 0===s.returnedValue||this.exportsPassedIn&&!e.Utilities.isEmpty(this.exports)||(this.exports=s.returnedValue)}else this.exports=this._callback;i&&n.onError({errorCode:"factory",moduleId:this.strId,detail:i}),this.dependencies=null,this._callback=null,this._errorback=null,this.moduleIdResolver=null},t.prototype.onDependencyError=function(e){return!!this._errorback&&(this._errorback(e),!0)},t.prototype.isComplete=function(){return this._isComplete},t}();e.Module=r;var n=function(){function e(){this._nextId=0,this._strModuleIdToIntModuleId=new Map,this._intModuleIdToStrModuleId=[],this.getModuleId("exports"),this.getModuleId("module"),this.getModuleId("require")}return e.prototype.getMaxModuleId=function(){return this._nextId},e.prototype.getModuleId=function(e){var t=this._strModuleIdToIntModuleId.get(e);return void 0===t&&(t=this._nextId++,this._strModuleIdToIntModuleId.set(e,t),this._intModuleIdToStrModuleId[t]=e),t},e.prototype.getStrModuleId=function(e){return this._intModuleIdToStrModuleId[e]},e}(),o=function(){return function(e){this.id=e}}();o.EXPORTS=new o(0),o.MODULE=new o(1),o.REQUIRE=new o(2),e.RegularDependency=o;var i=function(){return function(e,t,r){this.id=e,this.pluginId=t,this.pluginParam=r}}();e.PluginDependency=i;var s=function(){function s(t,r,o,i,s){void 0===s&&(s=0),this._env=t,this._scriptLoader=r,this._loaderAvailableTimestamp=s,this._defineFunc=o,this._requireFunc=i,this._moduleIdProvider=new n,this._config=new e.Configuration(this._env),this._modules2=[],this._knownModules2=[],this._inverseDependencies2=[],this._inversePluginDependencies2=new Map,this._currentAnnonymousDefineCall=null,this._recorder=null,this._buildInfoPath=[],this._buildInfoDefineStack=[],this._buildInfoDependencies=[]}return s.prototype.reset=function(){return new s(this._env,this._scriptLoader,this._defineFunc,this._requireFunc,this._loaderAvailableTimestamp)},s.prototype.getGlobalAMDDefineFunc=function(){return this._defineFunc},s.prototype.getGlobalAMDRequireFunc=function(){return this._requireFunc},s._findRelevantLocationInStack=function(e,t){for(var r=function(e){return e.replace(/\\/g,"/")},n=r(e),o=t.split(/\n/),i=0;i<o.length;i++){var s=o[i].match(/(.*):(\d+):(\d+)\)?$/);if(s){var a=s[1],d=s[2],l=s[3],u=Math.max(a.lastIndexOf(" ")+1,a.lastIndexOf("(")+1);if(a=a.substr(u),(a=r(a))===n){var c={line:parseInt(d,10),col:parseInt(l,10)};return 1===c.line&&(c.col-="(function (require, define, __filename, __dirname) { ".length),c}}}throw new Error("Could not correlate define call site for needle "+e)},s.prototype.getBuildInfo=function(){if(!this._config.isBuild())return null;for(var e=[],t=0,r=0,n=this._modules2.length;r<n;r++){var o=this._modules2[r];if(o){var i=this._buildInfoPath[o.id]||null,a=this._buildInfoDefineStack[o.id]||null,d=this._buildInfoDependencies[o.id];e[t++]={id:o.strId,path:i,defineLocation:i&&a?s._findRelevantLocationInStack(i,a):null,dependencies:d,shim:null,exports:o.exports}}}return e},s.prototype.getRecorder=function(){return this._recorder||(this._config.shouldRecordStats()?this._recorder=new e.LoaderEventRecorder(this._loaderAvailableTimestamp):this._recorder=e.NullLoaderEventRecorder.INSTANCE),this._recorder},s.prototype.getLoaderEvents=function(){return this.getRecorder().getEvents()},s.prototype.enqueueDefineAnonymousModule=function(e,t){if(null!==this._currentAnnonymousDefineCall)throw new Error("Can only have one anonymous define call per script file");var r=null;this._config.isBuild()&&(r=new Error("StackLocation").stack),this._currentAnnonymousDefineCall={stack:r,dependencies:e,callback:t}},s.prototype.defineModule=function(e,n,o,i,s,a){var d=this;void 0===a&&(a=new t(e));var l=this._moduleIdProvider.getModuleId(e);if(this._modules2[l])this._config.isDuplicateMessageIgnoredFor(e)||console.warn("Duplicate definition of module '"+e+"'");else{var u=new r(l,e,this._normalizeDependencies(n,a),o,i,a);this._modules2[l]=u,this._config.isBuild()&&(this._buildInfoDefineStack[l]=s,this._buildInfoDependencies[l]=u.dependencies.map(function(e){return d._moduleIdProvider.getStrModuleId(e.id)})),this._resolve(u)}},s.prototype._normalizeDependency=function(e,t){if("exports"===e)return o.EXPORTS;if("module"===e)return o.MODULE;if("require"===e)return o.REQUIRE;var r=e.indexOf("!");if(r>=0){var n=t.resolveModule(e.substr(0,r)),s=t.resolveModule(e.substr(r+1)),a=this._moduleIdProvider.getModuleId(n+"!"+s),d=this._moduleIdProvider.getModuleId(n);return new i(a,d,s)}return new o(this._moduleIdProvider.getModuleId(t.resolveModule(e)))},s.prototype._normalizeDependencies=function(e,t){for(var r=[],n=0,o=0,i=e.length;o<i;o++)r[n++]=this._normalizeDependency(e[o],t);return r},s.prototype._relativeRequire=function(t,r,n,o){if("string"==typeof r)return this.synchronousRequire(r,t);this.defineModule(e.Utilities.generateAnonymousModule(),r,n,o,null,t)},s.prototype.synchronousRequire=function(e,r){void 0===r&&(r=new t(e));var n=this._normalizeDependency(e,r),o=this._modules2[n.id];if(!o)throw new Error("Check dependency list! Synchronous require cannot resolve module '"+e+"'. This is the first mention of this module!");if(!o.isComplete())throw new Error("Check dependency list! Synchronous require cannot resolve module '"+e+"'. This module has not been resolved completely yet.");return o.exports},s.prototype.configure=function(t,r){var n=this._config.shouldRecordStats();this._config=r?new e.Configuration(this._env,t):this._config.cloneAndMerge(t),this._config.shouldRecordStats()&&!n&&(this._recorder=null)},s.prototype.getConfig=function(){return this._config},s.prototype._onLoad=function(e){if(null!==this._currentAnnonymousDefineCall){var t=this._currentAnnonymousDefineCall;this._currentAnnonymousDefineCall=null,this.defineModule(this._moduleIdProvider.getStrModuleId(e),t.dependencies,t.callback,null,t.stack)}},s.prototype._createLoadError=function(e,t){var r=this;return{errorCode:"load",moduleId:this._moduleIdProvider.getStrModuleId(e),neededBy:(this._inverseDependencies2[e]||[]).map(function(e){return r._moduleIdProvider.getStrModuleId(e)}),detail:t}},s.prototype._onLoadError=function(e,t){for(var r=this._createLoadError(e,t),n=[],o=0,i=this._moduleIdProvider.getMaxModuleId();o<i;o++)n[o]=!1;var s=!1,a=[];for(a.push(e),n[e]=!0;a.length>0;){var d=a.shift(),l=this._modules2[d];l&&(s=l.onDependencyError(r)||s);var u=this._inverseDependencies2[d];if(u)for(var o=0,i=u.length;o<i;o++){var c=u[o];n[c]||(a.push(c),n[c]=!0)}}s||this._config.onError(r)},s.prototype._hasDependencyPath=function(e,t){var r=this._modules2[e];if(!r)return!1;for(var n=[],o=0,i=this._moduleIdProvider.getMaxModuleId();o<i;o++)n[o]=!1;var s=[];for(s.push(r),n[e]=!0;s.length>0;){var a=s.shift().dependencies;if(a)for(var o=0,i=a.length;o<i;o++){var d=a[o];if(d.id===t)return!0;var l=this._modules2[d.id];l&&!n[d.id]&&(n[d.id]=!0,s.push(l))}}return!1},s.prototype._findCyclePath=function(e,t,r){if(e===t||50===r)return[e];var n=this._modules2[e];if(!n)return null;for(var o=n.dependencies,i=0,s=o.length;i<s;i++){var a=this._findCyclePath(o[i].id,t,r+1);if(null!==a)return a.push(e),a}return null},s.prototype._createRequire=function(t){var r=this,n=function(e,n,o){return r._relativeRequire(t,e,n,o)};return n.toUrl=function(e){return r._config.requireToUrl(t.resolveModule(e))},n.getStats=function(){return r.getLoaderEvents()},n.__$__nodeRequire=e.global.nodeRequire,n},s.prototype._loadModule=function(t){var r=this;if(!this._modules2[t]&&!this._knownModules2[t]){this._knownModules2[t]=!0;var n=this._moduleIdProvider.getStrModuleId(t),o=this._config.moduleIdToPaths(n);this._env.isNode&&-1===n.indexOf("/")&&o.push("node|"+n);var i=-1,s=function(n){if(++i>=o.length)r._onLoadError(t,n);else{var a=o[i],d=r.getRecorder();if(r._config.isBuild()&&"empty:"===a)return r._buildInfoPath[t]=a,r.defineModule(r._moduleIdProvider.getStrModuleId(t),[],null,null,null),void r._onLoad(t);d.record(e.LoaderEventType.BeginLoadingScript,a),r._scriptLoader.load(r,a,function(){r._config.isBuild()&&(r._buildInfoPath[t]=a),d.record(e.LoaderEventType.EndLoadingScriptOK,a),r._onLoad(t)},function(t){d.record(e.LoaderEventType.EndLoadingScriptError,a),s(t)})}};s(null)}},s.prototype._loadPluginDependency=function(e,r){var n=this;if(!this._modules2[r.id]&&!this._knownModules2[r.id]){this._knownModules2[r.id]=!0;var o=function(e){n.defineModule(n._moduleIdProvider.getStrModuleId(r.id),[],e,null,null)};o.error=function(e){n._config.onError(n._createLoadError(r.id,e))},e.load(r.pluginParam,this._createRequire(t.ROOT),o,this._config.getOptionsLiteral())}},s.prototype._resolve=function(e){for(var t=this,r=e.dependencies,n=0,s=r.length;n<s;n++){var a=r[n];if(a!==o.EXPORTS)if(a!==o.MODULE)if(a!==o.REQUIRE){var d=this._modules2[a.id];if(d&&d.isComplete())e.unresolvedDependenciesCount--;else if(this._hasDependencyPath(a.id,e.id)){console.warn("There is a dependency cycle between '"+this._moduleIdProvider.getStrModuleId(a.id)+"' and '"+this._moduleIdProvider.getStrModuleId(e.id)+"'. The cyclic path follows:");var l=this._findCyclePath(a.id,e.id,0);l.reverse(),l.push(a.id),console.warn(l.map(function(e){return t._moduleIdProvider.getStrModuleId(e)}).join(" => \n")),e.unresolvedDependenciesCount--}else if(this._inverseDependencies2[a.id]=this._inverseDependencies2[a.id]||[],this._inverseDependencies2[a.id].push(e.id),a instanceof i){var u=this._modules2[a.pluginId];if(u&&u.isComplete()){this._loadPluginDependency(u.exports,a);continue}var c=this._inversePluginDependencies2.get(a.pluginId);c||(c=[],this._inversePluginDependencies2.set(a.pluginId,c)),c.push(a),this._loadModule(a.pluginId)}else this._loadModule(a.id)}else e.unresolvedDependenciesCount--;else e.unresolvedDependenciesCount--;else e.exportsPassedIn=!0,e.unresolvedDependenciesCount--}0===e.unresolvedDependenciesCount&&this._onModuleComplete(e)},s.prototype._onModuleComplete=function(e){var t=this,r=this.getRecorder();if(!e.isComplete()){for(var n=e.dependencies,i=[],s=0,a=n.length;s<a;s++){var d=n[s];if(d!==o.EXPORTS)if(d!==o.MODULE)if(d!==o.REQUIRE){var l=this._modules2[d.id];i[s]=l?l.exports:null}else i[s]=this._createRequire(e.moduleIdResolver);else i[s]={id:e.strId,config:function(){return t._config.getConfigForModule(e.strId)}};else i[s]=e.exports}e.complete(r,this._config,i);var u=this._inverseDependencies2[e.id];if(this._inverseDependencies2[e.id]=null,u)for(var s=0,a=u.length;s<a;s++){var c=u[s],h=this._modules2[c];h.unresolvedDependenciesCount--,0===h.unresolvedDependenciesCount&&this._onModuleComplete(h)}var f=this._inversePluginDependencies2.get(e.id);if(f){this._inversePluginDependencies2.delete(e.id);for(var s=0,a=f.length;s<a;s++)this._loadPluginDependency(e.exports,f[s])}}},s}();e.ModuleManager=s}(AMDLoader||(AMDLoader={}));var define,AMDLoader;!function(e){function t(){(o=function(e,t,r){"string"!=typeof e&&(r=t,t=e,e=null),"object"==typeof t&&Array.isArray(t)||(r=t,t=null),t||(t=["require","exports","module"]),e?n.defineModule(e,t,r,null,null):n.enqueueDefineAnonymousModule(t,r)}).amd={jQuery:!0};var t=function(e,t){void 0===t&&(t=!1),n.configure(e,t)};(i=function(){if(1===arguments.length){if(arguments[0]instanceof Object&&!Array.isArray(arguments[0]))return void t(arguments[0]);if("string"==typeof arguments[0])return n.synchronousRequire(arguments[0])}if(2!==arguments.length&&3!==arguments.length||!Array.isArray(arguments[0]))throw new Error("Unrecognized require call");n.defineModule(e.Utilities.generateAnonymousModule(),arguments[0],arguments[1],arguments[2],null)}).config=t,i.getConfig=function(){return n.getConfig().getOptionsLiteral()},i.reset=function(){n=n.reset()},i.getBuildInfo=function(){return n.getBuildInfo()},i.getStats=function(){return n.getLoaderEvents()}}function r(){t();var r=e.Environment.detect(),s=e.createScriptLoader(r);if(n=new e.ModuleManager(r,s,o,i,e.Utilities.getHighPerformanceTimestamp()),r.isNode){var a=e.global.require||require,d=function(t){n.getRecorder().record(e.LoaderEventType.NodeBeginNativeRequire,t);try{return a(t)}finally{n.getRecorder().record(e.LoaderEventType.NodeEndNativeRequire,t)}};e.global.nodeRequire=d,i.nodeRequire=d}r.isNode&&!r.isElectronRenderer?(module.exports=i,define=function(){o.apply(null,arguments)},require=i):(void 0!==e.global.require&&"function"!=typeof e.global.require&&i.config(e.global.require),r.isElectronRenderer?define=function(){o.apply(null,arguments)}:e.global.define=define=o,e.global.require=i,e.global.require.__$__nodeRequire=d)}var n=null,o=null,i=null;e.init=r,"undefined"!=typeof doNotInitLoader||"function"==typeof e.global.define&&e.global.define.amd||r()}(AMDLoader||(AMDLoader={})); |
| | | //# sourceMappingURL=../../min-maps/vs/loader.js.map |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | |
| | | // declare global: diff_match_patch, DIFF_INSERT, DIFF_DELETE, DIFF_EQUAL |
| | | |
| | | (function(mod) { |
| | | if (typeof exports == "object" && typeof module == "object") // CommonJS |
| | | mod(require("../../lib/codemirror")); // Note non-packaged dependency diff_match_patch |
| | | else if (typeof define == "function" && define.amd) // AMD |
| | | define(["../../lib/codemirror", "diff_match_patch"], mod); |
| | | else // Plain browser env |
| | | mod(CodeMirror); |
| | | })(function(CodeMirror) { |
| | | "use strict"; |
| | | var Pos = CodeMirror.Pos; |
| | | var svgNS = "http://www.w3.org/2000/svg"; |
| | | |
| | | function DiffView(mv, type) { |
| | | this.mv = mv; |
| | | this.type = type; |
| | | this.classes = type == "left" |
| | | ? {chunk: "CodeMirror-merge-l-chunk", |
| | | start: "CodeMirror-merge-l-chunk-start", |
| | | end: "CodeMirror-merge-l-chunk-end", |
| | | insert: "CodeMirror-merge-l-inserted", |
| | | del: "CodeMirror-merge-l-deleted", |
| | | connect: "CodeMirror-merge-l-connect"} |
| | | : {chunk: "CodeMirror-merge-r-chunk", |
| | | start: "CodeMirror-merge-r-chunk-start", |
| | | end: "CodeMirror-merge-r-chunk-end", |
| | | insert: "CodeMirror-merge-r-inserted", |
| | | del: "CodeMirror-merge-r-deleted", |
| | | connect: "CodeMirror-merge-r-connect"}; |
| | | } |
| | | |
| | | DiffView.prototype = { |
| | | constructor: DiffView, |
| | | init: function(pane, orig, options) { |
| | | this.edit = this.mv.edit; |
| | | ;(this.edit.state.diffViews || (this.edit.state.diffViews = [])).push(this); |
| | | this.orig = CodeMirror(pane, copyObj({value: orig, readOnly: !this.mv.options.allowEditingOriginals}, copyObj(options))); |
| | | if (this.mv.options.connect == "align") { |
| | | if (!this.edit.state.trackAlignable) this.edit.state.trackAlignable = new TrackAlignable(this.edit) |
| | | this.orig.state.trackAlignable = new TrackAlignable(this.orig) |
| | | } |
| | | |
| | | this.orig.state.diffViews = [this]; |
| | | var classLocation = options.chunkClassLocation || "background"; |
| | | if (Object.prototype.toString.call(classLocation) != "[object Array]") classLocation = [classLocation] |
| | | this.classes.classLocation = classLocation |
| | | |
| | | this.diff = getDiff(asString(orig), asString(options.value), this.mv.options.ignoreWhitespace); |
| | | this.chunks = getChunks(this.diff); |
| | | this.diffOutOfDate = this.dealigned = false; |
| | | this.needsScrollSync = null |
| | | |
| | | this.showDifferences = options.showDifferences !== false; |
| | | }, |
| | | registerEvents: function(otherDv) { |
| | | this.forceUpdate = registerUpdate(this); |
| | | setScrollLock(this, true, false); |
| | | registerScroll(this, otherDv); |
| | | }, |
| | | setShowDifferences: function(val) { |
| | | val = val !== false; |
| | | if (val != this.showDifferences) { |
| | | this.showDifferences = val; |
| | | this.forceUpdate("full"); |
| | | } |
| | | } |
| | | }; |
| | | |
| | | function ensureDiff(dv) { |
| | | if (dv.diffOutOfDate) { |
| | | dv.diff = getDiff(dv.orig.getValue(), dv.edit.getValue(), dv.mv.options.ignoreWhitespace); |
| | | dv.chunks = getChunks(dv.diff); |
| | | dv.diffOutOfDate = false; |
| | | CodeMirror.signal(dv.edit, "updateDiff", dv.diff); |
| | | } |
| | | } |
| | | |
| | | var updating = false; |
| | | function registerUpdate(dv) { |
| | | var edit = {from: 0, to: 0, marked: []}; |
| | | var orig = {from: 0, to: 0, marked: []}; |
| | | var debounceChange, updatingFast = false; |
| | | function update(mode) { |
| | | updating = true; |
| | | updatingFast = false; |
| | | if (mode == "full") { |
| | | if (dv.svg) clear(dv.svg); |
| | | if (dv.copyButtons) clear(dv.copyButtons); |
| | | clearMarks(dv.edit, edit.marked, dv.classes); |
| | | clearMarks(dv.orig, orig.marked, dv.classes); |
| | | edit.from = edit.to = orig.from = orig.to = 0; |
| | | } |
| | | ensureDiff(dv); |
| | | if (dv.showDifferences) { |
| | | updateMarks(dv.edit, dv.diff, edit, DIFF_INSERT, dv.classes); |
| | | updateMarks(dv.orig, dv.diff, orig, DIFF_DELETE, dv.classes); |
| | | } |
| | | |
| | | if (dv.mv.options.connect == "align") |
| | | alignChunks(dv); |
| | | makeConnections(dv); |
| | | if (dv.needsScrollSync != null) syncScroll(dv, dv.needsScrollSync) |
| | | |
| | | updating = false; |
| | | } |
| | | function setDealign(fast) { |
| | | if (updating) return; |
| | | dv.dealigned = true; |
| | | set(fast); |
| | | } |
| | | function set(fast) { |
| | | if (updating || updatingFast) return; |
| | | clearTimeout(debounceChange); |
| | | if (fast === true) updatingFast = true; |
| | | debounceChange = setTimeout(update, fast === true ? 20 : 250); |
| | | } |
| | | function change(_cm, change) { |
| | | if (!dv.diffOutOfDate) { |
| | | dv.diffOutOfDate = true; |
| | | edit.from = edit.to = orig.from = orig.to = 0; |
| | | } |
| | | // Update faster when a line was added/removed |
| | | setDealign(change.text.length - 1 != change.to.line - change.from.line); |
| | | } |
| | | function swapDoc() { |
| | | dv.diffOutOfDate = true; |
| | | dv.dealigned = true; |
| | | update("full"); |
| | | } |
| | | dv.edit.on("change", change); |
| | | dv.orig.on("change", change); |
| | | dv.edit.on("swapDoc", swapDoc); |
| | | dv.orig.on("swapDoc", swapDoc); |
| | | if (dv.mv.options.connect == "align") { |
| | | CodeMirror.on(dv.edit.state.trackAlignable, "realign", setDealign) |
| | | CodeMirror.on(dv.orig.state.trackAlignable, "realign", setDealign) |
| | | } |
| | | dv.edit.on("viewportChange", function() { set(false); }); |
| | | dv.orig.on("viewportChange", function() { set(false); }); |
| | | update(); |
| | | return update; |
| | | } |
| | | |
| | | function registerScroll(dv, otherDv) { |
| | | dv.edit.on("scroll", function() { |
| | | syncScroll(dv, true) && makeConnections(dv); |
| | | }); |
| | | dv.orig.on("scroll", function() { |
| | | syncScroll(dv, false) && makeConnections(dv); |
| | | if (otherDv) syncScroll(otherDv, true) && makeConnections(otherDv); |
| | | }); |
| | | } |
| | | |
| | | function syncScroll(dv, toOrig) { |
| | | // Change handler will do a refresh after a timeout when diff is out of date |
| | | if (dv.diffOutOfDate) { |
| | | if (dv.lockScroll && dv.needsScrollSync == null) dv.needsScrollSync = toOrig |
| | | return false |
| | | } |
| | | dv.needsScrollSync = null |
| | | if (!dv.lockScroll) return true; |
| | | var editor, other, now = +new Date; |
| | | if (toOrig) { editor = dv.edit; other = dv.orig; } |
| | | else { editor = dv.orig; other = dv.edit; } |
| | | // Don't take action if the position of this editor was recently set |
| | | // (to prevent feedback loops) |
| | | if (editor.state.scrollSetBy == dv && (editor.state.scrollSetAt || 0) + 250 > now) return false; |
| | | |
| | | var sInfo = editor.getScrollInfo(); |
| | | if (dv.mv.options.connect == "align") { |
| | | targetPos = sInfo.top; |
| | | } else { |
| | | var halfScreen = .5 * sInfo.clientHeight, midY = sInfo.top + halfScreen; |
| | | var mid = editor.lineAtHeight(midY, "local"); |
| | | var around = chunkBoundariesAround(dv.chunks, mid, toOrig); |
| | | var off = getOffsets(editor, toOrig ? around.edit : around.orig); |
| | | var offOther = getOffsets(other, toOrig ? around.orig : around.edit); |
| | | var ratio = (midY - off.top) / (off.bot - off.top); |
| | | var targetPos = (offOther.top - halfScreen) + ratio * (offOther.bot - offOther.top); |
| | | |
| | | var botDist, mix; |
| | | // Some careful tweaking to make sure no space is left out of view |
| | | // when scrolling to top or bottom. |
| | | if (targetPos > sInfo.top && (mix = sInfo.top / halfScreen) < 1) { |
| | | targetPos = targetPos * mix + sInfo.top * (1 - mix); |
| | | } else if ((botDist = sInfo.height - sInfo.clientHeight - sInfo.top) < halfScreen) { |
| | | var otherInfo = other.getScrollInfo(); |
| | | var botDistOther = otherInfo.height - otherInfo.clientHeight - targetPos; |
| | | if (botDistOther > botDist && (mix = botDist / halfScreen) < 1) |
| | | targetPos = targetPos * mix + (otherInfo.height - otherInfo.clientHeight - botDist) * (1 - mix); |
| | | } |
| | | } |
| | | |
| | | other.scrollTo(sInfo.left, targetPos); |
| | | other.state.scrollSetAt = now; |
| | | other.state.scrollSetBy = dv; |
| | | return true; |
| | | } |
| | | |
| | | function getOffsets(editor, around) { |
| | | var bot = around.after; |
| | | if (bot == null) bot = editor.lastLine() + 1; |
| | | return {top: editor.heightAtLine(around.before || 0, "local"), |
| | | bot: editor.heightAtLine(bot, "local")}; |
| | | } |
| | | |
| | | function setScrollLock(dv, val, action) { |
| | | dv.lockScroll = val; |
| | | if (val && action != false) syncScroll(dv, DIFF_INSERT) && makeConnections(dv); |
| | | dv.lockButton.innerHTML = val ? "\u21db\u21da" : "\u21db \u21da"; |
| | | } |
| | | |
| | | // Updating the marks for editor content |
| | | |
| | | function removeClass(editor, line, classes) { |
| | | var locs = classes.classLocation |
| | | for (var i = 0; i < locs.length; i++) { |
| | | editor.removeLineClass(line, locs[i], classes.chunk); |
| | | editor.removeLineClass(line, locs[i], classes.start); |
| | | editor.removeLineClass(line, locs[i], classes.end); |
| | | } |
| | | } |
| | | |
| | | function clearMarks(editor, arr, classes) { |
| | | for (var i = 0; i < arr.length; ++i) { |
| | | var mark = arr[i]; |
| | | if (mark instanceof CodeMirror.TextMarker) |
| | | mark.clear(); |
| | | else if (mark.parent) |
| | | removeClass(editor, mark, classes); |
| | | } |
| | | arr.length = 0; |
| | | } |
| | | |
| | | // FIXME maybe add a margin around viewport to prevent too many updates |
| | | function updateMarks(editor, diff, state, type, classes) { |
| | | var vp = editor.getViewport(); |
| | | editor.operation(function() { |
| | | if (state.from == state.to || vp.from - state.to > 20 || state.from - vp.to > 20) { |
| | | clearMarks(editor, state.marked, classes); |
| | | markChanges(editor, diff, type, state.marked, vp.from, vp.to, classes); |
| | | state.from = vp.from; state.to = vp.to; |
| | | } else { |
| | | if (vp.from < state.from) { |
| | | markChanges(editor, diff, type, state.marked, vp.from, state.from, classes); |
| | | state.from = vp.from; |
| | | } |
| | | if (vp.to > state.to) { |
| | | markChanges(editor, diff, type, state.marked, state.to, vp.to, classes); |
| | | state.to = vp.to; |
| | | } |
| | | } |
| | | }); |
| | | } |
| | | |
| | | function addClass(editor, lineNr, classes, main, start, end) { |
| | | var locs = classes.classLocation, line = editor.getLineHandle(lineNr); |
| | | for (var i = 0; i < locs.length; i++) { |
| | | if (main) editor.addLineClass(line, locs[i], classes.chunk); |
| | | if (start) editor.addLineClass(line, locs[i], classes.start); |
| | | if (end) editor.addLineClass(line, locs[i], classes.end); |
| | | } |
| | | return line; |
| | | } |
| | | |
| | | function markChanges(editor, diff, type, marks, from, to, classes) { |
| | | var pos = Pos(0, 0); |
| | | var top = Pos(from, 0), bot = editor.clipPos(Pos(to - 1)); |
| | | var cls = type == DIFF_DELETE ? classes.del : classes.insert; |
| | | function markChunk(start, end) { |
| | | var bfrom = Math.max(from, start), bto = Math.min(to, end); |
| | | for (var i = bfrom; i < bto; ++i) |
| | | marks.push(addClass(editor, i, classes, true, i == start, i == end - 1)); |
| | | // When the chunk is empty, make sure a horizontal line shows up |
| | | if (start == end && bfrom == end && bto == end) { |
| | | if (bfrom) |
| | | marks.push(addClass(editor, bfrom - 1, classes, false, false, true)); |
| | | else |
| | | marks.push(addClass(editor, bfrom, classes, false, true, false)); |
| | | } |
| | | } |
| | | |
| | | var chunkStart = 0, pending = false; |
| | | for (var i = 0; i < diff.length; ++i) { |
| | | var part = diff[i], tp = part[0], str = part[1]; |
| | | if (tp == DIFF_EQUAL) { |
| | | var cleanFrom = pos.line + (startOfLineClean(diff, i) ? 0 : 1); |
| | | moveOver(pos, str); |
| | | var cleanTo = pos.line + (endOfLineClean(diff, i) ? 1 : 0); |
| | | if (cleanTo > cleanFrom) { |
| | | if (pending) { markChunk(chunkStart, cleanFrom); pending = false } |
| | | chunkStart = cleanTo; |
| | | } |
| | | } else { |
| | | pending = true |
| | | if (tp == type) { |
| | | var end = moveOver(pos, str, true); |
| | | var a = posMax(top, pos), b = posMin(bot, end); |
| | | if (!posEq(a, b)) |
| | | marks.push(editor.markText(a, b, {className: cls})); |
| | | pos = end; |
| | | } |
| | | } |
| | | } |
| | | if (pending) markChunk(chunkStart, pos.line + 1); |
| | | } |
| | | |
| | | // Updating the gap between editor and original |
| | | |
| | | function makeConnections(dv) { |
| | | if (!dv.showDifferences) return; |
| | | |
| | | if (dv.svg) { |
| | | clear(dv.svg); |
| | | var w = dv.gap.offsetWidth; |
| | | attrs(dv.svg, "width", w, "height", dv.gap.offsetHeight); |
| | | } |
| | | if (dv.copyButtons) clear(dv.copyButtons); |
| | | |
| | | var vpEdit = dv.edit.getViewport(), vpOrig = dv.orig.getViewport(); |
| | | var outerTop = dv.mv.wrap.getBoundingClientRect().top |
| | | var sTopEdit = outerTop - dv.edit.getScrollerElement().getBoundingClientRect().top + dv.edit.getScrollInfo().top |
| | | var sTopOrig = outerTop - dv.orig.getScrollerElement().getBoundingClientRect().top + dv.orig.getScrollInfo().top; |
| | | for (var i = 0; i < dv.chunks.length; i++) { |
| | | var ch = dv.chunks[i]; |
| | | if (ch.editFrom <= vpEdit.to && ch.editTo >= vpEdit.from && |
| | | ch.origFrom <= vpOrig.to && ch.origTo >= vpOrig.from) |
| | | drawConnectorsForChunk(dv, ch, sTopOrig, sTopEdit, w); |
| | | } |
| | | } |
| | | |
| | | function getMatchingOrigLine(editLine, chunks) { |
| | | var editStart = 0, origStart = 0; |
| | | for (var i = 0; i < chunks.length; i++) { |
| | | var chunk = chunks[i]; |
| | | if (chunk.editTo > editLine && chunk.editFrom <= editLine) return null; |
| | | if (chunk.editFrom > editLine) break; |
| | | editStart = chunk.editTo; |
| | | origStart = chunk.origTo; |
| | | } |
| | | return origStart + (editLine - editStart); |
| | | } |
| | | |
| | | // Combines information about chunks and widgets/markers to return |
| | | // an array of lines, in a single editor, that probably need to be |
| | | // aligned with their counterparts in the editor next to it. |
| | | function alignableFor(cm, chunks, isOrig) { |
| | | var tracker = cm.state.trackAlignable |
| | | var start = cm.firstLine(), trackI = 0 |
| | | var result = [] |
| | | for (var i = 0;; i++) { |
| | | var chunk = chunks[i] |
| | | var chunkStart = !chunk ? 1e9 : isOrig ? chunk.origFrom : chunk.editFrom |
| | | for (; trackI < tracker.alignable.length; trackI += 2) { |
| | | var n = tracker.alignable[trackI] + 1 |
| | | if (n <= start) continue |
| | | if (n <= chunkStart) result.push(n) |
| | | else break |
| | | } |
| | | if (!chunk) break |
| | | result.push(start = isOrig ? chunk.origTo : chunk.editTo) |
| | | } |
| | | return result |
| | | } |
| | | |
| | | // Given information about alignable lines in two editors, fill in |
| | | // the result (an array of three-element arrays) to reflect the |
| | | // lines that need to be aligned with each other. |
| | | function mergeAlignable(result, origAlignable, chunks, setIndex) { |
| | | var rI = 0, origI = 0, chunkI = 0, diff = 0 |
| | | outer: for (;; rI++) { |
| | | var nextR = result[rI], nextO = origAlignable[origI] |
| | | if (!nextR && nextO == null) break |
| | | |
| | | var rLine = nextR ? nextR[0] : 1e9, oLine = nextO == null ? 1e9 : nextO |
| | | while (chunkI < chunks.length) { |
| | | var chunk = chunks[chunkI] |
| | | if (chunk.origFrom <= oLine && chunk.origTo > oLine) { |
| | | origI++ |
| | | rI-- |
| | | continue outer; |
| | | } |
| | | if (chunk.editTo > rLine) { |
| | | if (chunk.editFrom <= rLine) continue outer; |
| | | break |
| | | } |
| | | diff += (chunk.origTo - chunk.origFrom) - (chunk.editTo - chunk.editFrom) |
| | | chunkI++ |
| | | } |
| | | if (rLine == oLine - diff) { |
| | | nextR[setIndex] = oLine |
| | | origI++ |
| | | } else if (rLine < oLine - diff) { |
| | | nextR[setIndex] = rLine + diff |
| | | } else { |
| | | var record = [oLine - diff, null, null] |
| | | record[setIndex] = oLine |
| | | result.splice(rI, 0, record) |
| | | origI++ |
| | | } |
| | | } |
| | | } |
| | | |
| | | function findAlignedLines(dv, other) { |
| | | var alignable = alignableFor(dv.edit, dv.chunks, false), result = [] |
| | | if (other) for (var i = 0, j = 0; i < other.chunks.length; i++) { |
| | | var n = other.chunks[i].editTo |
| | | while (j < alignable.length && alignable[j] < n) j++ |
| | | if (j == alignable.length || alignable[j] != n) alignable.splice(j++, 0, n) |
| | | } |
| | | for (var i = 0; i < alignable.length; i++) |
| | | result.push([alignable[i], null, null]) |
| | | |
| | | mergeAlignable(result, alignableFor(dv.orig, dv.chunks, true), dv.chunks, 1) |
| | | if (other) |
| | | mergeAlignable(result, alignableFor(other.orig, other.chunks, true), other.chunks, 2) |
| | | |
| | | return result |
| | | } |
| | | |
| | | function alignChunks(dv, force) { |
| | | if (!dv.dealigned && !force) return; |
| | | if (!dv.orig.curOp) return dv.orig.operation(function() { |
| | | alignChunks(dv, force); |
| | | }); |
| | | |
| | | dv.dealigned = false; |
| | | var other = dv.mv.left == dv ? dv.mv.right : dv.mv.left; |
| | | if (other) { |
| | | ensureDiff(other); |
| | | other.dealigned = false; |
| | | } |
| | | var linesToAlign = findAlignedLines(dv, other); |
| | | |
| | | // Clear old aligners |
| | | var aligners = dv.mv.aligners; |
| | | for (var i = 0; i < aligners.length; i++) |
| | | aligners[i].clear(); |
| | | aligners.length = 0; |
| | | |
| | | var cm = [dv.edit, dv.orig], scroll = []; |
| | | if (other) cm.push(other.orig); |
| | | for (var i = 0; i < cm.length; i++) |
| | | scroll.push(cm[i].getScrollInfo().top); |
| | | |
| | | for (var ln = 0; ln < linesToAlign.length; ln++) |
| | | alignLines(cm, linesToAlign[ln], aligners); |
| | | |
| | | for (var i = 0; i < cm.length; i++) |
| | | cm[i].scrollTo(null, scroll[i]); |
| | | } |
| | | |
| | | function alignLines(cm, lines, aligners) { |
| | | var maxOffset = 0, offset = []; |
| | | for (var i = 0; i < cm.length; i++) if (lines[i] != null) { |
| | | var off = cm[i].heightAtLine(lines[i], "local"); |
| | | offset[i] = off; |
| | | maxOffset = Math.max(maxOffset, off); |
| | | } |
| | | for (var i = 0; i < cm.length; i++) if (lines[i] != null) { |
| | | var diff = maxOffset - offset[i]; |
| | | if (diff > 1) |
| | | aligners.push(padAbove(cm[i], lines[i], diff)); |
| | | } |
| | | } |
| | | |
| | | function padAbove(cm, line, size) { |
| | | var above = true; |
| | | if (line > cm.lastLine()) { |
| | | line--; |
| | | above = false; |
| | | } |
| | | var elt = document.createElement("div"); |
| | | elt.className = "CodeMirror-merge-spacer"; |
| | | elt.style.height = size + "px"; elt.style.minWidth = "1px"; |
| | | return cm.addLineWidget(line, elt, {height: size, above: above, mergeSpacer: true, handleMouseEvents: true}); |
| | | } |
| | | |
| | | function drawConnectorsForChunk(dv, chunk, sTopOrig, sTopEdit, w) { |
| | | var flip = dv.type == "left"; |
| | | var top = dv.orig.heightAtLine(chunk.origFrom, "local", true) - sTopOrig; |
| | | if (dv.svg) { |
| | | var topLpx = top; |
| | | var topRpx = dv.edit.heightAtLine(chunk.editFrom, "local", true) - sTopEdit; |
| | | if (flip) { var tmp = topLpx; topLpx = topRpx; topRpx = tmp; } |
| | | var botLpx = dv.orig.heightAtLine(chunk.origTo, "local", true) - sTopOrig; |
| | | var botRpx = dv.edit.heightAtLine(chunk.editTo, "local", true) - sTopEdit; |
| | | if (flip) { var tmp = botLpx; botLpx = botRpx; botRpx = tmp; } |
| | | var curveTop = " C " + w/2 + " " + topRpx + " " + w/2 + " " + topLpx + " " + (w + 2) + " " + topLpx; |
| | | var curveBot = " C " + w/2 + " " + botLpx + " " + w/2 + " " + botRpx + " -1 " + botRpx; |
| | | attrs(dv.svg.appendChild(document.createElementNS(svgNS, "path")), |
| | | "d", "M -1 " + topRpx + curveTop + " L " + (w + 2) + " " + botLpx + curveBot + " z", |
| | | "class", dv.classes.connect); |
| | | } |
| | | if (dv.copyButtons) { |
| | | var copy = dv.copyButtons.appendChild(elt("div", dv.type == "left" ? "\u21dd" : "\u21dc", |
| | | "CodeMirror-merge-copy")); |
| | | var editOriginals = dv.mv.options.allowEditingOriginals; |
| | | copy.title = editOriginals ? "Push to left" : "Revert chunk"; |
| | | copy.chunk = chunk; |
| | | copy.style.top = (chunk.origTo > chunk.origFrom ? top : dv.edit.heightAtLine(chunk.editFrom, "local") - sTopEdit) + "px"; |
| | | |
| | | if (editOriginals) { |
| | | var topReverse = dv.edit.heightAtLine(chunk.editFrom, "local") - sTopEdit; |
| | | var copyReverse = dv.copyButtons.appendChild(elt("div", dv.type == "right" ? "\u21dd" : "\u21dc", |
| | | "CodeMirror-merge-copy-reverse")); |
| | | copyReverse.title = "Push to right"; |
| | | copyReverse.chunk = {editFrom: chunk.origFrom, editTo: chunk.origTo, |
| | | origFrom: chunk.editFrom, origTo: chunk.editTo}; |
| | | copyReverse.style.top = topReverse + "px"; |
| | | dv.type == "right" ? copyReverse.style.left = "2px" : copyReverse.style.right = "2px"; |
| | | } |
| | | } |
| | | } |
| | | |
| | | function copyChunk(dv, to, from, chunk) { |
| | | if (dv.diffOutOfDate) return; |
| | | var origStart = chunk.origTo > from.lastLine() ? Pos(chunk.origFrom - 1) : Pos(chunk.origFrom, 0) |
| | | var origEnd = Pos(chunk.origTo, 0) |
| | | var editStart = chunk.editTo > to.lastLine() ? Pos(chunk.editFrom - 1) : Pos(chunk.editFrom, 0) |
| | | var editEnd = Pos(chunk.editTo, 0) |
| | | var handler = dv.mv.options.revertChunk |
| | | if (handler) |
| | | handler(dv.mv, from, origStart, origEnd, to, editStart, editEnd) |
| | | else |
| | | to.replaceRange(from.getRange(origStart, origEnd), editStart, editEnd) |
| | | } |
| | | |
| | | // Merge view, containing 0, 1, or 2 diff views. |
| | | |
| | | var MergeView = CodeMirror.MergeView = function(node, options) { |
| | | if (!(this instanceof MergeView)) return new MergeView(node, options); |
| | | |
| | | this.options = options; |
| | | var origLeft = options.origLeft, origRight = options.origRight == null ? options.orig : options.origRight; |
| | | |
| | | var hasLeft = origLeft != null, hasRight = origRight != null; |
| | | var panes = 1 + (hasLeft ? 1 : 0) + (hasRight ? 1 : 0); |
| | | var wrap = [], left = this.left = null, right = this.right = null; |
| | | var self = this; |
| | | |
| | | if (hasLeft) { |
| | | left = this.left = new DiffView(this, "left"); |
| | | var leftPane = elt("div", null, "CodeMirror-merge-pane CodeMirror-merge-left"); |
| | | wrap.push(leftPane); |
| | | wrap.push(buildGap(left)); |
| | | } |
| | | |
| | | var editPane = elt("div", null, "CodeMirror-merge-pane CodeMirror-merge-editor"); |
| | | wrap.push(editPane); |
| | | |
| | | if (hasRight) { |
| | | right = this.right = new DiffView(this, "right"); |
| | | wrap.push(buildGap(right)); |
| | | var rightPane = elt("div", null, "CodeMirror-merge-pane CodeMirror-merge-right"); |
| | | wrap.push(rightPane); |
| | | } |
| | | |
| | | (hasRight ? rightPane : editPane).className += " CodeMirror-merge-pane-rightmost"; |
| | | |
| | | wrap.push(elt("div", null, null, "height: 0; clear: both;")); |
| | | |
| | | var wrapElt = this.wrap = node.appendChild(elt("div", wrap, "CodeMirror-merge CodeMirror-merge-" + panes + "pane")); |
| | | this.edit = CodeMirror(editPane, copyObj(options)); |
| | | |
| | | if (left) left.init(leftPane, origLeft, options); |
| | | if (right) right.init(rightPane, origRight, options); |
| | | if (options.collapseIdentical) |
| | | this.editor().operation(function() { |
| | | collapseIdenticalStretches(self, options.collapseIdentical); |
| | | }); |
| | | if (options.connect == "align") { |
| | | this.aligners = []; |
| | | alignChunks(this.left || this.right, true); |
| | | } |
| | | if (left) left.registerEvents(right) |
| | | if (right) right.registerEvents(left) |
| | | |
| | | |
| | | var onResize = function() { |
| | | if (left) makeConnections(left); |
| | | if (right) makeConnections(right); |
| | | }; |
| | | CodeMirror.on(window, "resize", onResize); |
| | | var resizeInterval = setInterval(function() { |
| | | for (var p = wrapElt.parentNode; p && p != document.body; p = p.parentNode) {} |
| | | if (!p) { clearInterval(resizeInterval); CodeMirror.off(window, "resize", onResize); } |
| | | }, 5000); |
| | | }; |
| | | |
| | | function buildGap(dv) { |
| | | var lock = dv.lockButton = elt("div", null, "CodeMirror-merge-scrolllock"); |
| | | lock.title = "Toggle locked scrolling"; |
| | | var lockWrap = elt("div", [lock], "CodeMirror-merge-scrolllock-wrap"); |
| | | CodeMirror.on(lock, "click", function() { setScrollLock(dv, !dv.lockScroll); }); |
| | | var gapElts = [lockWrap]; |
| | | if (dv.mv.options.revertButtons !== false) { |
| | | dv.copyButtons = elt("div", null, "CodeMirror-merge-copybuttons-" + dv.type); |
| | | CodeMirror.on(dv.copyButtons, "click", function(e) { |
| | | var node = e.target || e.srcElement; |
| | | if (!node.chunk) return; |
| | | if (node.className == "CodeMirror-merge-copy-reverse") { |
| | | copyChunk(dv, dv.orig, dv.edit, node.chunk); |
| | | return; |
| | | } |
| | | copyChunk(dv, dv.edit, dv.orig, node.chunk); |
| | | }); |
| | | gapElts.unshift(dv.copyButtons); |
| | | } |
| | | if (dv.mv.options.connect != "align") { |
| | | var svg = document.createElementNS && document.createElementNS(svgNS, "svg"); |
| | | if (svg && !svg.createSVGRect) svg = null; |
| | | dv.svg = svg; |
| | | if (svg) gapElts.push(svg); |
| | | } |
| | | |
| | | return dv.gap = elt("div", gapElts, "CodeMirror-merge-gap"); |
| | | } |
| | | |
| | | MergeView.prototype = { |
| | | constructor: MergeView, |
| | | editor: function() { return this.edit; }, |
| | | rightOriginal: function() { return this.right && this.right.orig; }, |
| | | leftOriginal: function() { return this.left && this.left.orig; }, |
| | | setShowDifferences: function(val) { |
| | | if (this.right) this.right.setShowDifferences(val); |
| | | if (this.left) this.left.setShowDifferences(val); |
| | | }, |
| | | rightChunks: function() { |
| | | if (this.right) { ensureDiff(this.right); return this.right.chunks; } |
| | | }, |
| | | leftChunks: function() { |
| | | if (this.left) { ensureDiff(this.left); return this.left.chunks; } |
| | | } |
| | | }; |
| | | |
| | | function asString(obj) { |
| | | if (typeof obj == "string") return obj; |
| | | else return obj.getValue(); |
| | | } |
| | | |
| | | // Operations on diffs |
| | | |
| | | var dmp = new diff_match_patch(); |
| | | function getDiff(a, b, ignoreWhitespace) { |
| | | var diff = dmp.diff_main(a, b); |
| | | // The library sometimes leaves in empty parts, which confuse the algorithm |
| | | for (var i = 0; i < diff.length; ++i) { |
| | | var part = diff[i]; |
| | | if (ignoreWhitespace ? !/[^ \t]/.test(part[1]) : !part[1]) { |
| | | diff.splice(i--, 1); |
| | | } else if (i && diff[i - 1][0] == part[0]) { |
| | | diff.splice(i--, 1); |
| | | diff[i][1] += part[1]; |
| | | } |
| | | } |
| | | return diff; |
| | | } |
| | | |
| | | function getChunks(diff) { |
| | | var chunks = []; |
| | | var startEdit = 0, startOrig = 0; |
| | | var edit = Pos(0, 0), orig = Pos(0, 0); |
| | | for (var i = 0; i < diff.length; ++i) { |
| | | var part = diff[i], tp = part[0]; |
| | | if (tp == DIFF_EQUAL) { |
| | | var startOff = !startOfLineClean(diff, i) || edit.line < startEdit || orig.line < startOrig ? 1 : 0; |
| | | var cleanFromEdit = edit.line + startOff, cleanFromOrig = orig.line + startOff; |
| | | moveOver(edit, part[1], null, orig); |
| | | var endOff = endOfLineClean(diff, i) ? 1 : 0; |
| | | var cleanToEdit = edit.line + endOff, cleanToOrig = orig.line + endOff; |
| | | if (cleanToEdit > cleanFromEdit) { |
| | | if (i) chunks.push({origFrom: startOrig, origTo: cleanFromOrig, |
| | | editFrom: startEdit, editTo: cleanFromEdit}); |
| | | startEdit = cleanToEdit; startOrig = cleanToOrig; |
| | | } |
| | | } else { |
| | | moveOver(tp == DIFF_INSERT ? edit : orig, part[1]); |
| | | } |
| | | } |
| | | if (startEdit <= edit.line || startOrig <= orig.line) |
| | | chunks.push({origFrom: startOrig, origTo: orig.line + 1, |
| | | editFrom: startEdit, editTo: edit.line + 1}); |
| | | return chunks; |
| | | } |
| | | |
| | | function endOfLineClean(diff, i) { |
| | | if (i == diff.length - 1) return true; |
| | | var next = diff[i + 1][1]; |
| | | if ((next.length == 1 && i < diff.length - 2) || next.charCodeAt(0) != 10) return false; |
| | | if (i == diff.length - 2) return true; |
| | | next = diff[i + 2][1]; |
| | | return (next.length > 1 || i == diff.length - 3) && next.charCodeAt(0) == 10; |
| | | } |
| | | |
| | | function startOfLineClean(diff, i) { |
| | | if (i == 0) return true; |
| | | var last = diff[i - 1][1]; |
| | | if (last.charCodeAt(last.length - 1) != 10) return false; |
| | | if (i == 1) return true; |
| | | last = diff[i - 2][1]; |
| | | return last.charCodeAt(last.length - 1) == 10; |
| | | } |
| | | |
| | | function chunkBoundariesAround(chunks, n, nInEdit) { |
| | | var beforeE, afterE, beforeO, afterO; |
| | | for (var i = 0; i < chunks.length; i++) { |
| | | var chunk = chunks[i]; |
| | | var fromLocal = nInEdit ? chunk.editFrom : chunk.origFrom; |
| | | var toLocal = nInEdit ? chunk.editTo : chunk.origTo; |
| | | if (afterE == null) { |
| | | if (fromLocal > n) { afterE = chunk.editFrom; afterO = chunk.origFrom; } |
| | | else if (toLocal > n) { afterE = chunk.editTo; afterO = chunk.origTo; } |
| | | } |
| | | if (toLocal <= n) { beforeE = chunk.editTo; beforeO = chunk.origTo; } |
| | | else if (fromLocal <= n) { beforeE = chunk.editFrom; beforeO = chunk.origFrom; } |
| | | } |
| | | return {edit: {before: beforeE, after: afterE}, orig: {before: beforeO, after: afterO}}; |
| | | } |
| | | |
| | | function collapseSingle(cm, from, to) { |
| | | cm.addLineClass(from, "wrap", "CodeMirror-merge-collapsed-line"); |
| | | var widget = document.createElement("span"); |
| | | widget.className = "CodeMirror-merge-collapsed-widget"; |
| | | widget.title = "Identical text collapsed. Click to expand."; |
| | | var mark = cm.markText(Pos(from, 0), Pos(to - 1), { |
| | | inclusiveLeft: true, |
| | | inclusiveRight: true, |
| | | replacedWith: widget, |
| | | clearOnEnter: true |
| | | }); |
| | | function clear() { |
| | | mark.clear(); |
| | | cm.removeLineClass(from, "wrap", "CodeMirror-merge-collapsed-line"); |
| | | } |
| | | CodeMirror.on(widget, "click", clear); |
| | | return {mark: mark, clear: clear}; |
| | | } |
| | | |
| | | function collapseStretch(size, editors) { |
| | | var marks = []; |
| | | function clear() { |
| | | for (var i = 0; i < marks.length; i++) marks[i].clear(); |
| | | } |
| | | for (var i = 0; i < editors.length; i++) { |
| | | var editor = editors[i]; |
| | | var mark = collapseSingle(editor.cm, editor.line, editor.line + size); |
| | | marks.push(mark); |
| | | mark.mark.on("clear", clear); |
| | | } |
| | | return marks[0].mark; |
| | | } |
| | | |
| | | function unclearNearChunks(dv, margin, off, clear) { |
| | | for (var i = 0; i < dv.chunks.length; i++) { |
| | | var chunk = dv.chunks[i]; |
| | | for (var l = chunk.editFrom - margin; l < chunk.editTo + margin; l++) { |
| | | var pos = l + off; |
| | | if (pos >= 0 && pos < clear.length) clear[pos] = false; |
| | | } |
| | | } |
| | | } |
| | | |
| | | function collapseIdenticalStretches(mv, margin) { |
| | | if (typeof margin != "number") margin = 2; |
| | | var clear = [], edit = mv.editor(), off = edit.firstLine(); |
| | | for (var l = off, e = edit.lastLine(); l <= e; l++) clear.push(true); |
| | | if (mv.left) unclearNearChunks(mv.left, margin, off, clear); |
| | | if (mv.right) unclearNearChunks(mv.right, margin, off, clear); |
| | | |
| | | for (var i = 0; i < clear.length; i++) { |
| | | if (clear[i]) { |
| | | var line = i + off; |
| | | for (var size = 1; i < clear.length - 1 && clear[i + 1]; i++, size++) {} |
| | | if (size > margin) { |
| | | var editors = [{line: line, cm: edit}]; |
| | | if (mv.left) editors.push({line: getMatchingOrigLine(line, mv.left.chunks), cm: mv.left.orig}); |
| | | if (mv.right) editors.push({line: getMatchingOrigLine(line, mv.right.chunks), cm: mv.right.orig}); |
| | | var mark = collapseStretch(size, editors); |
| | | if (mv.options.onCollapse) mv.options.onCollapse(mv, line, size, mark); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | // General utilities |
| | | |
| | | function elt(tag, content, className, style) { |
| | | var e = document.createElement(tag); |
| | | if (className) e.className = className; |
| | | if (style) e.style.cssText = style; |
| | | if (typeof content == "string") e.appendChild(document.createTextNode(content)); |
| | | else if (content) for (var i = 0; i < content.length; ++i) e.appendChild(content[i]); |
| | | return e; |
| | | } |
| | | |
| | | function clear(node) { |
| | | for (var count = node.childNodes.length; count > 0; --count) |
| | | node.removeChild(node.firstChild); |
| | | } |
| | | |
| | | function attrs(elt) { |
| | | for (var i = 1; i < arguments.length; i += 2) |
| | | elt.setAttribute(arguments[i], arguments[i+1]); |
| | | } |
| | | |
| | | function copyObj(obj, target) { |
| | | if (!target) target = {}; |
| | | for (var prop in obj) if (obj.hasOwnProperty(prop)) target[prop] = obj[prop]; |
| | | return target; |
| | | } |
| | | |
| | | function moveOver(pos, str, copy, other) { |
| | | var out = copy ? Pos(pos.line, pos.ch) : pos, at = 0; |
| | | for (;;) { |
| | | var nl = str.indexOf("\n", at); |
| | | if (nl == -1) break; |
| | | ++out.line; |
| | | if (other) ++other.line; |
| | | at = nl + 1; |
| | | } |
| | | out.ch = (at ? 0 : out.ch) + (str.length - at); |
| | | if (other) other.ch = (at ? 0 : other.ch) + (str.length - at); |
| | | return out; |
| | | } |
| | | |
| | | // Tracks collapsed markers and line widgets, in order to be able to |
| | | // accurately align the content of two editors. |
| | | |
| | | var F_WIDGET = 1, F_WIDGET_BELOW = 2, F_MARKER = 4 |
| | | |
| | | function TrackAlignable(cm) { |
| | | this.cm = cm |
| | | this.alignable = [] |
| | | this.height = cm.doc.height |
| | | var self = this |
| | | cm.on("markerAdded", function(_, marker) { |
| | | if (!marker.collapsed) return |
| | | var found = marker.find(1) |
| | | if (found != null) self.set(found.line, F_MARKER) |
| | | }) |
| | | cm.on("markerCleared", function(_, marker, _min, max) { |
| | | if (max != null && marker.collapsed) |
| | | self.check(max, F_MARKER, self.hasMarker) |
| | | }) |
| | | cm.on("markerChanged", this.signal.bind(this)) |
| | | cm.on("lineWidgetAdded", function(_, widget, lineNo) { |
| | | if (widget.mergeSpacer) return |
| | | if (widget.above) self.set(lineNo - 1, F_WIDGET_BELOW) |
| | | else self.set(lineNo, F_WIDGET) |
| | | }) |
| | | cm.on("lineWidgetCleared", function(_, widget, lineNo) { |
| | | if (widget.mergeSpacer) return |
| | | if (widget.above) self.check(lineNo - 1, F_WIDGET_BELOW, self.hasWidgetBelow) |
| | | else self.check(lineNo, F_WIDGET, self.hasWidget) |
| | | }) |
| | | cm.on("lineWidgetChanged", this.signal.bind(this)) |
| | | cm.on("change", function(_, change) { |
| | | var start = change.from.line, nBefore = change.to.line - change.from.line |
| | | var nAfter = change.text.length - 1, end = start + nAfter |
| | | if (nBefore || nAfter) self.map(start, nBefore, nAfter) |
| | | self.check(end, F_MARKER, self.hasMarker) |
| | | if (nBefore || nAfter) self.check(change.from.line, F_MARKER, self.hasMarker) |
| | | }) |
| | | cm.on("viewportChange", function() { |
| | | if (self.cm.doc.height != self.height) self.signal() |
| | | }) |
| | | } |
| | | |
| | | TrackAlignable.prototype = { |
| | | signal: function() { |
| | | CodeMirror.signal(this, "realign") |
| | | this.height = this.cm.doc.height |
| | | }, |
| | | |
| | | set: function(n, flags) { |
| | | var pos = -1 |
| | | for (; pos < this.alignable.length; pos += 2) { |
| | | var diff = this.alignable[pos] - n |
| | | if (diff == 0) { |
| | | if ((this.alignable[pos + 1] & flags) == flags) return |
| | | this.alignable[pos + 1] |= flags |
| | | this.signal() |
| | | return |
| | | } |
| | | if (diff > 0) break |
| | | } |
| | | this.signal() |
| | | this.alignable.splice(pos, 0, n, flags) |
| | | }, |
| | | |
| | | find: function(n) { |
| | | for (var i = 0; i < this.alignable.length; i += 2) |
| | | if (this.alignable[i] == n) return i |
| | | return -1 |
| | | }, |
| | | |
| | | check: function(n, flag, pred) { |
| | | var found = this.find(n) |
| | | if (found == -1 || !(this.alignable[found + 1] & flag)) return |
| | | if (!pred.call(this, n)) { |
| | | this.signal() |
| | | var flags = this.alignable[found + 1] & ~flag |
| | | if (flags) this.alignable[found + 1] = flags |
| | | else this.alignable.splice(found, 2) |
| | | } |
| | | }, |
| | | |
| | | hasMarker: function(n) { |
| | | var handle = this.cm.getLineHandle(n) |
| | | if (handle.markedSpans) for (var i = 0; i < handle.markedSpans.length; i++) |
| | | if (handle.markedSpans[i].mark.collapsed && handle.markedSpans[i].to != null) |
| | | return true |
| | | return false |
| | | }, |
| | | |
| | | hasWidget: function(n) { |
| | | var handle = this.cm.getLineHandle(n) |
| | | if (handle.widgets) for (var i = 0; i < handle.widgets.length; i++) |
| | | if (!handle.widgets[i].above && !handle.widgets[i].mergeSpacer) return true |
| | | return false |
| | | }, |
| | | |
| | | hasWidgetBelow: function(n) { |
| | | if (n == this.cm.lastLine()) return false |
| | | var handle = this.cm.getLineHandle(n + 1) |
| | | if (handle.widgets) for (var i = 0; i < handle.widgets.length; i++) |
| | | if (handle.widgets[i].above && !handle.widgets[i].mergeSpacer) return true |
| | | return false |
| | | }, |
| | | |
| | | map: function(from, nBefore, nAfter) { |
| | | var diff = nAfter - nBefore, to = from + nBefore, widgetFrom = -1, widgetTo = -1 |
| | | for (var i = 0; i < this.alignable.length; i += 2) { |
| | | var n = this.alignable[i] |
| | | if (n == from && (this.alignable[i + 1] & F_WIDGET_BELOW)) widgetFrom = i |
| | | if (n == to && (this.alignable[i + 1] & F_WIDGET_BELOW)) widgetTo = i |
| | | if (n <= from) continue |
| | | else if (n < to) this.alignable.splice(i--, 2) |
| | | else this.alignable[i] += diff |
| | | } |
| | | if (widgetFrom > -1) { |
| | | var flags = this.alignable[widgetFrom + 1] |
| | | if (flags == F_WIDGET_BELOW) this.alignable.splice(widgetFrom, 2) |
| | | else this.alignable[widgetFrom + 1] = flags & ~F_WIDGET_BELOW |
| | | } |
| | | if (widgetTo > -1 && nAfter) |
| | | this.set(from + nAfter, F_WIDGET_BELOW) |
| | | } |
| | | } |
| | | |
| | | function posMin(a, b) { return (a.line - b.line || a.ch - b.ch) < 0 ? a : b; } |
| | | function posMax(a, b) { return (a.line - b.line || a.ch - b.ch) > 0 ? a : b; } |
| | | function posEq(a, b) { return a.line == b.line && a.ch == b.ch; } |
| | | |
| | | function findPrevDiff(chunks, start, isOrig) { |
| | | for (var i = chunks.length - 1; i >= 0; i--) { |
| | | var chunk = chunks[i]; |
| | | var to = (isOrig ? chunk.origTo : chunk.editTo) - 1; |
| | | if (to < start) return to; |
| | | } |
| | | } |
| | | |
| | | function findNextDiff(chunks, start, isOrig) { |
| | | for (var i = 0; i < chunks.length; i++) { |
| | | var chunk = chunks[i]; |
| | | var from = (isOrig ? chunk.origFrom : chunk.editFrom); |
| | | if (from > start) return from; |
| | | } |
| | | } |
| | | |
| | | function goNearbyDiff(cm, dir) { |
| | | var found = null, views = cm.state.diffViews, line = cm.getCursor().line; |
| | | if (views) for (var i = 0; i < views.length; i++) { |
| | | var dv = views[i], isOrig = cm == dv.orig; |
| | | ensureDiff(dv); |
| | | var pos = dir < 0 ? findPrevDiff(dv.chunks, line, isOrig) : findNextDiff(dv.chunks, line, isOrig); |
| | | if (pos != null && (found == null || (dir < 0 ? pos > found : pos < found))) |
| | | found = pos; |
| | | } |
| | | if (found != null) |
| | | cm.setCursor(found, 0); |
| | | else |
| | | return CodeMirror.Pass; |
| | | } |
| | | |
| | | CodeMirror.commands.goNextDiff = function(cm) { |
| | | return goNearbyDiff(cm, 1); |
| | | }; |
| | | CodeMirror.commands.goPrevDiff = function(cm) { |
| | | return goNearbyDiff(cm, -1); |
| | | }; |
| | | }); |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | define("vs/language/typescript/lib/lib-ts",[],function(){return{contents:'/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved. \nLicensed under the Apache License, Version 2.0 (the "License"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0 \n \nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, \nMERCHANTABLITY OR NON-INFRINGEMENT. \n \nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n\n/// <reference no-default-lib="true"/>\n\n\n/////////////////////////////\n/// ECMAScript APIs\n/////////////////////////////\n\ndeclare const NaN: number;\ndeclare const Infinity: number;\n\n/**\n * Evaluates JavaScript code and executes it.\n * @param x A String value that contains valid JavaScript code.\n */\ndeclare function eval(x: string): any;\n\n/**\n * Converts A string to an integer.\n * @param s A string to convert into a number.\n * @param radix A value between 2 and 36 that specifies the base of the number in numString.\n * If this argument is not supplied, strings with a prefix of \'0x\' are considered hexadecimal.\n * All other strings are considered decimal.\n */\ndeclare function parseInt(s: string, radix?: number): number;\n\n/**\n * Converts a string to a floating-point number.\n * @param string A string that contains a floating-point number.\n */\ndeclare function parseFloat(string: string): number;\n\n/**\n * Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number).\n * @param number A numeric value.\n */\ndeclare function isNaN(number: number): boolean;\n\n/**\n * Determines whether a supplied number is finite.\n * @param number Any numeric value.\n */\ndeclare function isFinite(number: number): boolean;\n\n/**\n * Gets the unencoded version of an encoded Uniform Resource Identifier (URI).\n * @param encodedURI A value representing an encoded URI.\n */\ndeclare function decodeURI(encodedURI: string): string;\n\n/**\n * Gets the unencoded version of an encoded component of a Uniform Resource Identifier (URI).\n * @param encodedURIComponent A value representing an encoded URI component.\n */\ndeclare function decodeURIComponent(encodedURIComponent: string): string;\n\n/**\n * Encodes a text string as a valid Uniform Resource Identifier (URI)\n * @param uri A value representing an encoded URI.\n */\ndeclare function encodeURI(uri: string): string;\n\n/**\n * Encodes a text string as a valid component of a Uniform Resource Identifier (URI).\n * @param uriComponent A value representing an encoded URI component.\n */\ndeclare function encodeURIComponent(uriComponent: string): string;\n\ninterface PropertyDescriptor {\n configurable?: boolean;\n enumerable?: boolean;\n value?: any;\n writable?: boolean;\n get?(): any;\n set?(v: any): void;\n}\n\ninterface PropertyDescriptorMap {\n [s: string]: PropertyDescriptor;\n}\n\ninterface Object {\n /** The initial value of Object.prototype.constructor is the standard built-in Object constructor. */\n constructor: Function;\n\n /** Returns a string representation of an object. */\n toString(): string;\n\n /** Returns a date converted to a string using the current locale. */\n toLocaleString(): string;\n\n /** Returns the primitive value of the specified object. */\n valueOf(): Object;\n\n /**\n * Determines whether an object has a property with the specified name.\n * @param v A property name.\n */\n hasOwnProperty(v: string): boolean;\n\n /**\n * Determines whether an object exists in another object\'s prototype chain.\n * @param v Another object whose prototype chain is to be checked.\n */\n isPrototypeOf(v: Object): boolean;\n\n /**\n * Determines whether a specified property is enumerable.\n * @param v A property name.\n */\n propertyIsEnumerable(v: string): boolean;\n}\n\ninterface ObjectConstructor {\n new(value?: any): Object;\n (): any;\n (value: any): any;\n\n /** A reference to the prototype for a class of objects. */\n readonly prototype: Object;\n\n /**\n * Returns the prototype of an object.\n * @param o The object that references the prototype.\n */\n getPrototypeOf(o: any): any;\n\n /**\n * Gets the own property descriptor of the specified object.\n * An own property descriptor is one that is defined directly on the object and is not inherited from the object\'s prototype.\n * @param o Object that contains the property.\n * @param p Name of the property.\n */\n getOwnPropertyDescriptor(o: any, p: string): PropertyDescriptor;\n\n /**\n * Returns the names of the own properties of an object. The own properties of an object are those that are defined directly\n * on that object, and are not inherited from the object\'s prototype. The properties of an object include both fields (objects) and functions.\n * @param o Object that contains the own properties.\n */\n getOwnPropertyNames(o: any): string[];\n\n /**\n * Creates an object that has the specified prototype or that has null prototype.\n * @param o Object to use as a prototype. May be null.\n */\n create(o: object | null): any;\n\n /**\n * Creates an object that has the specified prototype, and that optionally contains specified properties.\n * @param o Object to use as a prototype. May be null\n * @param properties JavaScript object that contains one or more property descriptors.\n */\n create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;\n\n /**\n * Adds a property to an object, or modifies attributes of an existing property.\n * @param o Object on which to add or modify the property. This can be a native JavaScript object (that is, a user-defined object or a built in object) or a DOM object.\n * @param p The property name.\n * @param attributes Descriptor for the property. It can be for a data property or an accessor property.\n */\n defineProperty(o: any, p: string, attributes: PropertyDescriptor & ThisType<any>): any;\n\n /**\n * Adds one or more properties to an object, and/or modifies attributes of existing properties.\n * @param o Object on which to add or modify the properties. This can be a native JavaScript object or a DOM object.\n * @param properties JavaScript object that contains one or more descriptor objects. Each descriptor object describes a data property or an accessor property.\n */\n defineProperties(o: any, properties: PropertyDescriptorMap & ThisType<any>): any;\n\n /**\n * Prevents the modification of attributes of existing properties, and prevents the addition of new properties.\n * @param o Object on which to lock the attributes.\n */\n seal<T>(o: T): T;\n\n /**\n * Prevents the modification of existing property attributes and values, and prevents the addition of new properties.\n * @param o Object on which to lock the attributes.\n */\n freeze<T>(a: T[]): ReadonlyArray<T>;\n\n /**\n * Prevents the modification of existing property attributes and values, and prevents the addition of new properties.\n * @param o Object on which to lock the attributes.\n */\n freeze<T extends Function>(f: T): T;\n\n /**\n * Prevents the modification of existing property attributes and values, and prevents the addition of new properties.\n * @param o Object on which to lock the attributes.\n */\n freeze<T>(o: T): Readonly<T>;\n\n /**\n * Prevents the addition of new properties to an object.\n * @param o Object to make non-extensible.\n */\n preventExtensions<T>(o: T): T;\n\n /**\n * Returns true if existing property attributes cannot be modified in an object and new properties cannot be added to the object.\n * @param o Object to test.\n */\n isSealed(o: any): boolean;\n\n /**\n * Returns true if existing property attributes and values cannot be modified in an object, and new properties cannot be added to the object.\n * @param o Object to test.\n */\n isFrozen(o: any): boolean;\n\n /**\n * Returns a value that indicates whether new properties can be added to an object.\n * @param o Object to test.\n */\n isExtensible(o: any): boolean;\n\n /**\n * Returns the names of the enumerable properties and methods of an object.\n * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.\n */\n keys(o: any): string[];\n}\n\n/**\n * Provides functionality common to all JavaScript objects.\n */\ndeclare const Object: ObjectConstructor;\n\n/**\n * Creates a new function.\n */\ninterface Function {\n /**\n * Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function.\n * @param thisArg The object to be used as the this object.\n * @param argArray A set of arguments to be passed to the function.\n */\n apply(this: Function, thisArg: any, argArray?: any): any;\n\n /**\n * Calls a method of an object, substituting another object for the current object.\n * @param thisArg The object to be used as the current object.\n * @param argArray A list of arguments to be passed to the method.\n */\n call(this: Function, thisArg: any, ...argArray: any[]): any;\n\n /**\n * For a given function, creates a bound function that has the same body as the original function.\n * The this object of the bound function is associated with the specified object, and has the specified initial parameters.\n * @param thisArg An object to which the this keyword can refer inside the new function.\n * @param argArray A list of arguments to be passed to the new function.\n */\n bind(this: Function, thisArg: any, ...argArray: any[]): any;\n\n /** Returns a string representation of a function. */\n toString(): string;\n\n prototype: any;\n readonly length: number;\n\n // Non-standard extensions\n arguments: any;\n caller: Function;\n}\n\ninterface FunctionConstructor {\n /**\n * Creates a new function.\n * @param args A list of arguments the function accepts.\n */\n new(...args: string[]): Function;\n (...args: string[]): Function;\n readonly prototype: Function;\n}\n\ndeclare const Function: FunctionConstructor;\n\ninterface IArguments {\n [index: number]: any;\n length: number;\n callee: Function;\n}\n\ninterface String {\n /** Returns a string representation of a string. */\n toString(): string;\n\n /**\n * Returns the character at the specified index.\n * @param pos The zero-based index of the desired character.\n */\n charAt(pos: number): string;\n\n /**\n * Returns the Unicode value of the character at the specified location.\n * @param index The zero-based index of the desired character. If there is no character at the specified index, NaN is returned.\n */\n charCodeAt(index: number): number;\n\n /**\n * Returns a string that contains the concatenation of two or more strings.\n * @param strings The strings to append to the end of the string.\n */\n concat(...strings: string[]): string;\n\n /**\n * Returns the position of the first occurrence of a substring.\n * @param searchString The substring to search for in the string\n * @param position The index at which to begin searching the String object. If omitted, search starts at the beginning of the string.\n */\n indexOf(searchString: string, position?: number): number;\n\n /**\n * Returns the last occurrence of a substring in the string.\n * @param searchString The substring to search for.\n * @param position The index at which to begin searching. If omitted, the search begins at the end of the string.\n */\n lastIndexOf(searchString: string, position?: number): number;\n\n /**\n * Determines whether two strings are equivalent in the current locale.\n * @param that String to compare to target string\n */\n localeCompare(that: string): number;\n\n /**\n * Matches a string with a regular expression, and returns an array containing the results of that search.\n * @param regexp A variable name or string literal containing the regular expression pattern and flags.\n */\n match(regexp: string | RegExp): RegExpMatchArray | null;\n\n /**\n * Replaces text in a string, using a regular expression or search string.\n * @param searchValue A string to search for.\n * @param replaceValue A string containing the text to replace for every successful match of searchValue in this string.\n */\n replace(searchValue: string | RegExp, replaceValue: string): string;\n\n /**\n * Replaces text in a string, using a regular expression or search string.\n * @param searchValue A string to search for.\n * @param replacer A function that returns the replacement text.\n */\n replace(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;\n\n /**\n * Finds the first substring match in a regular expression search.\n * @param regexp The regular expression pattern and applicable flags.\n */\n search(regexp: string | RegExp): number;\n\n /**\n * Returns a section of a string.\n * @param start The index to the beginning of the specified portion of stringObj.\n * @param end The index to the end of the specified portion of stringObj. The substring includes the characters up to, but not including, the character indicated by end.\n * If this value is not specified, the substring continues to the end of stringObj.\n */\n slice(start?: number, end?: number): string;\n\n /**\n * Split a string into substrings using the specified separator and return them as an array.\n * @param separator A string that identifies character or characters to use in separating the string. If omitted, a single-element array containing the entire string is returned.\n * @param limit A value used to limit the number of elements returned in the array.\n */\n split(separator: string | RegExp, limit?: number): string[];\n\n /**\n * Returns the substring at the specified location within a String object.\n * @param start The zero-based index number indicating the beginning of the substring.\n * @param end Zero-based index number indicating the end of the substring. The substring includes the characters up to, but not including, the character indicated by end.\n * If end is omitted, the characters from start through the end of the original string are returned.\n */\n substring(start: number, end?: number): string;\n\n /** Converts all the alphabetic characters in a string to lowercase. */\n toLowerCase(): string;\n\n /** Converts all alphabetic characters to lowercase, taking into account the host environment\'s current locale. */\n toLocaleLowerCase(): string;\n\n /** Converts all the alphabetic characters in a string to uppercase. */\n toUpperCase(): string;\n\n /** Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment\'s current locale. */\n toLocaleUpperCase(): string;\n\n /** Removes the leading and trailing white space and line terminator characters from a string. */\n trim(): string;\n\n /** Returns the length of a String object. */\n readonly length: number;\n\n // IE extensions\n /**\n * Gets a substring beginning at the specified location and having the specified length.\n * @param from The starting position of the desired substring. The index of the first character in the string is zero.\n * @param length The number of characters to include in the returned substring.\n */\n substr(from: number, length?: number): string;\n\n /** Returns the primitive value of the specified object. */\n valueOf(): string;\n\n readonly [index: number]: string;\n}\n\ninterface StringConstructor {\n new(value?: any): String;\n (value?: any): string;\n readonly prototype: String;\n fromCharCode(...codes: number[]): string;\n}\n\n/**\n * Allows manipulation and formatting of text strings and determination and location of substrings within strings.\n */\ndeclare const String: StringConstructor;\n\ninterface Boolean {\n /** Returns the primitive value of the specified object. */\n valueOf(): boolean;\n}\n\ninterface BooleanConstructor {\n new(value?: any): Boolean;\n (value?: any): boolean;\n readonly prototype: Boolean;\n}\n\ndeclare const Boolean: BooleanConstructor;\n\ninterface Number {\n /**\n * Returns a string representation of an object.\n * @param radix Specifies a radix for converting numeric values to strings. This value is only used for numbers.\n */\n toString(radix?: number): string;\n\n /**\n * Returns a string representing a number in fixed-point notation.\n * @param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.\n */\n toFixed(fractionDigits?: number): string;\n\n /**\n * Returns a string containing a number represented in exponential notation.\n * @param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.\n */\n toExponential(fractionDigits?: number): string;\n\n /**\n * Returns a string containing a number represented either in exponential or fixed-point notation with a specified number of digits.\n * @param precision Number of significant digits. Must be in the range 1 - 21, inclusive.\n */\n toPrecision(precision?: number): string;\n\n /** Returns the primitive value of the specified object. */\n valueOf(): number;\n}\n\ninterface NumberConstructor {\n new(value?: any): Number;\n (value?: any): number;\n readonly prototype: Number;\n\n /** The largest number that can be represented in JavaScript. Equal to approximately 1.79E+308. */\n readonly MAX_VALUE: number;\n\n /** The closest number to zero that can be represented in JavaScript. Equal to approximately 5.00E-324. */\n readonly MIN_VALUE: number;\n\n /**\n * A value that is not a number.\n * In equality comparisons, NaN does not equal any value, including itself. To test whether a value is equivalent to NaN, use the isNaN function.\n */\n readonly NaN: number;\n\n /**\n * A value that is less than the largest negative number that can be represented in JavaScript.\n * JavaScript displays NEGATIVE_INFINITY values as -infinity.\n */\n readonly NEGATIVE_INFINITY: number;\n\n /**\n * A value greater than the largest number that can be represented in JavaScript.\n * JavaScript displays POSITIVE_INFINITY values as infinity.\n */\n readonly POSITIVE_INFINITY: number;\n}\n\n/** An object that represents a number of any kind. All JavaScript numbers are 64-bit floating-point numbers. */\ndeclare const Number: NumberConstructor;\n\ninterface TemplateStringsArray extends ReadonlyArray<string> {\n readonly raw: ReadonlyArray<string>;\n}\n\ninterface Math {\n /** The mathematical constant e. This is Euler\'s number, the base of natural logarithms. */\n readonly E: number;\n /** The natural logarithm of 10. */\n readonly LN10: number;\n /** The natural logarithm of 2. */\n readonly LN2: number;\n /** The base-2 logarithm of e. */\n readonly LOG2E: number;\n /** The base-10 logarithm of e. */\n readonly LOG10E: number;\n /** Pi. This is the ratio of the circumference of a circle to its diameter. */\n readonly PI: number;\n /** The square root of 0.5, or, equivalently, one divided by the square root of 2. */\n readonly SQRT1_2: number;\n /** The square root of 2. */\n readonly SQRT2: number;\n /**\n * Returns the absolute value of a number (the value without regard to whether it is positive or negative).\n * For example, the absolute value of -5 is the same as the absolute value of 5.\n * @param x A numeric expression for which the absolute value is needed.\n */\n abs(x: number): number;\n /**\n * Returns the arc cosine (or inverse cosine) of a number.\n * @param x A numeric expression.\n */\n acos(x: number): number;\n /**\n * Returns the arcsine of a number.\n * @param x A numeric expression.\n */\n asin(x: number): number;\n /**\n * Returns the arctangent of a number.\n * @param x A numeric expression for which the arctangent is needed.\n */\n atan(x: number): number;\n /**\n * Returns the angle (in radians) from the X axis to a point.\n * @param y A numeric expression representing the cartesian y-coordinate.\n * @param x A numeric expression representing the cartesian x-coordinate.\n */\n atan2(y: number, x: number): number;\n /**\n * Returns the smallest number greater than or equal to its numeric argument.\n * @param x A numeric expression.\n */\n ceil(x: number): number;\n /**\n * Returns the cosine of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n cos(x: number): number;\n /**\n * Returns e (the base of natural logarithms) raised to a power.\n * @param x A numeric expression representing the power of e.\n */\n exp(x: number): number;\n /**\n * Returns the greatest number less than or equal to its numeric argument.\n * @param x A numeric expression.\n */\n floor(x: number): number;\n /**\n * Returns the natural logarithm (base e) of a number.\n * @param x A numeric expression.\n */\n log(x: number): number;\n /**\n * Returns the larger of a set of supplied numeric expressions.\n * @param values Numeric expressions to be evaluated.\n */\n max(...values: number[]): number;\n /**\n * Returns the smaller of a set of supplied numeric expressions.\n * @param values Numeric expressions to be evaluated.\n */\n min(...values: number[]): number;\n /**\n * Returns the value of a base expression taken to a specified power.\n * @param x The base value of the expression.\n * @param y The exponent value of the expression.\n */\n pow(x: number, y: number): number;\n /** Returns a pseudorandom number between 0 and 1. */\n random(): number;\n /**\n * Returns a supplied numeric expression rounded to the nearest number.\n * @param x The value to be rounded to the nearest number.\n */\n round(x: number): number;\n /**\n * Returns the sine of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n sin(x: number): number;\n /**\n * Returns the square root of a number.\n * @param x A numeric expression.\n */\n sqrt(x: number): number;\n /**\n * Returns the tangent of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n tan(x: number): number;\n}\n/** An intrinsic object that provides basic mathematics functionality and constants. */\ndeclare const Math: Math;\n\n/** Enables basic storage and retrieval of dates and times. */\ninterface Date {\n /** Returns a string representation of a date. The format of the string depends on the locale. */\n toString(): string;\n /** Returns a date as a string value. */\n toDateString(): string;\n /** Returns a time as a string value. */\n toTimeString(): string;\n /** Returns a value as a string value appropriate to the host environment\'s current locale. */\n toLocaleString(): string;\n /** Returns a date as a string value appropriate to the host environment\'s current locale. */\n toLocaleDateString(): string;\n /** Returns a time as a string value appropriate to the host environment\'s current locale. */\n toLocaleTimeString(): string;\n /** Returns the stored time value in milliseconds since midnight, January 1, 1970 UTC. */\n valueOf(): number;\n /** Gets the time value in milliseconds. */\n getTime(): number;\n /** Gets the year, using local time. */\n getFullYear(): number;\n /** Gets the year using Universal Coordinated Time (UTC). */\n getUTCFullYear(): number;\n /** Gets the month, using local time. */\n getMonth(): number;\n /** Gets the month of a Date object using Universal Coordinated Time (UTC). */\n getUTCMonth(): number;\n /** Gets the day-of-the-month, using local time. */\n getDate(): number;\n /** Gets the day-of-the-month, using Universal Coordinated Time (UTC). */\n getUTCDate(): number;\n /** Gets the day of the week, using local time. */\n getDay(): number;\n /** Gets the day of the week using Universal Coordinated Time (UTC). */\n getUTCDay(): number;\n /** Gets the hours in a date, using local time. */\n getHours(): number;\n /** Gets the hours value in a Date object using Universal Coordinated Time (UTC). */\n getUTCHours(): number;\n /** Gets the minutes of a Date object, using local time. */\n getMinutes(): number;\n /** Gets the minutes of a Date object using Universal Coordinated Time (UTC). */\n getUTCMinutes(): number;\n /** Gets the seconds of a Date object, using local time. */\n getSeconds(): number;\n /** Gets the seconds of a Date object using Universal Coordinated Time (UTC). */\n getUTCSeconds(): number;\n /** Gets the milliseconds of a Date, using local time. */\n getMilliseconds(): number;\n /** Gets the milliseconds of a Date object using Universal Coordinated Time (UTC). */\n getUTCMilliseconds(): number;\n /** Gets the difference in minutes between the time on the local computer and Universal Coordinated Time (UTC). */\n getTimezoneOffset(): number;\n /**\n * Sets the date and time value in the Date object.\n * @param time A numeric value representing the number of elapsed milliseconds since midnight, January 1, 1970 GMT.\n */\n setTime(time: number): number;\n /**\n * Sets the milliseconds value in the Date object using local time.\n * @param ms A numeric value equal to the millisecond value.\n */\n setMilliseconds(ms: number): number;\n /**\n * Sets the milliseconds value in the Date object using Universal Coordinated Time (UTC).\n * @param ms A numeric value equal to the millisecond value.\n */\n setUTCMilliseconds(ms: number): number;\n\n /**\n * Sets the seconds value in the Date object using local time.\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setSeconds(sec: number, ms?: number): number;\n /**\n * Sets the seconds value in the Date object using Universal Coordinated Time (UTC).\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setUTCSeconds(sec: number, ms?: number): number;\n /**\n * Sets the minutes value in the Date object using local time.\n * @param min A numeric value equal to the minutes value.\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setMinutes(min: number, sec?: number, ms?: number): number;\n /**\n * Sets the minutes value in the Date object using Universal Coordinated Time (UTC).\n * @param min A numeric value equal to the minutes value.\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setUTCMinutes(min: number, sec?: number, ms?: number): number;\n /**\n * Sets the hour value in the Date object using local time.\n * @param hours A numeric value equal to the hours value.\n * @param min A numeric value equal to the minutes value.\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setHours(hours: number, min?: number, sec?: number, ms?: number): number;\n /**\n * Sets the hours value in the Date object using Universal Coordinated Time (UTC).\n * @param hours A numeric value equal to the hours value.\n * @param min A numeric value equal to the minutes value.\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setUTCHours(hours: number, min?: number, sec?: number, ms?: number): number;\n /**\n * Sets the numeric day-of-the-month value of the Date object using local time.\n * @param date A numeric value equal to the day of the month.\n */\n setDate(date: number): number;\n /**\n * Sets the numeric day of the month in the Date object using Universal Coordinated Time (UTC).\n * @param date A numeric value equal to the day of the month.\n */\n setUTCDate(date: number): number;\n /**\n * Sets the month value in the Date object using local time.\n * @param month A numeric value equal to the month. The value for January is 0, and other month values follow consecutively.\n * @param date A numeric value representing the day of the month. If this value is not supplied, the value from a call to the getDate method is used.\n */\n setMonth(month: number, date?: number): number;\n /**\n * Sets the month value in the Date object using Universal Coordinated Time (UTC).\n * @param month A numeric value equal to the month. The value for January is 0, and other month values follow consecutively.\n * @param date A numeric value representing the day of the month. If it is not supplied, the value from a call to the getUTCDate method is used.\n */\n setUTCMonth(month: number, date?: number): number;\n /**\n * Sets the year of the Date object using local time.\n * @param year A numeric value for the year.\n * @param month A zero-based numeric value for the month (0 for January, 11 for December). Must be specified if numDate is specified.\n * @param date A numeric value equal for the day of the month.\n */\n setFullYear(year: number, month?: number, date?: number): number;\n /**\n * Sets the year value in the Date object using Universal Coordinated Time (UTC).\n * @param year A numeric value equal to the year.\n * @param month A numeric value equal to the month. The value for January is 0, and other month values follow consecutively. Must be supplied if numDate is supplied.\n * @param date A numeric value equal to the day of the month.\n */\n setUTCFullYear(year: number, month?: number, date?: number): number;\n /** Returns a date converted to a string using Universal Coordinated Time (UTC). */\n toUTCString(): string;\n /** Returns a date as a string value in ISO format. */\n toISOString(): string;\n /** Used by the JSON.stringify method to enable the transformation of an object\'s data for JavaScript Object Notation (JSON) serialization. */\n toJSON(key?: any): string;\n}\n\ninterface DateConstructor {\n new(): Date;\n new(value: number): Date;\n new(value: string): Date;\n new(year: number, month: number, date?: number, hours?: number, minutes?: number, seconds?: number, ms?: number): Date;\n (): string;\n readonly prototype: Date;\n /**\n * Parses a string containing a date, and returns the number of milliseconds between that date and midnight, January 1, 1970.\n * @param s A date string\n */\n parse(s: string): number;\n /**\n * Returns the number of milliseconds between midnight, January 1, 1970 Universal Coordinated Time (UTC) (or GMT) and the specified date.\n * @param year The full year designation is required for cross-century date accuracy. If year is between 0 and 99 is used, then year is assumed to be 1900 + year.\n * @param month The month as an number between 0 and 11 (January to December).\n * @param date The date as an number between 1 and 31.\n * @param hours Must be supplied if minutes is supplied. An number from 0 to 23 (midnight to 11pm) that specifies the hour.\n * @param minutes Must be supplied if seconds is supplied. An number from 0 to 59 that specifies the minutes.\n * @param seconds Must be supplied if milliseconds is supplied. An number from 0 to 59 that specifies the seconds.\n * @param ms An number from 0 to 999 that specifies the milliseconds.\n */\n UTC(year: number, month: number, date?: number, hours?: number, minutes?: number, seconds?: number, ms?: number): number;\n now(): number;\n}\n\ndeclare const Date: DateConstructor;\n\ninterface RegExpMatchArray extends Array<string> {\n index?: number;\n input?: string;\n}\n\ninterface RegExpExecArray extends Array<string> {\n index: number;\n input: string;\n}\n\ninterface RegExp {\n /**\n * Executes a search on a string using a regular expression pattern, and returns an array containing the results of that search.\n * @param string The String object or string literal on which to perform the search.\n */\n exec(string: string): RegExpExecArray | null;\n\n /**\n * Returns a Boolean value that indicates whether or not a pattern exists in a searched string.\n * @param string String on which to perform the search.\n */\n test(string: string): boolean;\n\n /** Returns a copy of the text of the regular expression pattern. Read-only. The regExp argument is a Regular expression object. It can be a variable name or a literal. */\n readonly source: string;\n\n /** Returns a Boolean value indicating the state of the global flag (g) used with a regular expression. Default is false. Read-only. */\n readonly global: boolean;\n\n /** Returns a Boolean value indicating the state of the ignoreCase flag (i) used with a regular expression. Default is false. Read-only. */\n readonly ignoreCase: boolean;\n\n /** Returns a Boolean value indicating the state of the multiline flag (m) used with a regular expression. Default is false. Read-only. */\n readonly multiline: boolean;\n\n lastIndex: number;\n\n // Non-standard extensions\n compile(): this;\n}\n\ninterface RegExpConstructor {\n new(pattern: RegExp | string): RegExp;\n new(pattern: string, flags?: string): RegExp;\n (pattern: RegExp | string): RegExp;\n (pattern: string, flags?: string): RegExp;\n readonly prototype: RegExp;\n\n // Non-standard extensions\n $1: string;\n $2: string;\n $3: string;\n $4: string;\n $5: string;\n $6: string;\n $7: string;\n $8: string;\n $9: string;\n lastMatch: string;\n}\n\ndeclare const RegExp: RegExpConstructor;\n\ninterface Error {\n name: string;\n message: string;\n stack?: string;\n}\n\ninterface ErrorConstructor {\n new(message?: string): Error;\n (message?: string): Error;\n readonly prototype: Error;\n}\n\ndeclare const Error: ErrorConstructor;\n\ninterface EvalError extends Error {\n}\n\ninterface EvalErrorConstructor {\n new(message?: string): EvalError;\n (message?: string): EvalError;\n readonly prototype: EvalError;\n}\n\ndeclare const EvalError: EvalErrorConstructor;\n\ninterface RangeError extends Error {\n}\n\ninterface RangeErrorConstructor {\n new(message?: string): RangeError;\n (message?: string): RangeError;\n readonly prototype: RangeError;\n}\n\ndeclare const RangeError: RangeErrorConstructor;\n\ninterface ReferenceError extends Error {\n}\n\ninterface ReferenceErrorConstructor {\n new(message?: string): ReferenceError;\n (message?: string): ReferenceError;\n readonly prototype: ReferenceError;\n}\n\ndeclare const ReferenceError: ReferenceErrorConstructor;\n\ninterface SyntaxError extends Error {\n}\n\ninterface SyntaxErrorConstructor {\n new(message?: string): SyntaxError;\n (message?: string): SyntaxError;\n readonly prototype: SyntaxError;\n}\n\ndeclare const SyntaxError: SyntaxErrorConstructor;\n\ninterface TypeError extends Error {\n}\n\ninterface TypeErrorConstructor {\n new(message?: string): TypeError;\n (message?: string): TypeError;\n readonly prototype: TypeError;\n}\n\ndeclare const TypeError: TypeErrorConstructor;\n\ninterface URIError extends Error {\n}\n\ninterface URIErrorConstructor {\n new(message?: string): URIError;\n (message?: string): URIError;\n readonly prototype: URIError;\n}\n\ndeclare const URIError: URIErrorConstructor;\n\ninterface JSON {\n /**\n * Converts a JavaScript Object Notation (JSON) string into an object.\n * @param text A valid JSON string.\n * @param reviver A function that transforms the results. This function is called for each member of the object.\n * If a member contains nested objects, the nested objects are transformed before the parent object is.\n */\n parse(text: string, reviver?: (key: any, value: any) => any): any;\n /**\n * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.\n * @param value A JavaScript value, usually an object or array, to be converted.\n * @param replacer A function that transforms the results.\n * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.\n */\n stringify(value: any, replacer?: (key: string, value: any) => any, space?: string | number): string;\n /**\n * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.\n * @param value A JavaScript value, usually an object or array, to be converted.\n * @param replacer An array of strings and numbers that acts as a approved list for selecting the object properties that will be stringified.\n * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.\n */\n stringify(value: any, replacer?: (number | string)[] | null, space?: string | number): string;\n}\n\n/**\n * An intrinsic object that provides functions to convert JavaScript values to and from the JavaScript Object Notation (JSON) format.\n */\ndeclare const JSON: JSON;\n\n\n/////////////////////////////\n/// ECMAScript Array API (specially handled by compiler)\n/////////////////////////////\n\ninterface ReadonlyArray<T> {\n /**\n * Gets the length of the array. This is a number one higher than the highest element defined in an array.\n */\n readonly length: number;\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n /**\n * Returns a string representation of an array. The elements are converted to string using thier toLocalString methods.\n */\n toLocaleString(): string;\n /**\n * Combines two or more arrays.\n * @param items Additional items to add to the end of array1.\n */\n concat(...items: T[][]): T[];\n /**\n * Combines two or more arrays.\n * @param items Additional items to add to the end of array1.\n */\n concat(...items: (T | T[])[]): T[];\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): T[];\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.\n */\n indexOf(searchElement: T, fromIndex?: number): number;\n /**\n * Returns the index of the last occurrence of a specified value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array.\n */\n lastIndexOf(searchElement: T, fromIndex?: number): number;\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls the callbackfn function for each element in array1 until the callbackfn returns false, or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => boolean, thisArg?: any): boolean;\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the callbackfn function for each element in array1 until the callbackfn returns true, or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => boolean, thisArg?: any): boolean;\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => void, thisArg?: any): void;\n /**\n * Calls a defined callback function on each element of an array, and returns an array that contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n map<U>(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => U, thisArg?: any): U[];\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n filter<S extends T>(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => value is S, thisArg?: any): S[];\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => any, thisArg?: any): T[];\n /**\n * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => T, initialValue?: T): T;\n /**\n * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => U, initialValue: U): U;\n /**\n * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => T, initialValue?: T): T;\n /**\n * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => U, initialValue: U): U;\n\n readonly [n: number]: T;\n}\n\ninterface Array<T> {\n /**\n * Gets or sets the length of the array. This is a number one higher than the highest element defined in an array.\n */\n length: number;\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n /**\n * Returns a string representation of an array. The elements are converted to string using thier toLocalString methods.\n */\n toLocaleString(): string;\n /**\n * Appends new elements to an array, and returns the new length of the array.\n * @param items New elements of the Array.\n */\n push(...items: T[]): number;\n /**\n * Removes the last element from an array and returns it.\n */\n pop(): T | undefined;\n /**\n * Combines two or more arrays.\n * @param items Additional items to add to the end of array1.\n */\n concat(...items: T[][]): T[];\n /**\n * Combines two or more arrays.\n * @param items Additional items to add to the end of array1.\n */\n concat(...items: (T | T[])[]): T[];\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n /**\n * Reverses the elements in an Array.\n */\n reverse(): T[];\n /**\n * Removes the first element from an array and returns it.\n */\n shift(): T | undefined;\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): T[];\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: T, b: T) => number): this;\n /**\n * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.\n * @param start The zero-based location in the array from which to start removing elements.\n * @param deleteCount The number of elements to remove.\n */\n splice(start: number, deleteCount?: number): T[];\n /**\n * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.\n * @param start The zero-based location in the array from which to start removing elements.\n * @param deleteCount The number of elements to remove.\n * @param items Elements to insert into the array in place of the deleted elements.\n */\n splice(start: number, deleteCount: number, ...items: T[]): T[];\n /**\n * Inserts new elements at the start of an array.\n * @param items Elements to insert at the start of the Array.\n */\n unshift(...items: T[]): number;\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.\n */\n indexOf(searchElement: T, fromIndex?: number): number;\n /**\n * Returns the index of the last occurrence of a specified value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array.\n */\n lastIndexOf(searchElement: T, fromIndex?: number): number;\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls the callbackfn function for each element in array1 until the callbackfn returns false, or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: any): boolean;\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the callbackfn function for each element in array1 until the callbackfn returns true, or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: any): boolean;\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any): void;\n /**\n * Calls a defined callback function on each element of an array, and returns an array that contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[];\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n filter<S extends T>(callbackfn: (value: T, index: number, array: T[]) => value is S, thisArg?: any): S[];\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: T, index: number, array: T[]) => any, thisArg?: any): T[];\n /**\n * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T;\n /**\n * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;\n /**\n * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T;\n /**\n * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;\n\n [n: number]: T;\n}\n\ninterface ArrayConstructor {\n new(arrayLength?: number): any[];\n new <T>(arrayLength: number): T[];\n new <T>(...items: T[]): T[];\n (arrayLength?: number): any[];\n <T>(arrayLength: number): T[];\n <T>(...items: T[]): T[];\n isArray(arg: any): arg is Array<any>;\n readonly prototype: Array<any>;\n}\n\ndeclare const Array: ArrayConstructor;\n\ninterface TypedPropertyDescriptor<T> {\n enumerable?: boolean;\n configurable?: boolean;\n writable?: boolean;\n value?: T;\n get?: () => T;\n set?: (value: T) => void;\n}\n\ndeclare type ClassDecorator = <TFunction extends Function>(target: TFunction) => TFunction | void;\ndeclare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void;\ndeclare type MethodDecorator = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;\ndeclare type ParameterDecorator = (target: Object, propertyKey: string | symbol, parameterIndex: number) => void;\n\ndeclare type PromiseConstructorLike = new <T>(executor: (resolve: (value?: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void) => PromiseLike<T>;\n\ninterface PromiseLike<T> {\n /**\n * Attaches callbacks for the resolution and/or rejection of the Promise.\n * @param onfulfilled The callback to execute when the Promise is resolved.\n * @param onrejected The callback to execute when the Promise is rejected.\n * @returns A Promise for the completion of which ever callback is executed.\n */\n then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): PromiseLike<TResult1 | TResult2>;\n}\n\n/**\n * Represents the completion of an asynchronous operation\n */\ninterface Promise<T> {\n /**\n * Attaches callbacks for the resolution and/or rejection of the Promise.\n * @param onfulfilled The callback to execute when the Promise is resolved.\n * @param onrejected The callback to execute when the Promise is rejected.\n * @returns A Promise for the completion of which ever callback is executed.\n */\n then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): Promise<TResult1 | TResult2>;\n\n /**\n * Attaches a callback for only the rejection of the Promise.\n * @param onrejected The callback to execute when the Promise is rejected.\n * @returns A Promise for the completion of the callback.\n */\n catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): Promise<T | TResult>;\n}\n\ninterface ArrayLike<T> {\n readonly length: number;\n readonly [n: number]: T;\n}\n\n/**\n * Make all properties in T optional\n */\ntype Partial<T> = {\n [P in keyof T]?: T[P];\n};\n\n/**\n * Make all properties in T readonly\n */\ntype Readonly<T> = {\n readonly [P in keyof T]: T[P];\n};\n\n/**\n * From T pick a set of properties K\n */\ntype Pick<T, K extends keyof T> = {\n [P in K]: T[P];\n};\n\n/**\n * Construct a type with a set of properties K of type T\n */\ntype Record<K extends string, T> = {\n [P in K]: T;\n};\n\n/**\n * Marker for contextual \'this\' type\n */\ninterface ThisType<T> { }\n\n/**\n * Represents a raw buffer of binary data, which is used to store data for the\n * different typed arrays. ArrayBuffers cannot be read from or written to directly,\n * but can be passed to a typed array or DataView Object to interpret the raw\n * buffer as needed.\n */\ninterface ArrayBuffer {\n /**\n * Read-only. The length of the ArrayBuffer (in bytes).\n */\n readonly byteLength: number;\n\n /**\n * Returns a section of an ArrayBuffer.\n */\n slice(begin: number, end?: number): ArrayBuffer;\n}\n\n/**\n * Allowed ArrayBuffer types for the buffer of an ArrayBufferView and related Typed Arrays.\n */\ninterface ArrayBufferTypes {\n ArrayBuffer: ArrayBuffer;\n}\ntype ArrayBufferLike = ArrayBufferTypes[keyof ArrayBufferTypes];\n\ninterface ArrayBufferConstructor {\n readonly prototype: ArrayBuffer;\n new(byteLength: number): ArrayBuffer;\n isView(arg: any): arg is ArrayBufferView;\n}\ndeclare const ArrayBuffer: ArrayBufferConstructor;\n\ninterface ArrayBufferView {\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n byteOffset: number;\n}\n\ninterface DataView {\n readonly buffer: ArrayBuffer;\n readonly byteLength: number;\n readonly byteOffset: number;\n /**\n * Gets the Float32 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getFloat32(byteOffset: number, littleEndian?: boolean): number;\n\n /**\n * Gets the Float64 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getFloat64(byteOffset: number, littleEndian?: boolean): number;\n\n /**\n * Gets the Int8 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getInt8(byteOffset: number): number;\n\n /**\n * Gets the Int16 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getInt16(byteOffset: number, littleEndian?: boolean): number;\n /**\n * Gets the Int32 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getInt32(byteOffset: number, littleEndian?: boolean): number;\n\n /**\n * Gets the Uint8 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getUint8(byteOffset: number): number;\n\n /**\n * Gets the Uint16 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getUint16(byteOffset: number, littleEndian?: boolean): number;\n\n /**\n * Gets the Uint32 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getUint32(byteOffset: number, littleEndian?: boolean): number;\n\n /**\n * Stores an Float32 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setFloat32(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n /**\n * Stores an Float64 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setFloat64(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n /**\n * Stores an Int8 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n */\n setInt8(byteOffset: number, value: number): void;\n\n /**\n * Stores an Int16 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setInt16(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n /**\n * Stores an Int32 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setInt32(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n /**\n * Stores an Uint8 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n */\n setUint8(byteOffset: number, value: number): void;\n\n /**\n * Stores an Uint16 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setUint16(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n /**\n * Stores an Uint32 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setUint32(byteOffset: number, value: number, littleEndian?: boolean): void;\n}\n\ninterface DataViewConstructor {\n new(buffer: ArrayBufferLike, byteOffset?: number, byteLength?: number): DataView;\n}\ndeclare const DataView: DataViewConstructor;\n\n/**\n * A typed array of 8-bit integer values. The contents are initialized to 0. If the requested\n * number of bytes could not be allocated an exception is raised.\n */\ninterface Int8Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Int8Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Int8Array) => any, thisArg?: any): Int8Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Int8Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Int8Array) => number, thisArg?: any): Int8Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int8Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int8Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int8Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int8Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Int8Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Int8Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Int8Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Int8Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Int8Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\ninterface Int8ArrayConstructor {\n readonly prototype: Int8Array;\n new(length: number): Int8Array;\n new(array: ArrayLike<number>): Int8Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int8Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Int8Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int8Array;\n\n\n}\ndeclare const Int8Array: Int8ArrayConstructor;\n\n/**\n * A typed array of 8-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint8Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Uint8Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Uint8Array) => any, thisArg?: any): Uint8Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Uint8Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Uint8Array) => number, thisArg?: any): Uint8Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint8Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint8Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint8Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint8Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Uint8Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Uint8Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Uint8Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Uint8Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Uint8Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Uint8ArrayConstructor {\n readonly prototype: Uint8Array;\n new(length: number): Uint8Array;\n new(array: ArrayLike<number>): Uint8Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint8Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Uint8Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint8Array;\n\n}\ndeclare const Uint8Array: Uint8ArrayConstructor;\n\n/**\n * A typed array of 8-bit unsigned integer (clamped) values. The contents are initialized to 0.\n * If the requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint8ClampedArray {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => any, thisArg?: any): Uint8ClampedArray;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Uint8ClampedArray) => number, thisArg?: any): Uint8ClampedArray;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint8ClampedArray) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint8ClampedArray) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint8ClampedArray) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint8ClampedArray) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Uint8ClampedArray;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Uint8ClampedArray;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Uint8ClampedArray view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Uint8ClampedArray;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Uint8ClampedArrayConstructor {\n readonly prototype: Uint8ClampedArray;\n new(length: number): Uint8ClampedArray;\n new(array: ArrayLike<number>): Uint8ClampedArray;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint8ClampedArray;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Uint8ClampedArray;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint8ClampedArray;\n}\ndeclare const Uint8ClampedArray: Uint8ClampedArrayConstructor;\n\n/**\n * A typed array of 16-bit signed integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Int16Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Int16Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (this: void, value: number, index: number, array: Int16Array) => any, thisArg?: any): Int16Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Int16Array) => void, thisArg?: any): void;\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Int16Array) => number, thisArg?: any): Int16Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int16Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int16Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int16Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int16Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Int16Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Int16Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Int16Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Int16Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Int16Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Int16ArrayConstructor {\n readonly prototype: Int16Array;\n new(length: number): Int16Array;\n new(array: ArrayLike<number>): Int16Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int16Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Int16Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int16Array;\n\n\n}\ndeclare const Int16Array: Int16ArrayConstructor;\n\n/**\n * A typed array of 16-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint16Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Uint16Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Uint16Array) => any, thisArg?: any): Uint16Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Uint16Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Uint16Array) => number, thisArg?: any): Uint16Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint16Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint16Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint16Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint16Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Uint16Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Uint16Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Uint16Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Uint16Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Uint16Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Uint16ArrayConstructor {\n readonly prototype: Uint16Array;\n new(length: number): Uint16Array;\n new(array: ArrayLike<number>): Uint16Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint16Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Uint16Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint16Array;\n\n\n}\ndeclare const Uint16Array: Uint16ArrayConstructor;\n/**\n * A typed array of 32-bit signed integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Int32Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Int32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Int32Array) => any, thisArg?: any): Int32Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Int32Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (value: number, index: number, array: Int32Array) => number, thisArg?: any): Int32Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int32Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int32Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Int32Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Int32Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Int32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Int32Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Int32Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Int32ArrayConstructor {\n readonly prototype: Int32Array;\n new(length: number): Int32Array;\n new(array: ArrayLike<number>): Int32Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int32Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Int32Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int32Array;\n\n}\ndeclare const Int32Array: Int32ArrayConstructor;\n\n/**\n * A typed array of 32-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint32Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Uint32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Uint32Array) => any, thisArg?: any): Uint32Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Uint32Array) => void, thisArg?: any): void;\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Uint32Array) => number, thisArg?: any): Uint32Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint32Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint32Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Uint32Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Uint32Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Uint32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Uint32Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Uint32Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Uint32ArrayConstructor {\n readonly prototype: Uint32Array;\n new(length: number): Uint32Array;\n new(array: ArrayLike<number>): Uint32Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint32Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Uint32Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint32Array;\n\n}\ndeclare const Uint32Array: Uint32ArrayConstructor;\n\n/**\n * A typed array of 32-bit float values. The contents are initialized to 0. If the requested number\n * of bytes could not be allocated an exception is raised.\n */\ninterface Float32Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Float32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Float32Array) => any, thisArg?: any): Float32Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Float32Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Float32Array) => number, thisArg?: any): Float32Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Float32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Float32Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Float32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Float32Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Float32Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Float32Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Float32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Float32Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Float32Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Float32ArrayConstructor {\n readonly prototype: Float32Array;\n new(length: number): Float32Array;\n new(array: ArrayLike<number>): Float32Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Float32Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Float32Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Float32Array;\n\n\n}\ndeclare const Float32Array: Float32ArrayConstructor;\n\n/**\n * A typed array of 64-bit float values. The contents are initialized to 0. If the requested\n * number of bytes could not be allocated an exception is raised.\n */\ninterface Float64Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Float64Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Float64Array) => any, thisArg?: any): Float64Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Float64Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Float64Array) => number, thisArg?: any): Float64Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Float64Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Float64Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Float64Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Float64Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Float64Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Float64Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Float64Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Float64Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Float64Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Float64ArrayConstructor {\n readonly prototype: Float64Array;\n new(length: number): Float64Array;\n new(array: ArrayLike<number>): Float64Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Float64Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Float64Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Float64Array;\n\n}\ndeclare const Float64Array: Float64ArrayConstructor;\n\n/////////////////////////////\n/// ECMAScript Internationalization API\n/////////////////////////////\n\ndeclare namespace Intl {\n interface CollatorOptions {\n usage?: string;\n localeMatcher?: string;\n numeric?: boolean;\n caseFirst?: string;\n sensitivity?: string;\n ignorePunctuation?: boolean;\n }\n\n interface ResolvedCollatorOptions {\n locale: string;\n usage: string;\n sensitivity: string;\n ignorePunctuation: boolean;\n collation: string;\n caseFirst: string;\n numeric: boolean;\n }\n\n interface Collator {\n compare(x: string, y: string): number;\n resolvedOptions(): ResolvedCollatorOptions;\n }\n var Collator: {\n new(locales?: string | string[], options?: CollatorOptions): Collator;\n (locales?: string | string[], options?: CollatorOptions): Collator;\n supportedLocalesOf(locales: string | string[], options?: CollatorOptions): string[];\n };\n\n interface NumberFormatOptions {\n localeMatcher?: string;\n style?: string;\n currency?: string;\n currencyDisplay?: string;\n useGrouping?: boolean;\n minimumIntegerDigits?: number;\n minimumFractionDigits?: number;\n maximumFractionDigits?: number;\n minimumSignificantDigits?: number;\n maximumSignificantDigits?: number;\n }\n\n interface ResolvedNumberFormatOptions {\n locale: string;\n numberingSystem: string;\n style: string;\n currency?: string;\n currencyDisplay?: string;\n minimumIntegerDigits: number;\n minimumFractionDigits: number;\n maximumFractionDigits: number;\n minimumSignificantDigits?: number;\n maximumSignificantDigits?: number;\n useGrouping: boolean;\n }\n\n interface NumberFormat {\n format(value: number): string;\n resolvedOptions(): ResolvedNumberFormatOptions;\n }\n var NumberFormat: {\n new(locales?: string | string[], options?: NumberFormatOptions): NumberFormat;\n (locales?: string | string[], options?: NumberFormatOptions): NumberFormat;\n supportedLocalesOf(locales: string | string[], options?: NumberFormatOptions): string[];\n };\n\n interface DateTimeFormatOptions {\n localeMatcher?: string;\n weekday?: string;\n era?: string;\n year?: string;\n month?: string;\n day?: string;\n hour?: string;\n minute?: string;\n second?: string;\n timeZoneName?: string;\n formatMatcher?: string;\n hour12?: boolean;\n timeZone?: string;\n }\n\n interface ResolvedDateTimeFormatOptions {\n locale: string;\n calendar: string;\n numberingSystem: string;\n timeZone: string;\n hour12?: boolean;\n weekday?: string;\n era?: string;\n year?: string;\n month?: string;\n day?: string;\n hour?: string;\n minute?: string;\n second?: string;\n timeZoneName?: string;\n }\n\n interface DateTimeFormat {\n format(date?: Date | number): string;\n resolvedOptions(): ResolvedDateTimeFormatOptions;\n }\n var DateTimeFormat: {\n new(locales?: string | string[], options?: DateTimeFormatOptions): DateTimeFormat;\n (locales?: string | string[], options?: DateTimeFormatOptions): DateTimeFormat;\n supportedLocalesOf(locales: string | string[], options?: DateTimeFormatOptions): string[];\n };\n}\n\ninterface String {\n /**\n * Determines whether two strings are equivalent in the current or specified locale.\n * @param that String to compare to target string\n * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used. This parameter must conform to BCP 47 standards; see the Intl.Collator object for details.\n * @param options An object that contains one or more properties that specify comparison options. see the Intl.Collator object for details.\n */\n localeCompare(that: string, locales?: string | string[], options?: Intl.CollatorOptions): number;\n}\n\ninterface Number {\n /**\n * Converts a number to a string by using the current or specified locale.\n * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n * @param options An object that contains one or more properties that specify comparison options.\n */\n toLocaleString(locales?: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n\ninterface Date {\n /**\n * Converts a date and time to a string by using the current or specified locale.\n * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n * @param options An object that contains one or more properties that specify comparison options.\n */\n toLocaleString(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;\n /**\n * Converts a date to a string by using the current or specified locale.\n * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n * @param options An object that contains one or more properties that specify comparison options.\n */\n toLocaleDateString(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;\n\n /**\n * Converts a time to a string by using the current or specified locale.\n * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n * @param options An object that contains one or more properties that specify comparison options.\n */\n toLocaleTimeString(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;\n}\n\n\n\n/////////////////////////////\n/// DOM APIs\n/////////////////////////////\n\ninterface Account {\n displayName?: string;\n id?: string;\n imageURL?: string;\n name?: string;\n rpDisplayName?: string;\n}\n\ninterface Algorithm {\n name: string;\n}\n\ninterface AnimationEventInit extends EventInit {\n animationName?: string;\n elapsedTime?: number;\n}\n\ninterface AssertionOptions {\n allowList?: ScopedCredentialDescriptor[];\n extensions?: WebAuthnExtensions;\n rpId?: USVString;\n timeoutSeconds?: number;\n}\n\ninterface CacheQueryOptions {\n cacheName?: string;\n ignoreMethod?: boolean;\n ignoreSearch?: boolean;\n ignoreVary?: boolean;\n}\n\ninterface ClientData {\n challenge?: string;\n extensions?: WebAuthnExtensions;\n hashAlg?: string | Algorithm;\n origin?: string;\n rpId?: string;\n tokenBinding?: string;\n}\n\ninterface CloseEventInit extends EventInit {\n code?: number;\n reason?: string;\n wasClean?: boolean;\n}\n\ninterface CompositionEventInit extends UIEventInit {\n data?: string;\n}\n\ninterface ConfirmSiteSpecificExceptionsInformation extends ExceptionInformation {\n arrayOfDomainStrings?: string[];\n}\n\ninterface ConstrainBooleanParameters {\n exact?: boolean;\n ideal?: boolean;\n}\n\ninterface ConstrainDOMStringParameters {\n exact?: string | string[];\n ideal?: string | string[];\n}\n\ninterface ConstrainDoubleRange extends DoubleRange {\n exact?: number;\n ideal?: number;\n}\n\ninterface ConstrainLongRange extends LongRange {\n exact?: number;\n ideal?: number;\n}\n\ninterface ConstrainVideoFacingModeParameters {\n exact?: VideoFacingModeEnum | VideoFacingModeEnum[];\n ideal?: VideoFacingModeEnum | VideoFacingModeEnum[];\n}\n\ninterface CustomEventInit extends EventInit {\n detail?: any;\n}\n\ninterface DeviceAccelerationDict {\n x?: number;\n y?: number;\n z?: number;\n}\n\ninterface DeviceLightEventInit extends EventInit {\n value?: number;\n}\n\ninterface DeviceMotionEventInit extends EventInit {\n acceleration?: DeviceAccelerationDict;\n accelerationIncludingGravity?: DeviceAccelerationDict;\n interval?: number;\n rotationRate?: DeviceRotationRateDict;\n}\n\ninterface DeviceOrientationEventInit extends EventInit {\n absolute?: boolean;\n alpha?: number;\n beta?: number;\n gamma?: number;\n}\n\ninterface DeviceRotationRateDict {\n alpha?: number;\n beta?: number;\n gamma?: number;\n}\n\ninterface DOMRectInit {\n height?: any;\n width?: any;\n x?: any;\n y?: any;\n}\n\ninterface DoubleRange {\n max?: number;\n min?: number;\n}\n\ninterface ErrorEventInit extends EventInit {\n colno?: number;\n error?: any;\n filename?: string;\n lineno?: number;\n message?: string;\n}\n\ninterface EventInit {\n scoped?: boolean;\n bubbles?: boolean;\n cancelable?: boolean;\n}\n\ninterface EventModifierInit extends UIEventInit {\n altKey?: boolean;\n ctrlKey?: boolean;\n metaKey?: boolean;\n modifierAltGraph?: boolean;\n modifierCapsLock?: boolean;\n modifierFn?: boolean;\n modifierFnLock?: boolean;\n modifierHyper?: boolean;\n modifierNumLock?: boolean;\n modifierOS?: boolean;\n modifierScrollLock?: boolean;\n modifierSuper?: boolean;\n modifierSymbol?: boolean;\n modifierSymbolLock?: boolean;\n shiftKey?: boolean;\n}\n\ninterface ExceptionInformation {\n domain?: string;\n}\n\ninterface FocusEventInit extends UIEventInit {\n relatedTarget?: EventTarget;\n}\n\ninterface FocusNavigationEventInit extends EventInit {\n navigationReason?: string;\n originHeight?: number;\n originLeft?: number;\n originTop?: number;\n originWidth?: number;\n}\n\ninterface FocusNavigationOrigin {\n originHeight?: number;\n originLeft?: number;\n originTop?: number;\n originWidth?: number;\n}\n\ninterface GamepadEventInit extends EventInit {\n gamepad?: Gamepad;\n}\n\ninterface GetNotificationOptions {\n tag?: string;\n}\n\ninterface HashChangeEventInit extends EventInit {\n newURL?: string;\n oldURL?: string;\n}\n\ninterface IDBIndexParameters {\n multiEntry?: boolean;\n unique?: boolean;\n}\n\ninterface IDBObjectStoreParameters {\n autoIncrement?: boolean;\n keyPath?: IDBKeyPath;\n}\n\ninterface IntersectionObserverEntryInit {\n boundingClientRect?: DOMRectInit;\n intersectionRect?: DOMRectInit;\n rootBounds?: DOMRectInit;\n target?: Element;\n time?: number;\n}\n\ninterface IntersectionObserverInit {\n root?: Element;\n rootMargin?: string;\n threshold?: number | number[];\n}\n\ninterface KeyAlgorithm {\n name?: string;\n}\n\ninterface KeyboardEventInit extends EventModifierInit {\n code?: string;\n key?: string;\n location?: number;\n repeat?: boolean;\n}\n\ninterface LongRange {\n max?: number;\n min?: number;\n}\n\ninterface MediaEncryptedEventInit extends EventInit {\n initData?: ArrayBuffer;\n initDataType?: string;\n}\n\ninterface MediaKeyMessageEventInit extends EventInit {\n message?: ArrayBuffer;\n messageType?: MediaKeyMessageType;\n}\n\ninterface MediaKeySystemConfiguration {\n audioCapabilities?: MediaKeySystemMediaCapability[];\n distinctiveIdentifier?: MediaKeysRequirement;\n initDataTypes?: string[];\n persistentState?: MediaKeysRequirement;\n videoCapabilities?: MediaKeySystemMediaCapability[];\n}\n\ninterface MediaKeySystemMediaCapability {\n contentType?: string;\n robustness?: string;\n}\n\ninterface MediaStreamConstraints {\n audio?: boolean | MediaTrackConstraints;\n video?: boolean | MediaTrackConstraints;\n}\n\ninterface MediaStreamErrorEventInit extends EventInit {\n error?: MediaStreamError;\n}\n\ninterface MediaStreamEventInit extends EventInit {\n stream?: MediaStream;\n}\n\ninterface MediaStreamTrackEventInit extends EventInit {\n track?: MediaStreamTrack;\n}\n\ninterface MediaTrackCapabilities {\n aspectRatio?: number | DoubleRange;\n deviceId?: string;\n echoCancellation?: boolean[];\n facingMode?: string;\n frameRate?: number | DoubleRange;\n groupId?: string;\n height?: number | LongRange;\n sampleRate?: number | LongRange;\n sampleSize?: number | LongRange;\n volume?: number | DoubleRange;\n width?: number | LongRange;\n}\n\ninterface MediaTrackConstraints extends MediaTrackConstraintSet {\n advanced?: MediaTrackConstraintSet[];\n}\n\ninterface MediaTrackConstraintSet {\n aspectRatio?: number | ConstrainDoubleRange;\n deviceId?: string | string[] | ConstrainDOMStringParameters;\n echoCancelation?: boolean | ConstrainBooleanParameters;\n facingMode?: string | string[] | ConstrainDOMStringParameters;\n frameRate?: number | ConstrainDoubleRange;\n groupId?: string | string[] | ConstrainDOMStringParameters;\n height?: number | ConstrainLongRange;\n sampleRate?: number | ConstrainLongRange;\n sampleSize?: number | ConstrainLongRange;\n volume?: number | ConstrainDoubleRange;\n width?: number | ConstrainLongRange;\n}\n\ninterface MediaTrackSettings {\n aspectRatio?: number;\n deviceId?: string;\n echoCancellation?: boolean;\n facingMode?: string;\n frameRate?: number;\n groupId?: string;\n height?: number;\n sampleRate?: number;\n sampleSize?: number;\n volume?: number;\n width?: number;\n}\n\ninterface MediaTrackSupportedConstraints {\n aspectRatio?: boolean;\n deviceId?: boolean;\n echoCancellation?: boolean;\n facingMode?: boolean;\n frameRate?: boolean;\n groupId?: boolean;\n height?: boolean;\n sampleRate?: boolean;\n sampleSize?: boolean;\n volume?: boolean;\n width?: boolean;\n}\n\ninterface MessageEventInit extends EventInit {\n lastEventId?: string;\n channel?: string;\n data?: any;\n origin?: string;\n ports?: MessagePort[];\n source?: Window;\n}\n\ninterface MouseEventInit extends EventModifierInit {\n button?: number;\n buttons?: number;\n clientX?: number;\n clientY?: number;\n relatedTarget?: EventTarget;\n screenX?: number;\n screenY?: number;\n}\n\ninterface MSAccountInfo {\n accountImageUri?: string;\n accountName?: string;\n rpDisplayName?: string;\n userDisplayName?: string;\n userId?: string;\n}\n\ninterface MSAudioLocalClientEvent extends MSLocalClientEventBase {\n cpuInsufficientEventRatio?: number;\n deviceCaptureNotFunctioningEventRatio?: number;\n deviceClippingEventRatio?: number;\n deviceEchoEventRatio?: number;\n deviceGlitchesEventRatio?: number;\n deviceHalfDuplexAECEventRatio?: number;\n deviceHowlingEventCount?: number;\n deviceLowSNREventRatio?: number;\n deviceLowSpeechLevelEventRatio?: number;\n deviceMultipleEndpointsEventCount?: number;\n deviceNearEndToEchoRatioEventRatio?: number;\n deviceRenderMuteEventRatio?: number;\n deviceRenderNotFunctioningEventRatio?: number;\n deviceRenderZeroVolumeEventRatio?: number;\n networkDelayEventRatio?: number;\n networkSendQualityEventRatio?: number;\n}\n\ninterface MSAudioRecvPayload extends MSPayloadBase {\n burstLossLength1?: number;\n burstLossLength2?: number;\n burstLossLength3?: number;\n burstLossLength4?: number;\n burstLossLength5?: number;\n burstLossLength6?: number;\n burstLossLength7?: number;\n burstLossLength8OrHigher?: number;\n fecRecvDistance1?: number;\n fecRecvDistance2?: number;\n fecRecvDistance3?: number;\n packetReorderDepthAvg?: number;\n packetReorderDepthMax?: number;\n packetReorderRatio?: number;\n ratioCompressedSamplesAvg?: number;\n ratioConcealedSamplesAvg?: number;\n ratioStretchedSamplesAvg?: number;\n samplingRate?: number;\n signal?: MSAudioRecvSignal;\n}\n\ninterface MSAudioRecvSignal {\n initialSignalLevelRMS?: number;\n recvNoiseLevelCh1?: number;\n recvSignalLevelCh1?: number;\n renderLoopbackSignalLevel?: number;\n renderNoiseLevel?: number;\n renderSignalLevel?: number;\n}\n\ninterface MSAudioSendPayload extends MSPayloadBase {\n audioFECUsed?: boolean;\n samplingRate?: number;\n sendMutePercent?: number;\n signal?: MSAudioSendSignal;\n}\n\ninterface MSAudioSendSignal {\n noiseLevel?: number;\n sendNoiseLevelCh1?: number;\n sendSignalLevelCh1?: number;\n}\n\ninterface MSConnectivity {\n iceType?: MSIceType;\n iceWarningFlags?: MSIceWarningFlags;\n relayAddress?: MSRelayAddress;\n}\n\ninterface MSCredentialFilter {\n accept?: MSCredentialSpec[];\n}\n\ninterface MSCredentialParameters {\n type?: MSCredentialType;\n}\n\ninterface MSCredentialSpec {\n id?: string;\n type?: MSCredentialType;\n}\n\ninterface MSDelay {\n roundTrip?: number;\n roundTripMax?: number;\n}\n\ninterface MSDescription extends RTCStats {\n connectivity?: MSConnectivity;\n deviceDevName?: string;\n localAddr?: MSIPAddressInfo;\n networkconnectivity?: MSNetworkConnectivityInfo;\n reflexiveLocalIPAddr?: MSIPAddressInfo;\n remoteAddr?: MSIPAddressInfo;\n transport?: RTCIceProtocol;\n}\n\ninterface MSFIDOCredentialParameters extends MSCredentialParameters {\n algorithm?: string | Algorithm;\n authenticators?: AAGUID[];\n}\n\ninterface MSIceWarningFlags {\n allocationMessageIntegrityFailed?: boolean;\n alternateServerReceived?: boolean;\n connCheckMessageIntegrityFailed?: boolean;\n connCheckOtherError?: boolean;\n fipsAllocationFailure?: boolean;\n multipleRelayServersAttempted?: boolean;\n noRelayServersConfigured?: boolean;\n portRangeExhausted?: boolean;\n pseudoTLSFailure?: boolean;\n tcpNatConnectivityFailed?: boolean;\n tcpRelayConnectivityFailed?: boolean;\n turnAuthUnknownUsernameError?: boolean;\n turnTcpAllocateFailed?: boolean;\n turnTcpSendFailed?: boolean;\n turnTcpTimedOut?: boolean;\n turnTurnTcpConnectivityFailed?: boolean;\n turnUdpAllocateFailed?: boolean;\n turnUdpSendFailed?: boolean;\n udpLocalConnectivityFailed?: boolean;\n udpNatConnectivityFailed?: boolean;\n udpRelayConnectivityFailed?: boolean;\n useCandidateChecksFailed?: boolean;\n}\n\ninterface MSIPAddressInfo {\n ipAddr?: string;\n manufacturerMacAddrMask?: string;\n port?: number;\n}\n\ninterface MSJitter {\n interArrival?: number;\n interArrivalMax?: number;\n interArrivalSD?: number;\n}\n\ninterface MSLocalClientEventBase extends RTCStats {\n networkBandwidthLowEventRatio?: number;\n networkReceiveQualityEventRatio?: number;\n}\n\ninterface MSNetwork extends RTCStats {\n delay?: MSDelay;\n jitter?: MSJitter;\n packetLoss?: MSPacketLoss;\n utilization?: MSUtilization;\n}\n\ninterface MSNetworkConnectivityInfo {\n linkspeed?: number;\n networkConnectionDetails?: string;\n vpn?: boolean;\n}\n\ninterface MSNetworkInterfaceType {\n interfaceTypeEthernet?: boolean;\n interfaceTypePPP?: boolean;\n interfaceTypeTunnel?: boolean;\n interfaceTypeWireless?: boolean;\n interfaceTypeWWAN?: boolean;\n}\n\ninterface MSOutboundNetwork extends MSNetwork {\n appliedBandwidthLimit?: number;\n}\n\ninterface MSPacketLoss {\n lossRate?: number;\n lossRateMax?: number;\n}\n\ninterface MSPayloadBase extends RTCStats {\n payloadDescription?: string;\n}\n\ninterface MSPortRange {\n max?: number;\n min?: number;\n}\n\ninterface MSRelayAddress {\n port?: number;\n relayAddress?: string;\n}\n\ninterface MSSignatureParameters {\n userPrompt?: string;\n}\n\ninterface MSTransportDiagnosticsStats extends RTCStats {\n allocationTimeInMs?: number;\n baseAddress?: string;\n baseInterface?: MSNetworkInterfaceType;\n iceRole?: RTCIceRole;\n iceWarningFlags?: MSIceWarningFlags;\n interfaces?: MSNetworkInterfaceType;\n localAddress?: string;\n localAddrType?: MSIceAddrType;\n localInterface?: MSNetworkInterfaceType;\n localMR?: string;\n localMRTCPPort?: number;\n localSite?: string;\n msRtcEngineVersion?: string;\n networkName?: string;\n numConsentReqReceived?: number;\n numConsentReqSent?: number;\n numConsentRespReceived?: number;\n numConsentRespSent?: number;\n portRangeMax?: number;\n portRangeMin?: number;\n protocol?: RTCIceProtocol;\n remoteAddress?: string;\n remoteAddrType?: MSIceAddrType;\n remoteMR?: string;\n remoteMRTCPPort?: number;\n remoteSite?: string;\n rtpRtcpMux?: boolean;\n stunVer?: number;\n}\n\ninterface MSUtilization {\n bandwidthEstimation?: number;\n bandwidthEstimationAvg?: number;\n bandwidthEstimationMax?: number;\n bandwidthEstimationMin?: number;\n bandwidthEstimationStdDev?: number;\n packets?: number;\n}\n\ninterface MSVideoPayload extends MSPayloadBase {\n durationSeconds?: number;\n resolution?: string;\n videoBitRateAvg?: number;\n videoBitRateMax?: number;\n videoFrameRateAvg?: number;\n videoPacketLossRate?: number;\n}\n\ninterface MSVideoRecvPayload extends MSVideoPayload {\n lowBitRateCallPercent?: number;\n lowFrameRateCallPercent?: number;\n recvBitRateAverage?: number;\n recvBitRateMaximum?: number;\n recvCodecType?: string;\n recvFpsHarmonicAverage?: number;\n recvFrameRateAverage?: number;\n recvNumResSwitches?: number;\n recvReorderBufferMaxSuccessfullyOrderedExtent?: number;\n recvReorderBufferMaxSuccessfullyOrderedLateTime?: number;\n recvReorderBufferPacketsDroppedDueToBufferExhaustion?: number;\n recvReorderBufferPacketsDroppedDueToTimeout?: number;\n recvReorderBufferReorderedPackets?: number;\n recvResolutionHeight?: number;\n recvResolutionWidth?: number;\n recvVideoStreamsMax?: number;\n recvVideoStreamsMin?: number;\n recvVideoStreamsMode?: number;\n reorderBufferTotalPackets?: number;\n videoFrameLossRate?: number;\n videoPostFECPLR?: number;\n videoResolutions?: MSVideoResolutionDistribution;\n}\n\ninterface MSVideoResolutionDistribution {\n cifQuality?: number;\n h1080Quality?: number;\n h1440Quality?: number;\n h2160Quality?: number;\n h720Quality?: number;\n vgaQuality?: number;\n}\n\ninterface MSVideoSendPayload extends MSVideoPayload {\n sendBitRateAverage?: number;\n sendBitRateMaximum?: number;\n sendFrameRateAverage?: number;\n sendResolutionHeight?: number;\n sendResolutionWidth?: number;\n sendVideoStreamsMax?: number;\n}\n\ninterface MsZoomToOptions {\n animate?: string;\n contentX?: number;\n contentY?: number;\n scaleFactor?: number;\n viewportX?: string;\n viewportY?: string;\n}\n\ninterface MutationObserverInit {\n attributeFilter?: string[];\n attributeOldValue?: boolean;\n attributes?: boolean;\n characterData?: boolean;\n characterDataOldValue?: boolean;\n childList?: boolean;\n subtree?: boolean;\n}\n\ninterface NotificationOptions {\n body?: string;\n dir?: NotificationDirection;\n icon?: string;\n lang?: string;\n tag?: string;\n}\n\ninterface ObjectURLOptions {\n oneTimeOnly?: boolean;\n}\n\ninterface PaymentCurrencyAmount {\n currency?: string;\n currencySystem?: string;\n value?: string;\n}\n\ninterface PaymentDetails {\n displayItems?: PaymentItem[];\n error?: string;\n modifiers?: PaymentDetailsModifier[];\n shippingOptions?: PaymentShippingOption[];\n total?: PaymentItem;\n}\n\ninterface PaymentDetailsModifier {\n additionalDisplayItems?: PaymentItem[];\n data?: any;\n supportedMethods?: string[];\n total?: PaymentItem;\n}\n\ninterface PaymentItem {\n amount?: PaymentCurrencyAmount;\n label?: string;\n pending?: boolean;\n}\n\ninterface PaymentMethodData {\n data?: any;\n supportedMethods?: string[];\n}\n\ninterface PaymentOptions {\n requestPayerEmail?: boolean;\n requestPayerName?: boolean;\n requestPayerPhone?: boolean;\n requestShipping?: boolean;\n shippingType?: string;\n}\n\ninterface PaymentRequestUpdateEventInit extends EventInit {\n}\n\ninterface PaymentShippingOption {\n amount?: PaymentCurrencyAmount;\n id?: string;\n label?: string;\n selected?: boolean;\n}\n\ninterface PeriodicWaveConstraints {\n disableNormalization?: boolean;\n}\n\ninterface PointerEventInit extends MouseEventInit {\n height?: number;\n isPrimary?: boolean;\n pointerId?: number;\n pointerType?: string;\n pressure?: number;\n tiltX?: number;\n tiltY?: number;\n width?: number;\n}\n\ninterface PopStateEventInit extends EventInit {\n state?: any;\n}\n\ninterface PositionOptions {\n enableHighAccuracy?: boolean;\n maximumAge?: number;\n timeout?: number;\n}\n\ninterface ProgressEventInit extends EventInit {\n lengthComputable?: boolean;\n loaded?: number;\n total?: number;\n}\n\ninterface PushSubscriptionOptionsInit {\n applicationServerKey?: any;\n userVisibleOnly?: boolean;\n}\n\ninterface RegistrationOptions {\n scope?: string;\n}\n\ninterface RequestInit {\n body?: any;\n cache?: RequestCache;\n credentials?: RequestCredentials;\n headers?: any;\n integrity?: string;\n keepalive?: boolean;\n method?: string;\n mode?: RequestMode;\n redirect?: RequestRedirect;\n referrer?: string;\n referrerPolicy?: ReferrerPolicy;\n window?: any;\n}\n\ninterface ResponseInit {\n headers?: any;\n status?: number;\n statusText?: string;\n}\n\ninterface RTCConfiguration {\n bundlePolicy?: RTCBundlePolicy;\n iceServers?: RTCIceServer[];\n iceTransportPolicy?: RTCIceTransportPolicy;\n peerIdentity?: string;\n}\n\ninterface RTCDtlsFingerprint {\n algorithm?: string;\n value?: string;\n}\n\ninterface RTCDtlsParameters {\n fingerprints?: RTCDtlsFingerprint[];\n role?: RTCDtlsRole;\n}\n\ninterface RTCDTMFToneChangeEventInit extends EventInit {\n tone?: string;\n}\n\ninterface RTCIceCandidateAttributes extends RTCStats {\n addressSourceUrl?: string;\n candidateType?: RTCStatsIceCandidateType;\n ipAddress?: string;\n portNumber?: number;\n priority?: number;\n transport?: string;\n}\n\ninterface RTCIceCandidateComplete {\n}\n\ninterface RTCIceCandidateDictionary {\n foundation?: string;\n ip?: string;\n msMTurnSessionId?: string;\n port?: number;\n priority?: number;\n protocol?: RTCIceProtocol;\n relatedAddress?: string;\n relatedPort?: number;\n tcpType?: RTCIceTcpCandidateType;\n type?: RTCIceCandidateType;\n}\n\ninterface RTCIceCandidateInit {\n candidate?: string;\n sdpMid?: string;\n sdpMLineIndex?: number;\n}\n\ninterface RTCIceCandidatePair {\n local?: RTCIceCandidateDictionary;\n remote?: RTCIceCandidateDictionary;\n}\n\ninterface RTCIceCandidatePairStats extends RTCStats {\n availableIncomingBitrate?: number;\n availableOutgoingBitrate?: number;\n bytesReceived?: number;\n bytesSent?: number;\n localCandidateId?: string;\n nominated?: boolean;\n priority?: number;\n readable?: boolean;\n remoteCandidateId?: string;\n roundTripTime?: number;\n state?: RTCStatsIceCandidatePairState;\n transportId?: string;\n writable?: boolean;\n}\n\ninterface RTCIceGatherOptions {\n gatherPolicy?: RTCIceGatherPolicy;\n iceservers?: RTCIceServer[];\n portRange?: MSPortRange;\n}\n\ninterface RTCIceParameters {\n iceLite?: boolean;\n password?: string;\n usernameFragment?: string;\n}\n\ninterface RTCIceServer {\n credential?: string;\n urls?: any;\n username?: string;\n}\n\ninterface RTCInboundRTPStreamStats extends RTCRTPStreamStats {\n bytesReceived?: number;\n fractionLost?: number;\n jitter?: number;\n packetsLost?: number;\n packetsReceived?: number;\n}\n\ninterface RTCMediaStreamTrackStats extends RTCStats {\n audioLevel?: number;\n echoReturnLoss?: number;\n echoReturnLossEnhancement?: number;\n frameHeight?: number;\n framesCorrupted?: number;\n framesDecoded?: number;\n framesDropped?: number;\n framesPerSecond?: number;\n framesReceived?: number;\n framesSent?: number;\n frameWidth?: number;\n remoteSource?: boolean;\n ssrcIds?: string[];\n trackIdentifier?: string;\n}\n\ninterface RTCOfferOptions {\n iceRestart?: boolean;\n offerToReceiveAudio?: number;\n offerToReceiveVideo?: number;\n voiceActivityDetection?: boolean;\n}\n\ninterface RTCOutboundRTPStreamStats extends RTCRTPStreamStats {\n bytesSent?: number;\n packetsSent?: number;\n roundTripTime?: number;\n targetBitrate?: number;\n}\n\ninterface RTCPeerConnectionIceEventInit extends EventInit {\n candidate?: RTCIceCandidate;\n}\n\ninterface RTCRtcpFeedback {\n parameter?: string;\n type?: string;\n}\n\ninterface RTCRtcpParameters {\n cname?: string;\n mux?: boolean;\n reducedSize?: boolean;\n ssrc?: number;\n}\n\ninterface RTCRtpCapabilities {\n codecs?: RTCRtpCodecCapability[];\n fecMechanisms?: string[];\n headerExtensions?: RTCRtpHeaderExtension[];\n}\n\ninterface RTCRtpCodecCapability {\n clockRate?: number;\n kind?: string;\n maxptime?: number;\n maxSpatialLayers?: number;\n maxTemporalLayers?: number;\n name?: string;\n numChannels?: number;\n options?: any;\n parameters?: any;\n preferredPayloadType?: number;\n ptime?: number;\n rtcpFeedback?: RTCRtcpFeedback[];\n svcMultiStreamSupport?: boolean;\n}\n\ninterface RTCRtpCodecParameters {\n clockRate?: number;\n maxptime?: number;\n name?: string;\n numChannels?: number;\n parameters?: any;\n payloadType?: any;\n ptime?: number;\n rtcpFeedback?: RTCRtcpFeedback[];\n}\n\ninterface RTCRtpContributingSource {\n audioLevel?: number;\n csrc?: number;\n timestamp?: number;\n}\n\ninterface RTCRtpEncodingParameters {\n active?: boolean;\n codecPayloadType?: number;\n dependencyEncodingIds?: string[];\n encodingId?: string;\n fec?: RTCRtpFecParameters;\n framerateScale?: number;\n maxBitrate?: number;\n maxFramerate?: number;\n minQuality?: number;\n priority?: number;\n resolutionScale?: number;\n rtx?: RTCRtpRtxParameters;\n ssrc?: number;\n ssrcRange?: RTCSsrcRange;\n}\n\ninterface RTCRtpFecParameters {\n mechanism?: string;\n ssrc?: number;\n}\n\ninterface RTCRtpHeaderExtension {\n kind?: string;\n preferredEncrypt?: boolean;\n preferredId?: number;\n uri?: string;\n}\n\ninterface RTCRtpHeaderExtensionParameters {\n encrypt?: boolean;\n id?: number;\n uri?: string;\n}\n\ninterface RTCRtpParameters {\n codecs?: RTCRtpCodecParameters[];\n degradationPreference?: RTCDegradationPreference;\n encodings?: RTCRtpEncodingParameters[];\n headerExtensions?: RTCRtpHeaderExtensionParameters[];\n muxId?: string;\n rtcp?: RTCRtcpParameters;\n}\n\ninterface RTCRtpRtxParameters {\n ssrc?: number;\n}\n\ninterface RTCRTPStreamStats extends RTCStats {\n associateStatsId?: string;\n codecId?: string;\n firCount?: number;\n isRemote?: boolean;\n mediaTrackId?: string;\n nackCount?: number;\n pliCount?: number;\n sliCount?: number;\n ssrc?: string;\n transportId?: string;\n}\n\ninterface RTCRtpUnhandled {\n muxId?: string;\n payloadType?: number;\n ssrc?: number;\n}\n\ninterface RTCSessionDescriptionInit {\n sdp?: string;\n type?: RTCSdpType;\n}\n\ninterface RTCSrtpKeyParam {\n keyMethod?: string;\n keySalt?: string;\n lifetime?: string;\n mkiLength?: number;\n mkiValue?: number;\n}\n\ninterface RTCSrtpSdesParameters {\n cryptoSuite?: string;\n keyParams?: RTCSrtpKeyParam[];\n sessionParams?: string[];\n tag?: number;\n}\n\ninterface RTCSsrcRange {\n max?: number;\n min?: number;\n}\n\ninterface RTCStats {\n id?: string;\n msType?: MSStatsType;\n timestamp?: number;\n type?: RTCStatsType;\n}\n\ninterface RTCStatsReport {\n}\n\ninterface RTCTransportStats extends RTCStats {\n activeConnection?: boolean;\n bytesReceived?: number;\n bytesSent?: number;\n localCertificateId?: string;\n remoteCertificateId?: string;\n rtcpTransportStatsId?: string;\n selectedCandidatePairId?: string;\n}\n\ninterface ScopedCredentialDescriptor {\n id?: any;\n transports?: Transport[];\n type?: ScopedCredentialType;\n}\n\ninterface ScopedCredentialOptions {\n excludeList?: ScopedCredentialDescriptor[];\n extensions?: WebAuthnExtensions;\n rpId?: USVString;\n timeoutSeconds?: number;\n}\n\ninterface ScopedCredentialParameters {\n algorithm?: string | Algorithm;\n type?: ScopedCredentialType;\n}\n\ninterface ServiceWorkerMessageEventInit extends EventInit {\n data?: any;\n lastEventId?: string;\n origin?: string;\n ports?: MessagePort[];\n source?: ServiceWorker | MessagePort;\n}\n\ninterface SpeechSynthesisEventInit extends EventInit {\n charIndex?: number;\n elapsedTime?: number;\n name?: string;\n utterance?: SpeechSynthesisUtterance;\n}\n\ninterface StoreExceptionsInformation extends ExceptionInformation {\n detailURI?: string;\n explanationString?: string;\n siteName?: string;\n}\n\ninterface StoreSiteSpecificExceptionsInformation extends StoreExceptionsInformation {\n arrayOfDomainStrings?: string[];\n}\n\ninterface TrackEventInit extends EventInit {\n track?: VideoTrack | AudioTrack | TextTrack;\n}\n\ninterface TransitionEventInit extends EventInit {\n elapsedTime?: number;\n propertyName?: string;\n}\n\ninterface UIEventInit extends EventInit {\n detail?: number;\n view?: Window;\n}\n\ninterface WebAuthnExtensions {\n}\n\ninterface WebGLContextAttributes {\n failIfMajorPerformanceCaveat?: boolean;\n alpha?: boolean;\n antialias?: boolean;\n depth?: boolean;\n premultipliedAlpha?: boolean;\n preserveDrawingBuffer?: boolean;\n stencil?: boolean;\n}\n\ninterface WebGLContextEventInit extends EventInit {\n statusMessage?: string;\n}\n\ninterface WheelEventInit extends MouseEventInit {\n deltaMode?: number;\n deltaX?: number;\n deltaY?: number;\n deltaZ?: number;\n}\n\ninterface EventListener {\n (evt: Event): void;\n}\n\ninterface WebKitEntriesCallback {\n (evt: Event): void;\n}\n\ninterface WebKitErrorCallback {\n (evt: Event): void;\n}\n\ninterface WebKitFileCallback {\n (evt: Event): void;\n}\n\ninterface AnalyserNode extends AudioNode {\n fftSize: number;\n readonly frequencyBinCount: number;\n maxDecibels: number;\n minDecibels: number;\n smoothingTimeConstant: number;\n getByteFrequencyData(array: Uint8Array): void;\n getByteTimeDomainData(array: Uint8Array): void;\n getFloatFrequencyData(array: Float32Array): void;\n getFloatTimeDomainData(array: Float32Array): void;\n}\n\ndeclare var AnalyserNode: {\n prototype: AnalyserNode;\n new(): AnalyserNode;\n};\n\ninterface ANGLE_instanced_arrays {\n drawArraysInstancedANGLE(mode: number, first: number, count: number, primcount: number): void;\n drawElementsInstancedANGLE(mode: number, count: number, type: number, offset: number, primcount: number): void;\n vertexAttribDivisorANGLE(index: number, divisor: number): void;\n readonly VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE: number;\n}\n\ndeclare var ANGLE_instanced_arrays: {\n prototype: ANGLE_instanced_arrays;\n new(): ANGLE_instanced_arrays;\n readonly VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE: number;\n};\n\ninterface AnimationEvent extends Event {\n readonly animationName: string;\n readonly elapsedTime: number;\n initAnimationEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, animationNameArg: string, elapsedTimeArg: number): void;\n}\n\ndeclare var AnimationEvent: {\n prototype: AnimationEvent;\n new(typeArg: string, eventInitDict?: AnimationEventInit): AnimationEvent;\n};\n\ninterface ApplicationCacheEventMap {\n "cached": Event;\n "checking": Event;\n "downloading": Event;\n "error": Event;\n "noupdate": Event;\n "obsolete": Event;\n "progress": ProgressEvent;\n "updateready": Event;\n}\n\ninterface ApplicationCache extends EventTarget {\n oncached: (this: ApplicationCache, ev: Event) => any;\n onchecking: (this: ApplicationCache, ev: Event) => any;\n ondownloading: (this: ApplicationCache, ev: Event) => any;\n onerror: (this: ApplicationCache, ev: Event) => any;\n onnoupdate: (this: ApplicationCache, ev: Event) => any;\n onobsolete: (this: ApplicationCache, ev: Event) => any;\n onprogress: (this: ApplicationCache, ev: ProgressEvent) => any;\n onupdateready: (this: ApplicationCache, ev: Event) => any;\n readonly status: number;\n abort(): void;\n swapCache(): void;\n update(): void;\n readonly CHECKING: number;\n readonly DOWNLOADING: number;\n readonly IDLE: number;\n readonly OBSOLETE: number;\n readonly UNCACHED: number;\n readonly UPDATEREADY: number;\n addEventListener<K extends keyof ApplicationCacheEventMap>(type: K, listener: (this: ApplicationCache, ev: ApplicationCacheEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var ApplicationCache: {\n prototype: ApplicationCache;\n new(): ApplicationCache;\n readonly CHECKING: number;\n readonly DOWNLOADING: number;\n readonly IDLE: number;\n readonly OBSOLETE: number;\n readonly UNCACHED: number;\n readonly UPDATEREADY: number;\n};\n\ninterface Attr extends Node {\n readonly name: string;\n readonly ownerElement: Element;\n readonly prefix: string | null;\n readonly specified: boolean;\n value: string;\n}\n\ndeclare var Attr: {\n prototype: Attr;\n new(): Attr;\n};\n\ninterface AudioBuffer {\n readonly duration: number;\n readonly length: number;\n readonly numberOfChannels: number;\n readonly sampleRate: number;\n copyFromChannel(destination: Float32Array, channelNumber: number, startInChannel?: number): void;\n copyToChannel(source: Float32Array, channelNumber: number, startInChannel?: number): void;\n getChannelData(channel: number): Float32Array;\n}\n\ndeclare var AudioBuffer: {\n prototype: AudioBuffer;\n new(): AudioBuffer;\n};\n\ninterface AudioBufferSourceNodeEventMap {\n "ended": MediaStreamErrorEvent;\n}\n\ninterface AudioBufferSourceNode extends AudioNode {\n buffer: AudioBuffer | null;\n readonly detune: AudioParam;\n loop: boolean;\n loopEnd: number;\n loopStart: number;\n onended: (this: AudioBufferSourceNode, ev: MediaStreamErrorEvent) => any;\n readonly playbackRate: AudioParam;\n start(when?: number, offset?: number, duration?: number): void;\n stop(when?: number): void;\n addEventListener<K extends keyof AudioBufferSourceNodeEventMap>(type: K, listener: (this: AudioBufferSourceNode, ev: AudioBufferSourceNodeEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var AudioBufferSourceNode: {\n prototype: AudioBufferSourceNode;\n new(): AudioBufferSourceNode;\n};\n\ninterface AudioContextEventMap {\n "statechange": Event;\n}\n\ninterface AudioContextBase extends EventTarget {\n readonly currentTime: number;\n readonly destination: AudioDestinationNode;\n readonly listener: AudioListener;\n onstatechange: (this: AudioContext, ev: Event) => any;\n readonly sampleRate: number;\n readonly state: AudioContextState;\n close(): Promise<void>;\n createAnalyser(): AnalyserNode;\n createBiquadFilter(): BiquadFilterNode;\n createBuffer(numberOfChannels: number, length: number, sampleRate: number): AudioBuffer;\n createBufferSource(): AudioBufferSourceNode;\n createChannelMerger(numberOfInputs?: number): ChannelMergerNode;\n createChannelSplitter(numberOfOutputs?: number): ChannelSplitterNode;\n createConvolver(): ConvolverNode;\n createDelay(maxDelayTime?: number): DelayNode;\n createDynamicsCompressor(): DynamicsCompressorNode;\n createGain(): GainNode;\n createIIRFilter(feedforward: number[], feedback: number[]): IIRFilterNode;\n createMediaElementSource(mediaElement: HTMLMediaElement): MediaElementAudioSourceNode;\n createMediaStreamSource(mediaStream: MediaStream): MediaStreamAudioSourceNode;\n createOscillator(): OscillatorNode;\n createPanner(): PannerNode;\n createPeriodicWave(real: Float32Array, imag: Float32Array, constraints?: PeriodicWaveConstraints): PeriodicWave;\n createScriptProcessor(bufferSize?: number, numberOfInputChannels?: number, numberOfOutputChannels?: number): ScriptProcessorNode;\n createStereoPanner(): StereoPannerNode;\n createWaveShaper(): WaveShaperNode;\n decodeAudioData(audioData: ArrayBuffer, successCallback?: DecodeSuccessCallback, errorCallback?: DecodeErrorCallback): Promise<AudioBuffer>;\n resume(): Promise<void>;\n addEventListener<K extends keyof AudioContextEventMap>(type: K, listener: (this: AudioContext, ev: AudioContextEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ninterface AudioContext extends AudioContextBase {\n suspend(): Promise<void>;\n}\n\ndeclare var AudioContext: {\n prototype: AudioContext;\n new(): AudioContext;\n};\n\ninterface AudioDestinationNode extends AudioNode {\n readonly maxChannelCount: number;\n}\n\ndeclare var AudioDestinationNode: {\n prototype: AudioDestinationNode;\n new(): AudioDestinationNode;\n};\n\ninterface AudioListener {\n dopplerFactor: number;\n speedOfSound: number;\n setOrientation(x: number, y: number, z: number, xUp: number, yUp: number, zUp: number): void;\n setPosition(x: number, y: number, z: number): void;\n setVelocity(x: number, y: number, z: number): void;\n}\n\ndeclare var AudioListener: {\n prototype: AudioListener;\n new(): AudioListener;\n};\n\ninterface AudioNode extends EventTarget {\n channelCount: number;\n channelCountMode: ChannelCountMode;\n channelInterpretation: ChannelInterpretation;\n readonly context: AudioContext;\n readonly numberOfInputs: number;\n readonly numberOfOutputs: number;\n connect(destination: AudioNode, output?: number, input?: number): AudioNode;\n connect(destination: AudioParam, output?: number): void;\n disconnect(output?: number): void;\n disconnect(destination: AudioNode, output?: number, input?: number): void;\n disconnect(destination: AudioParam, output?: number): void;\n}\n\ndeclare var AudioNode: {\n prototype: AudioNode;\n new(): AudioNode;\n};\n\ninterface AudioParam {\n readonly defaultValue: number;\n value: number;\n cancelScheduledValues(startTime: number): AudioParam;\n exponentialRampToValueAtTime(value: number, endTime: number): AudioParam;\n linearRampToValueAtTime(value: number, endTime: number): AudioParam;\n setTargetAtTime(target: number, startTime: number, timeConstant: number): AudioParam;\n setValueAtTime(value: number, startTime: number): AudioParam;\n setValueCurveAtTime(values: Float32Array, startTime: number, duration: number): AudioParam;\n}\n\ndeclare var AudioParam: {\n prototype: AudioParam;\n new(): AudioParam;\n};\n\ninterface AudioProcessingEvent extends Event {\n readonly inputBuffer: AudioBuffer;\n readonly outputBuffer: AudioBuffer;\n readonly playbackTime: number;\n}\n\ndeclare var AudioProcessingEvent: {\n prototype: AudioProcessingEvent;\n new(): AudioProcessingEvent;\n};\n\ninterface AudioTrack {\n enabled: boolean;\n readonly id: string;\n kind: string;\n readonly label: string;\n language: string;\n readonly sourceBuffer: SourceBuffer;\n}\n\ndeclare var AudioTrack: {\n prototype: AudioTrack;\n new(): AudioTrack;\n};\n\ninterface AudioTrackListEventMap {\n "addtrack": TrackEvent;\n "change": Event;\n "removetrack": TrackEvent;\n}\n\ninterface AudioTrackList extends EventTarget {\n readonly length: number;\n onaddtrack: (this: AudioTrackList, ev: TrackEvent) => any;\n onchange: (this: AudioTrackList, ev: Event) => any;\n onremovetrack: (this: AudioTrackList, ev: TrackEvent) => any;\n getTrackById(id: string): AudioTrack | null;\n item(index: number): AudioTrack;\n addEventListener<K extends keyof AudioTrackListEventMap>(type: K, listener: (this: AudioTrackList, ev: AudioTrackListEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n [index: number]: AudioTrack;\n}\n\ndeclare var AudioTrackList: {\n prototype: AudioTrackList;\n new(): AudioTrackList;\n};\n\ninterface BarProp {\n readonly visible: boolean;\n}\n\ndeclare var BarProp: {\n prototype: BarProp;\n new(): BarProp;\n};\n\ninterface BeforeUnloadEvent extends Event {\n returnValue: any;\n}\n\ndeclare var BeforeUnloadEvent: {\n prototype: BeforeUnloadEvent;\n new(): BeforeUnloadEvent;\n};\n\ninterface BiquadFilterNode extends AudioNode {\n readonly detune: AudioParam;\n readonly frequency: AudioParam;\n readonly gain: AudioParam;\n readonly Q: AudioParam;\n type: BiquadFilterType;\n getFrequencyResponse(frequencyHz: Float32Array, magResponse: Float32Array, phaseResponse: Float32Array): void;\n}\n\ndeclare var BiquadFilterNode: {\n prototype: BiquadFilterNode;\n new(): BiquadFilterNode;\n};\n\ninterface Blob {\n readonly size: number;\n readonly type: string;\n msClose(): void;\n msDetachStream(): any;\n slice(start?: number, end?: number, contentType?: string): Blob;\n}\n\ndeclare var Blob: {\n prototype: Blob;\n new (blobParts?: any[], options?: BlobPropertyBag): Blob;\n};\n\ninterface Cache {\n add(request: RequestInfo): Promise<void>;\n addAll(requests: RequestInfo[]): Promise<void>;\n delete(request: RequestInfo, options?: CacheQueryOptions): Promise<boolean>;\n keys(request?: RequestInfo, options?: CacheQueryOptions): any;\n match(request: RequestInfo, options?: CacheQueryOptions): Promise<Response>;\n matchAll(request?: RequestInfo, options?: CacheQueryOptions): any;\n put(request: RequestInfo, response: Response): Promise<void>;\n}\n\ndeclare var Cache: {\n prototype: Cache;\n new(): Cache;\n};\n\ninterface CacheStorage {\n delete(cacheName: string): Promise<boolean>;\n has(cacheName: string): Promise<boolean>;\n keys(): any;\n match(request: RequestInfo, options?: CacheQueryOptions): Promise<any>;\n open(cacheName: string): Promise<Cache>;\n}\n\ndeclare var CacheStorage: {\n prototype: CacheStorage;\n new(): CacheStorage;\n};\n\ninterface CanvasGradient {\n addColorStop(offset: number, color: string): void;\n}\n\ndeclare var CanvasGradient: {\n prototype: CanvasGradient;\n new(): CanvasGradient;\n};\n\ninterface CanvasPattern {\n setTransform(matrix: SVGMatrix): void;\n}\n\ndeclare var CanvasPattern: {\n prototype: CanvasPattern;\n new(): CanvasPattern;\n};\n\ninterface CanvasRenderingContext2D extends Object, CanvasPathMethods {\n readonly canvas: HTMLCanvasElement;\n fillStyle: string | CanvasGradient | CanvasPattern;\n font: string;\n globalAlpha: number;\n globalCompositeOperation: string;\n imageSmoothingEnabled: boolean;\n lineCap: string;\n lineDashOffset: number;\n lineJoin: string;\n lineWidth: number;\n miterLimit: number;\n msFillRule: CanvasFillRule;\n shadowBlur: number;\n shadowColor: string;\n shadowOffsetX: number;\n shadowOffsetY: number;\n strokeStyle: string | CanvasGradient | CanvasPattern;\n textAlign: string;\n textBaseline: string;\n mozImageSmoothingEnabled: boolean;\n webkitImageSmoothingEnabled: boolean;\n oImageSmoothingEnabled: boolean;\n beginPath(): void;\n clearRect(x: number, y: number, w: number, h: number): void;\n clip(fillRule?: CanvasFillRule): void;\n createImageData(imageDataOrSw: number | ImageData, sh?: number): ImageData;\n createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;\n createPattern(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement, repetition: string): CanvasPattern;\n createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;\n drawFocusIfNeeded(element: Element): void;\n drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, dstX: number, dstY: number): void;\n drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, dstX: number, dstY: number, dstW: number, dstH: number): void;\n drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, srcX: number, srcY: number, srcW: number, srcH: number, dstX: number, dstY: number, dstW: number, dstH: number): void;\n fill(fillRule?: CanvasFillRule): void;\n fillRect(x: number, y: number, w: number, h: number): void;\n fillText(text: string, x: number, y: number, maxWidth?: number): void;\n getImageData(sx: number, sy: number, sw: number, sh: number): ImageData;\n getLineDash(): number[];\n isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean;\n measureText(text: string): TextMetrics;\n putImageData(imagedata: ImageData, dx: number, dy: number, dirtyX?: number, dirtyY?: number, dirtyWidth?: number, dirtyHeight?: number): void;\n restore(): void;\n rotate(angle: number): void;\n save(): void;\n scale(x: number, y: number): void;\n setLineDash(segments: number[]): void;\n setTransform(m11: number, m12: number, m21: number, m22: number, dx: number, dy: number): void;\n stroke(path?: Path2D): void;\n strokeRect(x: number, y: number, w: number, h: number): void;\n strokeText(text: string, x: number, y: number, maxWidth?: number): void;\n transform(m11: number, m12: number, m21: number, m22: number, dx: number, dy: number): void;\n translate(x: number, y: number): void;\n}\n\ndeclare var CanvasRenderingContext2D: {\n prototype: CanvasRenderingContext2D;\n new(): CanvasRenderingContext2D;\n};\n\ninterface CDATASection extends Text {\n}\n\ndeclare var CDATASection: {\n prototype: CDATASection;\n new(): CDATASection;\n};\n\ninterface ChannelMergerNode extends AudioNode {\n}\n\ndeclare var ChannelMergerNode: {\n prototype: ChannelMergerNode;\n new(): ChannelMergerNode;\n};\n\ninterface ChannelSplitterNode extends AudioNode {\n}\n\ndeclare var ChannelSplitterNode: {\n prototype: ChannelSplitterNode;\n new(): ChannelSplitterNode;\n};\n\ninterface CharacterData extends Node, ChildNode {\n data: string;\n readonly length: number;\n appendData(arg: string): void;\n deleteData(offset: number, count: number): void;\n insertData(offset: number, arg: string): void;\n replaceData(offset: number, count: number, arg: string): void;\n substringData(offset: number, count: number): string;\n}\n\ndeclare var CharacterData: {\n prototype: CharacterData;\n new(): CharacterData;\n};\n\ninterface ClientRect {\n bottom: number;\n readonly height: number;\n left: number;\n right: number;\n top: number;\n readonly width: number;\n}\n\ndeclare var ClientRect: {\n prototype: ClientRect;\n new(): ClientRect;\n};\n\ninterface ClientRectList {\n readonly length: number;\n item(index: number): ClientRect;\n [index: number]: ClientRect;\n}\n\ndeclare var ClientRectList: {\n prototype: ClientRectList;\n new(): ClientRectList;\n};\n\ninterface ClipboardEvent extends Event {\n readonly clipboardData: DataTransfer;\n}\n\ndeclare var ClipboardEvent: {\n prototype: ClipboardEvent;\n new(type: string, eventInitDict?: ClipboardEventInit): ClipboardEvent;\n};\n\ninterface CloseEvent extends Event {\n readonly code: number;\n readonly reason: string;\n readonly wasClean: boolean;\n initCloseEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, wasCleanArg: boolean, codeArg: number, reasonArg: string): void;\n}\n\ndeclare var CloseEvent: {\n prototype: CloseEvent;\n new(typeArg: string, eventInitDict?: CloseEventInit): CloseEvent;\n};\n\ninterface Comment extends CharacterData {\n text: string;\n}\n\ndeclare var Comment: {\n prototype: Comment;\n new(): Comment;\n};\n\ninterface CompositionEvent extends UIEvent {\n readonly data: string;\n readonly locale: string;\n initCompositionEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, dataArg: string, locale: string): void;\n}\n\ndeclare var CompositionEvent: {\n prototype: CompositionEvent;\n new(typeArg: string, eventInitDict?: CompositionEventInit): CompositionEvent;\n};\n\ninterface Console {\n assert(test?: boolean, message?: string, ...optionalParams: any[]): void;\n clear(): void;\n count(countTitle?: string): void;\n debug(message?: any, ...optionalParams: any[]): void;\n dir(value?: any, ...optionalParams: any[]): void;\n dirxml(value: any): void;\n error(message?: any, ...optionalParams: any[]): void;\n exception(message?: string, ...optionalParams: any[]): void;\n group(groupTitle?: string, ...optionalParams: any[]): void;\n groupCollapsed(groupTitle?: string, ...optionalParams: any[]): void;\n groupEnd(): void;\n info(message?: any, ...optionalParams: any[]): void;\n log(message?: any, ...optionalParams: any[]): void;\n msIsIndependentlyComposed(element: Element): boolean;\n profile(reportName?: string): void;\n profileEnd(): void;\n select(element: Element): void;\n table(...data: any[]): void;\n time(timerName?: string): void;\n timeEnd(timerName?: string): void;\n trace(message?: any, ...optionalParams: any[]): void;\n warn(message?: any, ...optionalParams: any[]): void;\n}\n\ndeclare var Console: {\n prototype: Console;\n new(): Console;\n};\n\ninterface ConvolverNode extends AudioNode {\n buffer: AudioBuffer | null;\n normalize: boolean;\n}\n\ndeclare var ConvolverNode: {\n prototype: ConvolverNode;\n new(): ConvolverNode;\n};\n\ninterface Coordinates {\n readonly accuracy: number;\n readonly altitude: number | null;\n readonly altitudeAccuracy: number | null;\n readonly heading: number | null;\n readonly latitude: number;\n readonly longitude: number;\n readonly speed: number | null;\n}\n\ndeclare var Coordinates: {\n prototype: Coordinates;\n new(): Coordinates;\n};\n\ninterface Crypto extends Object, RandomSource {\n readonly subtle: SubtleCrypto;\n}\n\ndeclare var Crypto: {\n prototype: Crypto;\n new(): Crypto;\n};\n\ninterface CryptoKey {\n readonly algorithm: KeyAlgorithm;\n readonly extractable: boolean;\n readonly type: string;\n readonly usages: string[];\n}\n\ndeclare var CryptoKey: {\n prototype: CryptoKey;\n new(): CryptoKey;\n};\n\ninterface CryptoKeyPair {\n privateKey: CryptoKey;\n publicKey: CryptoKey;\n}\n\ndeclare var CryptoKeyPair: {\n prototype: CryptoKeyPair;\n new(): CryptoKeyPair;\n};\n\ninterface CSS {\n supports(property: string, value?: string): boolean;\n}\ndeclare var CSS: CSS;\n\ninterface CSSConditionRule extends CSSGroupingRule {\n conditionText: string;\n}\n\ndeclare var CSSConditionRule: {\n prototype: CSSConditionRule;\n new(): CSSConditionRule;\n};\n\ninterface CSSFontFaceRule extends CSSRule {\n readonly style: CSSStyleDeclaration;\n}\n\ndeclare var CSSFontFaceRule: {\n prototype: CSSFontFaceRule;\n new(): CSSFontFaceRule;\n};\n\ninterface CSSGroupingRule extends CSSRule {\n readonly cssRules: CSSRuleList;\n deleteRule(index: number): void;\n insertRule(rule: string, index: number): number;\n}\n\ndeclare var CSSGroupingRule: {\n prototype: CSSGroupingRule;\n new(): CSSGroupingRule;\n};\n\ninterface CSSImportRule extends CSSRule {\n readonly href: string;\n readonly media: MediaList;\n readonly styleSheet: CSSStyleSheet;\n}\n\ndeclare var CSSImportRule: {\n prototype: CSSImportRule;\n new(): CSSImportRule;\n};\n\ninterface CSSKeyframeRule extends CSSRule {\n keyText: string;\n readonly style: CSSStyleDeclaration;\n}\n\ndeclare var CSSKeyframeRule: {\n prototype: CSSKeyframeRule;\n new(): CSSKeyframeRule;\n};\n\ninterface CSSKeyframesRule extends CSSRule {\n readonly cssRules: CSSRuleList;\n name: string;\n appendRule(rule: string): void;\n deleteRule(rule: string): void;\n findRule(rule: string): CSSKeyframeRule;\n}\n\ndeclare var CSSKeyframesRule: {\n prototype: CSSKeyframesRule;\n new(): CSSKeyframesRule;\n};\n\ninterface CSSMediaRule extends CSSConditionRule {\n readonly media: MediaList;\n}\n\ndeclare var CSSMediaRule: {\n prototype: CSSMediaRule;\n new(): CSSMediaRule;\n};\n\ninterface CSSNamespaceRule extends CSSRule {\n readonly namespaceURI: string;\n readonly prefix: string;\n}\n\ndeclare var CSSNamespaceRule: {\n prototype: CSSNamespaceRule;\n new(): CSSNamespaceRule;\n};\n\ninterface CSSPageRule extends CSSRule {\n readonly pseudoClass: string;\n readonly selector: string;\n selectorText: string;\n readonly style: CSSStyleDeclaration;\n}\n\ndeclare var CSSPageRule: {\n prototype: CSSPageRule;\n new(): CSSPageRule;\n};\n\ninterface CSSRule {\n cssText: string;\n readonly parentRule: CSSRule;\n readonly parentStyleSheet: CSSStyleSheet;\n readonly type: number;\n readonly CHARSET_RULE: number;\n readonly FONT_FACE_RULE: number;\n readonly IMPORT_RULE: number;\n readonly KEYFRAME_RULE: number;\n readonly KEYFRAMES_RULE: number;\n readonly MEDIA_RULE: number;\n readonly NAMESPACE_RULE: number;\n readonly PAGE_RULE: number;\n readonly STYLE_RULE: number;\n readonly SUPPORTS_RULE: number;\n readonly UNKNOWN_RULE: number;\n readonly VIEWPORT_RULE: number;\n}\n\ndeclare var CSSRule: {\n prototype: CSSRule;\n new(): CSSRule;\n readonly CHARSET_RULE: number;\n readonly FONT_FACE_RULE: number;\n readonly IMPORT_RULE: number;\n readonly KEYFRAME_RULE: number;\n readonly KEYFRAMES_RULE: number;\n readonly MEDIA_RULE: number;\n readonly NAMESPACE_RULE: number;\n readonly PAGE_RULE: number;\n readonly STYLE_RULE: number;\n readonly SUPPORTS_RULE: number;\n readonly UNKNOWN_RULE: number;\n readonly VIEWPORT_RULE: number;\n};\n\ninterface CSSRuleList {\n readonly length: number;\n item(index: number): CSSRule;\n [index: number]: CSSRule;\n}\n\ndeclare var CSSRuleList: {\n prototype: CSSRuleList;\n new(): CSSRuleList;\n};\n\ninterface CSSStyleDeclaration {\n alignContent: string | null;\n alignItems: string | null;\n alignmentBaseline: string | null;\n alignSelf: string | null;\n animation: string | null;\n animationDelay: string | null;\n animationDirection: string | null;\n animationDuration: string | null;\n animationFillMode: string | null;\n animationIterationCount: string | null;\n animationName: string | null;\n animationPlayState: string | null;\n animationTimingFunction: string | null;\n backfaceVisibility: string | null;\n background: string | null;\n backgroundAttachment: string | null;\n backgroundClip: string | null;\n backgroundColor: string | null;\n backgroundImage: string | null;\n backgroundOrigin: string | null;\n backgroundPosition: string | null;\n backgroundPositionX: string | null;\n backgroundPositionY: string | null;\n backgroundRepeat: string | null;\n backgroundSize: string | null;\n baselineShift: string | null;\n border: string | null;\n borderBottom: string | null;\n borderBottomColor: string | null;\n borderBottomLeftRadius: string | null;\n borderBottomRightRadius: string | null;\n borderBottomStyle: string | null;\n borderBottomWidth: string | null;\n borderCollapse: string | null;\n borderColor: string | null;\n borderImage: string | null;\n borderImageOutset: string | null;\n borderImageRepeat: string | null;\n borderImageSlice: string | null;\n borderImageSource: string | null;\n borderImageWidth: string | null;\n borderLeft: string | null;\n borderLeftColor: string | null;\n borderLeftStyle: string | null;\n borderLeftWidth: string | null;\n borderRadius: string | null;\n borderRight: string | null;\n borderRightColor: string | null;\n borderRightStyle: string | null;\n borderRightWidth: string | null;\n borderSpacing: string | null;\n borderStyle: string | null;\n borderTop: string | null;\n borderTopColor: string | null;\n borderTopLeftRadius: string | null;\n borderTopRightRadius: string | null;\n borderTopStyle: string | null;\n borderTopWidth: string | null;\n borderWidth: string | null;\n bottom: string | null;\n boxShadow: string | null;\n boxSizing: string | null;\n breakAfter: string | null;\n breakBefore: string | null;\n breakInside: string | null;\n captionSide: string | null;\n clear: string | null;\n clip: string | null;\n clipPath: string | null;\n clipRule: string | null;\n color: string | null;\n colorInterpolationFilters: string | null;\n columnCount: any;\n columnFill: string | null;\n columnGap: any;\n columnRule: string | null;\n columnRuleColor: any;\n columnRuleStyle: string | null;\n columnRuleWidth: any;\n columns: string | null;\n columnSpan: string | null;\n columnWidth: any;\n content: string | null;\n counterIncrement: string | null;\n counterReset: string | null;\n cssFloat: string | null;\n cssText: string;\n cursor: string | null;\n direction: string | null;\n display: string | null;\n dominantBaseline: string | null;\n emptyCells: string | null;\n enableBackground: string | null;\n fill: string | null;\n fillOpacity: string | null;\n fillRule: string | null;\n filter: string | null;\n flex: string | null;\n flexBasis: string | null;\n flexDirection: string | null;\n flexFlow: string | null;\n flexGrow: string | null;\n flexShrink: string | null;\n flexWrap: string | null;\n floodColor: string | null;\n floodOpacity: string | null;\n font: string | null;\n fontFamily: string | null;\n fontFeatureSettings: string | null;\n fontSize: string | null;\n fontSizeAdjust: string | null;\n fontStretch: string | null;\n fontStyle: string | null;\n fontVariant: string | null;\n fontWeight: string | null;\n glyphOrientationHorizontal: string | null;\n glyphOrientationVertical: string | null;\n height: string | null;\n imeMode: string | null;\n justifyContent: string | null;\n kerning: string | null;\n layoutGrid: string | null;\n layoutGridChar: string | null;\n layoutGridLine: string | null;\n layoutGridMode: string | null;\n layoutGridType: string | null;\n left: string | null;\n readonly length: number;\n letterSpacing: string | null;\n lightingColor: string | null;\n lineBreak: string | null;\n lineHeight: string | null;\n listStyle: string | null;\n listStyleImage: string | null;\n listStylePosition: string | null;\n listStyleType: string | null;\n margin: string | null;\n marginBottom: string | null;\n marginLeft: string | null;\n marginRight: string | null;\n marginTop: string | null;\n marker: string | null;\n markerEnd: string | null;\n markerMid: string | null;\n markerStart: string | null;\n mask: string | null;\n maxHeight: string | null;\n maxWidth: string | null;\n minHeight: string | null;\n minWidth: string | null;\n msContentZoomChaining: string | null;\n msContentZooming: string | null;\n msContentZoomLimit: string | null;\n msContentZoomLimitMax: any;\n msContentZoomLimitMin: any;\n msContentZoomSnap: string | null;\n msContentZoomSnapPoints: string | null;\n msContentZoomSnapType: string | null;\n msFlowFrom: string | null;\n msFlowInto: string | null;\n msFontFeatureSettings: string | null;\n msGridColumn: any;\n msGridColumnAlign: string | null;\n msGridColumns: string | null;\n msGridColumnSpan: any;\n msGridRow: any;\n msGridRowAlign: string | null;\n msGridRows: string | null;\n msGridRowSpan: any;\n msHighContrastAdjust: string | null;\n msHyphenateLimitChars: string | null;\n msHyphenateLimitLines: any;\n msHyphenateLimitZone: any;\n msHyphens: string | null;\n msImeAlign: string | null;\n msOverflowStyle: string | null;\n msScrollChaining: string | null;\n msScrollLimit: string | null;\n msScrollLimitXMax: any;\n msScrollLimitXMin: any;\n msScrollLimitYMax: any;\n msScrollLimitYMin: any;\n msScrollRails: string | null;\n msScrollSnapPointsX: string | null;\n msScrollSnapPointsY: string | null;\n msScrollSnapType: string | null;\n msScrollSnapX: string | null;\n msScrollSnapY: string | null;\n msScrollTranslation: string | null;\n msTextCombineHorizontal: string | null;\n msTextSizeAdjust: any;\n msTouchAction: string | null;\n msTouchSelect: string | null;\n msUserSelect: string | null;\n msWrapFlow: string;\n msWrapMargin: any;\n msWrapThrough: string;\n opacity: string | null;\n order: string | null;\n orphans: string | null;\n outline: string | null;\n outlineColor: string | null;\n outlineOffset: string | null;\n outlineStyle: string | null;\n outlineWidth: string | null;\n overflow: string | null;\n overflowX: string | null;\n overflowY: string | null;\n padding: string | null;\n paddingBottom: string | null;\n paddingLeft: string | null;\n paddingRight: string | null;\n paddingTop: string | null;\n pageBreakAfter: string | null;\n pageBreakBefore: string | null;\n pageBreakInside: string | null;\n readonly parentRule: CSSRule;\n perspective: string | null;\n perspectiveOrigin: string | null;\n pointerEvents: string | null;\n position: string | null;\n quotes: string | null;\n right: string | null;\n rotate: string | null;\n rubyAlign: string | null;\n rubyOverhang: string | null;\n rubyPosition: string | null;\n scale: string | null;\n stopColor: string | null;\n stopOpacity: string | null;\n stroke: string | null;\n strokeDasharray: string | null;\n strokeDashoffset: string | null;\n strokeLinecap: string | null;\n strokeLinejoin: string | null;\n strokeMiterlimit: string | null;\n strokeOpacity: string | null;\n strokeWidth: string | null;\n tableLayout: string | null;\n textAlign: string | null;\n textAlignLast: string | null;\n textAnchor: string | null;\n textDecoration: string | null;\n textIndent: string | null;\n textJustify: string | null;\n textKashida: string | null;\n textKashidaSpace: string | null;\n textOverflow: string | null;\n textShadow: string | null;\n textTransform: string | null;\n textUnderlinePosition: string | null;\n top: string | null;\n touchAction: string | null;\n transform: string | null;\n transformOrigin: string | null;\n transformStyle: string | null;\n transition: string | null;\n transitionDelay: string | null;\n transitionDuration: string | null;\n transitionProperty: string | null;\n transitionTimingFunction: string | null;\n translate: string | null;\n unicodeBidi: string | null;\n verticalAlign: string | null;\n visibility: string | null;\n webkitAlignContent: string | null;\n webkitAlignItems: string | null;\n webkitAlignSelf: string | null;\n webkitAnimation: string | null;\n webkitAnimationDelay: string | null;\n webkitAnimationDirection: string | null;\n webkitAnimationDuration: string | null;\n webkitAnimationFillMode: string | null;\n webkitAnimationIterationCount: string | null;\n webkitAnimationName: string | null;\n webkitAnimationPlayState: string | null;\n webkitAnimationTimingFunction: string | null;\n webkitAppearance: string | null;\n webkitBackfaceVisibility: string | null;\n webkitBackgroundClip: string | null;\n webkitBackgroundOrigin: string | null;\n webkitBackgroundSize: string | null;\n webkitBorderBottomLeftRadius: string | null;\n webkitBorderBottomRightRadius: string | null;\n webkitBorderImage: string | null;\n webkitBorderRadius: string | null;\n webkitBorderTopLeftRadius: string | null;\n webkitBorderTopRightRadius: string | null;\n webkitBoxAlign: string | null;\n webkitBoxDirection: string | null;\n webkitBoxFlex: string | null;\n webkitBoxOrdinalGroup: string | null;\n webkitBoxOrient: string | null;\n webkitBoxPack: string | null;\n webkitBoxSizing: string | null;\n webkitColumnBreakAfter: string | null;\n webkitColumnBreakBefore: string | null;\n webkitColumnBreakInside: string | null;\n webkitColumnCount: any;\n webkitColumnGap: any;\n webkitColumnRule: string | null;\n webkitColumnRuleColor: any;\n webkitColumnRuleStyle: string | null;\n webkitColumnRuleWidth: any;\n webkitColumns: string | null;\n webkitColumnSpan: string | null;\n webkitColumnWidth: any;\n webkitFilter: string | null;\n webkitFlex: string | null;\n webkitFlexBasis: string | null;\n webkitFlexDirection: string | null;\n webkitFlexFlow: string | null;\n webkitFlexGrow: string | null;\n webkitFlexShrink: string | null;\n webkitFlexWrap: string | null;\n webkitJustifyContent: string | null;\n webkitOrder: string | null;\n webkitPerspective: string | null;\n webkitPerspectiveOrigin: string | null;\n webkitTapHighlightColor: string | null;\n webkitTextFillColor: string | null;\n webkitTextSizeAdjust: any;\n webkitTextStroke: string | null;\n webkitTextStrokeColor: string | null;\n webkitTextStrokeWidth: string | null;\n webkitTransform: string | null;\n webkitTransformOrigin: string | null;\n webkitTransformStyle: string | null;\n webkitTransition: string | null;\n webkitTransitionDelay: string | null;\n webkitTransitionDuration: string | null;\n webkitTransitionProperty: string | null;\n webkitTransitionTimingFunction: string | null;\n webkitUserModify: string | null;\n webkitUserSelect: string | null;\n webkitWritingMode: string | null;\n whiteSpace: string | null;\n widows: string | null;\n width: string | null;\n wordBreak: string | null;\n wordSpacing: string | null;\n wordWrap: string | null;\n writingMode: string | null;\n zIndex: string | null;\n zoom: string | null;\n resize: string | null;\n userSelect: string | null;\n getPropertyPriority(propertyName: string): string;\n getPropertyValue(propertyName: string): string;\n item(index: number): string;\n removeProperty(propertyName: string): string;\n setProperty(propertyName: string, value: string | null, priority?: string): void;\n [index: number]: string;\n}\n\ndeclare var CSSStyleDeclaration: {\n prototype: CSSStyleDeclaration;\n new(): CSSStyleDeclaration;\n};\n\ninterface CSSStyleRule extends CSSRule {\n readonly readOnly: boolean;\n selectorText: string;\n readonly style: CSSStyleDeclaration;\n}\n\ndeclare var CSSStyleRule: {\n prototype: CSSStyleRule;\n new(): CSSStyleRule;\n};\n\ninterface CSSStyleSheet extends StyleSheet {\n readonly cssRules: CSSRuleList;\n cssText: string;\n readonly id: string;\n readonly imports: StyleSheetList;\n readonly isAlternate: boolean;\n readonly isPrefAlternate: boolean;\n readonly ownerRule: CSSRule;\n readonly owningElement: Element;\n readonly pages: StyleSheetPageList;\n readonly readOnly: boolean;\n readonly rules: CSSRuleList;\n addImport(bstrURL: string, lIndex?: number): number;\n addPageRule(bstrSelector: string, bstrStyle: string, lIndex?: number): number;\n addRule(bstrSelector: string, bstrStyle?: string, lIndex?: number): number;\n deleteRule(index?: number): void;\n insertRule(rule: string, index?: number): number;\n removeImport(lIndex: number): void;\n removeRule(lIndex: number): void;\n}\n\ndeclare var CSSStyleSheet: {\n prototype: CSSStyleSheet;\n new(): CSSStyleSheet;\n};\n\ninterface CSSSupportsRule extends CSSConditionRule {\n}\n\ndeclare var CSSSupportsRule: {\n prototype: CSSSupportsRule;\n new(): CSSSupportsRule;\n};\n\ninterface CustomEvent extends Event {\n readonly detail: any;\n initCustomEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, detailArg: any): void;\n}\n\ndeclare var CustomEvent: {\n prototype: CustomEvent;\n new(typeArg: string, eventInitDict?: CustomEventInit): CustomEvent;\n};\n\ninterface DataCue extends TextTrackCue {\n data: ArrayBuffer;\n addEventListener<K extends keyof TextTrackCueEventMap>(type: K, listener: (this: DataCue, ev: TextTrackCueEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var DataCue: {\n prototype: DataCue;\n new(): DataCue;\n};\n\ninterface DataTransfer {\n dropEffect: string;\n effectAllowed: string;\n readonly files: FileList;\n readonly items: DataTransferItemList;\n readonly types: string[];\n clearData(format?: string): boolean;\n getData(format: string): string;\n setData(format: string, data: string): boolean;\n setDragImage(image: Element, x: number, y: number): void;\n}\n\ndeclare var DataTransfer: {\n prototype: DataTransfer;\n new(): DataTransfer;\n};\n\ninterface DataTransferItem {\n readonly kind: string;\n readonly type: string;\n getAsFile(): File | null;\n getAsString(_callback: FunctionStringCallback | null): void;\n webkitGetAsEntry(): any;\n}\n\ndeclare var DataTransferItem: {\n prototype: DataTransferItem;\n new(): DataTransferItem;\n};\n\ninterface DataTransferItemList {\n readonly length: number;\n add(data: File): DataTransferItem | null;\n clear(): void;\n item(index: number): DataTransferItem;\n remove(index: number): void;\n [index: number]: DataTransferItem;\n}\n\ndeclare var DataTransferItemList: {\n prototype: DataTransferItemList;\n new(): DataTransferItemList;\n};\n\ninterface DeferredPermissionRequest {\n readonly id: number;\n readonly type: MSWebViewPermissionType;\n readonly uri: string;\n allow(): void;\n deny(): void;\n}\n\ndeclare var DeferredPermissionRequest: {\n prototype: DeferredPermissionRequest;\n new(): DeferredPermissionRequest;\n};\n\ninterface DelayNode extends AudioNode {\n readonly delayTime: AudioParam;\n}\n\ndeclare var DelayNode: {\n prototype: DelayNode;\n new(): DelayNode;\n};\n\ninterface DeviceAcceleration {\n readonly x: number | null;\n readonly y: number | null;\n readonly z: number | null;\n}\n\ndeclare var DeviceAcceleration: {\n prototype: DeviceAcceleration;\n new(): DeviceAcceleration;\n};\n\ninterface DeviceLightEvent extends Event {\n readonly value: number;\n}\n\ndeclare var DeviceLightEvent: {\n prototype: DeviceLightEvent;\n new(typeArg: string, eventInitDict?: DeviceLightEventInit): DeviceLightEvent;\n};\n\ninterface DeviceMotionEvent extends Event {\n readonly acceleration: DeviceAcceleration | null;\n readonly accelerationIncludingGravity: DeviceAcceleration | null;\n readonly interval: number | null;\n readonly rotationRate: DeviceRotationRate | null;\n initDeviceMotionEvent(type: string, bubbles: boolean, cancelable: boolean, acceleration: DeviceAccelerationDict | null, accelerationIncludingGravity: DeviceAccelerationDict | null, rotationRate: DeviceRotationRateDict | null, interval: number | null): void;\n}\n\ndeclare var DeviceMotionEvent: {\n prototype: DeviceMotionEvent;\n new(typeArg: string, eventInitDict?: DeviceMotionEventInit): DeviceMotionEvent;\n};\n\ninterface DeviceOrientationEvent extends Event {\n readonly absolute: boolean;\n readonly alpha: number | null;\n readonly beta: number | null;\n readonly gamma: number | null;\n initDeviceOrientationEvent(type: string, bubbles: boolean, cancelable: boolean, alpha: number | null, beta: number | null, gamma: number | null, absolute: boolean): void;\n}\n\ndeclare var DeviceOrientationEvent: {\n prototype: DeviceOrientationEvent;\n new(typeArg: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;\n};\n\ninterface DeviceRotationRate {\n readonly alpha: number | null;\n readonly beta: number | null;\n readonly gamma: number | null;\n}\n\ndeclare var DeviceRotationRate: {\n prototype: DeviceRotationRate;\n new(): DeviceRotationRate;\n};\n\ninterface DocumentEventMap extends GlobalEventHandlersEventMap {\n "abort": UIEvent;\n "activate": UIEvent;\n "beforeactivate": UIEvent;\n "beforedeactivate": UIEvent;\n "blur": FocusEvent;\n "canplay": Event;\n "canplaythrough": Event;\n "change": Event;\n "click": MouseEvent;\n "contextmenu": PointerEvent;\n "dblclick": MouseEvent;\n "deactivate": UIEvent;\n "drag": DragEvent;\n "dragend": DragEvent;\n "dragenter": DragEvent;\n "dragleave": DragEvent;\n "dragover": DragEvent;\n "dragstart": DragEvent;\n "drop": DragEvent;\n "durationchange": Event;\n "emptied": Event;\n "ended": MediaStreamErrorEvent;\n "error": ErrorEvent;\n "focus": FocusEvent;\n "fullscreenchange": Event;\n "fullscreenerror": Event;\n "input": Event;\n "invalid": Event;\n "keydown": KeyboardEvent;\n "keypress": KeyboardEvent;\n "keyup": KeyboardEvent;\n "load": Event;\n "loadeddata": Event;\n "loadedmetadata": Event;\n "loadstart": Event;\n "mousedown": MouseEvent;\n "mousemove": MouseEvent;\n "mouseout": MouseEvent;\n "mouseover": MouseEvent;\n "mouseup": MouseEvent;\n "mousewheel": WheelEvent;\n "MSContentZoom": UIEvent;\n "MSGestureChange": MSGestureEvent;\n "MSGestureDoubleTap": MSGestureEvent;\n "MSGestureEnd": MSGestureEvent;\n "MSGestureHold": MSGestureEvent;\n "MSGestureStart": MSGestureEvent;\n "MSGestureTap": MSGestureEvent;\n "MSInertiaStart": MSGestureEvent;\n "MSManipulationStateChanged": MSManipulationEvent;\n "MSPointerCancel": MSPointerEvent;\n "MSPointerDown": MSPointerEvent;\n "MSPointerEnter": MSPointerEvent;\n "MSPointerLeave": MSPointerEvent;\n "MSPointerMove": MSPointerEvent;\n "MSPointerOut": MSPointerEvent;\n "MSPointerOver": MSPointerEvent;\n "MSPointerUp": MSPointerEvent;\n "mssitemodejumplistitemremoved": MSSiteModeEvent;\n "msthumbnailclick": MSSiteModeEvent;\n "pause": Event;\n "play": Event;\n "playing": Event;\n "pointerlockchange": Event;\n "pointerlockerror": Event;\n "progress": ProgressEvent;\n "ratechange": Event;\n "readystatechange": Event;\n "reset": Event;\n "scroll": UIEvent;\n "seeked": Event;\n "seeking": Event;\n "select": UIEvent;\n "selectionchange": Event;\n "selectstart": Event;\n "stalled": Event;\n "stop": Event;\n "submit": Event;\n "suspend": Event;\n "timeupdate": Event;\n "touchcancel": TouchEvent;\n "touchend": TouchEvent;\n "touchmove": TouchEvent;\n "touchstart": TouchEvent;\n "volumechange": Event;\n "waiting": Event;\n "webkitfullscreenchange": Event;\n "webkitfullscreenerror": Event;\n}\n\ninterface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEvent, ParentNode, DocumentOrShadowRoot {\n /**\n * Gets the object that has the focus when the parent document has focus.\n */\n readonly activeElement: Element;\n /**\n * Sets or gets the color of all active links in the document.\n */\n alinkColor: string;\n /**\n * Returns a reference to the collection of elements contained by the object.\n */\n readonly all: HTMLAllCollection;\n /**\n * Retrieves a collection of all a objects that have a name and/or id property. Objects in this collection are in HTML source order.\n */\n anchors: HTMLCollectionOf<HTMLAnchorElement>;\n /**\n * Retrieves a collection of all applet objects in the document.\n */\n applets: HTMLCollectionOf<HTMLAppletElement>;\n /**\n * Deprecated. Sets or retrieves a value that indicates the background color behind the object.\n */\n bgColor: string;\n /**\n * Specifies the beginning and end of the document body.\n */\n body: HTMLElement;\n readonly characterSet: string;\n /**\n * Gets or sets the character set used to encode the object.\n */\n charset: string;\n /**\n * Gets a value that indicates whether standards-compliant mode is switched on for the object.\n */\n readonly compatMode: string;\n cookie: string;\n readonly currentScript: HTMLScriptElement | SVGScriptElement;\n readonly defaultView: Window;\n /**\n * Sets or gets a value that indicates whether the document can be edited.\n */\n designMode: string;\n /**\n * Sets or retrieves a value that indicates the reading order of the object.\n */\n dir: string;\n /**\n * Gets an object representing the document type declaration associated with the current document.\n */\n readonly doctype: DocumentType;\n /**\n * Gets a reference to the root node of the document.\n */\n documentElement: HTMLElement;\n /**\n * Sets or gets the security domain of the document.\n */\n domain: string;\n /**\n * Retrieves a collection of all embed objects in the document.\n */\n embeds: HTMLCollectionOf<HTMLEmbedElement>;\n /**\n * Sets or gets the foreground (text) color of the document.\n */\n fgColor: string;\n /**\n * Retrieves a collection, in source order, of all form objects in the document.\n */\n forms: HTMLCollectionOf<HTMLFormElement>;\n readonly fullscreenElement: Element | null;\n readonly fullscreenEnabled: boolean;\n readonly head: HTMLHeadElement;\n readonly hidden: boolean;\n /**\n * Retrieves a collection, in source order, of img objects in the document.\n */\n images: HTMLCollectionOf<HTMLImageElement>;\n /**\n * Gets the implementation object of the current document.\n */\n readonly implementation: DOMImplementation;\n /**\n * Returns the character encoding used to create the webpage that is loaded into the document object.\n */\n readonly inputEncoding: string | null;\n /**\n * Gets the date that the page was last modified, if the page supplies one.\n */\n readonly lastModified: string;\n /**\n * Sets or gets the color of the document links.\n */\n linkColor: string;\n /**\n * Retrieves a collection of all a objects that specify the href property and all area objects in the document.\n */\n links: HTMLCollectionOf<HTMLAnchorElement | HTMLAreaElement>;\n /**\n * Contains information about the current URL.\n */\n readonly location: Location;\n msCapsLockWarningOff: boolean;\n msCSSOMElementFloatMetrics: boolean;\n /**\n * Fires when the user aborts the download.\n * @param ev The event.\n */\n onabort: (this: Document, ev: UIEvent) => any;\n /**\n * Fires when the object is set as the active element.\n * @param ev The event.\n */\n onactivate: (this: Document, ev: UIEvent) => any;\n /**\n * Fires immediately before the object is set as the active element.\n * @param ev The event.\n */\n onbeforeactivate: (this: Document, ev: UIEvent) => any;\n /**\n * Fires immediately before the activeElement is changed from the current object to another object in the parent document.\n * @param ev The event.\n */\n onbeforedeactivate: (this: Document, ev: UIEvent) => any;\n /**\n * Fires when the object loses the input focus.\n * @param ev The focus event.\n */\n onblur: (this: Document, ev: FocusEvent) => any;\n /**\n * Occurs when playback is possible, but would require further buffering.\n * @param ev The event.\n */\n oncanplay: (this: Document, ev: Event) => any;\n oncanplaythrough: (this: Document, ev: Event) => any;\n /**\n * Fires when the contents of the object or selection have changed.\n * @param ev The event.\n */\n onchange: (this: Document, ev: Event) => any;\n /**\n * Fires when the user clicks the left mouse button on the object\n * @param ev The mouse event.\n */\n onclick: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the user clicks the right mouse button in the client area, opening the context menu.\n * @param ev The mouse event.\n */\n oncontextmenu: (this: Document, ev: PointerEvent) => any;\n /**\n * Fires when the user double-clicks the object.\n * @param ev The mouse event.\n */\n ondblclick: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the activeElement is changed from the current object to another object in the parent document.\n * @param ev The UI Event\n */\n ondeactivate: (this: Document, ev: UIEvent) => any;\n /**\n * Fires on the source object continuously during a drag operation.\n * @param ev The event.\n */\n ondrag: (this: Document, ev: DragEvent) => any;\n /**\n * Fires on the source object when the user releases the mouse at the close of a drag operation.\n * @param ev The event.\n */\n ondragend: (this: Document, ev: DragEvent) => any;\n /**\n * Fires on the target element when the user drags the object to a valid drop target.\n * @param ev The drag event.\n */\n ondragenter: (this: Document, ev: DragEvent) => any;\n /**\n * Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation.\n * @param ev The drag event.\n */\n ondragleave: (this: Document, ev: DragEvent) => any;\n /**\n * Fires on the target element continuously while the user drags the object over a valid drop target.\n * @param ev The event.\n */\n ondragover: (this: Document, ev: DragEvent) => any;\n /**\n * Fires on the source object when the user starts to drag a text selection or selected object.\n * @param ev The event.\n */\n ondragstart: (this: Document, ev: DragEvent) => any;\n ondrop: (this: Document, ev: DragEvent) => any;\n /**\n * Occurs when the duration attribute is updated.\n * @param ev The event.\n */\n ondurationchange: (this: Document, ev: Event) => any;\n /**\n * Occurs when the media element is reset to its initial state.\n * @param ev The event.\n */\n onemptied: (this: Document, ev: Event) => any;\n /**\n * Occurs when the end of playback is reached.\n * @param ev The event\n */\n onended: (this: Document, ev: MediaStreamErrorEvent) => any;\n /**\n * Fires when an error occurs during object loading.\n * @param ev The event.\n */\n onerror: (this: Document, ev: ErrorEvent) => any;\n /**\n * Fires when the object receives focus.\n * @param ev The event.\n */\n onfocus: (this: Document, ev: FocusEvent) => any;\n onfullscreenchange: (this: Document, ev: Event) => any;\n onfullscreenerror: (this: Document, ev: Event) => any;\n oninput: (this: Document, ev: Event) => any;\n oninvalid: (this: Document, ev: Event) => any;\n /**\n * Fires when the user presses a key.\n * @param ev The keyboard event\n */\n onkeydown: (this: Document, ev: KeyboardEvent) => any;\n /**\n * Fires when the user presses an alphanumeric key.\n * @param ev The event.\n */\n onkeypress: (this: Document, ev: KeyboardEvent) => any;\n /**\n * Fires when the user releases a key.\n * @param ev The keyboard event\n */\n onkeyup: (this: Document, ev: KeyboardEvent) => any;\n /**\n * Fires immediately after the browser loads the object.\n * @param ev The event.\n */\n onload: (this: Document, ev: Event) => any;\n /**\n * Occurs when media data is loaded at the current playback position.\n * @param ev The event.\n */\n onloadeddata: (this: Document, ev: Event) => any;\n /**\n * Occurs when the duration and dimensions of the media have been determined.\n * @param ev The event.\n */\n onloadedmetadata: (this: Document, ev: Event) => any;\n /**\n * Occurs when Internet Explorer begins looking for media data.\n * @param ev The event.\n */\n onloadstart: (this: Document, ev: Event) => any;\n /**\n * Fires when the user clicks the object with either mouse button.\n * @param ev The mouse event.\n */\n onmousedown: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the user moves the mouse over the object.\n * @param ev The mouse event.\n */\n onmousemove: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the user moves the mouse pointer outside the boundaries of the object.\n * @param ev The mouse event.\n */\n onmouseout: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the user moves the mouse pointer into the object.\n * @param ev The mouse event.\n */\n onmouseover: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the user releases a mouse button while the mouse is over the object.\n * @param ev The mouse event.\n */\n onmouseup: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the wheel button is rotated.\n * @param ev The mouse event\n */\n onmousewheel: (this: Document, ev: WheelEvent) => any;\n onmscontentzoom: (this: Document, ev: UIEvent) => any;\n onmsgesturechange: (this: Document, ev: MSGestureEvent) => any;\n onmsgesturedoubletap: (this: Document, ev: MSGestureEvent) => any;\n onmsgestureend: (this: Document, ev: MSGestureEvent) => any;\n onmsgesturehold: (this: Document, ev: MSGestureEvent) => any;\n onmsgesturestart: (this: Document, ev: MSGestureEvent) => any;\n onmsgesturetap: (this: Document, ev: MSGestureEvent) => any;\n onmsinertiastart: (this: Document, ev: MSGestureEvent) => any;\n onmsmanipulationstatechanged: (this: Document, ev: MSManipulationEvent) => any;\n onmspointercancel: (this: Document, ev: MSPointerEvent) => any;\n onmspointerdown: (this: Document, ev: MSPointerEvent) => any;\n onmspointerenter: (this: Document, ev: MSPointerEvent) => any;\n onmspointerleave: (this: Document, ev: MSPointerEvent) => any;\n onmspointermove: (this: Document, ev: MSPointerEvent) => any;\n onmspointerout: (this: Document, ev: MSPointerEvent) => any;\n onmspointerover: (this: Document, ev: MSPointerEvent) => any;\n onmspointerup: (this: Document, ev: MSPointerEvent) => any;\n /**\n * Occurs when an item is removed from a Jump List of a webpage running in Site Mode.\n * @param ev The event.\n */\n onmssitemodejumplistitemremoved: (this: Document, ev: MSSiteModeEvent) => any;\n /**\n * Occurs when a user clicks a button in a Thumbnail Toolbar of a webpage running in Site Mode.\n * @param ev The event.\n */\n onmsthumbnailclick: (this: Document, ev: MSSiteModeEvent) => any;\n /**\n * Occurs when playback is paused.\n * @param ev The event.\n */\n onpause: (this: Document, ev: Event) => any;\n /**\n * Occurs when the play method is requested.\n * @param ev The event.\n */\n onplay: (this: Document, ev: Event) => any;\n /**\n * Occurs when the audio or video has started playing.\n * @param ev The event.\n */\n onplaying: (this: Document, ev: Event) => any;\n onpointerlockchange: (this: Document, ev: Event) => any;\n onpointerlockerror: (this: Document, ev: Event) => any;\n /**\n * Occurs to indicate progress while downloading media data.\n * @param ev The event.\n */\n onprogress: (this: Document, ev: ProgressEvent) => any;\n /**\n * Occurs when the playback rate is increased or decreased.\n * @param ev The event.\n */\n onratechange: (this: Document, ev: Event) => any;\n /**\n * Fires when the state of the object has changed.\n * @param ev The event\n */\n onreadystatechange: (this: Document, ev: Event) => any;\n /**\n * Fires when the user resets a form.\n * @param ev The event.\n */\n onreset: (this: Document, ev: Event) => any;\n /**\n * Fires when the user repositions the scroll box in the scroll bar on the object.\n * @param ev The event.\n */\n onscroll: (this: Document, ev: UIEvent) => any;\n /**\n * Occurs when the seek operation ends.\n * @param ev The event.\n */\n onseeked: (this: Document, ev: Event) => any;\n /**\n * Occurs when the current playback position is moved.\n * @param ev The event.\n */\n onseeking: (this: Document, ev: Event) => any;\n /**\n * Fires when the current selection changes.\n * @param ev The event.\n */\n onselect: (this: Document, ev: UIEvent) => any;\n /**\n * Fires when the selection state of a document changes.\n * @param ev The event.\n */\n onselectionchange: (this: Document, ev: Event) => any;\n onselectstart: (this: Document, ev: Event) => any;\n /**\n * Occurs when the download has stopped.\n * @param ev The event.\n */\n onstalled: (this: Document, ev: Event) => any;\n /**\n * Fires when the user clicks the Stop button or leaves the Web page.\n * @param ev The event.\n */\n onstop: (this: Document, ev: Event) => any;\n onsubmit: (this: Document, ev: Event) => any;\n /**\n * Occurs if the load operation has been intentionally halted.\n * @param ev The event.\n */\n onsuspend: (this: Document, ev: Event) => any;\n /**\n * Occurs to indicate the current playback position.\n * @param ev The event.\n */\n ontimeupdate: (this: Document, ev: Event) => any;\n ontouchcancel: (ev: TouchEvent) => any;\n ontouchend: (ev: TouchEvent) => any;\n ontouchmove: (ev: TouchEvent) => any;\n ontouchstart: (ev: TouchEvent) => any;\n /**\n * Occurs when the volume is changed, or playback is muted or unmuted.\n * @param ev The event.\n */\n onvolumechange: (this: Document, ev: Event) => any;\n /**\n * Occurs when playback stops because the next frame of a video resource is not available.\n * @param ev The event.\n */\n onwaiting: (this: Document, ev: Event) => any;\n onwebkitfullscreenchange: (this: Document, ev: Event) => any;\n onwebkitfullscreenerror: (this: Document, ev: Event) => any;\n plugins: HTMLCollectionOf<HTMLEmbedElement>;\n readonly pointerLockElement: Element;\n /**\n * Retrieves a value that indicates the current state of the object.\n */\n readonly readyState: string;\n /**\n * Gets the URL of the location that referred the user to the current page.\n */\n readonly referrer: string;\n /**\n * Gets the root svg element in the document hierarchy.\n */\n readonly rootElement: SVGSVGElement;\n /**\n * Retrieves a collection of all script objects in the document.\n */\n scripts: HTMLCollectionOf<HTMLScriptElement>;\n readonly scrollingElement: Element | null;\n /**\n * Retrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document.\n */\n readonly styleSheets: StyleSheetList;\n /**\n * Contains the title of the document.\n */\n title: string;\n /**\n * Sets or gets the URL for the current document.\n */\n readonly URL: string;\n /**\n * Gets the URL for the document, stripped of any character encoding.\n */\n readonly URLUnencoded: string;\n readonly visibilityState: VisibilityState;\n /**\n * Sets or gets the color of the links that the user has visited.\n */\n vlinkColor: string;\n readonly webkitCurrentFullScreenElement: Element | null;\n readonly webkitFullscreenElement: Element | null;\n readonly webkitFullscreenEnabled: boolean;\n readonly webkitIsFullScreen: boolean;\n readonly xmlEncoding: string | null;\n xmlStandalone: boolean;\n /**\n * Gets or sets the version attribute specified in the declaration of an XML document.\n */\n xmlVersion: string | null;\n adoptNode<T extends Node>(source: T): T;\n captureEvents(): void;\n caretRangeFromPoint(x: number, y: number): Range;\n clear(): void;\n /**\n * Closes an output stream and forces the sent data to display.\n */\n close(): void;\n /**\n * Creates an attribute object with a specified name.\n * @param name String that sets the attribute object\'s name.\n */\n createAttribute(name: string): Attr;\n createAttributeNS(namespaceURI: string | null, qualifiedName: string): Attr;\n createCDATASection(data: string): CDATASection;\n /**\n * Creates a comment object with the specified data.\n * @param data Sets the comment object\'s data.\n */\n createComment(data: string): Comment;\n /**\n * Creates a new document.\n */\n createDocumentFragment(): DocumentFragment;\n /**\n * Creates an instance of the element for the specified tag.\n * @param tagName The name of an element.\n */\n createElement<K extends keyof HTMLElementTagNameMap>(tagName: K): HTMLElementTagNameMap[K];\n createElement(tagName: string): HTMLElement;\n createElementNS(namespaceURI: "http://www.w3.org/1999/xhtml", qualifiedName: string): HTMLElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "a"): SVGAElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "circle"): SVGCircleElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "clipPath"): SVGClipPathElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "componentTransferFunction"): SVGComponentTransferFunctionElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "defs"): SVGDefsElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "desc"): SVGDescElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "ellipse"): SVGEllipseElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feBlend"): SVGFEBlendElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feColorMatrix"): SVGFEColorMatrixElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feComponentTransfer"): SVGFEComponentTransferElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feComposite"): SVGFECompositeElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feConvolveMatrix"): SVGFEConvolveMatrixElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feDiffuseLighting"): SVGFEDiffuseLightingElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feDisplacementMap"): SVGFEDisplacementMapElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feDistantLight"): SVGFEDistantLightElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feFlood"): SVGFEFloodElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feFuncA"): SVGFEFuncAElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feFuncB"): SVGFEFuncBElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feFuncG"): SVGFEFuncGElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feFuncR"): SVGFEFuncRElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feGaussianBlur"): SVGFEGaussianBlurElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feImage"): SVGFEImageElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feMerge"): SVGFEMergeElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feMergeNode"): SVGFEMergeNodeElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feMorphology"): SVGFEMorphologyElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feOffset"): SVGFEOffsetElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "fePointLight"): SVGFEPointLightElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feSpecularLighting"): SVGFESpecularLightingElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feSpotLight"): SVGFESpotLightElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feTile"): SVGFETileElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feTurbulence"): SVGFETurbulenceElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "filter"): SVGFilterElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "foreignObject"): SVGForeignObjectElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "g"): SVGGElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "image"): SVGImageElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "gradient"): SVGGradientElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "line"): SVGLineElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "linearGradient"): SVGLinearGradientElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "marker"): SVGMarkerElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "mask"): SVGMaskElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "path"): SVGPathElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "metadata"): SVGMetadataElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "pattern"): SVGPatternElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "polygon"): SVGPolygonElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "polyline"): SVGPolylineElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "radialGradient"): SVGRadialGradientElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "rect"): SVGRectElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "svg"): SVGSVGElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "script"): SVGScriptElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "stop"): SVGStopElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "style"): SVGStyleElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "switch"): SVGSwitchElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "symbol"): SVGSymbolElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "tspan"): SVGTSpanElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "textContent"): SVGTextContentElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "text"): SVGTextElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "textPath"): SVGTextPathElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "textPositioning"): SVGTextPositioningElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "title"): SVGTitleElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "use"): SVGUseElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "view"): SVGViewElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: string): SVGElement;\n createElementNS(namespaceURI: string | null, qualifiedName: string): Element;\n createExpression(expression: string, resolver: XPathNSResolver): XPathExpression;\n /**\n * Creates a NodeIterator object that you can use to traverse filtered lists of nodes or elements in a document.\n * @param root The root element or node to start traversing on.\n * @param whatToShow The type of nodes or elements to appear in the node list\n * @param filter A custom NodeFilter function to use. For more information, see filter. Use null for no filter.\n * @param entityReferenceExpansion A flag that specifies whether entity reference nodes are expanded.\n */\n createNodeIterator(root: Node, whatToShow?: number, filter?: NodeFilter, entityReferenceExpansion?: boolean): NodeIterator;\n createNSResolver(nodeResolver: Node): XPathNSResolver;\n createProcessingInstruction(target: string, data: string): ProcessingInstruction;\n /**\n * Returns an empty range object that has both of its boundary points positioned at the beginning of the document.\n */\n createRange(): Range;\n /**\n * Creates a text string from the specified value.\n * @param data String that specifies the nodeValue property of the text node.\n */\n createTextNode(data: string): Text;\n createTouch(view: Window, target: EventTarget, identifier: number, pageX: number, pageY: number, screenX: number, screenY: number): Touch;\n createTouchList(...touches: Touch[]): TouchList;\n /**\n * Creates a TreeWalker object that you can use to traverse filtered lists of nodes or elements in a document.\n * @param root The root element or node to start traversing on.\n * @param whatToShow The type of nodes or elements to appear in the node list. For more information, see whatToShow.\n * @param filter A custom NodeFilter function to use.\n * @param entityReferenceExpansion A flag that specifies whether entity reference nodes are expanded.\n */\n createTreeWalker(root: Node, whatToShow?: number, filter?: NodeFilter, entityReferenceExpansion?: boolean): TreeWalker;\n /**\n * Returns the element for the specified x coordinate and the specified y coordinate.\n * @param x The x-offset\n * @param y The y-offset\n */\n elementFromPoint(x: number, y: number): Element;\n evaluate(expression: string, contextNode: Node, resolver: XPathNSResolver | null, type: number, result: XPathResult | null): XPathResult;\n /**\n * Executes a command on the current document, current selection, or the given range.\n * @param commandId String that specifies the command to execute. This command can be any of the command identifiers that can be executed in script.\n * @param showUI Display the user interface, defaults to false.\n * @param value Value to assign.\n */\n execCommand(commandId: string, showUI?: boolean, value?: any): boolean;\n /**\n * Displays help information for the given command identifier.\n * @param commandId Displays help information for the given command identifier.\n */\n execCommandShowHelp(commandId: string): boolean;\n exitFullscreen(): void;\n exitPointerLock(): void;\n /**\n * Causes the element to receive the focus and executes the code specified by the onfocus event.\n */\n focus(): void;\n /**\n * Returns a reference to the first object with the specified value of the ID or NAME attribute.\n * @param elementId String that specifies the ID value. Case-insensitive.\n */\n getElementById(elementId: string): HTMLElement | null;\n getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;\n /**\n * Gets a collection of objects based on the value of the NAME or ID attribute.\n * @param elementName Gets a collection of objects based on the value of the NAME or ID attribute.\n */\n getElementsByName(elementName: string): NodeListOf<HTMLElement>;\n /**\n * Retrieves a collection of objects based on the specified element name.\n * @param name Specifies the name of an element.\n */\n getElementsByTagName<K extends keyof ElementListTagNameMap>(tagname: K): ElementListTagNameMap[K];\n getElementsByTagName(tagname: string): NodeListOf<Element>;\n getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;\n getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;\n getElementsByTagNameNS(namespaceURI: string, localName: string): HTMLCollectionOf<Element>;\n /**\n * Returns an object representing the current selection of the document that is loaded into the object displaying a webpage.\n */\n getSelection(): Selection;\n /**\n * Gets a value indicating whether the object currently has focus.\n */\n hasFocus(): boolean;\n importNode<T extends Node>(importedNode: T, deep: boolean): T;\n msElementsFromPoint(x: number, y: number): NodeListOf<Element>;\n msElementsFromRect(left: number, top: number, width: number, height: number): NodeListOf<Element>;\n /**\n * Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.\n * @param url Specifies a MIME type for the document.\n * @param name Specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an anchor element.\n * @param features Contains a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, "fullscreen=yes, toolbar=yes"). The following values are supported.\n * @param replace Specifies whether the existing entry for the document is replaced in the history list.\n */\n open(url?: string, name?: string, features?: string, replace?: boolean): Document;\n /**\n * Returns a Boolean value that indicates whether a specified command can be successfully executed using execCommand, given the current state of the document.\n * @param commandId Specifies a command identifier.\n */\n queryCommandEnabled(commandId: string): boolean;\n /**\n * Returns a Boolean value that indicates whether the specified command is in the indeterminate state.\n * @param commandId String that specifies a command identifier.\n */\n queryCommandIndeterm(commandId: string): boolean;\n /**\n * Returns a Boolean value that indicates the current state of the command.\n * @param commandId String that specifies a command identifier.\n */\n queryCommandState(commandId: string): boolean;\n /**\n * Returns a Boolean value that indicates whether the current command is supported on the current range.\n * @param commandId Specifies a command identifier.\n */\n queryCommandSupported(commandId: string): boolean;\n /**\n * Retrieves the string associated with a command.\n * @param commandId String that contains the identifier of a command. This can be any command identifier given in the list of Command Identifiers.\n */\n queryCommandText(commandId: string): string;\n /**\n * Returns the current value of the document, range, or current selection for the given command.\n * @param commandId String that specifies a command identifier.\n */\n queryCommandValue(commandId: string): string;\n releaseEvents(): void;\n /**\n * Allows updating the print settings for the page.\n */\n updateSettings(): void;\n webkitCancelFullScreen(): void;\n webkitExitFullscreen(): void;\n /**\n * Writes one or more HTML expressions to a document in the specified window.\n * @param content Specifies the text and HTML tags to write.\n */\n write(...content: string[]): void;\n /**\n * Writes one or more HTML expressions, followed by a carriage return, to a document in the specified window.\n * @param content The text and HTML tags to write.\n */\n writeln(...content: string[]): void;\n addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Document: {\n prototype: Document;\n new(): Document;\n};\n\ninterface DocumentFragment extends Node, NodeSelector, ParentNode {\n getElementById(elementId: string): HTMLElement | null;\n}\n\ndeclare var DocumentFragment: {\n prototype: DocumentFragment;\n new(): DocumentFragment;\n};\n\ninterface DocumentType extends Node, ChildNode {\n readonly entities: NamedNodeMap;\n readonly internalSubset: string | null;\n readonly name: string;\n readonly notations: NamedNodeMap;\n readonly publicId: string;\n readonly systemId: string;\n}\n\ndeclare var DocumentType: {\n prototype: DocumentType;\n new(): DocumentType;\n};\n\ninterface DOMError {\n readonly name: string;\n toString(): string;\n}\n\ndeclare var DOMError: {\n prototype: DOMError;\n new(): DOMError;\n};\n\ninterface DOMException {\n readonly code: number;\n readonly message: string;\n readonly name: string;\n toString(): string;\n readonly ABORT_ERR: number;\n readonly DATA_CLONE_ERR: number;\n readonly DOMSTRING_SIZE_ERR: number;\n readonly HIERARCHY_REQUEST_ERR: number;\n readonly INDEX_SIZE_ERR: number;\n readonly INUSE_ATTRIBUTE_ERR: number;\n readonly INVALID_ACCESS_ERR: number;\n readonly INVALID_CHARACTER_ERR: number;\n readonly INVALID_MODIFICATION_ERR: number;\n readonly INVALID_NODE_TYPE_ERR: number;\n readonly INVALID_STATE_ERR: number;\n readonly NAMESPACE_ERR: number;\n readonly NETWORK_ERR: number;\n readonly NO_DATA_ALLOWED_ERR: number;\n readonly NO_MODIFICATION_ALLOWED_ERR: number;\n readonly NOT_FOUND_ERR: number;\n readonly NOT_SUPPORTED_ERR: number;\n readonly PARSE_ERR: number;\n readonly QUOTA_EXCEEDED_ERR: number;\n readonly SECURITY_ERR: number;\n readonly SERIALIZE_ERR: number;\n readonly SYNTAX_ERR: number;\n readonly TIMEOUT_ERR: number;\n readonly TYPE_MISMATCH_ERR: number;\n readonly URL_MISMATCH_ERR: number;\n readonly VALIDATION_ERR: number;\n readonly WRONG_DOCUMENT_ERR: number;\n}\n\ndeclare var DOMException: {\n prototype: DOMException;\n new(): DOMException;\n readonly ABORT_ERR: number;\n readonly DATA_CLONE_ERR: number;\n readonly DOMSTRING_SIZE_ERR: number;\n readonly HIERARCHY_REQUEST_ERR: number;\n readonly INDEX_SIZE_ERR: number;\n readonly INUSE_ATTRIBUTE_ERR: number;\n readonly INVALID_ACCESS_ERR: number;\n readonly INVALID_CHARACTER_ERR: number;\n readonly INVALID_MODIFICATION_ERR: number;\n readonly INVALID_NODE_TYPE_ERR: number;\n readonly INVALID_STATE_ERR: number;\n readonly NAMESPACE_ERR: number;\n readonly NETWORK_ERR: number;\n readonly NO_DATA_ALLOWED_ERR: number;\n readonly NO_MODIFICATION_ALLOWED_ERR: number;\n readonly NOT_FOUND_ERR: number;\n readonly NOT_SUPPORTED_ERR: number;\n readonly PARSE_ERR: number;\n readonly QUOTA_EXCEEDED_ERR: number;\n readonly SECURITY_ERR: number;\n readonly SERIALIZE_ERR: number;\n readonly SYNTAX_ERR: number;\n readonly TIMEOUT_ERR: number;\n readonly TYPE_MISMATCH_ERR: number;\n readonly URL_MISMATCH_ERR: number;\n readonly VALIDATION_ERR: number;\n readonly WRONG_DOCUMENT_ERR: number;\n};\n\ninterface DOMImplementation {\n createDocument(namespaceURI: string | null, qualifiedName: string | null, doctype: DocumentType | null): Document;\n createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;\n createHTMLDocument(title: string): Document;\n hasFeature(feature: string | null, version: string | null): boolean;\n}\n\ndeclare var DOMImplementation: {\n prototype: DOMImplementation;\n new(): DOMImplementation;\n};\n\ninterface DOMParser {\n parseFromString(source: string, mimeType: string): Document;\n}\n\ndeclare var DOMParser: {\n prototype: DOMParser;\n new(): DOMParser;\n};\n\ninterface DOMSettableTokenList extends DOMTokenList {\n value: string;\n}\n\ndeclare var DOMSettableTokenList: {\n prototype: DOMSettableTokenList;\n new(): DOMSettableTokenList;\n};\n\ninterface DOMStringList {\n readonly length: number;\n contains(str: string): boolean;\n item(index: number): string | null;\n [index: number]: string;\n}\n\ndeclare var DOMStringList: {\n prototype: DOMStringList;\n new(): DOMStringList;\n};\n\ninterface DOMStringMap {\n [name: string]: string | undefined;\n}\n\ndeclare var DOMStringMap: {\n prototype: DOMStringMap;\n new(): DOMStringMap;\n};\n\ninterface DOMTokenList {\n readonly length: number;\n add(...token: string[]): void;\n contains(token: string): boolean;\n item(index: number): string;\n remove(...token: string[]): void;\n toggle(token: string, force?: boolean): boolean;\n toString(): string;\n [index: number]: string;\n}\n\ndeclare var DOMTokenList: {\n prototype: DOMTokenList;\n new(): DOMTokenList;\n};\n\ninterface DragEvent extends MouseEvent {\n readonly dataTransfer: DataTransfer;\n initDragEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget, dataTransferArg: DataTransfer): void;\n msConvertURL(file: File, targetType: string, targetURL?: string): void;\n}\n\ndeclare var DragEvent: {\n prototype: DragEvent;\n new(type: "drag" | "dragend" | "dragenter" | "dragexit" | "dragleave" | "dragover" | "dragstart" | "drop", dragEventInit?: { dataTransfer?: DataTransfer }): DragEvent;\n};\n\ninterface DynamicsCompressorNode extends AudioNode {\n readonly attack: AudioParam;\n readonly knee: AudioParam;\n readonly ratio: AudioParam;\n readonly reduction: number;\n readonly release: AudioParam;\n readonly threshold: AudioParam;\n}\n\ndeclare var DynamicsCompressorNode: {\n prototype: DynamicsCompressorNode;\n new(): DynamicsCompressorNode;\n};\n\ninterface ElementEventMap extends GlobalEventHandlersEventMap {\n "ariarequest": Event;\n "command": Event;\n "gotpointercapture": PointerEvent;\n "lostpointercapture": PointerEvent;\n "MSGestureChange": MSGestureEvent;\n "MSGestureDoubleTap": MSGestureEvent;\n "MSGestureEnd": MSGestureEvent;\n "MSGestureHold": MSGestureEvent;\n "MSGestureStart": MSGestureEvent;\n "MSGestureTap": MSGestureEvent;\n "MSGotPointerCapture": MSPointerEvent;\n "MSInertiaStart": MSGestureEvent;\n "MSLostPointerCapture": MSPointerEvent;\n "MSPointerCancel": MSPointerEvent;\n "MSPointerDown": MSPointerEvent;\n "MSPointerEnter": MSPointerEvent;\n "MSPointerLeave": MSPointerEvent;\n "MSPointerMove": MSPointerEvent;\n "MSPointerOut": MSPointerEvent;\n "MSPointerOver": MSPointerEvent;\n "MSPointerUp": MSPointerEvent;\n "touchcancel": TouchEvent;\n "touchend": TouchEvent;\n "touchmove": TouchEvent;\n "touchstart": TouchEvent;\n "webkitfullscreenchange": Event;\n "webkitfullscreenerror": Event;\n}\n\ninterface Element extends Node, GlobalEventHandlers, ElementTraversal, NodeSelector, ChildNode, ParentNode {\n readonly classList: DOMTokenList;\n className: string;\n readonly clientHeight: number;\n readonly clientLeft: number;\n readonly clientTop: number;\n readonly clientWidth: number;\n id: string;\n innerHTML: string;\n msContentZoomFactor: number;\n readonly msRegionOverflow: string;\n onariarequest: (this: Element, ev: Event) => any;\n oncommand: (this: Element, ev: Event) => any;\n ongotpointercapture: (this: Element, ev: PointerEvent) => any;\n onlostpointercapture: (this: Element, ev: PointerEvent) => any;\n onmsgesturechange: (this: Element, ev: MSGestureEvent) => any;\n onmsgesturedoubletap: (this: Element, ev: MSGestureEvent) => any;\n onmsgestureend: (this: Element, ev: MSGestureEvent) => any;\n onmsgesturehold: (this: Element, ev: MSGestureEvent) => any;\n onmsgesturestart: (this: Element, ev: MSGestureEvent) => any;\n onmsgesturetap: (this: Element, ev: MSGestureEvent) => any;\n onmsgotpointercapture: (this: Element, ev: MSPointerEvent) => any;\n onmsinertiastart: (this: Element, ev: MSGestureEvent) => any;\n onmslostpointercapture: (this: Element, ev: MSPointerEvent) => any;\n onmspointercancel: (this: Element, ev: MSPointerEvent) => any;\n onmspointerdown: (this: Element, ev: MSPointerEvent) => any;\n onmspointerenter: (this: Element, ev: MSPointerEvent) => any;\n onmspointerleave: (this: Element, ev: MSPointerEvent) => any;\n onmspointermove: (this: Element, ev: MSPointerEvent) => any;\n onmspointerout: (this: Element, ev: MSPointerEvent) => any;\n onmspointerover: (this: Element, ev: MSPointerEvent) => any;\n onmspointerup: (this: Element, ev: MSPointerEvent) => any;\n ontouchcancel: (ev: TouchEvent) => any;\n ontouchend: (ev: TouchEvent) => any;\n ontouchmove: (ev: TouchEvent) => any;\n ontouchstart: (ev: TouchEvent) => any;\n onwebkitfullscreenchange: (this: Element, ev: Event) => any;\n onwebkitfullscreenerror: (this: Element, ev: Event) => any;\n outerHTML: string;\n readonly prefix: string | null;\n readonly scrollHeight: number;\n scrollLeft: number;\n scrollTop: number;\n readonly scrollWidth: number;\n readonly tagName: string;\n readonly assignedSlot: HTMLSlotElement | null;\n slot: string;\n readonly shadowRoot: ShadowRoot | null;\n getAttribute(name: string): string | null;\n getAttributeNode(name: string): Attr;\n getAttributeNodeNS(namespaceURI: string, localName: string): Attr;\n getAttributeNS(namespaceURI: string, localName: string): string;\n getBoundingClientRect(): ClientRect;\n getClientRects(): ClientRectList;\n getElementsByTagName<K extends keyof ElementListTagNameMap>(name: K): ElementListTagNameMap[K];\n getElementsByTagName(name: string): NodeListOf<Element>;\n getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;\n getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;\n getElementsByTagNameNS(namespaceURI: string, localName: string): HTMLCollectionOf<Element>;\n hasAttribute(name: string): boolean;\n hasAttributeNS(namespaceURI: string, localName: string): boolean;\n msGetRegionContent(): MSRangeCollection;\n msGetUntransformedBounds(): ClientRect;\n msMatchesSelector(selectors: string): boolean;\n msReleasePointerCapture(pointerId: number): void;\n msSetPointerCapture(pointerId: number): void;\n msZoomTo(args: MsZoomToOptions): void;\n releasePointerCapture(pointerId: number): void;\n removeAttribute(qualifiedName: string): void;\n removeAttributeNode(oldAttr: Attr): Attr;\n removeAttributeNS(namespaceURI: string, localName: string): void;\n requestFullscreen(): void;\n requestPointerLock(): void;\n setAttribute(name: string, value: string): void;\n setAttributeNode(newAttr: Attr): Attr;\n setAttributeNodeNS(newAttr: Attr): Attr;\n setAttributeNS(namespaceURI: string, qualifiedName: string, value: string): void;\n setPointerCapture(pointerId: number): void;\n webkitMatchesSelector(selectors: string): boolean;\n webkitRequestFullscreen(): void;\n webkitRequestFullScreen(): void;\n getElementsByClassName(classNames: string): NodeListOf<Element>;\n matches(selector: string): boolean;\n closest(selector: string): Element | null;\n scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;\n scroll(options?: ScrollToOptions): void;\n scroll(x: number, y: number): void;\n scrollTo(options?: ScrollToOptions): void;\n scrollTo(x: number, y: number): void;\n scrollBy(options?: ScrollToOptions): void;\n scrollBy(x: number, y: number): void;\n insertAdjacentElement(position: InsertPosition, insertedElement: Element): Element | null;\n insertAdjacentHTML(where: InsertPosition, html: string): void;\n insertAdjacentText(where: InsertPosition, text: string): void;\n attachShadow(shadowRootInitDict: ShadowRootInit): ShadowRoot;\n addEventListener<K extends keyof ElementEventMap>(type: K, listener: (this: Element, ev: ElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Element: {\n prototype: Element;\n new(): Element;\n};\n\ninterface ErrorEvent extends Event {\n readonly colno: number;\n readonly error: any;\n readonly filename: string;\n readonly lineno: number;\n readonly message: string;\n initErrorEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, messageArg: string, filenameArg: string, linenoArg: number): void;\n}\n\ndeclare var ErrorEvent: {\n prototype: ErrorEvent;\n new(type: string, errorEventInitDict?: ErrorEventInit): ErrorEvent;\n};\n\ninterface Event {\n readonly bubbles: boolean;\n readonly cancelable: boolean;\n cancelBubble: boolean;\n readonly currentTarget: EventTarget;\n readonly defaultPrevented: boolean;\n readonly eventPhase: number;\n readonly isTrusted: boolean;\n returnValue: boolean;\n readonly srcElement: Element | null;\n readonly target: EventTarget;\n readonly timeStamp: number;\n readonly type: string;\n readonly scoped: boolean;\n initEvent(eventTypeArg: string, canBubbleArg: boolean, cancelableArg: boolean): void;\n preventDefault(): void;\n stopImmediatePropagation(): void;\n stopPropagation(): void;\n deepPath(): EventTarget[];\n readonly AT_TARGET: number;\n readonly BUBBLING_PHASE: number;\n readonly CAPTURING_PHASE: number;\n}\n\ndeclare var Event: {\n prototype: Event;\n new(typeArg: string, eventInitDict?: EventInit): Event;\n readonly AT_TARGET: number;\n readonly BUBBLING_PHASE: number;\n readonly CAPTURING_PHASE: number;\n};\n\ninterface EventTarget {\n addEventListener(type: string, listener?: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n dispatchEvent(evt: Event): boolean;\n removeEventListener(type: string, listener?: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var EventTarget: {\n prototype: EventTarget;\n new(): EventTarget;\n};\n\ninterface EXT_frag_depth {\n}\n\ndeclare var EXT_frag_depth: {\n prototype: EXT_frag_depth;\n new(): EXT_frag_depth;\n};\n\ninterface EXT_texture_filter_anisotropic {\n readonly MAX_TEXTURE_MAX_ANISOTROPY_EXT: number;\n readonly TEXTURE_MAX_ANISOTROPY_EXT: number;\n}\n\ndeclare var EXT_texture_filter_anisotropic: {\n prototype: EXT_texture_filter_anisotropic;\n new(): EXT_texture_filter_anisotropic;\n readonly MAX_TEXTURE_MAX_ANISOTROPY_EXT: number;\n readonly TEXTURE_MAX_ANISOTROPY_EXT: number;\n};\n\ninterface ExtensionScriptApis {\n extensionIdToShortId(extensionId: string): number;\n fireExtensionApiTelemetry(functionName: string, isSucceeded: boolean, isSupported: boolean): void;\n genericFunction(routerAddress: any, parameters?: string, callbackId?: number): void;\n genericSynchronousFunction(functionId: number, parameters?: string): string;\n getExtensionId(): string;\n registerGenericFunctionCallbackHandler(callbackHandler: any): void;\n registerGenericPersistentCallbackHandler(callbackHandler: any): void;\n}\n\ndeclare var ExtensionScriptApis: {\n prototype: ExtensionScriptApis;\n new(): ExtensionScriptApis;\n};\n\ninterface External {\n}\n\ndeclare var External: {\n prototype: External;\n new(): External;\n};\n\ninterface File extends Blob {\n readonly lastModifiedDate: any;\n readonly name: string;\n readonly webkitRelativePath: string;\n}\n\ndeclare var File: {\n prototype: File;\n new (parts: (ArrayBuffer | ArrayBufferView | Blob | string)[], filename: string, properties?: FilePropertyBag): File;\n};\n\ninterface FileList {\n readonly length: number;\n item(index: number): File;\n [index: number]: File;\n}\n\ndeclare var FileList: {\n prototype: FileList;\n new(): FileList;\n};\n\ninterface FileReader extends EventTarget, MSBaseReader {\n readonly error: DOMError;\n readAsArrayBuffer(blob: Blob): void;\n readAsBinaryString(blob: Blob): void;\n readAsDataURL(blob: Blob): void;\n readAsText(blob: Blob, encoding?: string): void;\n addEventListener<K extends keyof MSBaseReaderEventMap>(type: K, listener: (this: FileReader, ev: MSBaseReaderEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var FileReader: {\n prototype: FileReader;\n new(): FileReader;\n};\n\ninterface FocusEvent extends UIEvent {\n readonly relatedTarget: EventTarget;\n initFocusEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, relatedTargetArg: EventTarget): void;\n}\n\ndeclare var FocusEvent: {\n prototype: FocusEvent;\n new(typeArg: string, eventInitDict?: FocusEventInit): FocusEvent;\n};\n\ninterface FocusNavigationEvent extends Event {\n readonly navigationReason: NavigationReason;\n readonly originHeight: number;\n readonly originLeft: number;\n readonly originTop: number;\n readonly originWidth: number;\n requestFocus(): void;\n}\n\ndeclare var FocusNavigationEvent: {\n prototype: FocusNavigationEvent;\n new(type: string, eventInitDict?: FocusNavigationEventInit): FocusNavigationEvent;\n};\n\ninterface FormData {\n append(name: string, value: string | Blob, fileName?: string): void;\n delete(name: string): void;\n get(name: string): FormDataEntryValue | null;\n getAll(name: string): FormDataEntryValue[];\n has(name: string): boolean;\n set(name: string, value: string | Blob, fileName?: string): void;\n}\n\ndeclare var FormData: {\n prototype: FormData;\n new (form?: HTMLFormElement): FormData;\n};\n\ninterface GainNode extends AudioNode {\n readonly gain: AudioParam;\n}\n\ndeclare var GainNode: {\n prototype: GainNode;\n new(): GainNode;\n};\n\ninterface Gamepad {\n readonly axes: number[];\n readonly buttons: GamepadButton[];\n readonly connected: boolean;\n readonly id: string;\n readonly index: number;\n readonly mapping: string;\n readonly timestamp: number;\n}\n\ndeclare var Gamepad: {\n prototype: Gamepad;\n new(): Gamepad;\n};\n\ninterface GamepadButton {\n readonly pressed: boolean;\n readonly value: number;\n}\n\ndeclare var GamepadButton: {\n prototype: GamepadButton;\n new(): GamepadButton;\n};\n\ninterface GamepadEvent extends Event {\n readonly gamepad: Gamepad;\n}\n\ndeclare var GamepadEvent: {\n prototype: GamepadEvent;\n new(typeArg: string, eventInitDict?: GamepadEventInit): GamepadEvent;\n};\n\ninterface Geolocation {\n clearWatch(watchId: number): void;\n getCurrentPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback, options?: PositionOptions): void;\n watchPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback, options?: PositionOptions): number;\n}\n\ndeclare var Geolocation: {\n prototype: Geolocation;\n new(): Geolocation;\n};\n\ninterface HashChangeEvent extends Event {\n readonly newURL: string | null;\n readonly oldURL: string | null;\n}\n\ndeclare var HashChangeEvent: {\n prototype: HashChangeEvent;\n new(typeArg: string, eventInitDict?: HashChangeEventInit): HashChangeEvent;\n};\n\ninterface Headers {\n append(name: string, value: string): void;\n delete(name: string): void;\n forEach(callback: ForEachCallback): void;\n get(name: string): string | null;\n has(name: string): boolean;\n set(name: string, value: string): void;\n}\n\ndeclare var Headers: {\n prototype: Headers;\n new(init?: any): Headers;\n};\n\ninterface History {\n readonly length: number;\n readonly state: any;\n scrollRestoration: ScrollRestoration;\n back(): void;\n forward(): void;\n go(delta?: number): void;\n pushState(data: any, title: string, url?: string | null): void;\n replaceState(data: any, title: string, url?: string | null): void;\n}\n\ndeclare var History: {\n prototype: History;\n new(): History;\n};\n\ninterface HTMLAllCollection {\n readonly length: number;\n item(nameOrIndex?: string): HTMLCollection | Element | null;\n namedItem(name: string): HTMLCollection | Element | null;\n [index: number]: Element;\n}\n\ndeclare var HTMLAllCollection: {\n prototype: HTMLAllCollection;\n new(): HTMLAllCollection;\n};\n\ninterface HTMLAnchorElement extends HTMLElement {\n /**\n * Sets or retrieves the character set used to encode the object.\n */\n charset: string;\n /**\n * Sets or retrieves the coordinates of the object.\n */\n coords: string;\n download: string;\n /**\n * Contains the anchor portion of the URL including the hash sign (#).\n */\n hash: string;\n /**\n * Contains the hostname and port values of the URL.\n */\n host: string;\n /**\n * Contains the hostname of a URL.\n */\n hostname: string;\n /**\n * Sets or retrieves a destination URL or an anchor point.\n */\n href: string;\n /**\n * Sets or retrieves the language code of the object.\n */\n hreflang: string;\n Methods: string;\n readonly mimeType: string;\n /**\n * Sets or retrieves the shape of the object.\n */\n name: string;\n readonly nameProp: string;\n /**\n * Contains the pathname of the URL.\n */\n pathname: string;\n /**\n * Sets or retrieves the port number associated with a URL.\n */\n port: string;\n /**\n * Contains the protocol of the URL.\n */\n protocol: string;\n readonly protocolLong: string;\n /**\n * Sets or retrieves the relationship between the object and the destination of the link.\n */\n rel: string;\n /**\n * Sets or retrieves the relationship between the object and the destination of the link.\n */\n rev: string;\n /**\n * Sets or retrieves the substring of the href property that follows the question mark.\n */\n search: string;\n /**\n * Sets or retrieves the shape of the object.\n */\n shape: string;\n /**\n * Sets or retrieves the window or frame at which to target content.\n */\n target: string;\n /**\n * Retrieves or sets the text of the object as a string.\n */\n text: string;\n type: string;\n urn: string;\n /**\n * Returns a string representation of an object.\n */\n toString(): string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLAnchorElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLAnchorElement: {\n prototype: HTMLAnchorElement;\n new(): HTMLAnchorElement;\n};\n\ninterface HTMLAppletElement extends HTMLElement {\n align: string;\n /**\n * Sets or retrieves a text alternative to the graphic.\n */\n alt: string;\n /**\n * Gets or sets the optional alternative HTML script to execute if the object fails to load.\n */\n altHtml: string;\n /**\n * Sets or retrieves a character string that can be used to implement your own archive functionality for the object.\n */\n archive: string;\n /**\n * Retrieves a string of the URL where the object tag can be found. This is often the href of the document that the object is in, or the value set by a base element.\n */\n readonly BaseHref: string;\n border: string;\n code: string;\n /**\n * Sets or retrieves the URL of the component.\n */\n codeBase: string;\n /**\n * Sets or retrieves the Internet media type for the code associated with the object.\n */\n codeType: string;\n /**\n * Address of a pointer to the document this page or frame contains. If there is no document, then null will be returned.\n */\n readonly contentDocument: Document;\n /**\n * Sets or retrieves the URL that references the data of the object.\n */\n data: string;\n /**\n * Sets or retrieves a character string that can be used to implement your own declare functionality for the object.\n */\n declare: boolean;\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the height of the object.\n */\n height: string;\n hspace: number;\n /**\n * Sets or retrieves the shape of the object.\n */\n name: string;\n object: string | null;\n /**\n * Sets or retrieves a message to be displayed while an object is loading.\n */\n standby: string;\n /**\n * Returns the content type of the object.\n */\n type: string;\n /**\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\n */\n useMap: string;\n vspace: number;\n width: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLAppletElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLAppletElement: {\n prototype: HTMLAppletElement;\n new(): HTMLAppletElement;\n};\n\ninterface HTMLAreaElement extends HTMLElement {\n /**\n * Sets or retrieves a text alternative to the graphic.\n */\n alt: string;\n /**\n * Sets or retrieves the coordinates of the object.\n */\n coords: string;\n download: string;\n /**\n * Sets or retrieves the subsection of the href property that follows the number sign (#).\n */\n hash: string;\n /**\n * Sets or retrieves the hostname and port number of the location or URL.\n */\n host: string;\n /**\n * Sets or retrieves the host name part of the location or URL.\n */\n hostname: string;\n /**\n * Sets or retrieves a destination URL or an anchor point.\n */\n href: string;\n /**\n * Sets or gets whether clicks in this region cause action.\n */\n noHref: boolean;\n /**\n * Sets or retrieves the file name or path specified by the object.\n */\n pathname: string;\n /**\n * Sets or retrieves the port number associated with a URL.\n */\n port: string;\n /**\n * Sets or retrieves the protocol portion of a URL.\n */\n protocol: string;\n rel: string;\n /**\n * Sets or retrieves the substring of the href property that follows the question mark.\n */\n search: string;\n /**\n * Sets or retrieves the shape of the object.\n */\n shape: string;\n /**\n * Sets or retrieves the window or frame at which to target content.\n */\n target: string;\n /**\n * Returns a string representation of an object.\n */\n toString(): string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLAreaElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLAreaElement: {\n prototype: HTMLAreaElement;\n new(): HTMLAreaElement;\n};\n\ninterface HTMLAreasCollection extends HTMLCollectionBase {\n}\n\ndeclare var HTMLAreasCollection: {\n prototype: HTMLAreasCollection;\n new(): HTMLAreasCollection;\n};\n\ninterface HTMLAudioElement extends HTMLMediaElement {\n addEventListener<K extends keyof HTMLMediaElementEventMap>(type: K, listener: (this: HTMLAudioElement, ev: HTMLMediaElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLAudioElement: {\n prototype: HTMLAudioElement;\n new(): HTMLAudioElement;\n};\n\ninterface HTMLBaseElement extends HTMLElement {\n /**\n * Gets or sets the baseline URL on which relative links are based.\n */\n href: string;\n /**\n * Sets or retrieves the window or frame at which to target content.\n */\n target: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBaseElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLBaseElement: {\n prototype: HTMLBaseElement;\n new(): HTMLBaseElement;\n};\n\ninterface HTMLBaseFontElement extends HTMLElement, DOML2DeprecatedColorProperty {\n /**\n * Sets or retrieves the current typeface family.\n */\n face: string;\n /**\n * Sets or retrieves the font size of the object.\n */\n size: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBaseFontElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLBaseFontElement: {\n prototype: HTMLBaseFontElement;\n new(): HTMLBaseFontElement;\n};\n\ninterface HTMLBodyElementEventMap extends HTMLElementEventMap {\n "afterprint": Event;\n "beforeprint": Event;\n "beforeunload": BeforeUnloadEvent;\n "blur": FocusEvent;\n "error": ErrorEvent;\n "focus": FocusEvent;\n "hashchange": HashChangeEvent;\n "load": Event;\n "message": MessageEvent;\n "offline": Event;\n "online": Event;\n "orientationchange": Event;\n "pagehide": PageTransitionEvent;\n "pageshow": PageTransitionEvent;\n "popstate": PopStateEvent;\n "resize": UIEvent;\n "scroll": UIEvent;\n "storage": StorageEvent;\n "unload": Event;\n}\n\ninterface HTMLBodyElement extends HTMLElement {\n aLink: any;\n background: string;\n bgColor: any;\n bgProperties: string;\n link: any;\n noWrap: boolean;\n onafterprint: (this: HTMLBodyElement, ev: Event) => any;\n onbeforeprint: (this: HTMLBodyElement, ev: Event) => any;\n onbeforeunload: (this: HTMLBodyElement, ev: BeforeUnloadEvent) => any;\n onblur: (this: HTMLBodyElement, ev: FocusEvent) => any;\n onerror: (this: HTMLBodyElement, ev: ErrorEvent) => any;\n onfocus: (this: HTMLBodyElement, ev: FocusEvent) => any;\n onhashchange: (this: HTMLBodyElement, ev: HashChangeEvent) => any;\n onload: (this: HTMLBodyElement, ev: Event) => any;\n onmessage: (this: HTMLBodyElement, ev: MessageEvent) => any;\n onoffline: (this: HTMLBodyElement, ev: Event) => any;\n ononline: (this: HTMLBodyElement, ev: Event) => any;\n onorientationchange: (this: HTMLBodyElement, ev: Event) => any;\n onpagehide: (this: HTMLBodyElement, ev: PageTransitionEvent) => any;\n onpageshow: (this: HTMLBodyElement, ev: PageTransitionEvent) => any;\n onpopstate: (this: HTMLBodyElement, ev: PopStateEvent) => any;\n onresize: (this: HTMLBodyElement, ev: UIEvent) => any;\n onscroll: (this: HTMLBodyElement, ev: UIEvent) => any;\n onstorage: (this: HTMLBodyElement, ev: StorageEvent) => any;\n onunload: (this: HTMLBodyElement, ev: Event) => any;\n text: any;\n vLink: any;\n addEventListener<K extends keyof HTMLBodyElementEventMap>(type: K, listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLBodyElement: {\n prototype: HTMLBodyElement;\n new(): HTMLBodyElement;\n};\n\ninterface HTMLBRElement extends HTMLElement {\n /**\n * Sets or retrieves the side on which floating objects are not to be positioned when any IHTMLBlockElement is inserted into the document.\n */\n clear: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBRElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLBRElement: {\n prototype: HTMLBRElement;\n new(): HTMLBRElement;\n};\n\ninterface HTMLButtonElement extends HTMLElement {\n /**\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\n */\n autofocus: boolean;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Overrides the action attribute (where the data on a form is sent) on the parent form element.\n */\n formAction: string;\n /**\n * Used to override the encoding (formEnctype attribute) specified on the form element.\n */\n formEnctype: string;\n /**\n * Overrides the submit method attribute previously specified on a form element.\n */\n formMethod: string;\n /**\n * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.\n */\n formNoValidate: string;\n /**\n * Overrides the target attribute on a form element.\n */\n formTarget: string;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n status: any;\n /**\n * Gets the classification and default behavior of the button.\n */\n type: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n /**\n * Sets or retrieves the default or selected value of the control.\n */\n value: string;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLButtonElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLButtonElement: {\n prototype: HTMLButtonElement;\n new(): HTMLButtonElement;\n};\n\ninterface HTMLCanvasElement extends HTMLElement {\n /**\n * Gets or sets the height of a canvas element on a document.\n */\n height: number;\n /**\n * Gets or sets the width of a canvas element on a document.\n */\n width: number;\n /**\n * Returns an object that provides methods and properties for drawing and manipulating images and graphics on a canvas element in a document. A context object includes information about colors, line widths, fonts, and other graphic parameters that can be drawn on a canvas.\n * @param contextId The identifier (ID) of the type of canvas to create. Internet Explorer 9 and Internet Explorer 10 support only a 2-D context using canvas.getContext("2d"); IE11 Preview also supports 3-D or WebGL context using canvas.getContext("experimental-webgl");\n */\n getContext(contextId: "2d", contextAttributes?: Canvas2DContextAttributes): CanvasRenderingContext2D | null;\n getContext(contextId: "webgl" | "experimental-webgl", contextAttributes?: WebGLContextAttributes): WebGLRenderingContext | null;\n getContext(contextId: string, contextAttributes?: {}): CanvasRenderingContext2D | WebGLRenderingContext | null;\n /**\n * Returns a blob object encoded as a Portable Network Graphics (PNG) format from a canvas image or drawing.\n */\n msToBlob(): Blob;\n /**\n * Returns the content of the current canvas as an image that you can use as a source for another canvas or an HTML element.\n * @param type The standard MIME type for the image format to return. If you do not specify this parameter, the default value is a PNG format image.\n */\n toDataURL(type?: string, ...args: any[]): string;\n toBlob(callback: (result: Blob | null) => void, type?: string, ...arguments: any[]): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLCanvasElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLCanvasElement: {\n prototype: HTMLCanvasElement;\n new(): HTMLCanvasElement;\n};\n\ninterface HTMLCollectionBase {\n /**\n * Sets or retrieves the number of objects in a collection.\n */\n readonly length: number;\n /**\n * Retrieves an object from various collections.\n */\n item(index: number): Element;\n [index: number]: Element;\n}\n\ninterface HTMLCollection extends HTMLCollectionBase {\n /**\n * Retrieves a select object or an object from an options collection.\n */\n namedItem(name: string): Element | null;\n}\n\ndeclare var HTMLCollection: {\n prototype: HTMLCollection;\n new(): HTMLCollection;\n};\n\ninterface HTMLDataElement extends HTMLElement {\n value: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDataElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDataElement: {\n prototype: HTMLDataElement;\n new(): HTMLDataElement;\n};\n\ninterface HTMLDataListElement extends HTMLElement {\n options: HTMLCollectionOf<HTMLOptionElement>;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDataListElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDataListElement: {\n prototype: HTMLDataListElement;\n new(): HTMLDataListElement;\n};\n\ninterface HTMLDirectoryElement extends HTMLElement {\n compact: boolean;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDirectoryElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDirectoryElement: {\n prototype: HTMLDirectoryElement;\n new(): HTMLDirectoryElement;\n};\n\ninterface HTMLDivElement extends HTMLElement {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n /**\n * Sets or retrieves whether the browser automatically performs wordwrap.\n */\n noWrap: boolean;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDivElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDivElement: {\n prototype: HTMLDivElement;\n new(): HTMLDivElement;\n};\n\ninterface HTMLDListElement extends HTMLElement {\n compact: boolean;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDListElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDListElement: {\n prototype: HTMLDListElement;\n new(): HTMLDListElement;\n};\n\ninterface HTMLDocument extends Document {\n addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: HTMLDocument, ev: DocumentEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDocument: {\n prototype: HTMLDocument;\n new(): HTMLDocument;\n};\n\ninterface HTMLElementEventMap extends ElementEventMap {\n "abort": UIEvent;\n "activate": UIEvent;\n "beforeactivate": UIEvent;\n "beforecopy": ClipboardEvent;\n "beforecut": ClipboardEvent;\n "beforedeactivate": UIEvent;\n "beforepaste": ClipboardEvent;\n "blur": FocusEvent;\n "canplay": Event;\n "canplaythrough": Event;\n "change": Event;\n "click": MouseEvent;\n "contextmenu": PointerEvent;\n "copy": ClipboardEvent;\n "cuechange": Event;\n "cut": ClipboardEvent;\n "dblclick": MouseEvent;\n "deactivate": UIEvent;\n "drag": DragEvent;\n "dragend": DragEvent;\n "dragenter": DragEvent;\n "dragleave": DragEvent;\n "dragover": DragEvent;\n "dragstart": DragEvent;\n "drop": DragEvent;\n "durationchange": Event;\n "emptied": Event;\n "ended": MediaStreamErrorEvent;\n "error": ErrorEvent;\n "focus": FocusEvent;\n "input": Event;\n "invalid": Event;\n "keydown": KeyboardEvent;\n "keypress": KeyboardEvent;\n "keyup": KeyboardEvent;\n "load": Event;\n "loadeddata": Event;\n "loadedmetadata": Event;\n "loadstart": Event;\n "mousedown": MouseEvent;\n "mouseenter": MouseEvent;\n "mouseleave": MouseEvent;\n "mousemove": MouseEvent;\n "mouseout": MouseEvent;\n "mouseover": MouseEvent;\n "mouseup": MouseEvent;\n "mousewheel": WheelEvent;\n "MSContentZoom": UIEvent;\n "MSManipulationStateChanged": MSManipulationEvent;\n "paste": ClipboardEvent;\n "pause": Event;\n "play": Event;\n "playing": Event;\n "progress": ProgressEvent;\n "ratechange": Event;\n "reset": Event;\n "scroll": UIEvent;\n "seeked": Event;\n "seeking": Event;\n "select": UIEvent;\n "selectstart": Event;\n "stalled": Event;\n "submit": Event;\n "suspend": Event;\n "timeupdate": Event;\n "volumechange": Event;\n "waiting": Event;\n}\n\ninterface HTMLElement extends Element {\n accessKey: string;\n readonly children: HTMLCollection;\n contentEditable: string;\n readonly dataset: DOMStringMap;\n dir: string;\n draggable: boolean;\n hidden: boolean;\n hideFocus: boolean;\n innerText: string;\n readonly isContentEditable: boolean;\n lang: string;\n readonly offsetHeight: number;\n readonly offsetLeft: number;\n readonly offsetParent: Element;\n readonly offsetTop: number;\n readonly offsetWidth: number;\n onabort: (this: HTMLElement, ev: UIEvent) => any;\n onactivate: (this: HTMLElement, ev: UIEvent) => any;\n onbeforeactivate: (this: HTMLElement, ev: UIEvent) => any;\n onbeforecopy: (this: HTMLElement, ev: ClipboardEvent) => any;\n onbeforecut: (this: HTMLElement, ev: ClipboardEvent) => any;\n onbeforedeactivate: (this: HTMLElement, ev: UIEvent) => any;\n onbeforepaste: (this: HTMLElement, ev: ClipboardEvent) => any;\n onblur: (this: HTMLElement, ev: FocusEvent) => any;\n oncanplay: (this: HTMLElement, ev: Event) => any;\n oncanplaythrough: (this: HTMLElement, ev: Event) => any;\n onchange: (this: HTMLElement, ev: Event) => any;\n onclick: (this: HTMLElement, ev: MouseEvent) => any;\n oncontextmenu: (this: HTMLElement, ev: PointerEvent) => any;\n oncopy: (this: HTMLElement, ev: ClipboardEvent) => any;\n oncuechange: (this: HTMLElement, ev: Event) => any;\n oncut: (this: HTMLElement, ev: ClipboardEvent) => any;\n ondblclick: (this: HTMLElement, ev: MouseEvent) => any;\n ondeactivate: (this: HTMLElement, ev: UIEvent) => any;\n ondrag: (this: HTMLElement, ev: DragEvent) => any;\n ondragend: (this: HTMLElement, ev: DragEvent) => any;\n ondragenter: (this: HTMLElement, ev: DragEvent) => any;\n ondragleave: (this: HTMLElement, ev: DragEvent) => any;\n ondragover: (this: HTMLElement, ev: DragEvent) => any;\n ondragstart: (this: HTMLElement, ev: DragEvent) => any;\n ondrop: (this: HTMLElement, ev: DragEvent) => any;\n ondurationchange: (this: HTMLElement, ev: Event) => any;\n onemptied: (this: HTMLElement, ev: Event) => any;\n onended: (this: HTMLElement, ev: MediaStreamErrorEvent) => any;\n onerror: (this: HTMLElement, ev: ErrorEvent) => any;\n onfocus: (this: HTMLElement, ev: FocusEvent) => any;\n oninput: (this: HTMLElement, ev: Event) => any;\n oninvalid: (this: HTMLElement, ev: Event) => any;\n onkeydown: (this: HTMLElement, ev: KeyboardEvent) => any;\n onkeypress: (this: HTMLElement, ev: KeyboardEvent) => any;\n onkeyup: (this: HTMLElement, ev: KeyboardEvent) => any;\n onload: (this: HTMLElement, ev: Event) => any;\n onloadeddata: (this: HTMLElement, ev: Event) => any;\n onloadedmetadata: (this: HTMLElement, ev: Event) => any;\n onloadstart: (this: HTMLElement, ev: Event) => any;\n onmousedown: (this: HTMLElement, ev: MouseEvent) => any;\n onmouseenter: (this: HTMLElement, ev: MouseEvent) => any;\n onmouseleave: (this: HTMLElement, ev: MouseEvent) => any;\n onmousemove: (this: HTMLElement, ev: MouseEvent) => any;\n onmouseout: (this: HTMLElement, ev: MouseEvent) => any;\n onmouseover: (this: HTMLElement, ev: MouseEvent) => any;\n onmouseup: (this: HTMLElement, ev: MouseEvent) => any;\n onmousewheel: (this: HTMLElement, ev: WheelEvent) => any;\n onmscontentzoom: (this: HTMLElement, ev: UIEvent) => any;\n onmsmanipulationstatechanged: (this: HTMLElement, ev: MSManipulationEvent) => any;\n onpaste: (this: HTMLElement, ev: ClipboardEvent) => any;\n onpause: (this: HTMLElement, ev: Event) => any;\n onplay: (this: HTMLElement, ev: Event) => any;\n onplaying: (this: HTMLElement, ev: Event) => any;\n onprogress: (this: HTMLElement, ev: ProgressEvent) => any;\n onratechange: (this: HTMLElement, ev: Event) => any;\n onreset: (this: HTMLElement, ev: Event) => any;\n onscroll: (this: HTMLElement, ev: UIEvent) => any;\n onseeked: (this: HTMLElement, ev: Event) => any;\n onseeking: (this: HTMLElement, ev: Event) => any;\n onselect: (this: HTMLElement, ev: UIEvent) => any;\n onselectstart: (this: HTMLElement, ev: Event) => any;\n onstalled: (this: HTMLElement, ev: Event) => any;\n onsubmit: (this: HTMLElement, ev: Event) => any;\n onsuspend: (this: HTMLElement, ev: Event) => any;\n ontimeupdate: (this: HTMLElement, ev: Event) => any;\n onvolumechange: (this: HTMLElement, ev: Event) => any;\n onwaiting: (this: HTMLElement, ev: Event) => any;\n outerText: string;\n spellcheck: boolean;\n readonly style: CSSStyleDeclaration;\n tabIndex: number;\n title: string;\n blur(): void;\n click(): void;\n dragDrop(): boolean;\n focus(): void;\n msGetInputContext(): MSInputMethodContext;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLElement: {\n prototype: HTMLElement;\n new(): HTMLElement;\n};\n\ninterface HTMLEmbedElement extends HTMLElement, GetSVGDocument {\n /**\n * Sets or retrieves the height of the object.\n */\n height: string;\n hidden: any;\n /**\n * Gets or sets whether the DLNA PlayTo device is available.\n */\n msPlayToDisabled: boolean;\n /**\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\n */\n msPlayToPreferredSourceUri: string;\n /**\n * Gets or sets the primary DLNA PlayTo device.\n */\n msPlayToPrimary: boolean;\n /**\n * Gets the source associated with the media element for use by the PlayToManager.\n */\n readonly msPlayToSource: any;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n /**\n * Retrieves the palette used for the embedded document.\n */\n readonly palette: string;\n /**\n * Retrieves the URL of the plug-in used to view an embedded document.\n */\n readonly pluginspage: string;\n readonly readyState: string;\n /**\n * Sets or retrieves a URL to be loaded by the object.\n */\n src: string;\n /**\n * Sets or retrieves the height and width units of the embed object.\n */\n units: string;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLEmbedElement: {\n prototype: HTMLEmbedElement;\n new(): HTMLEmbedElement;\n};\n\ninterface HTMLFieldSetElement extends HTMLElement {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n name: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFieldSetElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLFieldSetElement: {\n prototype: HTMLFieldSetElement;\n new(): HTMLFieldSetElement;\n};\n\ninterface HTMLFontElement extends HTMLElement, DOML2DeprecatedColorProperty, DOML2DeprecatedSizeProperty {\n /**\n * Sets or retrieves the current typeface family.\n */\n face: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFontElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLFontElement: {\n prototype: HTMLFontElement;\n new(): HTMLFontElement;\n};\n\ninterface HTMLFormControlsCollection extends HTMLCollectionBase {\n namedItem(name: string): HTMLCollection | Element | null;\n}\n\ndeclare var HTMLFormControlsCollection: {\n prototype: HTMLFormControlsCollection;\n new(): HTMLFormControlsCollection;\n};\n\ninterface HTMLFormElement extends HTMLElement {\n /**\n * Sets or retrieves a list of character encodings for input data that must be accepted by the server processing the form.\n */\n acceptCharset: string;\n /**\n * Sets or retrieves the URL to which the form content is sent for processing.\n */\n action: string;\n /**\n * Specifies whether autocomplete is applied to an editable text field.\n */\n autocomplete: string;\n /**\n * Retrieves a collection, in source order, of all controls in a given form.\n */\n readonly elements: HTMLFormControlsCollection;\n /**\n * Sets or retrieves the MIME encoding for the form.\n */\n encoding: string;\n /**\n * Sets or retrieves the encoding type for the form.\n */\n enctype: string;\n /**\n * Sets or retrieves the number of objects in a collection.\n */\n readonly length: number;\n /**\n * Sets or retrieves how to send the form data to the server.\n */\n method: string;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n /**\n * Designates a form that is not validated when submitted.\n */\n noValidate: boolean;\n /**\n * Sets or retrieves the window or frame at which to target content.\n */\n target: string;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Retrieves a form object or an object from an elements collection.\n * @param name Variant of type Number or String that specifies the object or collection to retrieve. If this parameter is a Number, it is the zero-based index of the object. If this parameter is a string, all objects with matching name or id properties are retrieved, and a collection is returned if more than one match is made.\n * @param index Variant of type Number that specifies the zero-based index of the object to retrieve when a collection is returned.\n */\n item(name?: any, index?: any): any;\n /**\n * Retrieves a form object or an object from an elements collection.\n */\n namedItem(name: string): any;\n /**\n * Fires when the user resets a form.\n */\n reset(): void;\n /**\n * Fires when a FORM is about to be submitted.\n */\n submit(): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFormElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n [name: string]: any;\n}\n\ndeclare var HTMLFormElement: {\n prototype: HTMLFormElement;\n new(): HTMLFormElement;\n};\n\ninterface HTMLFrameElementEventMap extends HTMLElementEventMap {\n "load": Event;\n}\n\ninterface HTMLFrameElement extends HTMLElement, GetSVGDocument {\n /**\n * Specifies the properties of a border drawn around an object.\n */\n border: string;\n /**\n * Sets or retrieves the border color of the object.\n */\n borderColor: any;\n /**\n * Retrieves the document object of the page or frame.\n */\n readonly contentDocument: Document;\n /**\n * Retrieves the object of the specified.\n */\n readonly contentWindow: Window;\n /**\n * Sets or retrieves whether to display a border for the frame.\n */\n frameBorder: string;\n /**\n * Sets or retrieves the amount of additional space between the frames.\n */\n frameSpacing: any;\n /**\n * Sets or retrieves the height of the object.\n */\n height: string | number;\n /**\n * Sets or retrieves a URI to a long description of the object.\n */\n longDesc: string;\n /**\n * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.\n */\n marginHeight: string;\n /**\n * Sets or retrieves the left and right margin widths before displaying the text in a frame.\n */\n marginWidth: string;\n /**\n * Sets or retrieves the frame name.\n */\n name: string;\n /**\n * Sets or retrieves whether the user can resize the frame.\n */\n noResize: boolean;\n /**\n * Raised when the object has been completely received from the server.\n */\n onload: (this: HTMLFrameElement, ev: Event) => any;\n /**\n * Sets or retrieves whether the frame can be scrolled.\n */\n scrolling: string;\n /**\n * Sets or retrieves a URL to be loaded by the object.\n */\n src: string;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string | number;\n addEventListener<K extends keyof HTMLFrameElementEventMap>(type: K, listener: (this: HTMLFrameElement, ev: HTMLFrameElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLFrameElement: {\n prototype: HTMLFrameElement;\n new(): HTMLFrameElement;\n};\n\ninterface HTMLFrameSetElementEventMap extends HTMLElementEventMap {\n "afterprint": Event;\n "beforeprint": Event;\n "beforeunload": BeforeUnloadEvent;\n "blur": FocusEvent;\n "error": ErrorEvent;\n "focus": FocusEvent;\n "hashchange": HashChangeEvent;\n "load": Event;\n "message": MessageEvent;\n "offline": Event;\n "online": Event;\n "orientationchange": Event;\n "pagehide": PageTransitionEvent;\n "pageshow": PageTransitionEvent;\n "popstate": PopStateEvent;\n "resize": UIEvent;\n "scroll": UIEvent;\n "storage": StorageEvent;\n "unload": Event;\n}\n\ninterface HTMLFrameSetElement extends HTMLElement {\n border: string;\n /**\n * Sets or retrieves the border color of the object.\n */\n borderColor: any;\n /**\n * Sets or retrieves the frame widths of the object.\n */\n cols: string;\n /**\n * Sets or retrieves whether to display a border for the frame.\n */\n frameBorder: string;\n /**\n * Sets or retrieves the amount of additional space between the frames.\n */\n frameSpacing: any;\n name: string;\n onafterprint: (this: HTMLFrameSetElement, ev: Event) => any;\n onbeforeprint: (this: HTMLFrameSetElement, ev: Event) => any;\n onbeforeunload: (this: HTMLFrameSetElement, ev: BeforeUnloadEvent) => any;\n /**\n * Fires when the object loses the input focus.\n */\n onblur: (this: HTMLFrameSetElement, ev: FocusEvent) => any;\n onerror: (this: HTMLFrameSetElement, ev: ErrorEvent) => any;\n /**\n * Fires when the object receives focus.\n */\n onfocus: (this: HTMLFrameSetElement, ev: FocusEvent) => any;\n onhashchange: (this: HTMLFrameSetElement, ev: HashChangeEvent) => any;\n onload: (this: HTMLFrameSetElement, ev: Event) => any;\n onmessage: (this: HTMLFrameSetElement, ev: MessageEvent) => any;\n onoffline: (this: HTMLFrameSetElement, ev: Event) => any;\n ononline: (this: HTMLFrameSetElement, ev: Event) => any;\n onorientationchange: (this: HTMLFrameSetElement, ev: Event) => any;\n onpagehide: (this: HTMLFrameSetElement, ev: PageTransitionEvent) => any;\n onpageshow: (this: HTMLFrameSetElement, ev: PageTransitionEvent) => any;\n onpopstate: (this: HTMLFrameSetElement, ev: PopStateEvent) => any;\n onresize: (this: HTMLFrameSetElement, ev: UIEvent) => any;\n onscroll: (this: HTMLFrameSetElement, ev: UIEvent) => any;\n onstorage: (this: HTMLFrameSetElement, ev: StorageEvent) => any;\n onunload: (this: HTMLFrameSetElement, ev: Event) => any;\n /**\n * Sets or retrieves the frame heights of the object.\n */\n rows: string;\n addEventListener<K extends keyof HTMLFrameSetElementEventMap>(type: K, listener: (this: HTMLFrameSetElement, ev: HTMLFrameSetElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLFrameSetElement: {\n prototype: HTMLFrameSetElement;\n new(): HTMLFrameSetElement;\n};\n\ninterface HTMLHeadElement extends HTMLElement {\n profile: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHeadElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLHeadElement: {\n prototype: HTMLHeadElement;\n new(): HTMLHeadElement;\n};\n\ninterface HTMLHeadingElement extends HTMLElement {\n /**\n * Sets or retrieves a value that indicates the table alignment.\n */\n align: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHeadingElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLHeadingElement: {\n prototype: HTMLHeadingElement;\n new(): HTMLHeadingElement;\n};\n\ninterface HTMLHRElement extends HTMLElement, DOML2DeprecatedColorProperty, DOML2DeprecatedSizeProperty {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n /**\n * Sets or retrieves whether the horizontal rule is drawn with 3-D shading.\n */\n noShade: boolean;\n /**\n * Sets or retrieves the width of the object.\n */\n width: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHRElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLHRElement: {\n prototype: HTMLHRElement;\n new(): HTMLHRElement;\n};\n\ninterface HTMLHtmlElement extends HTMLElement {\n /**\n * Sets or retrieves the DTD version that governs the current document.\n */\n version: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHtmlElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLHtmlElement: {\n prototype: HTMLHtmlElement;\n new(): HTMLHtmlElement;\n};\n\ninterface HTMLIFrameElementEventMap extends HTMLElementEventMap {\n "load": Event;\n}\n\ninterface HTMLIFrameElement extends HTMLElement, GetSVGDocument {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n allowFullscreen: boolean;\n allowPaymentRequest: boolean;\n /**\n * Specifies the properties of a border drawn around an object.\n */\n border: string;\n /**\n * Retrieves the document object of the page or frame.\n */\n readonly contentDocument: Document;\n /**\n * Retrieves the object of the specified.\n */\n readonly contentWindow: Window;\n /**\n * Sets or retrieves whether to display a border for the frame.\n */\n frameBorder: string;\n /**\n * Sets or retrieves the amount of additional space between the frames.\n */\n frameSpacing: any;\n /**\n * Sets or retrieves the height of the object.\n */\n height: string;\n /**\n * Sets or retrieves the horizontal margin for the object.\n */\n hspace: number;\n /**\n * Sets or retrieves a URI to a long description of the object.\n */\n longDesc: string;\n /**\n * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.\n */\n marginHeight: string;\n /**\n * Sets or retrieves the left and right margin widths before displaying the text in a frame.\n */\n marginWidth: string;\n /**\n * Sets or retrieves the frame name.\n */\n name: string;\n /**\n * Sets or retrieves whether the user can resize the frame.\n */\n noResize: boolean;\n /**\n * Raised when the object has been completely received from the server.\n */\n onload: (this: HTMLIFrameElement, ev: Event) => any;\n readonly sandbox: DOMSettableTokenList;\n /**\n * Sets or retrieves whether the frame can be scrolled.\n */\n scrolling: string;\n /**\n * Sets or retrieves a URL to be loaded by the object.\n */\n src: string;\n /**\n * Sets or retrieves the vertical margin for the object.\n */\n vspace: number;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n addEventListener<K extends keyof HTMLIFrameElementEventMap>(type: K, listener: (this: HTMLIFrameElement, ev: HTMLIFrameElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLIFrameElement: {\n prototype: HTMLIFrameElement;\n new(): HTMLIFrameElement;\n};\n\ninterface HTMLImageElement extends HTMLElement {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n /**\n * Sets or retrieves a text alternative to the graphic.\n */\n alt: string;\n /**\n * Specifies the properties of a border drawn around an object.\n */\n border: string;\n /**\n * Retrieves whether the object is fully loaded.\n */\n readonly complete: boolean;\n crossOrigin: string | null;\n readonly currentSrc: string;\n /**\n * Sets or retrieves the height of the object.\n */\n height: number;\n /**\n * Sets or retrieves the width of the border to draw around the object.\n */\n hspace: number;\n /**\n * Sets or retrieves whether the image is a server-side image map.\n */\n isMap: boolean;\n /**\n * Sets or retrieves a Uniform Resource Identifier (URI) to a long description of the object.\n */\n longDesc: string;\n lowsrc: string;\n /**\n * Gets or sets whether the DLNA PlayTo device is available.\n */\n msPlayToDisabled: boolean;\n msPlayToPreferredSourceUri: string;\n /**\n * Gets or sets the primary DLNA PlayTo device.\n */\n msPlayToPrimary: boolean;\n /**\n * Gets the source associated with the media element for use by the PlayToManager.\n */\n readonly msPlayToSource: any;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n /**\n * The original height of the image resource before sizing.\n */\n readonly naturalHeight: number;\n /**\n * The original width of the image resource before sizing.\n */\n readonly naturalWidth: number;\n sizes: string;\n /**\n * The address or URL of the a media resource that is to be considered.\n */\n src: string;\n srcset: string;\n /**\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\n */\n useMap: string;\n /**\n * Sets or retrieves the vertical margin for the object.\n */\n vspace: number;\n /**\n * Sets or retrieves the width of the object.\n */\n width: number;\n readonly x: number;\n readonly y: number;\n msGetAsCastingSource(): any;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLImageElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLImageElement: {\n prototype: HTMLImageElement;\n new(): HTMLImageElement;\n};\n\ninterface HTMLInputElement extends HTMLElement {\n /**\n * Sets or retrieves a comma-separated list of content types.\n */\n accept: string;\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n /**\n * Sets or retrieves a text alternative to the graphic.\n */\n alt: string;\n /**\n * Specifies whether autocomplete is applied to an editable text field.\n */\n autocomplete: string;\n /**\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\n */\n autofocus: boolean;\n /**\n * Sets or retrieves the width of the border to draw around the object.\n */\n border: string;\n /**\n * Sets or retrieves the state of the check box or radio button.\n */\n checked: boolean;\n /**\n * Retrieves whether the object is fully loaded.\n */\n readonly complete: boolean;\n /**\n * Sets or retrieves the state of the check box or radio button.\n */\n defaultChecked: boolean;\n /**\n * Sets or retrieves the initial contents of the object.\n */\n defaultValue: string;\n disabled: boolean;\n /**\n * Returns a FileList object on a file type input object.\n */\n readonly files: FileList | null;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Overrides the action attribute (where the data on a form is sent) on the parent form element.\n */\n formAction: string;\n /**\n * Used to override the encoding (formEnctype attribute) specified on the form element.\n */\n formEnctype: string;\n /**\n * Overrides the submit method attribute previously specified on a form element.\n */\n formMethod: string;\n /**\n * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.\n */\n formNoValidate: string;\n /**\n * Overrides the target attribute on a form element.\n */\n formTarget: string;\n /**\n * Sets or retrieves the height of the object.\n */\n height: string;\n /**\n * Sets or retrieves the width of the border to draw around the object.\n */\n hspace: number;\n indeterminate: boolean;\n /**\n * Specifies the ID of a pre-defined datalist of options for an input element.\n */\n readonly list: HTMLElement;\n /**\n * Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field.\n */\n max: string;\n /**\n * Sets or retrieves the maximum number of characters that the user can enter in a text control.\n */\n maxLength: number;\n /**\n * Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field.\n */\n min: string;\n /**\n * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.\n */\n multiple: boolean;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n /**\n * Gets or sets a string containing a regular expression that the user\'s input must match.\n */\n pattern: string;\n /**\n * Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field.\n */\n placeholder: string;\n readOnly: boolean;\n /**\n * When present, marks an element that can\'t be submitted without a value.\n */\n required: boolean;\n selectionDirection: string;\n /**\n * Gets or sets the end position or offset of a text selection.\n */\n selectionEnd: number;\n /**\n * Gets or sets the starting position or offset of a text selection.\n */\n selectionStart: number;\n size: number;\n /**\n * The address or URL of the a media resource that is to be considered.\n */\n src: string;\n status: boolean;\n /**\n * Defines an increment or jump between values that you want to allow the user to enter. When used with the max and min attributes, lets you control the range and increment (for example, allow only even numbers) that the user can enter into an input field.\n */\n step: string;\n /**\n * Returns the content type of the object.\n */\n type: string;\n /**\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\n */\n useMap: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n /**\n * Returns the value of the data at the cursor\'s current position.\n */\n value: string;\n valueAsDate: Date;\n /**\n * Returns the input field value as a number.\n */\n valueAsNumber: number;\n /**\n * Sets or retrieves the vertical margin for the object.\n */\n vspace: number;\n webkitdirectory: boolean;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n minLength: number;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Makes the selection equal to the current object.\n */\n select(): void;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n /**\n * Sets the start and end positions of a selection in a text field.\n * @param start The offset into the text field for the start of the selection.\n * @param end The offset into the text field for the end of the selection.\n */\n setSelectionRange(start?: number, end?: number, direction?: string): void;\n /**\n * Decrements a range input control\'s value by the value given by the Step attribute. If the optional parameter is used, it will decrement the input control\'s step value multiplied by the parameter\'s value.\n * @param n Value to decrement the value by.\n */\n stepDown(n?: number): void;\n /**\n * Increments a range input control\'s value by the value given by the Step attribute. If the optional parameter is used, will increment the input control\'s value by that value.\n * @param n Value to increment the value by.\n */\n stepUp(n?: number): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLInputElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLInputElement: {\n prototype: HTMLInputElement;\n new(): HTMLInputElement;\n};\n\ninterface HTMLLabelElement extends HTMLElement {\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the object to which the given label object is assigned.\n */\n htmlFor: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLabelElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLLabelElement: {\n prototype: HTMLLabelElement;\n new(): HTMLLabelElement;\n};\n\ninterface HTMLLegendElement extends HTMLElement {\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n align: string;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLegendElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLLegendElement: {\n prototype: HTMLLegendElement;\n new(): HTMLLegendElement;\n};\n\ninterface HTMLLIElement extends HTMLElement {\n type: string;\n /**\n * Sets or retrieves the value of a list item.\n */\n value: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLIElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLLIElement: {\n prototype: HTMLLIElement;\n new(): HTMLLIElement;\n};\n\ninterface HTMLLinkElement extends HTMLElement, LinkStyle {\n /**\n * Sets or retrieves the character set used to encode the object.\n */\n charset: string;\n disabled: boolean;\n /**\n * Sets or retrieves a destination URL or an anchor point.\n */\n href: string;\n /**\n * Sets or retrieves the language code of the object.\n */\n hreflang: string;\n /**\n * Sets or retrieves the media type.\n */\n media: string;\n /**\n * Sets or retrieves the relationship between the object and the destination of the link.\n */\n rel: string;\n /**\n * Sets or retrieves the relationship between the object and the destination of the link.\n */\n rev: string;\n /**\n * Sets or retrieves the window or frame at which to target content.\n */\n target: string;\n /**\n * Sets or retrieves the MIME type of the object.\n */\n type: string;\n import?: Document;\n integrity: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLinkElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLLinkElement: {\n prototype: HTMLLinkElement;\n new(): HTMLLinkElement;\n};\n\ninterface HTMLMapElement extends HTMLElement {\n /**\n * Retrieves a collection of the area objects defined for the given map object.\n */\n readonly areas: HTMLAreasCollection;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMapElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMapElement: {\n prototype: HTMLMapElement;\n new(): HTMLMapElement;\n};\n\ninterface HTMLMarqueeElementEventMap extends HTMLElementEventMap {\n "bounce": Event;\n "finish": Event;\n "start": Event;\n}\n\ninterface HTMLMarqueeElement extends HTMLElement {\n behavior: string;\n bgColor: any;\n direction: string;\n height: string;\n hspace: number;\n loop: number;\n onbounce: (this: HTMLMarqueeElement, ev: Event) => any;\n onfinish: (this: HTMLMarqueeElement, ev: Event) => any;\n onstart: (this: HTMLMarqueeElement, ev: Event) => any;\n scrollAmount: number;\n scrollDelay: number;\n trueSpeed: boolean;\n vspace: number;\n width: string;\n start(): void;\n stop(): void;\n addEventListener<K extends keyof HTMLMarqueeElementEventMap>(type: K, listener: (this: HTMLMarqueeElement, ev: HTMLMarqueeElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMarqueeElement: {\n prototype: HTMLMarqueeElement;\n new(): HTMLMarqueeElement;\n};\n\ninterface HTMLMediaElementEventMap extends HTMLElementEventMap {\n "encrypted": MediaEncryptedEvent;\n "msneedkey": MSMediaKeyNeededEvent;\n}\n\ninterface HTMLMediaElement extends HTMLElement {\n /**\n * Returns an AudioTrackList object with the audio tracks for a given video element.\n */\n readonly audioTracks: AudioTrackList;\n /**\n * Gets or sets a value that indicates whether to start playing the media automatically.\n */\n autoplay: boolean;\n /**\n * Gets a collection of buffered time ranges.\n */\n readonly buffered: TimeRanges;\n /**\n * Gets or sets a flag that indicates whether the client provides a set of controls for the media (in case the developer does not include controls for the player).\n */\n controls: boolean;\n crossOrigin: string | null;\n /**\n * Gets the address or URL of the current media resource that is selected by IHTMLMediaElement.\n */\n readonly currentSrc: string;\n /**\n * Gets or sets the current playback position, in seconds.\n */\n currentTime: number;\n defaultMuted: boolean;\n /**\n * Gets or sets the default playback rate when the user is not using fast forward or reverse for a video or audio resource.\n */\n defaultPlaybackRate: number;\n /**\n * Returns the duration in seconds of the current media resource. A NaN value is returned if duration is not available, or Infinity if the media resource is streaming.\n */\n readonly duration: number;\n /**\n * Gets information about whether the playback has ended or not.\n */\n readonly ended: boolean;\n /**\n * Returns an object representing the current error state of the audio or video element.\n */\n readonly error: MediaError;\n /**\n * Gets or sets a flag to specify whether playback should restart after it completes.\n */\n loop: boolean;\n readonly mediaKeys: MediaKeys | null;\n /**\n * Specifies the purpose of the audio or video media, such as background audio or alerts.\n */\n msAudioCategory: string;\n /**\n * Specifies the output device id that the audio will be sent to.\n */\n msAudioDeviceType: string;\n readonly msGraphicsTrustStatus: MSGraphicsTrust;\n /**\n * Gets the MSMediaKeys object, which is used for decrypting media data, that is associated with this media element.\n */\n readonly msKeys: MSMediaKeys;\n /**\n * Gets or sets whether the DLNA PlayTo device is available.\n */\n msPlayToDisabled: boolean;\n /**\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\n */\n msPlayToPreferredSourceUri: string;\n /**\n * Gets or sets the primary DLNA PlayTo device.\n */\n msPlayToPrimary: boolean;\n /**\n * Gets the source associated with the media element for use by the PlayToManager.\n */\n readonly msPlayToSource: any;\n /**\n * Specifies whether or not to enable low-latency playback on the media element.\n */\n msRealTime: boolean;\n /**\n * Gets or sets a flag that indicates whether the audio (either audio or the audio track on video media) is muted.\n */\n muted: boolean;\n /**\n * Gets the current network activity for the element.\n */\n readonly networkState: number;\n onencrypted: (this: HTMLMediaElement, ev: MediaEncryptedEvent) => any;\n onmsneedkey: (this: HTMLMediaElement, ev: MSMediaKeyNeededEvent) => any;\n /**\n * Gets a flag that specifies whether playback is paused.\n */\n readonly paused: boolean;\n /**\n * Gets or sets the current rate of speed for the media resource to play. This speed is expressed as a multiple of the normal speed of the media resource.\n */\n playbackRate: number;\n /**\n * Gets TimeRanges for the current media resource that has been played.\n */\n readonly played: TimeRanges;\n /**\n * Gets or sets the current playback position, in seconds.\n */\n preload: string;\n readyState: number;\n /**\n * Returns a TimeRanges object that represents the ranges of the current media resource that can be seeked.\n */\n readonly seekable: TimeRanges;\n /**\n * Gets a flag that indicates whether the the client is currently moving to a new playback position in the media resource.\n */\n readonly seeking: boolean;\n /**\n * The address or URL of the a media resource that is to be considered.\n */\n src: string;\n srcObject: MediaStream | null;\n readonly textTracks: TextTrackList;\n readonly videoTracks: VideoTrackList;\n /**\n * Gets or sets the volume level for audio portions of the media element.\n */\n volume: number;\n addTextTrack(kind: string, label?: string, language?: string): TextTrack;\n /**\n * Returns a string that specifies whether the client can play a given media resource type.\n */\n canPlayType(type: string): string;\n /**\n * Resets the audio or video object and loads a new media resource.\n */\n load(): void;\n /**\n * Clears all effects from the media pipeline.\n */\n msClearEffects(): void;\n msGetAsCastingSource(): any;\n /**\n * Inserts the specified audio effect into media pipeline.\n */\n msInsertAudioEffect(activatableClassId: string, effectRequired: boolean, config?: any): void;\n msSetMediaKeys(mediaKeys: MSMediaKeys): void;\n /**\n * Specifies the media protection manager for a given media pipeline.\n */\n msSetMediaProtectionManager(mediaProtectionManager?: any): void;\n /**\n * Pauses the current playback and sets paused to TRUE. This can be used to test whether the media is playing or paused. You can also use the pause or play events to tell whether the media is playing or not.\n */\n pause(): void;\n /**\n * Loads and starts playback of a media resource.\n */\n play(): Promise<void>;\n setMediaKeys(mediaKeys: MediaKeys | null): Promise<void>;\n readonly HAVE_CURRENT_DATA: number;\n readonly HAVE_ENOUGH_DATA: number;\n readonly HAVE_FUTURE_DATA: number;\n readonly HAVE_METADATA: number;\n readonly HAVE_NOTHING: number;\n readonly NETWORK_EMPTY: number;\n readonly NETWORK_IDLE: number;\n readonly NETWORK_LOADING: number;\n readonly NETWORK_NO_SOURCE: number;\n addEventListener<K extends keyof HTMLMediaElementEventMap>(type: K, listener: (this: HTMLMediaElement, ev: HTMLMediaElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMediaElement: {\n prototype: HTMLMediaElement;\n new(): HTMLMediaElement;\n readonly HAVE_CURRENT_DATA: number;\n readonly HAVE_ENOUGH_DATA: number;\n readonly HAVE_FUTURE_DATA: number;\n readonly HAVE_METADATA: number;\n readonly HAVE_NOTHING: number;\n readonly NETWORK_EMPTY: number;\n readonly NETWORK_IDLE: number;\n readonly NETWORK_LOADING: number;\n readonly NETWORK_NO_SOURCE: number;\n};\n\ninterface HTMLMenuElement extends HTMLElement {\n compact: boolean;\n type: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMenuElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMenuElement: {\n prototype: HTMLMenuElement;\n new(): HTMLMenuElement;\n};\n\ninterface HTMLMetaElement extends HTMLElement {\n /**\n * Sets or retrieves the character set used to encode the object.\n */\n charset: string;\n /**\n * Gets or sets meta-information to associate with httpEquiv or name.\n */\n content: string;\n /**\n * Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header.\n */\n httpEquiv: string;\n /**\n * Sets or retrieves the value specified in the content attribute of the meta object.\n */\n name: string;\n /**\n * Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object.\n */\n scheme: string;\n /**\n * Sets or retrieves the URL property that will be loaded after the specified time has elapsed.\n */\n url: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMetaElement: {\n prototype: HTMLMetaElement;\n new(): HTMLMetaElement;\n};\n\ninterface HTMLMeterElement extends HTMLElement {\n high: number;\n low: number;\n max: number;\n min: number;\n optimum: number;\n value: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMeterElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMeterElement: {\n prototype: HTMLMeterElement;\n new(): HTMLMeterElement;\n};\n\ninterface HTMLModElement extends HTMLElement {\n /**\n * Sets or retrieves reference information about the object.\n */\n cite: string;\n /**\n * Sets or retrieves the date and time of a modification to the object.\n */\n dateTime: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLModElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLModElement: {\n prototype: HTMLModElement;\n new(): HTMLModElement;\n};\n\ninterface HTMLObjectElement extends HTMLElement, GetSVGDocument {\n align: string;\n /**\n * Sets or retrieves a text alternative to the graphic.\n */\n alt: string;\n /**\n * Gets or sets the optional alternative HTML script to execute if the object fails to load.\n */\n altHtml: string;\n /**\n * Sets or retrieves a character string that can be used to implement your own archive functionality for the object.\n */\n archive: string;\n /**\n * Retrieves a string of the URL where the object tag can be found. This is often the href of the document that the object is in, or the value set by a base element.\n */\n readonly BaseHref: string;\n border: string;\n /**\n * Sets or retrieves the URL of the file containing the compiled Java class.\n */\n code: string;\n /**\n * Sets or retrieves the URL of the component.\n */\n codeBase: string;\n /**\n * Sets or retrieves the Internet media type for the code associated with the object.\n */\n codeType: string;\n /**\n * Retrieves the document object of the page or frame.\n */\n readonly contentDocument: Document;\n /**\n * Sets or retrieves the URL that references the data of the object.\n */\n data: string;\n declare: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the height of the object.\n */\n height: string;\n hspace: number;\n /**\n * Gets or sets whether the DLNA PlayTo device is available.\n */\n msPlayToDisabled: boolean;\n /**\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\n */\n msPlayToPreferredSourceUri: string;\n /**\n * Gets or sets the primary DLNA PlayTo device.\n */\n msPlayToPrimary: boolean;\n /**\n * Gets the source associated with the media element for use by the PlayToManager.\n */\n readonly msPlayToSource: any;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n readonly readyState: number;\n /**\n * Sets or retrieves a message to be displayed while an object is loading.\n */\n standby: string;\n /**\n * Sets or retrieves the MIME type of the object.\n */\n type: string;\n /**\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\n */\n useMap: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n vspace: number;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLObjectElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLObjectElement: {\n prototype: HTMLObjectElement;\n new(): HTMLObjectElement;\n};\n\ninterface HTMLOListElement extends HTMLElement {\n compact: boolean;\n /**\n * The starting number.\n */\n start: number;\n type: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOListElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLOListElement: {\n prototype: HTMLOListElement;\n new(): HTMLOListElement;\n};\n\ninterface HTMLOptGroupElement extends HTMLElement {\n /**\n * Sets or retrieves the status of an option.\n */\n defaultSelected: boolean;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the ordinal position of an option in a list box.\n */\n readonly index: number;\n /**\n * Sets or retrieves a value that you can use to implement your own label functionality for the object.\n */\n label: string;\n /**\n * Sets or retrieves whether the option in the list box is the default item.\n */\n selected: boolean;\n /**\n * Sets or retrieves the text string specified by the option tag.\n */\n readonly text: string;\n /**\n * Sets or retrieves the value which is returned to the server when the form control is submitted.\n */\n value: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptGroupElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLOptGroupElement: {\n prototype: HTMLOptGroupElement;\n new(): HTMLOptGroupElement;\n};\n\ninterface HTMLOptionElement extends HTMLElement {\n /**\n * Sets or retrieves the status of an option.\n */\n defaultSelected: boolean;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the ordinal position of an option in a list box.\n */\n readonly index: number;\n /**\n * Sets or retrieves a value that you can use to implement your own label functionality for the object.\n */\n label: string;\n /**\n * Sets or retrieves whether the option in the list box is the default item.\n */\n selected: boolean;\n /**\n * Sets or retrieves the text string specified by the option tag.\n */\n text: string;\n /**\n * Sets or retrieves the value which is returned to the server when the form control is submitted.\n */\n value: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptionElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLOptionElement: {\n prototype: HTMLOptionElement;\n new(): HTMLOptionElement;\n};\n\ninterface HTMLOptionsCollection extends HTMLCollectionOf<HTMLOptionElement> {\n length: number;\n selectedIndex: number;\n add(element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number): void;\n remove(index: number): void;\n}\n\ndeclare var HTMLOptionsCollection: {\n prototype: HTMLOptionsCollection;\n new(): HTMLOptionsCollection;\n};\n\ninterface HTMLOutputElement extends HTMLElement {\n defaultValue: string;\n readonly form: HTMLFormElement;\n readonly htmlFor: DOMSettableTokenList;\n name: string;\n readonly type: string;\n readonly validationMessage: string;\n readonly validity: ValidityState;\n value: string;\n readonly willValidate: boolean;\n checkValidity(): boolean;\n reportValidity(): boolean;\n setCustomValidity(error: string): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOutputElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLOutputElement: {\n prototype: HTMLOutputElement;\n new(): HTMLOutputElement;\n};\n\ninterface HTMLParagraphElement extends HTMLElement {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n clear: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParagraphElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLParagraphElement: {\n prototype: HTMLParagraphElement;\n new(): HTMLParagraphElement;\n};\n\ninterface HTMLParamElement extends HTMLElement {\n /**\n * Sets or retrieves the name of an input parameter for an element.\n */\n name: string;\n /**\n * Sets or retrieves the content type of the resource designated by the value attribute.\n */\n type: string;\n /**\n * Sets or retrieves the value of an input parameter for an element.\n */\n value: string;\n /**\n * Sets or retrieves the data type of the value attribute.\n */\n valueType: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParamElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLParamElement: {\n prototype: HTMLParamElement;\n new(): HTMLParamElement;\n};\n\ninterface HTMLPictureElement extends HTMLElement {\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLPictureElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLPictureElement: {\n prototype: HTMLPictureElement;\n new(): HTMLPictureElement;\n};\n\ninterface HTMLPreElement extends HTMLElement {\n /**\n * Sets or gets a value that you can use to implement your own width functionality for the object.\n */\n width: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLPreElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLPreElement: {\n prototype: HTMLPreElement;\n new(): HTMLPreElement;\n};\n\ninterface HTMLProgressElement extends HTMLElement {\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Defines the maximum, or "done" value for a progress element.\n */\n max: number;\n /**\n * Returns the quotient of value/max when the value attribute is set (determinate progress bar), or -1 when the value attribute is missing (indeterminate progress bar).\n */\n readonly position: number;\n /**\n * Sets or gets the current value of a progress element. The value must be a non-negative number between 0 and the max value.\n */\n value: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLProgressElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLProgressElement: {\n prototype: HTMLProgressElement;\n new(): HTMLProgressElement;\n};\n\ninterface HTMLQuoteElement extends HTMLElement {\n /**\n * Sets or retrieves reference information about the object.\n */\n cite: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLQuoteElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLQuoteElement: {\n prototype: HTMLQuoteElement;\n new(): HTMLQuoteElement;\n};\n\ninterface HTMLScriptElement extends HTMLElement {\n async: boolean;\n /**\n * Sets or retrieves the character set used to encode the object.\n */\n charset: string;\n crossOrigin: string | null;\n /**\n * Sets or retrieves the status of the script.\n */\n defer: boolean;\n /**\n * Sets or retrieves the event for which the script is written.\n */\n event: string;\n /**\n * Sets or retrieves the object that is bound to the event script.\n */\n htmlFor: string;\n /**\n * Retrieves the URL to an external file that contains the source code or data.\n */\n src: string;\n /**\n * Retrieves or sets the text of the object as a string.\n */\n text: string;\n /**\n * Sets or retrieves the MIME type for the associated scripting engine.\n */\n type: string;\n integrity: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLScriptElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLScriptElement: {\n prototype: HTMLScriptElement;\n new(): HTMLScriptElement;\n};\n\ninterface HTMLSelectElement extends HTMLElement {\n /**\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\n */\n autofocus: boolean;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the number of objects in a collection.\n */\n length: number;\n /**\n * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.\n */\n multiple: boolean;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n readonly options: HTMLOptionsCollection;\n /**\n * When present, marks an element that can\'t be submitted without a value.\n */\n required: boolean;\n /**\n * Sets or retrieves the index of the selected option in a select object.\n */\n selectedIndex: number;\n selectedOptions: HTMLCollectionOf<HTMLOptionElement>;\n /**\n * Sets or retrieves the number of rows in the list box.\n */\n size: number;\n /**\n * Retrieves the type of select control based on the value of the MULTIPLE attribute.\n */\n readonly type: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n /**\n * Sets or retrieves the value which is returned to the server when the form control is submitted.\n */\n value: string;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n /**\n * Adds an element to the areas, controlRange, or options collection.\n * @param element Variant of type Number that specifies the index position in the collection where the element is placed. If no value is given, the method places the element at the end of the collection.\n * @param before Variant of type Object that specifies an element to insert before, or null to append the object to the collection.\n */\n add(element: HTMLElement, before?: HTMLElement | number): void;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Retrieves a select object or an object from an options collection.\n * @param name Variant of type Number or String that specifies the object or collection to retrieve. If this parameter is an integer, it is the zero-based index of the object. If this parameter is a string, all objects with matching name or id properties are retrieved, and a collection is returned if more than one match is made.\n * @param index Variant of type Number that specifies the zero-based index of the object to retrieve when a collection is returned.\n */\n item(name?: any, index?: any): any;\n /**\n * Retrieves a select object or an object from an options collection.\n * @param namedItem A String that specifies the name or id property of the object to retrieve. A collection is returned if more than one match is made.\n */\n namedItem(name: string): any;\n /**\n * Removes an element from the collection.\n * @param index Number that specifies the zero-based index of the element to remove from the collection.\n */\n remove(index?: number): void;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n [name: string]: any;\n}\n\ndeclare var HTMLSelectElement: {\n prototype: HTMLSelectElement;\n new(): HTMLSelectElement;\n};\n\ninterface HTMLSourceElement extends HTMLElement {\n /**\n * Gets or sets the intended media type of the media source.\n */\n media: string;\n msKeySystem: string;\n sizes: string;\n /**\n * The address or URL of the a media resource that is to be considered.\n */\n src: string;\n srcset: string;\n /**\n * Gets or sets the MIME type of a media resource.\n */\n type: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSourceElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLSourceElement: {\n prototype: HTMLSourceElement;\n new(): HTMLSourceElement;\n};\n\ninterface HTMLSpanElement extends HTMLElement {\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSpanElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLSpanElement: {\n prototype: HTMLSpanElement;\n new(): HTMLSpanElement;\n};\n\ninterface HTMLStyleElement extends HTMLElement, LinkStyle {\n disabled: boolean;\n /**\n * Sets or retrieves the media type.\n */\n media: string;\n /**\n * Retrieves the CSS language in which the style sheet is written.\n */\n type: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLStyleElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLStyleElement: {\n prototype: HTMLStyleElement;\n new(): HTMLStyleElement;\n};\n\ninterface HTMLTableCaptionElement extends HTMLElement {\n /**\n * Sets or retrieves the alignment of the caption or legend.\n */\n align: string;\n /**\n * Sets or retrieves whether the caption appears at the top or bottom of the table.\n */\n vAlign: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCaptionElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableCaptionElement: {\n prototype: HTMLTableCaptionElement;\n new(): HTMLTableCaptionElement;\n};\n\ninterface HTMLTableCellElement extends HTMLElement, HTMLTableAlignment {\n /**\n * Sets or retrieves abbreviated text for the object.\n */\n abbr: string;\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n /**\n * Sets or retrieves a comma-delimited list of conceptual categories associated with the object.\n */\n axis: string;\n bgColor: any;\n /**\n * Retrieves the position of the object in the cells collection of a row.\n */\n readonly cellIndex: number;\n /**\n * Sets or retrieves the number columns in the table that the object should span.\n */\n colSpan: number;\n /**\n * Sets or retrieves a list of header cells that provide information for the object.\n */\n headers: string;\n /**\n * Sets or retrieves the height of the object.\n */\n height: any;\n /**\n * Sets or retrieves whether the browser automatically performs wordwrap.\n */\n noWrap: boolean;\n /**\n * Sets or retrieves how many rows in a table the cell should span.\n */\n rowSpan: number;\n /**\n * Sets or retrieves the group of cells in a table to which the object\'s information applies.\n */\n scope: string;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableCellElement: {\n prototype: HTMLTableCellElement;\n new(): HTMLTableCellElement;\n};\n\ninterface HTMLTableColElement extends HTMLElement, HTMLTableAlignment {\n /**\n * Sets or retrieves the alignment of the object relative to the display or table.\n */\n align: string;\n /**\n * Sets or retrieves the number of columns in the group.\n */\n span: number;\n /**\n * Sets or retrieves the width of the object.\n */\n width: any;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableColElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableColElement: {\n prototype: HTMLTableColElement;\n new(): HTMLTableColElement;\n};\n\ninterface HTMLTableDataCellElement extends HTMLTableCellElement {\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableDataCellElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableDataCellElement: {\n prototype: HTMLTableDataCellElement;\n new(): HTMLTableDataCellElement;\n};\n\ninterface HTMLTableElement extends HTMLElement {\n /**\n * Sets or retrieves a value that indicates the table alignment.\n */\n align: string;\n bgColor: any;\n /**\n * Sets or retrieves the width of the border to draw around the object.\n */\n border: string;\n /**\n * Sets or retrieves the border color of the object.\n */\n borderColor: any;\n /**\n * Retrieves the caption object of a table.\n */\n caption: HTMLTableCaptionElement;\n /**\n * Sets or retrieves the amount of space between the border of the cell and the content of the cell.\n */\n cellPadding: string;\n /**\n * Sets or retrieves the amount of space between cells in a table.\n */\n cellSpacing: string;\n /**\n * Sets or retrieves the number of columns in the table.\n */\n cols: number;\n /**\n * Sets or retrieves the way the border frame around the table is displayed.\n */\n frame: string;\n /**\n * Sets or retrieves the height of the object.\n */\n height: any;\n /**\n * Sets or retrieves the number of horizontal rows contained in the object.\n */\n rows: HTMLCollectionOf<HTMLTableRowElement>;\n /**\n * Sets or retrieves which dividing lines (inner borders) are displayed.\n */\n rules: string;\n /**\n * Sets or retrieves a description and/or structure of the object.\n */\n summary: string;\n /**\n * Retrieves a collection of all tBody objects in the table. Objects in this collection are in source order.\n */\n tBodies: HTMLCollectionOf<HTMLTableSectionElement>;\n /**\n * Retrieves the tFoot object of the table.\n */\n tFoot: HTMLTableSectionElement;\n /**\n * Retrieves the tHead object of the table.\n */\n tHead: HTMLTableSectionElement;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n /**\n * Creates an empty caption element in the table.\n */\n createCaption(): HTMLTableCaptionElement;\n /**\n * Creates an empty tBody element in the table.\n */\n createTBody(): HTMLTableSectionElement;\n /**\n * Creates an empty tFoot element in the table.\n */\n createTFoot(): HTMLTableSectionElement;\n /**\n * Returns the tHead element object if successful, or null otherwise.\n */\n createTHead(): HTMLTableSectionElement;\n /**\n * Deletes the caption element and its contents from the table.\n */\n deleteCaption(): void;\n /**\n * Removes the specified row (tr) from the element and from the rows collection.\n * @param index Number that specifies the zero-based position in the rows collection of the row to remove.\n */\n deleteRow(index?: number): void;\n /**\n * Deletes the tFoot element and its contents from the table.\n */\n deleteTFoot(): void;\n /**\n * Deletes the tHead element and its contents from the table.\n */\n deleteTHead(): void;\n /**\n * Creates a new row (tr) in the table, and adds the row to the rows collection.\n * @param index Number that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection.\n */\n insertRow(index?: number): HTMLTableRowElement;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableElement: {\n prototype: HTMLTableElement;\n new(): HTMLTableElement;\n};\n\ninterface HTMLTableHeaderCellElement extends HTMLTableCellElement {\n /**\n * Sets or retrieves the group of cells in a table to which the object\'s information applies.\n */\n scope: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableHeaderCellElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableHeaderCellElement: {\n prototype: HTMLTableHeaderCellElement;\n new(): HTMLTableHeaderCellElement;\n};\n\ninterface HTMLTableRowElement extends HTMLElement, HTMLTableAlignment {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n bgColor: any;\n /**\n * Retrieves a collection of all cells in the table row.\n */\n cells: HTMLCollectionOf<HTMLTableDataCellElement | HTMLTableHeaderCellElement>;\n /**\n * Sets or retrieves the height of the object.\n */\n height: any;\n /**\n * Retrieves the position of the object in the rows collection for the table.\n */\n readonly rowIndex: number;\n /**\n * Retrieves the position of the object in the collection.\n */\n readonly sectionRowIndex: number;\n /**\n * Removes the specified cell from the table row, as well as from the cells collection.\n * @param index Number that specifies the zero-based position of the cell to remove from the table row. If no value is provided, the last cell in the cells collection is deleted.\n */\n deleteCell(index?: number): void;\n /**\n * Creates a new cell in the table row, and adds the cell to the cells collection.\n * @param index Number that specifies where to insert the cell in the tr. The default value is -1, which appends the new cell to the end of the cells collection.\n */\n insertCell(index?: number): HTMLTableDataCellElement;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableRowElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableRowElement: {\n prototype: HTMLTableRowElement;\n new(): HTMLTableRowElement;\n};\n\ninterface HTMLTableSectionElement extends HTMLElement, HTMLTableAlignment {\n /**\n * Sets or retrieves a value that indicates the table alignment.\n */\n align: string;\n /**\n * Sets or retrieves the number of horizontal rows contained in the object.\n */\n rows: HTMLCollectionOf<HTMLTableRowElement>;\n /**\n * Removes the specified row (tr) from the element and from the rows collection.\n * @param index Number that specifies the zero-based position in the rows collection of the row to remove.\n */\n deleteRow(index?: number): void;\n /**\n * Creates a new row (tr) in the table, and adds the row to the rows collection.\n * @param index Number that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection.\n */\n insertRow(index?: number): HTMLTableRowElement;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableSectionElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableSectionElement: {\n prototype: HTMLTableSectionElement;\n new(): HTMLTableSectionElement;\n};\n\ninterface HTMLTemplateElement extends HTMLElement {\n readonly content: DocumentFragment;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTemplateElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTemplateElement: {\n prototype: HTMLTemplateElement;\n new(): HTMLTemplateElement;\n};\n\ninterface HTMLTextAreaElement extends HTMLElement {\n /**\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\n */\n autofocus: boolean;\n /**\n * Sets or retrieves the width of the object.\n */\n cols: number;\n /**\n * Sets or retrieves the initial contents of the object.\n */\n defaultValue: string;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the maximum number of characters that the user can enter in a text control.\n */\n maxLength: number;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n /**\n * Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field.\n */\n placeholder: string;\n /**\n * Sets or retrieves the value indicated whether the content of the object is read-only.\n */\n readOnly: boolean;\n /**\n * When present, marks an element that can\'t be submitted without a value.\n */\n required: boolean;\n /**\n * Sets or retrieves the number of horizontal rows contained in the object.\n */\n rows: number;\n /**\n * Gets or sets the end position or offset of a text selection.\n */\n selectionEnd: number;\n /**\n * Gets or sets the starting position or offset of a text selection.\n */\n selectionStart: number;\n /**\n * Sets or retrieves the value indicating whether the control is selected.\n */\n status: any;\n /**\n * Retrieves the type of control.\n */\n readonly type: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n /**\n * Retrieves or sets the text in the entry field of the textArea element.\n */\n value: string;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n /**\n * Sets or retrieves how to handle wordwrapping in the object.\n */\n wrap: string;\n minLength: number;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Highlights the input area of a form element.\n */\n select(): void;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n /**\n * Sets the start and end positions of a selection in a text field.\n * @param start The offset into the text field for the start of the selection.\n * @param end The offset into the text field for the end of the selection.\n */\n setSelectionRange(start: number, end: number): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTextAreaElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTextAreaElement: {\n prototype: HTMLTextAreaElement;\n new(): HTMLTextAreaElement;\n};\n\ninterface HTMLTimeElement extends HTMLElement {\n dateTime: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTimeElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTimeElement: {\n prototype: HTMLTimeElement;\n new(): HTMLTimeElement;\n};\n\ninterface HTMLTitleElement extends HTMLElement {\n /**\n * Retrieves or sets the text of the object as a string.\n */\n text: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTitleElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTitleElement: {\n prototype: HTMLTitleElement;\n new(): HTMLTitleElement;\n};\n\ninterface HTMLTrackElement extends HTMLElement {\n default: boolean;\n kind: string;\n label: string;\n readonly readyState: number;\n src: string;\n srclang: string;\n readonly track: TextTrack;\n readonly ERROR: number;\n readonly LOADED: number;\n readonly LOADING: number;\n readonly NONE: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTrackElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTrackElement: {\n prototype: HTMLTrackElement;\n new(): HTMLTrackElement;\n readonly ERROR: number;\n readonly LOADED: number;\n readonly LOADING: number;\n readonly NONE: number;\n};\n\ninterface HTMLUListElement extends HTMLElement {\n compact: boolean;\n type: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLUListElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLUListElement: {\n prototype: HTMLUListElement;\n new(): HTMLUListElement;\n};\n\ninterface HTMLUnknownElement extends HTMLElement {\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLUnknownElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLUnknownElement: {\n prototype: HTMLUnknownElement;\n new(): HTMLUnknownElement;\n};\n\ninterface HTMLVideoElementEventMap extends HTMLMediaElementEventMap {\n "MSVideoFormatChanged": Event;\n "MSVideoFrameStepCompleted": Event;\n "MSVideoOptimalLayoutChanged": Event;\n}\n\ninterface HTMLVideoElement extends HTMLMediaElement {\n /**\n * Gets or sets the height of the video element.\n */\n height: number;\n msHorizontalMirror: boolean;\n readonly msIsLayoutOptimalForPlayback: boolean;\n readonly msIsStereo3D: boolean;\n msStereo3DPackingMode: string;\n msStereo3DRenderMode: string;\n msZoom: boolean;\n onMSVideoFormatChanged: (this: HTMLVideoElement, ev: Event) => any;\n onMSVideoFrameStepCompleted: (this: HTMLVideoElement, ev: Event) => any;\n onMSVideoOptimalLayoutChanged: (this: HTMLVideoElement, ev: Event) => any;\n /**\n * Gets or sets a URL of an image to display, for example, like a movie poster. This can be a still frame from the video, or another image if no video data is available.\n */\n poster: string;\n /**\n * Gets the intrinsic height of a video in CSS pixels, or zero if the dimensions are not known.\n */\n readonly videoHeight: number;\n /**\n * Gets the intrinsic width of a video in CSS pixels, or zero if the dimensions are not known.\n */\n readonly videoWidth: number;\n readonly webkitDisplayingFullscreen: boolean;\n readonly webkitSupportsFullscreen: boolean;\n /**\n * Gets or sets the width of the video element.\n */\n width: number;\n getVideoPlaybackQuality(): VideoPlaybackQuality;\n msFrameStep(forward: boolean): void;\n msInsertVideoEffect(activatableClassId: string, effectRequired: boolean, config?: any): void;\n msSetVideoRectangle(left: number, top: number, right: number, bottom: number): void;\n webkitEnterFullscreen(): void;\n webkitEnterFullScreen(): void;\n webkitExitFullscreen(): void;\n webkitExitFullScreen(): void;\n addEventListener<K extends keyof HTMLVideoElementEventMap>(type: K, listener: (this: HTMLVideoElement, ev: HTMLVideoElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLVideoElement: {\n prototype: HTMLVideoElement;\n new(): HTMLVideoElement;\n};\n\ninterface IDBCursor {\n readonly direction: IDBCursorDirection;\n key: IDBKeyRange | IDBValidKey;\n readonly primaryKey: any;\n source: IDBObjectStore | IDBIndex;\n advance(count: number): void;\n continue(key?: IDBKeyRange | IDBValidKey): void;\n delete(): IDBRequest;\n update(value: any): IDBRequest;\n readonly NEXT: string;\n readonly NEXT_NO_DUPLICATE: string;\n readonly PREV: string;\n readonly PREV_NO_DUPLICATE: string;\n}\n\ndeclare var IDBCursor: {\n prototype: IDBCursor;\n new(): IDBCursor;\n readonly NEXT: string;\n readonly NEXT_NO_DUPLICATE: string;\n readonly PREV: string;\n readonly PREV_NO_DUPLICATE: string;\n};\n\ninterface IDBCursorWithValue extends IDBCursor {\n readonly value: any;\n}\n\ndeclare var IDBCursorWithValue: {\n prototype: IDBCursorWithValue;\n new(): IDBCursorWithValue;\n};\n\ninterface IDBDatabaseEventMap {\n "abort": Event;\n "error": Event;\n}\n\ninterface IDBDatabase extends EventTarget {\n readonly name: string;\n readonly objectStoreNames: DOMStringList;\n onabort: (this: IDBDatabase, ev: Event) => any;\n onerror: (this: IDBDatabase, ev: Event) => any;\n version: number;\n onversionchange: (ev: IDBVersionChangeEvent) => any;\n close(): void;\n createObjectStore(name: string, optionalParameters?: IDBObjectStoreParameters): IDBObjectStore;\n deleteObjectStore(name: string): void;\n transaction(storeNames: string | string[], mode?: IDBTransactionMode): IDBTransaction;\n addEventListener(type: "versionchange", listener: (ev: IDBVersionChangeEvent) => any, useCapture?: boolean): void;\n addEventListener<K extends keyof IDBDatabaseEventMap>(type: K, listener: (this: IDBDatabase, ev: IDBDatabaseEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var IDBDatabase: {\n prototype: IDBDatabase;\n new(): IDBDatabase;\n};\n\ninterface IDBFactory {\n cmp(first: any, second: any): number;\n deleteDatabase(name: string): IDBOpenDBRequest;\n open(name: string, version?: number): IDBOpenDBRequest;\n}\n\ndeclare var IDBFactory: {\n prototype: IDBFactory;\n new(): IDBFactory;\n};\n\ninterface IDBIndex {\n keyPath: string | string[];\n readonly name: string;\n readonly objectStore: IDBObjectStore;\n readonly unique: boolean;\n multiEntry: boolean;\n count(key?: IDBKeyRange | IDBValidKey): IDBRequest;\n get(key: IDBKeyRange | IDBValidKey): IDBRequest;\n getKey(key: IDBKeyRange | IDBValidKey): IDBRequest;\n openCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest;\n openKeyCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest;\n}\n\ndeclare var IDBIndex: {\n prototype: IDBIndex;\n new(): IDBIndex;\n};\n\ninterface IDBKeyRange {\n readonly lower: any;\n readonly lowerOpen: boolean;\n readonly upper: any;\n readonly upperOpen: boolean;\n}\n\ndeclare var IDBKeyRange: {\n prototype: IDBKeyRange;\n new(): IDBKeyRange;\n bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;\n lowerBound(lower: any, open?: boolean): IDBKeyRange;\n only(value: any): IDBKeyRange;\n upperBound(upper: any, open?: boolean): IDBKeyRange;\n};\n\ninterface IDBObjectStore {\n readonly indexNames: DOMStringList;\n keyPath: string | string[];\n readonly name: string;\n readonly transaction: IDBTransaction;\n autoIncrement: boolean;\n add(value: any, key?: IDBKeyRange | IDBValidKey): IDBRequest;\n clear(): IDBRequest;\n count(key?: IDBKeyRange | IDBValidKey): IDBRequest;\n createIndex(name: string, keyPath: string | string[], optionalParameters?: IDBIndexParameters): IDBIndex;\n delete(key: IDBKeyRange | IDBValidKey): IDBRequest;\n deleteIndex(indexName: string): void;\n get(key: any): IDBRequest;\n index(name: string): IDBIndex;\n openCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest;\n put(value: any, key?: IDBKeyRange | IDBValidKey): IDBRequest;\n}\n\ndeclare var IDBObjectStore: {\n prototype: IDBObjectStore;\n new(): IDBObjectStore;\n};\n\ninterface IDBOpenDBRequestEventMap extends IDBRequestEventMap {\n "blocked": Event;\n "upgradeneeded": IDBVersionChangeEvent;\n}\n\ninterface IDBOpenDBRequest extends IDBRequest {\n onblocked: (this: IDBOpenDBRequest, ev: Event) => any;\n onupgradeneeded: (this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any;\n addEventListener<K extends keyof IDBOpenDBRequestEventMap>(type: K, listener: (this: IDBOpenDBRequest, ev: IDBOpenDBRequestEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var IDBOpenDBRequest: {\n prototype: IDBOpenDBRequest;\n new(): IDBOpenDBRequest;\n};\n\ninterface IDBRequestEventMap {\n "error": Event;\n "success": Event;\n}\n\ninterface IDBRequest extends EventTarget {\n readonly error: DOMException;\n onerror: (this: IDBRequest, ev: Event) => any;\n onsuccess: (this: IDBRequest, ev: Event) => any;\n readonly readyState: IDBRequestReadyState;\n readonly result: any;\n source: IDBObjectStore | IDBIndex | IDBCursor;\n readonly transaction: IDBTransaction;\n addEventListener<K extends keyof IDBRequestEventMap>(type: K, listener: (this: IDBRequest, ev: IDBRequestEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var IDBRequest: {\n prototype: IDBRequest;\n new(): IDBRequest;\n};\n\ninterface IDBTransactionEventMap {\n "abort": Event;\n "complete": Event;\n "error": Event;\n}\n\ninterface IDBTransaction extends EventTarget {\n readonly db: IDBDatabase;\n readonly error: DOMException;\n readonly mode: IDBTransactionMode;\n onabort: (this: IDBTransaction, ev: Event) => any;\n oncomplete: (this: IDBTransaction, ev: Event) => any;\n onerror: (this: IDBTransaction, ev: Event) => any;\n abort(): void;\n objectStore(name: string): IDBObjectStore;\n readonly READ_ONLY: string;\n readonly READ_WRITE: string;\n readonly VERSION_CHANGE: string;\n addEventListener<K extends keyof IDBTransactionEventMap>(type: K, listener: (this: IDBTransaction, ev: IDBTransactionEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var IDBTransaction: {\n prototype: IDBTransaction;\n new(): IDBTransaction;\n readonly READ_ONLY: string;\n readonly READ_WRITE: string;\n readonly VERSION_CHANGE: string;\n};\n\ninterface IDBVersionChangeEvent extends Event {\n readonly newVersion: number | null;\n readonly oldVersion: number;\n}\n\ndeclare var IDBVersionChangeEvent: {\n prototype: IDBVersionChangeEvent;\n new(): IDBVersionChangeEvent;\n};\n\ninterface IIRFilterNode extends AudioNode {\n getFrequencyResponse(frequencyHz: Float32Array, magResponse: Float32Array, phaseResponse: Float32Array): void;\n}\n\ndeclare var IIRFilterNode: {\n prototype: IIRFilterNode;\n new(): IIRFilterNode;\n};\n\ninterface ImageData {\n data: Uint8ClampedArray;\n readonly height: number;\n readonly width: number;\n}\n\ndeclare var ImageData: {\n prototype: ImageData;\n new(width: number, height: number): ImageData;\n new(array: Uint8ClampedArray, width: number, height: number): ImageData;\n};\n\ninterface IntersectionObserver {\n readonly root: Element | null;\n readonly rootMargin: string;\n readonly thresholds: number[];\n disconnect(): void;\n observe(target: Element): void;\n takeRecords(): IntersectionObserverEntry[];\n unobserve(target: Element): void;\n}\n\ndeclare var IntersectionObserver: {\n prototype: IntersectionObserver;\n new(callback: IntersectionObserverCallback, options?: IntersectionObserverInit): IntersectionObserver;\n};\n\ninterface IntersectionObserverEntry {\n readonly boundingClientRect: ClientRect;\n readonly intersectionRatio: number;\n readonly intersectionRect: ClientRect;\n readonly rootBounds: ClientRect;\n readonly target: Element;\n readonly time: number;\n}\n\ndeclare var IntersectionObserverEntry: {\n prototype: IntersectionObserverEntry;\n new(intersectionObserverEntryInit: IntersectionObserverEntryInit): IntersectionObserverEntry;\n};\n\ninterface KeyboardEvent extends UIEvent {\n readonly altKey: boolean;\n readonly char: string | null;\n readonly charCode: number;\n readonly ctrlKey: boolean;\n readonly key: string;\n readonly keyCode: number;\n readonly locale: string;\n readonly location: number;\n readonly metaKey: boolean;\n readonly repeat: boolean;\n readonly shiftKey: boolean;\n readonly which: number;\n readonly code: string;\n getModifierState(keyArg: string): boolean;\n initKeyboardEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, keyArg: string, locationArg: number, modifiersListArg: string, repeat: boolean, locale: string): void;\n readonly DOM_KEY_LOCATION_JOYSTICK: number;\n readonly DOM_KEY_LOCATION_LEFT: number;\n readonly DOM_KEY_LOCATION_MOBILE: number;\n readonly DOM_KEY_LOCATION_NUMPAD: number;\n readonly DOM_KEY_LOCATION_RIGHT: number;\n readonly DOM_KEY_LOCATION_STANDARD: number;\n}\n\ndeclare var KeyboardEvent: {\n prototype: KeyboardEvent;\n new(typeArg: string, eventInitDict?: KeyboardEventInit): KeyboardEvent;\n readonly DOM_KEY_LOCATION_JOYSTICK: number;\n readonly DOM_KEY_LOCATION_LEFT: number;\n readonly DOM_KEY_LOCATION_MOBILE: number;\n readonly DOM_KEY_LOCATION_NUMPAD: number;\n readonly DOM_KEY_LOCATION_RIGHT: number;\n readonly DOM_KEY_LOCATION_STANDARD: number;\n};\n\ninterface ListeningStateChangedEvent extends Event {\n readonly label: string;\n readonly state: ListeningState;\n}\n\ndeclare var ListeningStateChangedEvent: {\n prototype: ListeningStateChangedEvent;\n new(): ListeningStateChangedEvent;\n};\n\ninterface Location {\n hash: string;\n host: string;\n hostname: string;\n href: string;\n readonly origin: string;\n pathname: string;\n port: string;\n protocol: string;\n search: string;\n assign(url: string): void;\n reload(forcedReload?: boolean): void;\n replace(url: string): void;\n toString(): string;\n}\n\ndeclare var Location: {\n prototype: Location;\n new(): Location;\n};\n\ninterface LongRunningScriptDetectedEvent extends Event {\n readonly executionTime: number;\n stopPageScriptExecution: boolean;\n}\n\ndeclare var LongRunningScriptDetectedEvent: {\n prototype: LongRunningScriptDetectedEvent;\n new(): LongRunningScriptDetectedEvent;\n};\n\ninterface MediaDeviceInfo {\n readonly deviceId: string;\n readonly groupId: string;\n readonly kind: MediaDeviceKind;\n readonly label: string;\n}\n\ndeclare var MediaDeviceInfo: {\n prototype: MediaDeviceInfo;\n new(): MediaDeviceInfo;\n};\n\ninterface MediaDevicesEventMap {\n "devicechange": Event;\n}\n\ninterface MediaDevices extends EventTarget {\n ondevicechange: (this: MediaDevices, ev: Event) => any;\n enumerateDevices(): any;\n getSupportedConstraints(): MediaTrackSupportedConstraints;\n getUserMedia(constraints: MediaStreamConstraints): Promise<MediaStream>;\n addEventListener<K extends keyof MediaDevicesEventMap>(type: K, listener: (this: MediaDevices, ev: MediaDevicesEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MediaDevices: {\n prototype: MediaDevices;\n new(): MediaDevices;\n};\n\ninterface MediaElementAudioSourceNode extends AudioNode {\n}\n\ndeclare var MediaElementAudioSourceNode: {\n prototype: MediaElementAudioSourceNode;\n new(): MediaElementAudioSourceNode;\n};\n\ninterface MediaEncryptedEvent extends Event {\n readonly initData: ArrayBuffer | null;\n readonly initDataType: string;\n}\n\ndeclare var MediaEncryptedEvent: {\n prototype: MediaEncryptedEvent;\n new(type: string, eventInitDict?: MediaEncryptedEventInit): MediaEncryptedEvent;\n};\n\ninterface MediaError {\n readonly code: number;\n readonly msExtendedCode: number;\n readonly MEDIA_ERR_ABORTED: number;\n readonly MEDIA_ERR_DECODE: number;\n readonly MEDIA_ERR_NETWORK: number;\n readonly MEDIA_ERR_SRC_NOT_SUPPORTED: number;\n readonly MS_MEDIA_ERR_ENCRYPTED: number;\n}\n\ndeclare var MediaError: {\n prototype: MediaError;\n new(): MediaError;\n readonly MEDIA_ERR_ABORTED: number;\n readonly MEDIA_ERR_DECODE: number;\n readonly MEDIA_ERR_NETWORK: number;\n readonly MEDIA_ERR_SRC_NOT_SUPPORTED: number;\n readonly MS_MEDIA_ERR_ENCRYPTED: number;\n};\n\ninterface MediaKeyMessageEvent extends Event {\n readonly message: ArrayBuffer;\n readonly messageType: MediaKeyMessageType;\n}\n\ndeclare var MediaKeyMessageEvent: {\n prototype: MediaKeyMessageEvent;\n new(type: string, eventInitDict?: MediaKeyMessageEventInit): MediaKeyMessageEvent;\n};\n\ninterface MediaKeys {\n createSession(sessionType?: MediaKeySessionType): MediaKeySession;\n setServerCertificate(serverCertificate: any): Promise<void>;\n}\n\ndeclare var MediaKeys: {\n prototype: MediaKeys;\n new(): MediaKeys;\n};\n\ninterface MediaKeySession extends EventTarget {\n readonly closed: Promise<void>;\n readonly expiration: number;\n readonly keyStatuses: MediaKeyStatusMap;\n readonly sessionId: string;\n close(): Promise<void>;\n generateRequest(initDataType: string, initData: any): Promise<void>;\n load(sessionId: string): Promise<boolean>;\n remove(): Promise<void>;\n update(response: any): Promise<void>;\n}\n\ndeclare var MediaKeySession: {\n prototype: MediaKeySession;\n new(): MediaKeySession;\n};\n\ninterface MediaKeyStatusMap {\n readonly size: number;\n forEach(callback: ForEachCallback): void;\n get(keyId: any): MediaKeyStatus;\n has(keyId: any): boolean;\n}\n\ndeclare var MediaKeyStatusMap: {\n prototype: MediaKeyStatusMap;\n new(): MediaKeyStatusMap;\n};\n\ninterface MediaKeySystemAccess {\n readonly keySystem: string;\n createMediaKeys(): Promise<MediaKeys>;\n getConfiguration(): MediaKeySystemConfiguration;\n}\n\ndeclare var MediaKeySystemAccess: {\n prototype: MediaKeySystemAccess;\n new(): MediaKeySystemAccess;\n};\n\ninterface MediaList {\n readonly length: number;\n mediaText: string;\n appendMedium(newMedium: string): void;\n deleteMedium(oldMedium: string): void;\n item(index: number): string;\n toString(): string;\n [index: number]: string;\n}\n\ndeclare var MediaList: {\n prototype: MediaList;\n new(): MediaList;\n};\n\ninterface MediaQueryList {\n readonly matches: boolean;\n readonly media: string;\n addListener(listener: MediaQueryListListener): void;\n removeListener(listener: MediaQueryListListener): void;\n}\n\ndeclare var MediaQueryList: {\n prototype: MediaQueryList;\n new(): MediaQueryList;\n};\n\ninterface MediaSource extends EventTarget {\n readonly activeSourceBuffers: SourceBufferList;\n duration: number;\n readonly readyState: string;\n readonly sourceBuffers: SourceBufferList;\n addSourceBuffer(type: string): SourceBuffer;\n endOfStream(error?: number): void;\n removeSourceBuffer(sourceBuffer: SourceBuffer): void;\n}\n\ndeclare var MediaSource: {\n prototype: MediaSource;\n new(): MediaSource;\n isTypeSupported(type: string): boolean;\n};\n\ninterface MediaStreamEventMap {\n "active": Event;\n "addtrack": MediaStreamTrackEvent;\n "inactive": Event;\n "removetrack": MediaStreamTrackEvent;\n}\n\ninterface MediaStream extends EventTarget {\n readonly active: boolean;\n readonly id: string;\n onactive: (this: MediaStream, ev: Event) => any;\n onaddtrack: (this: MediaStream, ev: MediaStreamTrackEvent) => any;\n oninactive: (this: MediaStream, ev: Event) => any;\n onremovetrack: (this: MediaStream, ev: MediaStreamTrackEvent) => any;\n addTrack(track: MediaStreamTrack): void;\n clone(): MediaStream;\n getAudioTracks(): MediaStreamTrack[];\n getTrackById(trackId: string): MediaStreamTrack | null;\n getTracks(): MediaStreamTrack[];\n getVideoTracks(): MediaStreamTrack[];\n removeTrack(track: MediaStreamTrack): void;\n stop(): void;\n addEventListener<K extends keyof MediaStreamEventMap>(type: K, listener: (this: MediaStream, ev: MediaStreamEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MediaStream: {\n prototype: MediaStream;\n new(streamOrTracks?: MediaStream | MediaStreamTrack[]): MediaStream;\n};\n\ninterface MediaStreamAudioSourceNode extends AudioNode {\n}\n\ndeclare var MediaStreamAudioSourceNode: {\n prototype: MediaStreamAudioSourceNode;\n new(): MediaStreamAudioSourceNode;\n};\n\ninterface MediaStreamError {\n readonly constraintName: string | null;\n readonly message: string | null;\n readonly name: string;\n}\n\ndeclare var MediaStreamError: {\n prototype: MediaStreamError;\n new(): MediaStreamError;\n};\n\ninterface MediaStreamErrorEvent extends Event {\n readonly error: MediaStreamError | null;\n}\n\ndeclare var MediaStreamErrorEvent: {\n prototype: MediaStreamErrorEvent;\n new(typeArg: string, eventInitDict?: MediaStreamErrorEventInit): MediaStreamErrorEvent;\n};\n\ninterface MediaStreamEvent extends Event {\n readonly stream: MediaStream | null;\n}\n\ndeclare var MediaStreamEvent: {\n prototype: MediaStreamEvent;\n new(type: string, eventInitDict: MediaStreamEventInit): MediaStreamEvent;\n};\n\ninterface MediaStreamTrackEventMap {\n "ended": MediaStreamErrorEvent;\n "mute": Event;\n "overconstrained": MediaStreamErrorEvent;\n "unmute": Event;\n}\n\ninterface MediaStreamTrack extends EventTarget {\n enabled: boolean;\n readonly id: string;\n readonly kind: string;\n readonly label: string;\n readonly muted: boolean;\n onended: (this: MediaStreamTrack, ev: MediaStreamErrorEvent) => any;\n onmute: (this: MediaStreamTrack, ev: Event) => any;\n onoverconstrained: (this: MediaStreamTrack, ev: MediaStreamErrorEvent) => any;\n onunmute: (this: MediaStreamTrack, ev: Event) => any;\n readonly readonly: boolean;\n readonly readyState: MediaStreamTrackState;\n readonly remote: boolean;\n applyConstraints(constraints: MediaTrackConstraints): Promise<void>;\n clone(): MediaStreamTrack;\n getCapabilities(): MediaTrackCapabilities;\n getConstraints(): MediaTrackConstraints;\n getSettings(): MediaTrackSettings;\n stop(): void;\n addEventListener<K extends keyof MediaStreamTrackEventMap>(type: K, listener: (this: MediaStreamTrack, ev: MediaStreamTrackEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MediaStreamTrack: {\n prototype: MediaStreamTrack;\n new(): MediaStreamTrack;\n};\n\ninterface MediaStreamTrackEvent extends Event {\n readonly track: MediaStreamTrack;\n}\n\ndeclare var MediaStreamTrackEvent: {\n prototype: MediaStreamTrackEvent;\n new(typeArg: string, eventInitDict?: MediaStreamTrackEventInit): MediaStreamTrackEvent;\n};\n\ninterface MessageChannel {\n readonly port1: MessagePort;\n readonly port2: MessagePort;\n}\n\ndeclare var MessageChannel: {\n prototype: MessageChannel;\n new(): MessageChannel;\n};\n\ninterface MessageEvent extends Event {\n readonly data: any;\n readonly origin: string;\n readonly ports: any;\n readonly source: Window;\n initMessageEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, dataArg: any, originArg: string, lastEventIdArg: string, sourceArg: Window): void;\n}\n\ndeclare var MessageEvent: {\n prototype: MessageEvent;\n new(type: string, eventInitDict?: MessageEventInit): MessageEvent;\n};\n\ninterface MessagePortEventMap {\n "message": MessageEvent;\n}\n\ninterface MessagePort extends EventTarget {\n onmessage: (this: MessagePort, ev: MessageEvent) => any;\n close(): void;\n postMessage(message?: any, transfer?: any[]): void;\n start(): void;\n addEventListener<K extends keyof MessagePortEventMap>(type: K, listener: (this: MessagePort, ev: MessagePortEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MessagePort: {\n prototype: MessagePort;\n new(): MessagePort;\n};\n\ninterface MimeType {\n readonly description: string;\n readonly enabledPlugin: Plugin;\n readonly suffixes: string;\n readonly type: string;\n}\n\ndeclare var MimeType: {\n prototype: MimeType;\n new(): MimeType;\n};\n\ninterface MimeTypeArray {\n readonly length: number;\n item(index: number): Plugin;\n namedItem(type: string): Plugin;\n [index: number]: Plugin;\n}\n\ndeclare var MimeTypeArray: {\n prototype: MimeTypeArray;\n new(): MimeTypeArray;\n};\n\ninterface MouseEvent extends UIEvent {\n readonly altKey: boolean;\n readonly button: number;\n readonly buttons: number;\n readonly clientX: number;\n readonly clientY: number;\n readonly ctrlKey: boolean;\n readonly fromElement: Element;\n readonly layerX: number;\n readonly layerY: number;\n readonly metaKey: boolean;\n readonly movementX: number;\n readonly movementY: number;\n readonly offsetX: number;\n readonly offsetY: number;\n readonly pageX: number;\n readonly pageY: number;\n readonly relatedTarget: EventTarget;\n readonly screenX: number;\n readonly screenY: number;\n readonly shiftKey: boolean;\n readonly toElement: Element;\n readonly which: number;\n readonly x: number;\n readonly y: number;\n getModifierState(keyArg: string): boolean;\n initMouseEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget | null): void;\n}\n\ndeclare var MouseEvent: {\n prototype: MouseEvent;\n new(typeArg: string, eventInitDict?: MouseEventInit): MouseEvent;\n};\n\ninterface MSApp {\n clearTemporaryWebDataAsync(): MSAppAsyncOperation;\n createBlobFromRandomAccessStream(type: string, seeker: any): Blob;\n createDataPackage(object: any): any;\n createDataPackageFromSelection(): any;\n createFileFromStorageFile(storageFile: any): File;\n createStreamFromInputStream(type: string, inputStream: any): MSStream;\n execAsyncAtPriority(asynchronousCallback: MSExecAtPriorityFunctionCallback, priority: string, ...args: any[]): void;\n execAtPriority(synchronousCallback: MSExecAtPriorityFunctionCallback, priority: string, ...args: any[]): any;\n getCurrentPriority(): string;\n getHtmlPrintDocumentSourceAsync(htmlDoc: any): Promise<any>;\n getViewId(view: any): any;\n isTaskScheduledAtPriorityOrHigher(priority: string): boolean;\n pageHandlesAllApplicationActivations(enabled: boolean): void;\n suppressSubdownloadCredentialPrompts(suppress: boolean): void;\n terminateApp(exceptionObject: any): void;\n readonly CURRENT: string;\n readonly HIGH: string;\n readonly IDLE: string;\n readonly NORMAL: string;\n}\ndeclare var MSApp: MSApp;\n\ninterface MSAppAsyncOperationEventMap {\n "complete": Event;\n "error": Event;\n}\n\ninterface MSAppAsyncOperation extends EventTarget {\n readonly error: DOMError;\n oncomplete: (this: MSAppAsyncOperation, ev: Event) => any;\n onerror: (this: MSAppAsyncOperation, ev: Event) => any;\n readonly readyState: number;\n readonly result: any;\n start(): void;\n readonly COMPLETED: number;\n readonly ERROR: number;\n readonly STARTED: number;\n addEventListener<K extends keyof MSAppAsyncOperationEventMap>(type: K, listener: (this: MSAppAsyncOperation, ev: MSAppAsyncOperationEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MSAppAsyncOperation: {\n prototype: MSAppAsyncOperation;\n new(): MSAppAsyncOperation;\n readonly COMPLETED: number;\n readonly ERROR: number;\n readonly STARTED: number;\n};\n\ninterface MSAssertion {\n readonly id: string;\n readonly type: MSCredentialType;\n}\n\ndeclare var MSAssertion: {\n prototype: MSAssertion;\n new(): MSAssertion;\n};\n\ninterface MSBlobBuilder {\n append(data: any, endings?: string): void;\n getBlob(contentType?: string): Blob;\n}\n\ndeclare var MSBlobBuilder: {\n prototype: MSBlobBuilder;\n new(): MSBlobBuilder;\n};\n\ninterface MSCredentials {\n getAssertion(challenge: string, filter?: MSCredentialFilter, params?: MSSignatureParameters): Promise<MSAssertion>;\n makeCredential(accountInfo: MSAccountInfo, params: MSCredentialParameters[], challenge?: string): Promise<MSAssertion>;\n}\n\ndeclare var MSCredentials: {\n prototype: MSCredentials;\n new(): MSCredentials;\n};\n\ninterface MSFIDOCredentialAssertion extends MSAssertion {\n readonly algorithm: string | Algorithm;\n readonly attestation: any;\n readonly publicKey: string;\n readonly transportHints: MSTransportType[];\n}\n\ndeclare var MSFIDOCredentialAssertion: {\n prototype: MSFIDOCredentialAssertion;\n new(): MSFIDOCredentialAssertion;\n};\n\ninterface MSFIDOSignature {\n readonly authnrData: string;\n readonly clientData: string;\n readonly signature: string;\n}\n\ndeclare var MSFIDOSignature: {\n prototype: MSFIDOSignature;\n new(): MSFIDOSignature;\n};\n\ninterface MSFIDOSignatureAssertion extends MSAssertion {\n readonly signature: MSFIDOSignature;\n}\n\ndeclare var MSFIDOSignatureAssertion: {\n prototype: MSFIDOSignatureAssertion;\n new(): MSFIDOSignatureAssertion;\n};\n\ninterface MSGesture {\n target: Element;\n addPointer(pointerId: number): void;\n stop(): void;\n}\n\ndeclare var MSGesture: {\n prototype: MSGesture;\n new(): MSGesture;\n};\n\ninterface MSGestureEvent extends UIEvent {\n readonly clientX: number;\n readonly clientY: number;\n readonly expansion: number;\n readonly gestureObject: any;\n readonly hwTimestamp: number;\n readonly offsetX: number;\n readonly offsetY: number;\n readonly rotation: number;\n readonly scale: number;\n readonly screenX: number;\n readonly screenY: number;\n readonly translationX: number;\n readonly translationY: number;\n readonly velocityAngular: number;\n readonly velocityExpansion: number;\n readonly velocityX: number;\n readonly velocityY: number;\n initGestureEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, offsetXArg: number, offsetYArg: number, translationXArg: number, translationYArg: number, scaleArg: number, expansionArg: number, rotationArg: number, velocityXArg: number, velocityYArg: number, velocityExpansionArg: number, velocityAngularArg: number, hwTimestampArg: number): void;\n readonly MSGESTURE_FLAG_BEGIN: number;\n readonly MSGESTURE_FLAG_CANCEL: number;\n readonly MSGESTURE_FLAG_END: number;\n readonly MSGESTURE_FLAG_INERTIA: number;\n readonly MSGESTURE_FLAG_NONE: number;\n}\n\ndeclare var MSGestureEvent: {\n prototype: MSGestureEvent;\n new(): MSGestureEvent;\n readonly MSGESTURE_FLAG_BEGIN: number;\n readonly MSGESTURE_FLAG_CANCEL: number;\n readonly MSGESTURE_FLAG_END: number;\n readonly MSGESTURE_FLAG_INERTIA: number;\n readonly MSGESTURE_FLAG_NONE: number;\n};\n\ninterface MSGraphicsTrust {\n readonly constrictionActive: boolean;\n readonly status: string;\n}\n\ndeclare var MSGraphicsTrust: {\n prototype: MSGraphicsTrust;\n new(): MSGraphicsTrust;\n};\n\ninterface MSHTMLWebViewElement extends HTMLElement {\n readonly canGoBack: boolean;\n readonly canGoForward: boolean;\n readonly containsFullScreenElement: boolean;\n readonly documentTitle: string;\n height: number;\n readonly settings: MSWebViewSettings;\n src: string;\n width: number;\n addWebAllowedObject(name: string, applicationObject: any): void;\n buildLocalStreamUri(contentIdentifier: string, relativePath: string): string;\n capturePreviewToBlobAsync(): MSWebViewAsyncOperation;\n captureSelectedContentToDataPackageAsync(): MSWebViewAsyncOperation;\n getDeferredPermissionRequestById(id: number): DeferredPermissionRequest;\n getDeferredPermissionRequests(): DeferredPermissionRequest[];\n goBack(): void;\n goForward(): void;\n invokeScriptAsync(scriptName: string, ...args: any[]): MSWebViewAsyncOperation;\n navigate(uri: string): void;\n navigateFocus(navigationReason: NavigationReason, origin: FocusNavigationOrigin): void;\n navigateToLocalStreamUri(source: string, streamResolver: any): void;\n navigateToString(contents: string): void;\n navigateWithHttpRequestMessage(requestMessage: any): void;\n refresh(): void;\n stop(): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: MSHTMLWebViewElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MSHTMLWebViewElement: {\n prototype: MSHTMLWebViewElement;\n new(): MSHTMLWebViewElement;\n};\n\ninterface MSInputMethodContextEventMap {\n "MSCandidateWindowHide": Event;\n "MSCandidateWindowShow": Event;\n "MSCandidateWindowUpdate": Event;\n}\n\ninterface MSInputMethodContext extends EventTarget {\n readonly compositionEndOffset: number;\n readonly compositionStartOffset: number;\n oncandidatewindowhide: (this: MSInputMethodContext, ev: Event) => any;\n oncandidatewindowshow: (this: MSInputMethodContext, ev: Event) => any;\n oncandidatewindowupdate: (this: MSInputMethodContext, ev: Event) => any;\n readonly target: HTMLElement;\n getCandidateWindowClientRect(): ClientRect;\n getCompositionAlternatives(): string[];\n hasComposition(): boolean;\n isCandidateWindowVisible(): boolean;\n addEventListener<K extends keyof MSInputMethodContextEventMap>(type: K, listener: (this: MSInputMethodContext, ev: MSInputMethodContextEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MSInputMethodContext: {\n prototype: MSInputMethodContext;\n new(): MSInputMethodContext;\n};\n\ninterface MSManipulationEvent extends UIEvent {\n readonly currentState: number;\n readonly inertiaDestinationX: number;\n readonly inertiaDestinationY: number;\n readonly lastState: number;\n initMSManipulationEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, lastState: number, currentState: number): void;\n readonly MS_MANIPULATION_STATE_ACTIVE: number;\n readonly MS_MANIPULATION_STATE_CANCELLED: number;\n readonly MS_MANIPULATION_STATE_COMMITTED: number;\n readonly MS_MANIPULATION_STATE_DRAGGING: number;\n readonly MS_MANIPULATION_STATE_INERTIA: number;\n readonly MS_MANIPULATION_STATE_PRESELECT: number;\n readonly MS_MANIPULATION_STATE_SELECTING: number;\n readonly MS_MANIPULATION_STATE_STOPPED: number;\n}\n\ndeclare var MSManipulationEvent: {\n prototype: MSManipulationEvent;\n new(): MSManipulationEvent;\n readonly MS_MANIPULATION_STATE_ACTIVE: number;\n readonly MS_MANIPULATION_STATE_CANCELLED: number;\n readonly MS_MANIPULATION_STATE_COMMITTED: number;\n readonly MS_MANIPULATION_STATE_DRAGGING: number;\n readonly MS_MANIPULATION_STATE_INERTIA: number;\n readonly MS_MANIPULATION_STATE_PRESELECT: number;\n readonly MS_MANIPULATION_STATE_SELECTING: number;\n readonly MS_MANIPULATION_STATE_STOPPED: number;\n};\n\ninterface MSMediaKeyError {\n readonly code: number;\n readonly systemCode: number;\n readonly MS_MEDIA_KEYERR_CLIENT: number;\n readonly MS_MEDIA_KEYERR_DOMAIN: number;\n readonly MS_MEDIA_KEYERR_HARDWARECHANGE: number;\n readonly MS_MEDIA_KEYERR_OUTPUT: number;\n readonly MS_MEDIA_KEYERR_SERVICE: number;\n readonly MS_MEDIA_KEYERR_UNKNOWN: number;\n}\n\ndeclare var MSMediaKeyError: {\n prototype: MSMediaKeyError;\n new(): MSMediaKeyError;\n readonly MS_MEDIA_KEYERR_CLIENT: number;\n readonly MS_MEDIA_KEYERR_DOMAIN: number;\n readonly MS_MEDIA_KEYERR_HARDWARECHANGE: number;\n readonly MS_MEDIA_KEYERR_OUTPUT: number;\n readonly MS_MEDIA_KEYERR_SERVICE: number;\n readonly MS_MEDIA_KEYERR_UNKNOWN: number;\n};\n\ninterface MSMediaKeyMessageEvent extends Event {\n readonly destinationURL: string | null;\n readonly message: Uint8Array;\n}\n\ndeclare var MSMediaKeyMessageEvent: {\n prototype: MSMediaKeyMessageEvent;\n new(): MSMediaKeyMessageEvent;\n};\n\ninterface MSMediaKeyNeededEvent extends Event {\n readonly initData: Uint8Array | null;\n}\n\ndeclare var MSMediaKeyNeededEvent: {\n prototype: MSMediaKeyNeededEvent;\n new(): MSMediaKeyNeededEvent;\n};\n\ninterface MSMediaKeys {\n readonly keySystem: string;\n createSession(type: string, initData: Uint8Array, cdmData?: Uint8Array): MSMediaKeySession;\n}\n\ndeclare var MSMediaKeys: {\n prototype: MSMediaKeys;\n new(keySystem: string): MSMediaKeys;\n isTypeSupported(keySystem: string, type?: string): boolean;\n isTypeSupportedWithFeatures(keySystem: string, type?: string): string;\n};\n\ninterface MSMediaKeySession extends EventTarget {\n readonly error: MSMediaKeyError | null;\n readonly keySystem: string;\n readonly sessionId: string;\n close(): void;\n update(key: Uint8Array): void;\n}\n\ndeclare var MSMediaKeySession: {\n prototype: MSMediaKeySession;\n new(): MSMediaKeySession;\n};\n\ninterface MSPointerEvent extends MouseEvent {\n readonly currentPoint: any;\n readonly height: number;\n readonly hwTimestamp: number;\n readonly intermediatePoints: any;\n readonly isPrimary: boolean;\n readonly pointerId: number;\n readonly pointerType: any;\n readonly pressure: number;\n readonly rotation: number;\n readonly tiltX: number;\n readonly tiltY: number;\n readonly width: number;\n getCurrentPoint(element: Element): void;\n getIntermediatePoints(element: Element): void;\n initPointerEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget, offsetXArg: number, offsetYArg: number, widthArg: number, heightArg: number, pressure: number, rotation: number, tiltX: number, tiltY: number, pointerIdArg: number, pointerType: any, hwTimestampArg: number, isPrimary: boolean): void;\n}\n\ndeclare var MSPointerEvent: {\n prototype: MSPointerEvent;\n new(typeArg: string, eventInitDict?: PointerEventInit): MSPointerEvent;\n};\n\ninterface MSRangeCollection {\n readonly length: number;\n item(index: number): Range;\n [index: number]: Range;\n}\n\ndeclare var MSRangeCollection: {\n prototype: MSRangeCollection;\n new(): MSRangeCollection;\n};\n\ninterface MSSiteModeEvent extends Event {\n readonly actionURL: string;\n readonly buttonID: number;\n}\n\ndeclare var MSSiteModeEvent: {\n prototype: MSSiteModeEvent;\n new(): MSSiteModeEvent;\n};\n\ninterface MSStream {\n readonly type: string;\n msClose(): void;\n msDetachStream(): any;\n}\n\ndeclare var MSStream: {\n prototype: MSStream;\n new(): MSStream;\n};\n\ninterface MSStreamReader extends EventTarget, MSBaseReader {\n readonly error: DOMError;\n readAsArrayBuffer(stream: MSStream, size?: number): void;\n readAsBinaryString(stream: MSStream, size?: number): void;\n readAsBlob(stream: MSStream, size?: number): void;\n readAsDataURL(stream: MSStream, size?: number): void;\n readAsText(stream: MSStream, encoding?: string, size?: number): void;\n addEventListener<K extends keyof MSBaseReaderEventMap>(type: K, listener: (this: MSStreamReader, ev: MSBaseReaderEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MSStreamReader: {\n prototype: MSStreamReader;\n new(): MSStreamReader;\n};\n\ninterface MSWebViewAsyncOperationEventMap {\n "complete": Event;\n "error": Event;\n}\n\ninterface MSWebViewAsyncOperation extends EventTarget {\n readonly error: DOMError;\n oncomplete: (this: MSWebViewAsyncOperation, ev: Event) => any;\n onerror: (this: MSWebViewAsyncOperation, ev: Event) => any;\n readonly readyState: number;\n readonly result: any;\n readonly target: MSHTMLWebViewElement;\n readonly type: number;\n start(): void;\n readonly COMPLETED: number;\n readonly ERROR: number;\n readonly STARTED: number;\n readonly TYPE_CAPTURE_PREVIEW_TO_RANDOM_ACCESS_STREAM: number;\n readonly TYPE_CREATE_DATA_PACKAGE_FROM_SELECTION: number;\n readonly TYPE_INVOKE_SCRIPT: number;\n addEventListener<K extends keyof MSWebViewAsyncOperationEventMap>(type: K, listener: (this: MSWebViewAsyncOperation, ev: MSWebViewAsyncOperationEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MSWebViewAsyncOperation: {\n prototype: MSWebViewAsyncOperation;\n new(): MSWebViewAsyncOperation;\n readonly COMPLETED: number;\n readonly ERROR: number;\n readonly STARTED: number;\n readonly TYPE_CAPTURE_PREVIEW_TO_RANDOM_ACCESS_STREAM: number;\n readonly TYPE_CREATE_DATA_PACKAGE_FROM_SELECTION: number;\n readonly TYPE_INVOKE_SCRIPT: number;\n};\n\ninterface MSWebViewSettings {\n isIndexedDBEnabled: boolean;\n isJavaScriptEnabled: boolean;\n}\n\ndeclare var MSWebViewSettings: {\n prototype: MSWebViewSettings;\n new(): MSWebViewSettings;\n};\n\ninterface MutationEvent extends Event {\n readonly attrChange: number;\n readonly attrName: string;\n readonly newValue: string;\n readonly prevValue: string;\n readonly relatedNode: Node;\n initMutationEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, relatedNodeArg: Node, prevValueArg: string, newValueArg: string, attrNameArg: string, attrChangeArg: number): void;\n readonly ADDITION: number;\n readonly MODIFICATION: number;\n readonly REMOVAL: number;\n}\n\ndeclare var MutationEvent: {\n prototype: MutationEvent;\n new(): MutationEvent;\n readonly ADDITION: number;\n readonly MODIFICATION: number;\n readonly REMOVAL: number;\n};\n\ninterface MutationObserver {\n disconnect(): void;\n observe(target: Node, options: MutationObserverInit): void;\n takeRecords(): MutationRecord[];\n}\n\ndeclare var MutationObserver: {\n prototype: MutationObserver;\n new(callback: MutationCallback): MutationObserver;\n};\n\ninterface MutationRecord {\n readonly addedNodes: NodeList;\n readonly attributeName: string | null;\n readonly attributeNamespace: string | null;\n readonly nextSibling: Node | null;\n readonly oldValue: string | null;\n readonly previousSibling: Node | null;\n readonly removedNodes: NodeList;\n readonly target: Node;\n readonly type: string;\n}\n\ndeclare var MutationRecord: {\n prototype: MutationRecord;\n new(): MutationRecord;\n};\n\ninterface NamedNodeMap {\n readonly length: number;\n getNamedItem(name: string): Attr;\n getNamedItemNS(namespaceURI: string | null, localName: string | null): Attr;\n item(index: number): Attr;\n removeNamedItem(name: string): Attr;\n removeNamedItemNS(namespaceURI: string | null, localName: string | null): Attr;\n setNamedItem(arg: Attr): Attr;\n setNamedItemNS(arg: Attr): Attr;\n [index: number]: Attr;\n}\n\ndeclare var NamedNodeMap: {\n prototype: NamedNodeMap;\n new(): NamedNodeMap;\n};\n\ninterface NavigationCompletedEvent extends NavigationEvent {\n readonly isSuccess: boolean;\n readonly webErrorStatus: number;\n}\n\ndeclare var NavigationCompletedEvent: {\n prototype: NavigationCompletedEvent;\n new(): NavigationCompletedEvent;\n};\n\ninterface NavigationEvent extends Event {\n readonly uri: string;\n}\n\ndeclare var NavigationEvent: {\n prototype: NavigationEvent;\n new(): NavigationEvent;\n};\n\ninterface NavigationEventWithReferrer extends NavigationEvent {\n readonly referer: string;\n}\n\ndeclare var NavigationEventWithReferrer: {\n prototype: NavigationEventWithReferrer;\n new(): NavigationEventWithReferrer;\n};\n\ninterface Navigator extends Object, NavigatorID, NavigatorOnLine, NavigatorContentUtils, NavigatorStorageUtils, NavigatorGeolocation, MSNavigatorDoNotTrack, MSFileSaver, NavigatorBeacon, NavigatorConcurrentHardware, NavigatorUserMedia {\n readonly authentication: WebAuthentication;\n readonly cookieEnabled: boolean;\n gamepadInputEmulation: GamepadInputEmulationType;\n readonly language: string;\n readonly maxTouchPoints: number;\n readonly mimeTypes: MimeTypeArray;\n readonly msManipulationViewsEnabled: boolean;\n readonly msMaxTouchPoints: number;\n readonly msPointerEnabled: boolean;\n readonly plugins: PluginArray;\n readonly pointerEnabled: boolean;\n readonly serviceWorker: ServiceWorkerContainer;\n readonly webdriver: boolean;\n readonly hardwareConcurrency: number;\n readonly languages: string[];\n getGamepads(): Gamepad[];\n javaEnabled(): boolean;\n msLaunchUri(uri: string, successCallback?: MSLaunchUriCallback, noHandlerCallback?: MSLaunchUriCallback): void;\n requestMediaKeySystemAccess(keySystem: string, supportedConfigurations: MediaKeySystemConfiguration[]): Promise<MediaKeySystemAccess>;\n vibrate(pattern: number | number[]): boolean;\n}\n\ndeclare var Navigator: {\n prototype: Navigator;\n new(): Navigator;\n};\n\ninterface Node extends EventTarget {\n readonly attributes: NamedNodeMap;\n readonly baseURI: string | null;\n readonly childNodes: NodeList;\n readonly firstChild: Node | null;\n readonly lastChild: Node | null;\n readonly localName: string | null;\n readonly namespaceURI: string | null;\n readonly nextSibling: Node | null;\n readonly nodeName: string;\n readonly nodeType: number;\n nodeValue: string | null;\n readonly ownerDocument: Document;\n readonly parentElement: HTMLElement | null;\n readonly parentNode: Node | null;\n readonly previousSibling: Node | null;\n textContent: string | null;\n appendChild<T extends Node>(newChild: T): T;\n cloneNode(deep?: boolean): Node;\n compareDocumentPosition(other: Node): number;\n contains(child: Node): boolean;\n hasAttributes(): boolean;\n hasChildNodes(): boolean;\n insertBefore<T extends Node>(newChild: T, refChild: Node | null): T;\n isDefaultNamespace(namespaceURI: string | null): boolean;\n isEqualNode(arg: Node): boolean;\n isSameNode(other: Node): boolean;\n lookupNamespaceURI(prefix: string | null): string | null;\n lookupPrefix(namespaceURI: string | null): string | null;\n normalize(): void;\n removeChild<T extends Node>(oldChild: T): T;\n replaceChild<T extends Node>(newChild: Node, oldChild: T): T;\n readonly ATTRIBUTE_NODE: number;\n readonly CDATA_SECTION_NODE: number;\n readonly COMMENT_NODE: number;\n readonly DOCUMENT_FRAGMENT_NODE: number;\n readonly DOCUMENT_NODE: number;\n readonly DOCUMENT_POSITION_CONTAINED_BY: number;\n readonly DOCUMENT_POSITION_CONTAINS: number;\n readonly DOCUMENT_POSITION_DISCONNECTED: number;\n readonly DOCUMENT_POSITION_FOLLOWING: number;\n readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;\n readonly DOCUMENT_POSITION_PRECEDING: number;\n readonly DOCUMENT_TYPE_NODE: number;\n readonly ELEMENT_NODE: number;\n readonly ENTITY_NODE: number;\n readonly ENTITY_REFERENCE_NODE: number;\n readonly NOTATION_NODE: number;\n readonly PROCESSING_INSTRUCTION_NODE: number;\n readonly TEXT_NODE: number;\n}\n\ndeclare var Node: {\n prototype: Node;\n new(): Node;\n readonly ATTRIBUTE_NODE: number;\n readonly CDATA_SECTION_NODE: number;\n readonly COMMENT_NODE: number;\n readonly DOCUMENT_FRAGMENT_NODE: number;\n readonly DOCUMENT_NODE: number;\n readonly DOCUMENT_POSITION_CONTAINED_BY: number;\n readonly DOCUMENT_POSITION_CONTAINS: number;\n readonly DOCUMENT_POSITION_DISCONNECTED: number;\n readonly DOCUMENT_POSITION_FOLLOWING: number;\n readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;\n readonly DOCUMENT_POSITION_PRECEDING: number;\n readonly DOCUMENT_TYPE_NODE: number;\n readonly ELEMENT_NODE: number;\n readonly ENTITY_NODE: number;\n readonly ENTITY_REFERENCE_NODE: number;\n readonly NOTATION_NODE: number;\n readonly PROCESSING_INSTRUCTION_NODE: number;\n readonly TEXT_NODE: number;\n};\n\ninterface NodeFilter {\n acceptNode(n: Node): number;\n}\n\ndeclare var NodeFilter: {\n readonly FILTER_ACCEPT: number;\n readonly FILTER_REJECT: number;\n readonly FILTER_SKIP: number;\n readonly SHOW_ALL: number;\n readonly SHOW_ATTRIBUTE: number;\n readonly SHOW_CDATA_SECTION: number;\n readonly SHOW_COMMENT: number;\n readonly SHOW_DOCUMENT: number;\n readonly SHOW_DOCUMENT_FRAGMENT: number;\n readonly SHOW_DOCUMENT_TYPE: number;\n readonly SHOW_ELEMENT: number;\n readonly SHOW_ENTITY: number;\n readonly SHOW_ENTITY_REFERENCE: number;\n readonly SHOW_NOTATION: number;\n readonly SHOW_PROCESSING_INSTRUCTION: number;\n readonly SHOW_TEXT: number;\n};\n\ninterface NodeIterator {\n readonly expandEntityReferences: boolean;\n readonly filter: NodeFilter;\n readonly root: Node;\n readonly whatToShow: number;\n detach(): void;\n nextNode(): Node;\n previousNode(): Node;\n}\n\ndeclare var NodeIterator: {\n prototype: NodeIterator;\n new(): NodeIterator;\n};\n\ninterface NodeList {\n readonly length: number;\n item(index: number): Node;\n [index: number]: Node;\n}\n\ndeclare var NodeList: {\n prototype: NodeList;\n new(): NodeList;\n};\n\ninterface NotificationEventMap {\n "click": Event;\n "close": Event;\n "error": Event;\n "show": Event;\n}\n\ninterface Notification extends EventTarget {\n readonly body: string;\n readonly dir: NotificationDirection;\n readonly icon: string;\n readonly lang: string;\n onclick: (this: Notification, ev: Event) => any;\n onclose: (this: Notification, ev: Event) => any;\n onerror: (this: Notification, ev: Event) => any;\n onshow: (this: Notification, ev: Event) => any;\n readonly permission: NotificationPermission;\n readonly tag: string;\n readonly title: string;\n close(): void;\n addEventListener<K extends keyof NotificationEventMap>(type: K, listener: (this: Notification, ev: NotificationEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Notification: {\n prototype: Notification;\n new(title: string, options?: NotificationOptions): Notification;\n requestPermission(callback?: NotificationPermissionCallback): Promise<NotificationPermission>;\n};\n\ninterface OES_element_index_uint {\n}\n\ndeclare var OES_element_index_uint: {\n prototype: OES_element_index_uint;\n new(): OES_element_index_uint;\n};\n\ninterface OES_standard_derivatives {\n readonly FRAGMENT_SHADER_DERIVATIVE_HINT_OES: number;\n}\n\ndeclare var OES_standard_derivatives: {\n prototype: OES_standard_derivatives;\n new(): OES_standard_derivatives;\n readonly FRAGMENT_SHADER_DERIVATIVE_HINT_OES: number;\n};\n\ninterface OES_texture_float {\n}\n\ndeclare var OES_texture_float: {\n prototype: OES_texture_float;\n new(): OES_texture_float;\n};\n\ninterface OES_texture_float_linear {\n}\n\ndeclare var OES_texture_float_linear: {\n prototype: OES_texture_float_linear;\n new(): OES_texture_float_linear;\n};\n\ninterface OES_texture_half_float {\n readonly HALF_FLOAT_OES: number;\n}\n\ndeclare var OES_texture_half_float: {\n prototype: OES_texture_half_float;\n new(): OES_texture_half_float;\n readonly HALF_FLOAT_OES: number;\n};\n\ninterface OES_texture_half_float_linear {\n}\n\ndeclare var OES_texture_half_float_linear: {\n prototype: OES_texture_half_float_linear;\n new(): OES_texture_half_float_linear;\n};\n\ninterface OfflineAudioCompletionEvent extends Event {\n readonly renderedBuffer: AudioBuffer;\n}\n\ndeclare var OfflineAudioCompletionEvent: {\n prototype: OfflineAudioCompletionEvent;\n new(): OfflineAudioCompletionEvent;\n};\n\ninterface OfflineAudioContextEventMap extends AudioContextEventMap {\n "complete": OfflineAudioCompletionEvent;\n}\n\ninterface OfflineAudioContext extends AudioContextBase {\n readonly length: number;\n oncomplete: (this: OfflineAudioContext, ev: OfflineAudioCompletionEvent) => any;\n startRendering(): Promise<AudioBuffer>;\n suspend(suspendTime: number): Promise<void>;\n addEventListener<K extends keyof OfflineAudioContextEventMap>(type: K, listener: (this: OfflineAudioContext, ev: OfflineAudioContextEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var OfflineAudioContext: {\n prototype: OfflineAudioContext;\n new(numberOfChannels: number, length: number, sampleRate: number): OfflineAudioContext;\n};\n\ninterface OscillatorNodeEventMap {\n "ended": MediaStreamErrorEvent;\n}\n\ninterface OscillatorNode extends AudioNode {\n readonly detune: AudioParam;\n readonly frequency: AudioParam;\n onended: (this: OscillatorNode, ev: MediaStreamErrorEvent) => any;\n type: OscillatorType;\n setPeriodicWave(periodicWave: PeriodicWave): void;\n start(when?: number): void;\n stop(when?: number): void;\n addEventListener<K extends keyof OscillatorNodeEventMap>(type: K, listener: (this: OscillatorNode, ev: OscillatorNodeEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var OscillatorNode: {\n prototype: OscillatorNode;\n new(): OscillatorNode;\n};\n\ninterface OverflowEvent extends UIEvent {\n readonly horizontalOverflow: boolean;\n readonly orient: number;\n readonly verticalOverflow: boolean;\n readonly BOTH: number;\n readonly HORIZONTAL: number;\n readonly VERTICAL: number;\n}\n\ndeclare var OverflowEvent: {\n prototype: OverflowEvent;\n new(): OverflowEvent;\n readonly BOTH: number;\n readonly HORIZONTAL: number;\n readonly VERTICAL: number;\n};\n\ninterface PageTransitionEvent extends Event {\n readonly persisted: boolean;\n}\n\ndeclare var PageTransitionEvent: {\n prototype: PageTransitionEvent;\n new(): PageTransitionEvent;\n};\n\ninterface PannerNode extends AudioNode {\n coneInnerAngle: number;\n coneOuterAngle: number;\n coneOuterGain: number;\n distanceModel: DistanceModelType;\n maxDistance: number;\n panningModel: PanningModelType;\n refDistance: number;\n rolloffFactor: number;\n setOrientation(x: number, y: number, z: number): void;\n setPosition(x: number, y: number, z: number): void;\n setVelocity(x: number, y: number, z: number): void;\n}\n\ndeclare var PannerNode: {\n prototype: PannerNode;\n new(): PannerNode;\n};\n\ninterface Path2D extends Object, CanvasPathMethods {\n}\n\ndeclare var Path2D: {\n prototype: Path2D;\n new(path?: Path2D): Path2D;\n};\n\ninterface PaymentAddress {\n readonly addressLine: string[];\n readonly city: string;\n readonly country: string;\n readonly dependentLocality: string;\n readonly languageCode: string;\n readonly organization: string;\n readonly phone: string;\n readonly postalCode: string;\n readonly recipient: string;\n readonly region: string;\n readonly sortingCode: string;\n toJSON(): any;\n}\n\ndeclare var PaymentAddress: {\n prototype: PaymentAddress;\n new(): PaymentAddress;\n};\n\ninterface PaymentRequestEventMap {\n "shippingaddresschange": Event;\n "shippingoptionchange": Event;\n}\n\ninterface PaymentRequest extends EventTarget {\n onshippingaddresschange: (this: PaymentRequest, ev: Event) => any;\n onshippingoptionchange: (this: PaymentRequest, ev: Event) => any;\n readonly shippingAddress: PaymentAddress | null;\n readonly shippingOption: string | null;\n readonly shippingType: PaymentShippingType | null;\n abort(): Promise<void>;\n show(): Promise<PaymentResponse>;\n addEventListener<K extends keyof PaymentRequestEventMap>(type: K, listener: (this: PaymentRequest, ev: PaymentRequestEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var PaymentRequest: {\n prototype: PaymentRequest;\n new(methodData: PaymentMethodData[], details: PaymentDetails, options?: PaymentOptions): PaymentRequest;\n};\n\ninterface PaymentRequestUpdateEvent extends Event {\n updateWith(d: Promise<PaymentDetails>): void;\n}\n\ndeclare var PaymentRequestUpdateEvent: {\n prototype: PaymentRequestUpdateEvent;\n new(type: string, eventInitDict?: PaymentRequestUpdateEventInit): PaymentRequestUpdateEvent;\n};\n\ninterface PaymentResponse {\n readonly details: any;\n readonly methodName: string;\n readonly payerEmail: string | null;\n readonly payerName: string | null;\n readonly payerPhone: string | null;\n readonly shippingAddress: PaymentAddress | null;\n readonly shippingOption: string | null;\n complete(result?: PaymentComplete): Promise<void>;\n toJSON(): any;\n}\n\ndeclare var PaymentResponse: {\n prototype: PaymentResponse;\n new(): PaymentResponse;\n};\n\ninterface Performance {\n readonly navigation: PerformanceNavigation;\n readonly timing: PerformanceTiming;\n clearMarks(markName?: string): void;\n clearMeasures(measureName?: string): void;\n clearResourceTimings(): void;\n getEntries(): any;\n getEntriesByName(name: string, entryType?: string): any;\n getEntriesByType(entryType: string): any;\n getMarks(markName?: string): any;\n getMeasures(measureName?: string): any;\n mark(markName: string): void;\n measure(measureName: string, startMarkName?: string, endMarkName?: string): void;\n now(): number;\n setResourceTimingBufferSize(maxSize: number): void;\n toJSON(): any;\n}\n\ndeclare var Performance: {\n prototype: Performance;\n new(): Performance;\n};\n\ninterface PerformanceEntry {\n readonly duration: number;\n readonly entryType: string;\n readonly name: string;\n readonly startTime: number;\n}\n\ndeclare var PerformanceEntry: {\n prototype: PerformanceEntry;\n new(): PerformanceEntry;\n};\n\ninterface PerformanceMark extends PerformanceEntry {\n}\n\ndeclare var PerformanceMark: {\n prototype: PerformanceMark;\n new(): PerformanceMark;\n};\n\ninterface PerformanceMeasure extends PerformanceEntry {\n}\n\ndeclare var PerformanceMeasure: {\n prototype: PerformanceMeasure;\n new(): PerformanceMeasure;\n};\n\ninterface PerformanceNavigation {\n readonly redirectCount: number;\n readonly type: number;\n toJSON(): any;\n readonly TYPE_BACK_FORWARD: number;\n readonly TYPE_NAVIGATE: number;\n readonly TYPE_RELOAD: number;\n readonly TYPE_RESERVED: number;\n}\n\ndeclare var PerformanceNavigation: {\n prototype: PerformanceNavigation;\n new(): PerformanceNavigation;\n readonly TYPE_BACK_FORWARD: number;\n readonly TYPE_NAVIGATE: number;\n readonly TYPE_RELOAD: number;\n readonly TYPE_RESERVED: number;\n};\n\ninterface PerformanceNavigationTiming extends PerformanceEntry {\n readonly connectEnd: number;\n readonly connectStart: number;\n readonly domainLookupEnd: number;\n readonly domainLookupStart: number;\n readonly domComplete: number;\n readonly domContentLoadedEventEnd: number;\n readonly domContentLoadedEventStart: number;\n readonly domInteractive: number;\n readonly domLoading: number;\n readonly fetchStart: number;\n readonly loadEventEnd: number;\n readonly loadEventStart: number;\n readonly navigationStart: number;\n readonly redirectCount: number;\n readonly redirectEnd: number;\n readonly redirectStart: number;\n readonly requestStart: number;\n readonly responseEnd: number;\n readonly responseStart: number;\n readonly type: NavigationType;\n readonly unloadEventEnd: number;\n readonly unloadEventStart: number;\n}\n\ndeclare var PerformanceNavigationTiming: {\n prototype: PerformanceNavigationTiming;\n new(): PerformanceNavigationTiming;\n};\n\ninterface PerformanceResourceTiming extends PerformanceEntry {\n readonly connectEnd: number;\n readonly connectStart: number;\n readonly domainLookupEnd: number;\n readonly domainLookupStart: number;\n readonly fetchStart: number;\n readonly initiatorType: string;\n readonly redirectEnd: number;\n readonly redirectStart: number;\n readonly requestStart: number;\n readonly responseEnd: number;\n readonly responseStart: number;\n}\n\ndeclare var PerformanceResourceTiming: {\n prototype: PerformanceResourceTiming;\n new(): PerformanceResourceTiming;\n};\n\ninterface PerformanceTiming {\n readonly connectEnd: number;\n readonly connectStart: number;\n readonly domainLookupEnd: number;\n readonly domainLookupStart: number;\n readonly domComplete: number;\n readonly domContentLoadedEventEnd: number;\n readonly domContentLoadedEventStart: number;\n readonly domInteractive: number;\n readonly domLoading: number;\n readonly fetchStart: number;\n readonly loadEventEnd: number;\n readonly loadEventStart: number;\n readonly msFirstPaint: number;\n readonly navigationStart: number;\n readonly redirectEnd: number;\n readonly redirectStart: number;\n readonly requestStart: number;\n readonly responseEnd: number;\n readonly responseStart: number;\n readonly unloadEventEnd: number;\n readonly unloadEventStart: number;\n readonly secureConnectionStart: number;\n toJSON(): any;\n}\n\ndeclare var PerformanceTiming: {\n prototype: PerformanceTiming;\n new(): PerformanceTiming;\n};\n\ninterface PerfWidgetExternal {\n readonly activeNetworkRequestCount: number;\n readonly averageFrameTime: number;\n readonly averagePaintTime: number;\n readonly extraInformationEnabled: boolean;\n readonly independentRenderingEnabled: boolean;\n readonly irDisablingContentString: string;\n readonly irStatusAvailable: boolean;\n readonly maxCpuSpeed: number;\n readonly paintRequestsPerSecond: number;\n readonly performanceCounter: number;\n readonly performanceCounterFrequency: number;\n addEventListener(eventType: string, callback: Function): void;\n getMemoryUsage(): number;\n getProcessCpuUsage(): number;\n getRecentCpuUsage(last: number | null): any;\n getRecentFrames(last: number | null): any;\n getRecentMemoryUsage(last: number | null): any;\n getRecentPaintRequests(last: number | null): any;\n removeEventListener(eventType: string, callback: Function): void;\n repositionWindow(x: number, y: number): void;\n resizeWindow(width: number, height: number): void;\n}\n\ndeclare var PerfWidgetExternal: {\n prototype: PerfWidgetExternal;\n new(): PerfWidgetExternal;\n};\n\ninterface PeriodicWave {\n}\n\ndeclare var PeriodicWave: {\n prototype: PeriodicWave;\n new(): PeriodicWave;\n};\n\ninterface PermissionRequest extends DeferredPermissionRequest {\n readonly state: MSWebViewPermissionState;\n defer(): void;\n}\n\ndeclare var PermissionRequest: {\n prototype: PermissionRequest;\n new(): PermissionRequest;\n};\n\ninterface PermissionRequestedEvent extends Event {\n readonly permissionRequest: PermissionRequest;\n}\n\ndeclare var PermissionRequestedEvent: {\n prototype: PermissionRequestedEvent;\n new(): PermissionRequestedEvent;\n};\n\ninterface Plugin {\n readonly description: string;\n readonly filename: string;\n readonly length: number;\n readonly name: string;\n readonly version: string;\n item(index: number): MimeType;\n namedItem(type: string): MimeType;\n [index: number]: MimeType;\n}\n\ndeclare var Plugin: {\n prototype: Plugin;\n new(): Plugin;\n};\n\ninterface PluginArray {\n readonly length: number;\n item(index: number): Plugin;\n namedItem(name: string): Plugin;\n refresh(reload?: boolean): void;\n [index: number]: Plugin;\n}\n\ndeclare var PluginArray: {\n prototype: PluginArray;\n new(): PluginArray;\n};\n\ninterface PointerEvent extends MouseEvent {\n readonly currentPoint: any;\n readonly height: number;\n readonly hwTimestamp: number;\n readonly intermediatePoints: any;\n readonly isPrimary: boolean;\n readonly pointerId: number;\n readonly pointerType: any;\n readonly pressure: number;\n readonly rotation: number;\n readonly tiltX: number;\n readonly tiltY: number;\n readonly width: number;\n getCurrentPoint(element: Element): void;\n getIntermediatePoints(element: Element): void;\n initPointerEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget, offsetXArg: number, offsetYArg: number, widthArg: number, heightArg: number, pressure: number, rotation: number, tiltX: number, tiltY: number, pointerIdArg: number, pointerType: any, hwTimestampArg: number, isPrimary: boolean): void;\n}\n\ndeclare var PointerEvent: {\n prototype: PointerEvent;\n new(typeArg: string, eventInitDict?: PointerEventInit): PointerEvent;\n};\n\ninterface PopStateEvent extends Event {\n readonly state: any;\n initPopStateEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, stateArg: any): void;\n}\n\ndeclare var PopStateEvent: {\n prototype: PopStateEvent;\n new(typeArg: string, eventInitDict?: PopStateEventInit): PopStateEvent;\n};\n\ninterface Position {\n readonly coords: Coordinates;\n readonly timestamp: number;\n}\n\ndeclare var Position: {\n prototype: Position;\n new(): Position;\n};\n\ninterface PositionError {\n readonly code: number;\n readonly message: string;\n toString(): string;\n readonly PERMISSION_DENIED: number;\n readonly POSITION_UNAVAILABLE: number;\n readonly TIMEOUT: number;\n}\n\ndeclare var PositionError: {\n prototype: PositionError;\n new(): PositionError;\n readonly PERMISSION_DENIED: number;\n readonly POSITION_UNAVAILABLE: number;\n readonly TIMEOUT: number;\n};\n\ninterface ProcessingInstruction extends CharacterData {\n readonly target: string;\n}\n\ndeclare var ProcessingInstruction: {\n prototype: ProcessingInstruction;\n new(): ProcessingInstruction;\n};\n\ninterface ProgressEvent extends Event {\n readonly lengthComputable: boolean;\n readonly loaded: number;\n readonly total: number;\n initProgressEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, lengthComputableArg: boolean, loadedArg: number, totalArg: number): void;\n}\n\ndeclare var ProgressEvent: {\n prototype: ProgressEvent;\n new(type: string, eventInitDict?: ProgressEventInit): ProgressEvent;\n};\n\ninterface PushManager {\n getSubscription(): Promise<PushSubscription>;\n permissionState(options?: PushSubscriptionOptionsInit): Promise<PushPermissionState>;\n subscribe(options?: PushSubscriptionOptionsInit): Promise<PushSubscription>;\n}\n\ndeclare var PushManager: {\n prototype: PushManager;\n new(): PushManager;\n};\n\ninterface PushSubscription {\n readonly endpoint: USVString;\n readonly options: PushSubscriptionOptions;\n getKey(name: PushEncryptionKeyName): ArrayBuffer | null;\n toJSON(): any;\n unsubscribe(): Promise<boolean>;\n}\n\ndeclare var PushSubscription: {\n prototype: PushSubscription;\n new(): PushSubscription;\n};\n\ninterface PushSubscriptionOptions {\n readonly applicationServerKey: ArrayBuffer | null;\n readonly userVisibleOnly: boolean;\n}\n\ndeclare var PushSubscriptionOptions: {\n prototype: PushSubscriptionOptions;\n new(): PushSubscriptionOptions;\n};\n\ninterface Range {\n readonly collapsed: boolean;\n readonly commonAncestorContainer: Node;\n readonly endContainer: Node;\n readonly endOffset: number;\n readonly startContainer: Node;\n readonly startOffset: number;\n cloneContents(): DocumentFragment;\n cloneRange(): Range;\n collapse(toStart: boolean): void;\n compareBoundaryPoints(how: number, sourceRange: Range): number;\n createContextualFragment(fragment: string): DocumentFragment;\n deleteContents(): void;\n detach(): void;\n expand(Unit: ExpandGranularity): boolean;\n extractContents(): DocumentFragment;\n getBoundingClientRect(): ClientRect;\n getClientRects(): ClientRectList;\n insertNode(newNode: Node): void;\n selectNode(refNode: Node): void;\n selectNodeContents(refNode: Node): void;\n setEnd(refNode: Node, offset: number): void;\n setEndAfter(refNode: Node): void;\n setEndBefore(refNode: Node): void;\n setStart(refNode: Node, offset: number): void;\n setStartAfter(refNode: Node): void;\n setStartBefore(refNode: Node): void;\n surroundContents(newParent: Node): void;\n toString(): string;\n readonly END_TO_END: number;\n readonly END_TO_START: number;\n readonly START_TO_END: number;\n readonly START_TO_START: number;\n}\n\ndeclare var Range: {\n prototype: Range;\n new(): Range;\n readonly END_TO_END: number;\n readonly END_TO_START: number;\n readonly START_TO_END: number;\n readonly START_TO_START: number;\n};\n\ninterface ReadableStream {\n readonly locked: boolean;\n cancel(): Promise<void>;\n getReader(): ReadableStreamReader;\n}\n\ndeclare var ReadableStream: {\n prototype: ReadableStream;\n new(): ReadableStream;\n};\n\ninterface ReadableStreamReader {\n cancel(): Promise<void>;\n read(): Promise<any>;\n releaseLock(): void;\n}\n\ndeclare var ReadableStreamReader: {\n prototype: ReadableStreamReader;\n new(): ReadableStreamReader;\n};\n\ninterface Request extends Object, Body {\n readonly cache: RequestCache;\n readonly credentials: RequestCredentials;\n readonly destination: RequestDestination;\n readonly headers: Headers;\n readonly integrity: string;\n readonly keepalive: boolean;\n readonly method: string;\n readonly mode: RequestMode;\n readonly redirect: RequestRedirect;\n readonly referrer: string;\n readonly referrerPolicy: ReferrerPolicy;\n readonly type: RequestType;\n readonly url: string;\n clone(): Request;\n}\n\ndeclare var Request: {\n prototype: Request;\n new(input: Request | string, init?: RequestInit): Request;\n};\n\ninterface Response extends Object, Body {\n readonly body: ReadableStream | null;\n readonly headers: Headers;\n readonly ok: boolean;\n readonly status: number;\n readonly statusText: string;\n readonly type: ResponseType;\n readonly url: string;\n clone(): Response;\n}\n\ndeclare var Response: {\n prototype: Response;\n new(body?: any, init?: ResponseInit): Response;\n error: () => Response;\n redirect: (url: string, status?: number) => Response;\n};\n\ninterface RTCDtlsTransportEventMap {\n "dtlsstatechange": RTCDtlsTransportStateChangedEvent;\n "error": Event;\n}\n\ninterface RTCDtlsTransport extends RTCStatsProvider {\n ondtlsstatechange: ((this: RTCDtlsTransport, ev: RTCDtlsTransportStateChangedEvent) => any) | null;\n onerror: ((this: RTCDtlsTransport, ev: Event) => any) | null;\n readonly state: RTCDtlsTransportState;\n readonly transport: RTCIceTransport;\n getLocalParameters(): RTCDtlsParameters;\n getRemoteCertificates(): ArrayBuffer[];\n getRemoteParameters(): RTCDtlsParameters | null;\n start(remoteParameters: RTCDtlsParameters): void;\n stop(): void;\n addEventListener<K extends keyof RTCDtlsTransportEventMap>(type: K, listener: (this: RTCDtlsTransport, ev: RTCDtlsTransportEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCDtlsTransport: {\n prototype: RTCDtlsTransport;\n new(transport: RTCIceTransport): RTCDtlsTransport;\n};\n\ninterface RTCDtlsTransportStateChangedEvent extends Event {\n readonly state: RTCDtlsTransportState;\n}\n\ndeclare var RTCDtlsTransportStateChangedEvent: {\n prototype: RTCDtlsTransportStateChangedEvent;\n new(): RTCDtlsTransportStateChangedEvent;\n};\n\ninterface RTCDtmfSenderEventMap {\n "tonechange": RTCDTMFToneChangeEvent;\n}\n\ninterface RTCDtmfSender extends EventTarget {\n readonly canInsertDTMF: boolean;\n readonly duration: number;\n readonly interToneGap: number;\n ontonechange: (this: RTCDtmfSender, ev: RTCDTMFToneChangeEvent) => any;\n readonly sender: RTCRtpSender;\n readonly toneBuffer: string;\n insertDTMF(tones: string, duration?: number, interToneGap?: number): void;\n addEventListener<K extends keyof RTCDtmfSenderEventMap>(type: K, listener: (this: RTCDtmfSender, ev: RTCDtmfSenderEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCDtmfSender: {\n prototype: RTCDtmfSender;\n new(sender: RTCRtpSender): RTCDtmfSender;\n};\n\ninterface RTCDTMFToneChangeEvent extends Event {\n readonly tone: string;\n}\n\ndeclare var RTCDTMFToneChangeEvent: {\n prototype: RTCDTMFToneChangeEvent;\n new(typeArg: string, eventInitDict: RTCDTMFToneChangeEventInit): RTCDTMFToneChangeEvent;\n};\n\ninterface RTCIceCandidate {\n candidate: string | null;\n sdpMid: string | null;\n sdpMLineIndex: number | null;\n toJSON(): any;\n}\n\ndeclare var RTCIceCandidate: {\n prototype: RTCIceCandidate;\n new(candidateInitDict?: RTCIceCandidateInit): RTCIceCandidate;\n};\n\ninterface RTCIceCandidatePairChangedEvent extends Event {\n readonly pair: RTCIceCandidatePair;\n}\n\ndeclare var RTCIceCandidatePairChangedEvent: {\n prototype: RTCIceCandidatePairChangedEvent;\n new(): RTCIceCandidatePairChangedEvent;\n};\n\ninterface RTCIceGathererEventMap {\n "error": Event;\n "localcandidate": RTCIceGathererEvent;\n}\n\ninterface RTCIceGatherer extends RTCStatsProvider {\n readonly component: RTCIceComponent;\n onerror: ((this: RTCIceGatherer, ev: Event) => any) | null;\n onlocalcandidate: ((this: RTCIceGatherer, ev: RTCIceGathererEvent) => any) | null;\n createAssociatedGatherer(): RTCIceGatherer;\n getLocalCandidates(): RTCIceCandidateDictionary[];\n getLocalParameters(): RTCIceParameters;\n addEventListener<K extends keyof RTCIceGathererEventMap>(type: K, listener: (this: RTCIceGatherer, ev: RTCIceGathererEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCIceGatherer: {\n prototype: RTCIceGatherer;\n new(options: RTCIceGatherOptions): RTCIceGatherer;\n};\n\ninterface RTCIceGathererEvent extends Event {\n readonly candidate: RTCIceCandidateDictionary | RTCIceCandidateComplete;\n}\n\ndeclare var RTCIceGathererEvent: {\n prototype: RTCIceGathererEvent;\n new(): RTCIceGathererEvent;\n};\n\ninterface RTCIceTransportEventMap {\n "candidatepairchange": RTCIceCandidatePairChangedEvent;\n "icestatechange": RTCIceTransportStateChangedEvent;\n}\n\ninterface RTCIceTransport extends RTCStatsProvider {\n readonly component: RTCIceComponent;\n readonly iceGatherer: RTCIceGatherer | null;\n oncandidatepairchange: ((this: RTCIceTransport, ev: RTCIceCandidatePairChangedEvent) => any) | null;\n onicestatechange: ((this: RTCIceTransport, ev: RTCIceTransportStateChangedEvent) => any) | null;\n readonly role: RTCIceRole;\n readonly state: RTCIceTransportState;\n addRemoteCandidate(remoteCandidate: RTCIceCandidateDictionary | RTCIceCandidateComplete): void;\n createAssociatedTransport(): RTCIceTransport;\n getNominatedCandidatePair(): RTCIceCandidatePair | null;\n getRemoteCandidates(): RTCIceCandidateDictionary[];\n getRemoteParameters(): RTCIceParameters | null;\n setRemoteCandidates(remoteCandidates: RTCIceCandidateDictionary[]): void;\n start(gatherer: RTCIceGatherer, remoteParameters: RTCIceParameters, role?: RTCIceRole): void;\n stop(): void;\n addEventListener<K extends keyof RTCIceTransportEventMap>(type: K, listener: (this: RTCIceTransport, ev: RTCIceTransportEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCIceTransport: {\n prototype: RTCIceTransport;\n new(): RTCIceTransport;\n};\n\ninterface RTCIceTransportStateChangedEvent extends Event {\n readonly state: RTCIceTransportState;\n}\n\ndeclare var RTCIceTransportStateChangedEvent: {\n prototype: RTCIceTransportStateChangedEvent;\n new(): RTCIceTransportStateChangedEvent;\n};\n\ninterface RTCPeerConnectionEventMap {\n "addstream": MediaStreamEvent;\n "icecandidate": RTCPeerConnectionIceEvent;\n "iceconnectionstatechange": Event;\n "icegatheringstatechange": Event;\n "negotiationneeded": Event;\n "removestream": MediaStreamEvent;\n "signalingstatechange": Event;\n}\n\ninterface RTCPeerConnection extends EventTarget {\n readonly canTrickleIceCandidates: boolean | null;\n readonly iceConnectionState: RTCIceConnectionState;\n readonly iceGatheringState: RTCIceGatheringState;\n readonly localDescription: RTCSessionDescription | null;\n onaddstream: (this: RTCPeerConnection, ev: MediaStreamEvent) => any;\n onicecandidate: (this: RTCPeerConnection, ev: RTCPeerConnectionIceEvent) => any;\n oniceconnectionstatechange: (this: RTCPeerConnection, ev: Event) => any;\n onicegatheringstatechange: (this: RTCPeerConnection, ev: Event) => any;\n onnegotiationneeded: (this: RTCPeerConnection, ev: Event) => any;\n onremovestream: (this: RTCPeerConnection, ev: MediaStreamEvent) => any;\n onsignalingstatechange: (this: RTCPeerConnection, ev: Event) => any;\n readonly remoteDescription: RTCSessionDescription | null;\n readonly signalingState: RTCSignalingState;\n addIceCandidate(candidate: RTCIceCandidate, successCallback?: VoidFunction, failureCallback?: RTCPeerConnectionErrorCallback): Promise<void>;\n addStream(stream: MediaStream): void;\n close(): void;\n createAnswer(successCallback?: RTCSessionDescriptionCallback, failureCallback?: RTCPeerConnectionErrorCallback): Promise<RTCSessionDescription>;\n createOffer(successCallback?: RTCSessionDescriptionCallback, failureCallback?: RTCPeerConnectionErrorCallback, options?: RTCOfferOptions): Promise<RTCSessionDescription>;\n getConfiguration(): RTCConfiguration;\n getLocalStreams(): MediaStream[];\n getRemoteStreams(): MediaStream[];\n getStats(selector: MediaStreamTrack | null, successCallback?: RTCStatsCallback, failureCallback?: RTCPeerConnectionErrorCallback): Promise<RTCStatsReport>;\n getStreamById(streamId: string): MediaStream | null;\n removeStream(stream: MediaStream): void;\n setLocalDescription(description: RTCSessionDescription, successCallback?: VoidFunction, failureCallback?: RTCPeerConnectionErrorCallback): Promise<void>;\n setRemoteDescription(description: RTCSessionDescription, successCallback?: VoidFunction, failureCallback?: RTCPeerConnectionErrorCallback): Promise<void>;\n addEventListener<K extends keyof RTCPeerConnectionEventMap>(type: K, listener: (this: RTCPeerConnection, ev: RTCPeerConnectionEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCPeerConnection: {\n prototype: RTCPeerConnection;\n new(configuration: RTCConfiguration): RTCPeerConnection;\n};\n\ninterface RTCPeerConnectionIceEvent extends Event {\n readonly candidate: RTCIceCandidate;\n}\n\ndeclare var RTCPeerConnectionIceEvent: {\n prototype: RTCPeerConnectionIceEvent;\n new(type: string, eventInitDict: RTCPeerConnectionIceEventInit): RTCPeerConnectionIceEvent;\n};\n\ninterface RTCRtpReceiverEventMap {\n "error": Event;\n}\n\ninterface RTCRtpReceiver extends RTCStatsProvider {\n onerror: ((this: RTCRtpReceiver, ev: Event) => any) | null;\n readonly rtcpTransport: RTCDtlsTransport;\n readonly track: MediaStreamTrack | null;\n readonly transport: RTCDtlsTransport | RTCSrtpSdesTransport;\n getContributingSources(): RTCRtpContributingSource[];\n receive(parameters: RTCRtpParameters): void;\n requestSendCSRC(csrc: number): void;\n setTransport(transport: RTCDtlsTransport | RTCSrtpSdesTransport, rtcpTransport?: RTCDtlsTransport): void;\n stop(): void;\n addEventListener<K extends keyof RTCRtpReceiverEventMap>(type: K, listener: (this: RTCRtpReceiver, ev: RTCRtpReceiverEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCRtpReceiver: {\n prototype: RTCRtpReceiver;\n new(transport: RTCDtlsTransport | RTCSrtpSdesTransport, kind: string, rtcpTransport?: RTCDtlsTransport): RTCRtpReceiver;\n getCapabilities(kind?: string): RTCRtpCapabilities;\n};\n\ninterface RTCRtpSenderEventMap {\n "error": Event;\n "ssrcconflict": RTCSsrcConflictEvent;\n}\n\ninterface RTCRtpSender extends RTCStatsProvider {\n onerror: ((this: RTCRtpSender, ev: Event) => any) | null;\n onssrcconflict: ((this: RTCRtpSender, ev: RTCSsrcConflictEvent) => any) | null;\n readonly rtcpTransport: RTCDtlsTransport;\n readonly track: MediaStreamTrack;\n readonly transport: RTCDtlsTransport | RTCSrtpSdesTransport;\n send(parameters: RTCRtpParameters): void;\n setTrack(track: MediaStreamTrack): void;\n setTransport(transport: RTCDtlsTransport | RTCSrtpSdesTransport, rtcpTransport?: RTCDtlsTransport): void;\n stop(): void;\n addEventListener<K extends keyof RTCRtpSenderEventMap>(type: K, listener: (this: RTCRtpSender, ev: RTCRtpSenderEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCRtpSender: {\n prototype: RTCRtpSender;\n new(track: MediaStreamTrack, transport: RTCDtlsTransport | RTCSrtpSdesTransport, rtcpTransport?: RTCDtlsTransport): RTCRtpSender;\n getCapabilities(kind?: string): RTCRtpCapabilities;\n};\n\ninterface RTCSessionDescription {\n sdp: string | null;\n type: RTCSdpType | null;\n toJSON(): any;\n}\n\ndeclare var RTCSessionDescription: {\n prototype: RTCSessionDescription;\n new(descriptionInitDict?: RTCSessionDescriptionInit): RTCSessionDescription;\n};\n\ninterface RTCSrtpSdesTransportEventMap {\n "error": Event;\n}\n\ninterface RTCSrtpSdesTransport extends EventTarget {\n onerror: ((this: RTCSrtpSdesTransport, ev: Event) => any) | null;\n readonly transport: RTCIceTransport;\n addEventListener<K extends keyof RTCSrtpSdesTransportEventMap>(type: K, listener: (this: RTCSrtpSdesTransport, ev: RTCSrtpSdesTransportEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCSrtpSdesTransport: {\n prototype: RTCSrtpSdesTransport;\n new(transport: RTCIceTransport, encryptParameters: RTCSrtpSdesParameters, decryptParameters: RTCSrtpSdesParameters): RTCSrtpSdesTransport;\n getLocalParameters(): RTCSrtpSdesParameters[];\n};\n\ninterface RTCSsrcConflictEvent extends Event {\n readonly ssrc: number;\n}\n\ndeclare var RTCSsrcConflictEvent: {\n prototype: RTCSsrcConflictEvent;\n new(): RTCSsrcConflictEvent;\n};\n\ninterface RTCStatsProvider extends EventTarget {\n getStats(): Promise<RTCStatsReport>;\n msGetStats(): Promise<RTCStatsReport>;\n}\n\ndeclare var RTCStatsProvider: {\n prototype: RTCStatsProvider;\n new(): RTCStatsProvider;\n};\n\ninterface ScopedCredential {\n readonly id: ArrayBuffer;\n readonly type: ScopedCredentialType;\n}\n\ndeclare var ScopedCredential: {\n prototype: ScopedCredential;\n new(): ScopedCredential;\n};\n\ninterface ScopedCredentialInfo {\n readonly credential: ScopedCredential;\n readonly publicKey: CryptoKey;\n}\n\ndeclare var ScopedCredentialInfo: {\n prototype: ScopedCredentialInfo;\n new(): ScopedCredentialInfo;\n};\n\ninterface ScreenEventMap {\n "MSOrientationChange": Event;\n}\n\ninterface Screen extends EventTarget {\n readonly availHeight: number;\n readonly availWidth: number;\n bufferDepth: number;\n readonly colorDepth: number;\n readonly deviceXDPI: number;\n readonly deviceYDPI: number;\n readonly fontSmoothingEnabled: boolean;\n readonly height: number;\n readonly logicalXDPI: number;\n readonly logicalYDPI: number;\n readonly msOrientation: string;\n onmsorientationchange: (this: Screen, ev: Event) => any;\n readonly pixelDepth: number;\n readonly systemXDPI: number;\n readonly systemYDPI: number;\n readonly width: number;\n msLockOrientation(orientations: string | string[]): boolean;\n msUnlockOrientation(): void;\n addEventListener<K extends keyof ScreenEventMap>(type: K, listener: (this: Screen, ev: ScreenEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Screen: {\n prototype: Screen;\n new(): Screen;\n};\n\ninterface ScriptNotifyEvent extends Event {\n readonly callingUri: string;\n readonly value: string;\n}\n\ndeclare var ScriptNotifyEvent: {\n prototype: ScriptNotifyEvent;\n new(): ScriptNotifyEvent;\n};\n\ninterface ScriptProcessorNodeEventMap {\n "audioprocess": AudioProcessingEvent;\n}\n\ninterface ScriptProcessorNode extends AudioNode {\n readonly bufferSize: number;\n onaudioprocess: (this: ScriptProcessorNode, ev: AudioProcessingEvent) => any;\n addEventListener<K extends keyof ScriptProcessorNodeEventMap>(type: K, listener: (this: ScriptProcessorNode, ev: ScriptProcessorNodeEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var ScriptProcessorNode: {\n prototype: ScriptProcessorNode;\n new(): ScriptProcessorNode;\n};\n\ninterface Selection {\n readonly anchorNode: Node;\n readonly anchorOffset: number;\n readonly baseNode: Node;\n readonly baseOffset: number;\n readonly extentNode: Node;\n readonly extentOffset: number;\n readonly focusNode: Node;\n readonly focusOffset: number;\n readonly isCollapsed: boolean;\n readonly rangeCount: number;\n readonly type: string;\n addRange(range: Range): void;\n collapse(parentNode: Node, offset: number): void;\n collapseToEnd(): void;\n collapseToStart(): void;\n containsNode(node: Node, partlyContained: boolean): boolean;\n deleteFromDocument(): void;\n empty(): void;\n extend(newNode: Node, offset: number): void;\n getRangeAt(index: number): Range;\n removeAllRanges(): void;\n removeRange(range: Range): void;\n selectAllChildren(parentNode: Node): void;\n setBaseAndExtent(baseNode: Node, baseOffset: number, extentNode: Node, extentOffset: number): void;\n setPosition(parentNode: Node, offset: number): void;\n toString(): string;\n}\n\ndeclare var Selection: {\n prototype: Selection;\n new(): Selection;\n};\n\ninterface ServiceWorkerEventMap extends AbstractWorkerEventMap {\n "statechange": Event;\n}\n\ninterface ServiceWorker extends EventTarget, AbstractWorker {\n onstatechange: (this: ServiceWorker, ev: Event) => any;\n readonly scriptURL: USVString;\n readonly state: ServiceWorkerState;\n postMessage(message: any, transfer?: any[]): void;\n addEventListener<K extends keyof ServiceWorkerEventMap>(type: K, listener: (this: ServiceWorker, ev: ServiceWorkerEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var ServiceWorker: {\n prototype: ServiceWorker;\n new(): ServiceWorker;\n};\n\ninterface ServiceWorkerContainerEventMap {\n "controllerchange": Event;\n "message": ServiceWorkerMessageEvent;\n}\n\ninterface ServiceWorkerContainer extends EventTarget {\n readonly controller: ServiceWorker | null;\n oncontrollerchange: (this: ServiceWorkerContainer, ev: Event) => any;\n onmessage: (this: ServiceWorkerContainer, ev: ServiceWorkerMessageEvent) => any;\n readonly ready: Promise<ServiceWorkerRegistration>;\n getRegistration(clientURL?: USVString): Promise<any>;\n getRegistrations(): any;\n register(scriptURL: USVString, options?: RegistrationOptions): Promise<ServiceWorkerRegistration>;\n addEventListener<K extends keyof ServiceWorkerContainerEventMap>(type: K, listener: (this: ServiceWorkerContainer, ev: ServiceWorkerContainerEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var ServiceWorkerContainer: {\n prototype: ServiceWorkerContainer;\n new(): ServiceWorkerContainer;\n};\n\ninterface ServiceWorkerMessageEvent extends Event {\n readonly data: any;\n readonly lastEventId: string;\n readonly origin: string;\n readonly ports: MessagePort[] | null;\n readonly source: ServiceWorker | MessagePort | null;\n}\n\ndeclare var ServiceWorkerMessageEvent: {\n prototype: ServiceWorkerMessageEvent;\n new(type: string, eventInitDict?: ServiceWorkerMessageEventInit): ServiceWorkerMessageEvent;\n};\n\ninterface ServiceWorkerRegistrationEventMap {\n "updatefound": Event;\n}\n\ninterface ServiceWorkerRegistration extends EventTarget {\n readonly active: ServiceWorker | null;\n readonly installing: ServiceWorker | null;\n onupdatefound: (this: ServiceWorkerRegistration, ev: Event) => any;\n readonly pushManager: PushManager;\n readonly scope: USVString;\n readonly sync: SyncManager;\n readonly waiting: ServiceWorker | null;\n getNotifications(filter?: GetNotificationOptions): any;\n showNotification(title: string, options?: NotificationOptions): Promise<void>;\n unregister(): Promise<boolean>;\n update(): Promise<void>;\n addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var ServiceWorkerRegistration: {\n prototype: ServiceWorkerRegistration;\n new(): ServiceWorkerRegistration;\n};\n\ninterface SourceBuffer extends EventTarget {\n appendWindowEnd: number;\n appendWindowStart: number;\n readonly audioTracks: AudioTrackList;\n readonly buffered: TimeRanges;\n mode: AppendMode;\n timestampOffset: number;\n readonly updating: boolean;\n readonly videoTracks: VideoTrackList;\n abort(): void;\n appendBuffer(data: ArrayBuffer | ArrayBufferView): void;\n appendStream(stream: MSStream, maxSize?: number): void;\n remove(start: number, end: number): void;\n}\n\ndeclare var SourceBuffer: {\n prototype: SourceBuffer;\n new(): SourceBuffer;\n};\n\ninterface SourceBufferList extends EventTarget {\n readonly length: number;\n item(index: number): SourceBuffer;\n [index: number]: SourceBuffer;\n}\n\ndeclare var SourceBufferList: {\n prototype: SourceBufferList;\n new(): SourceBufferList;\n};\n\ninterface SpeechSynthesisEventMap {\n "voiceschanged": Event;\n}\n\ninterface SpeechSynthesis extends EventTarget {\n onvoiceschanged: (this: SpeechSynthesis, ev: Event) => any;\n readonly paused: boolean;\n readonly pending: boolean;\n readonly speaking: boolean;\n cancel(): void;\n getVoices(): SpeechSynthesisVoice[];\n pause(): void;\n resume(): void;\n speak(utterance: SpeechSynthesisUtterance): void;\n addEventListener<K extends keyof SpeechSynthesisEventMap>(type: K, listener: (this: SpeechSynthesis, ev: SpeechSynthesisEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SpeechSynthesis: {\n prototype: SpeechSynthesis;\n new(): SpeechSynthesis;\n};\n\ninterface SpeechSynthesisEvent extends Event {\n readonly charIndex: number;\n readonly elapsedTime: number;\n readonly name: string;\n readonly utterance: SpeechSynthesisUtterance | null;\n}\n\ndeclare var SpeechSynthesisEvent: {\n prototype: SpeechSynthesisEvent;\n new(type: string, eventInitDict?: SpeechSynthesisEventInit): SpeechSynthesisEvent;\n};\n\ninterface SpeechSynthesisUtteranceEventMap {\n "boundary": Event;\n "end": Event;\n "error": Event;\n "mark": Event;\n "pause": Event;\n "resume": Event;\n "start": Event;\n}\n\ninterface SpeechSynthesisUtterance extends EventTarget {\n lang: string;\n onboundary: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onend: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onerror: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onmark: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onpause: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onresume: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onstart: (this: SpeechSynthesisUtterance, ev: Event) => any;\n pitch: number;\n rate: number;\n text: string;\n voice: SpeechSynthesisVoice;\n volume: number;\n addEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(type: K, listener: (this: SpeechSynthesisUtterance, ev: SpeechSynthesisUtteranceEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SpeechSynthesisUtterance: {\n prototype: SpeechSynthesisUtterance;\n new(text?: string): SpeechSynthesisUtterance;\n};\n\ninterface SpeechSynthesisVoice {\n readonly default: boolean;\n readonly lang: string;\n readonly localService: boolean;\n readonly name: string;\n readonly voiceURI: string;\n}\n\ndeclare var SpeechSynthesisVoice: {\n prototype: SpeechSynthesisVoice;\n new(): SpeechSynthesisVoice;\n};\n\ninterface StereoPannerNode extends AudioNode {\n readonly pan: AudioParam;\n}\n\ndeclare var StereoPannerNode: {\n prototype: StereoPannerNode;\n new(): StereoPannerNode;\n};\n\ninterface Storage {\n readonly length: number;\n clear(): void;\n getItem(key: string): string | null;\n key(index: number): string | null;\n removeItem(key: string): void;\n setItem(key: string, data: string): void;\n [key: string]: any;\n [index: number]: string;\n}\n\ndeclare var Storage: {\n prototype: Storage;\n new(): Storage;\n};\n\ninterface StorageEvent extends Event {\n readonly url: string;\n key?: string;\n oldValue?: string;\n newValue?: string;\n storageArea?: Storage;\n}\n\ndeclare var StorageEvent: {\n prototype: StorageEvent;\n new (type: string, eventInitDict?: StorageEventInit): StorageEvent;\n};\n\ninterface StyleMedia {\n readonly type: string;\n matchMedium(mediaquery: string): boolean;\n}\n\ndeclare var StyleMedia: {\n prototype: StyleMedia;\n new(): StyleMedia;\n};\n\ninterface StyleSheet {\n disabled: boolean;\n readonly href: string;\n readonly media: MediaList;\n readonly ownerNode: Node;\n readonly parentStyleSheet: StyleSheet;\n readonly title: string;\n readonly type: string;\n}\n\ndeclare var StyleSheet: {\n prototype: StyleSheet;\n new(): StyleSheet;\n};\n\ninterface StyleSheetList {\n readonly length: number;\n item(index?: number): StyleSheet;\n [index: number]: StyleSheet;\n}\n\ndeclare var StyleSheetList: {\n prototype: StyleSheetList;\n new(): StyleSheetList;\n};\n\ninterface StyleSheetPageList {\n readonly length: number;\n item(index: number): CSSPageRule;\n [index: number]: CSSPageRule;\n}\n\ndeclare var StyleSheetPageList: {\n prototype: StyleSheetPageList;\n new(): StyleSheetPageList;\n};\n\ninterface SubtleCrypto {\n decrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: BufferSource): PromiseLike<ArrayBuffer>;\n deriveBits(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, length: number): PromiseLike<ArrayBuffer>;\n deriveKey(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: string | AesDerivedKeyParams | HmacImportParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n digest(algorithm: AlgorithmIdentifier, data: BufferSource): PromiseLike<ArrayBuffer>;\n encrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: BufferSource): PromiseLike<ArrayBuffer>;\n exportKey(format: "jwk", key: CryptoKey): PromiseLike<JsonWebKey>;\n exportKey(format: "raw" | "pkcs8" | "spki", key: CryptoKey): PromiseLike<ArrayBuffer>;\n exportKey(format: string, key: CryptoKey): PromiseLike<JsonWebKey | ArrayBuffer>;\n generateKey(algorithm: string, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKeyPair | CryptoKey>;\n generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams | DhKeyGenParams, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKeyPair>;\n generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n importKey(format: "jwk", keyData: JsonWebKey, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n importKey(format: "raw" | "pkcs8" | "spki", keyData: BufferSource, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n importKey(format: string, keyData: JsonWebKey | BufferSource, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n sign(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, data: BufferSource): PromiseLike<ArrayBuffer>;\n unwrapKey(format: string, wrappedKey: BufferSource, unwrappingKey: CryptoKey, unwrapAlgorithm: AlgorithmIdentifier, unwrappedKeyAlgorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n verify(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, signature: BufferSource, data: BufferSource): PromiseLike<boolean>;\n wrapKey(format: string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier): PromiseLike<ArrayBuffer>;\n}\n\ndeclare var SubtleCrypto: {\n prototype: SubtleCrypto;\n new(): SubtleCrypto;\n};\n\ninterface SVGAElement extends SVGGraphicsElement, SVGURIReference {\n readonly target: SVGAnimatedString;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGAElement: {\n prototype: SVGAElement;\n new(): SVGAElement;\n};\n\ninterface SVGAngle {\n readonly unitType: number;\n value: number;\n valueAsString: string;\n valueInSpecifiedUnits: number;\n convertToSpecifiedUnits(unitType: number): void;\n newValueSpecifiedUnits(unitType: number, valueInSpecifiedUnits: number): void;\n readonly SVG_ANGLETYPE_DEG: number;\n readonly SVG_ANGLETYPE_GRAD: number;\n readonly SVG_ANGLETYPE_RAD: number;\n readonly SVG_ANGLETYPE_UNKNOWN: number;\n readonly SVG_ANGLETYPE_UNSPECIFIED: number;\n}\n\ndeclare var SVGAngle: {\n prototype: SVGAngle;\n new(): SVGAngle;\n readonly SVG_ANGLETYPE_DEG: number;\n readonly SVG_ANGLETYPE_GRAD: number;\n readonly SVG_ANGLETYPE_RAD: number;\n readonly SVG_ANGLETYPE_UNKNOWN: number;\n readonly SVG_ANGLETYPE_UNSPECIFIED: number;\n};\n\ninterface SVGAnimatedAngle {\n readonly animVal: SVGAngle;\n readonly baseVal: SVGAngle;\n}\n\ndeclare var SVGAnimatedAngle: {\n prototype: SVGAnimatedAngle;\n new(): SVGAnimatedAngle;\n};\n\ninterface SVGAnimatedBoolean {\n readonly animVal: boolean;\n baseVal: boolean;\n}\n\ndeclare var SVGAnimatedBoolean: {\n prototype: SVGAnimatedBoolean;\n new(): SVGAnimatedBoolean;\n};\n\ninterface SVGAnimatedEnumeration {\n readonly animVal: number;\n baseVal: number;\n}\n\ndeclare var SVGAnimatedEnumeration: {\n prototype: SVGAnimatedEnumeration;\n new(): SVGAnimatedEnumeration;\n};\n\ninterface SVGAnimatedInteger {\n readonly animVal: number;\n baseVal: number;\n}\n\ndeclare var SVGAnimatedInteger: {\n prototype: SVGAnimatedInteger;\n new(): SVGAnimatedInteger;\n};\n\ninterface SVGAnimatedLength {\n readonly animVal: SVGLength;\n readonly baseVal: SVGLength;\n}\n\ndeclare var SVGAnimatedLength: {\n prototype: SVGAnimatedLength;\n new(): SVGAnimatedLength;\n};\n\ninterface SVGAnimatedLengthList {\n readonly animVal: SVGLengthList;\n readonly baseVal: SVGLengthList;\n}\n\ndeclare var SVGAnimatedLengthList: {\n prototype: SVGAnimatedLengthList;\n new(): SVGAnimatedLengthList;\n};\n\ninterface SVGAnimatedNumber {\n readonly animVal: number;\n baseVal: number;\n}\n\ndeclare var SVGAnimatedNumber: {\n prototype: SVGAnimatedNumber;\n new(): SVGAnimatedNumber;\n};\n\ninterface SVGAnimatedNumberList {\n readonly animVal: SVGNumberList;\n readonly baseVal: SVGNumberList;\n}\n\ndeclare var SVGAnimatedNumberList: {\n prototype: SVGAnimatedNumberList;\n new(): SVGAnimatedNumberList;\n};\n\ninterface SVGAnimatedPreserveAspectRatio {\n readonly animVal: SVGPreserveAspectRatio;\n readonly baseVal: SVGPreserveAspectRatio;\n}\n\ndeclare var SVGAnimatedPreserveAspectRatio: {\n prototype: SVGAnimatedPreserveAspectRatio;\n new(): SVGAnimatedPreserveAspectRatio;\n};\n\ninterface SVGAnimatedRect {\n readonly animVal: SVGRect;\n readonly baseVal: SVGRect;\n}\n\ndeclare var SVGAnimatedRect: {\n prototype: SVGAnimatedRect;\n new(): SVGAnimatedRect;\n};\n\ninterface SVGAnimatedString {\n readonly animVal: string;\n baseVal: string;\n}\n\ndeclare var SVGAnimatedString: {\n prototype: SVGAnimatedString;\n new(): SVGAnimatedString;\n};\n\ninterface SVGAnimatedTransformList {\n readonly animVal: SVGTransformList;\n readonly baseVal: SVGTransformList;\n}\n\ndeclare var SVGAnimatedTransformList: {\n prototype: SVGAnimatedTransformList;\n new(): SVGAnimatedTransformList;\n};\n\ninterface SVGCircleElement extends SVGGraphicsElement {\n readonly cx: SVGAnimatedLength;\n readonly cy: SVGAnimatedLength;\n readonly r: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGCircleElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGCircleElement: {\n prototype: SVGCircleElement;\n new(): SVGCircleElement;\n};\n\ninterface SVGClipPathElement extends SVGGraphicsElement, SVGUnitTypes {\n readonly clipPathUnits: SVGAnimatedEnumeration;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGClipPathElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGClipPathElement: {\n prototype: SVGClipPathElement;\n new(): SVGClipPathElement;\n};\n\ninterface SVGComponentTransferFunctionElement extends SVGElement {\n readonly amplitude: SVGAnimatedNumber;\n readonly exponent: SVGAnimatedNumber;\n readonly intercept: SVGAnimatedNumber;\n readonly offset: SVGAnimatedNumber;\n readonly slope: SVGAnimatedNumber;\n readonly tableValues: SVGAnimatedNumberList;\n readonly type: SVGAnimatedEnumeration;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_GAMMA: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_LINEAR: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_TABLE: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGComponentTransferFunctionElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGComponentTransferFunctionElement: {\n prototype: SVGComponentTransferFunctionElement;\n new(): SVGComponentTransferFunctionElement;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_GAMMA: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_LINEAR: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_TABLE: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: number;\n};\n\ninterface SVGDefsElement extends SVGGraphicsElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGDefsElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGDefsElement: {\n prototype: SVGDefsElement;\n new(): SVGDefsElement;\n};\n\ninterface SVGDescElement extends SVGElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGDescElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGDescElement: {\n prototype: SVGDescElement;\n new(): SVGDescElement;\n};\n\ninterface SVGElementEventMap extends ElementEventMap {\n "click": MouseEvent;\n "dblclick": MouseEvent;\n "focusin": FocusEvent;\n "focusout": FocusEvent;\n "load": Event;\n "mousedown": MouseEvent;\n "mousemove": MouseEvent;\n "mouseout": MouseEvent;\n "mouseover": MouseEvent;\n "mouseup": MouseEvent;\n}\n\ninterface SVGElement extends Element {\n className: any;\n onclick: (this: SVGElement, ev: MouseEvent) => any;\n ondblclick: (this: SVGElement, ev: MouseEvent) => any;\n onfocusin: (this: SVGElement, ev: FocusEvent) => any;\n onfocusout: (this: SVGElement, ev: FocusEvent) => any;\n onload: (this: SVGElement, ev: Event) => any;\n onmousedown: (this: SVGElement, ev: MouseEvent) => any;\n onmousemove: (this: SVGElement, ev: MouseEvent) => any;\n onmouseout: (this: SVGElement, ev: MouseEvent) => any;\n onmouseover: (this: SVGElement, ev: MouseEvent) => any;\n onmouseup: (this: SVGElement, ev: MouseEvent) => any;\n readonly ownerSVGElement: SVGSVGElement;\n readonly style: CSSStyleDeclaration;\n readonly viewportElement: SVGElement;\n xmlbase: string;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGElement: {\n prototype: SVGElement;\n new(): SVGElement;\n};\n\ninterface SVGElementInstance extends EventTarget {\n readonly childNodes: SVGElementInstanceList;\n readonly correspondingElement: SVGElement;\n readonly correspondingUseElement: SVGUseElement;\n readonly firstChild: SVGElementInstance;\n readonly lastChild: SVGElementInstance;\n readonly nextSibling: SVGElementInstance;\n readonly parentNode: SVGElementInstance;\n readonly previousSibling: SVGElementInstance;\n}\n\ndeclare var SVGElementInstance: {\n prototype: SVGElementInstance;\n new(): SVGElementInstance;\n};\n\ninterface SVGElementInstanceList {\n readonly length: number;\n item(index: number): SVGElementInstance;\n}\n\ndeclare var SVGElementInstanceList: {\n prototype: SVGElementInstanceList;\n new(): SVGElementInstanceList;\n};\n\ninterface SVGEllipseElement extends SVGGraphicsElement {\n readonly cx: SVGAnimatedLength;\n readonly cy: SVGAnimatedLength;\n readonly rx: SVGAnimatedLength;\n readonly ry: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGEllipseElement: {\n prototype: SVGEllipseElement;\n new(): SVGEllipseElement;\n};\n\ninterface SVGFEBlendElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly in2: SVGAnimatedString;\n readonly mode: SVGAnimatedEnumeration;\n readonly SVG_FEBLEND_MODE_COLOR: number;\n readonly SVG_FEBLEND_MODE_COLOR_BURN: number;\n readonly SVG_FEBLEND_MODE_COLOR_DODGE: number;\n readonly SVG_FEBLEND_MODE_DARKEN: number;\n readonly SVG_FEBLEND_MODE_DIFFERENCE: number;\n readonly SVG_FEBLEND_MODE_EXCLUSION: number;\n readonly SVG_FEBLEND_MODE_HARD_LIGHT: number;\n readonly SVG_FEBLEND_MODE_HUE: number;\n readonly SVG_FEBLEND_MODE_LIGHTEN: number;\n readonly SVG_FEBLEND_MODE_LUMINOSITY: number;\n readonly SVG_FEBLEND_MODE_MULTIPLY: number;\n readonly SVG_FEBLEND_MODE_NORMAL: number;\n readonly SVG_FEBLEND_MODE_OVERLAY: number;\n readonly SVG_FEBLEND_MODE_SATURATION: number;\n readonly SVG_FEBLEND_MODE_SCREEN: number;\n readonly SVG_FEBLEND_MODE_SOFT_LIGHT: number;\n readonly SVG_FEBLEND_MODE_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEBlendElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEBlendElement: {\n prototype: SVGFEBlendElement;\n new(): SVGFEBlendElement;\n readonly SVG_FEBLEND_MODE_COLOR: number;\n readonly SVG_FEBLEND_MODE_COLOR_BURN: number;\n readonly SVG_FEBLEND_MODE_COLOR_DODGE: number;\n readonly SVG_FEBLEND_MODE_DARKEN: number;\n readonly SVG_FEBLEND_MODE_DIFFERENCE: number;\n readonly SVG_FEBLEND_MODE_EXCLUSION: number;\n readonly SVG_FEBLEND_MODE_HARD_LIGHT: number;\n readonly SVG_FEBLEND_MODE_HUE: number;\n readonly SVG_FEBLEND_MODE_LIGHTEN: number;\n readonly SVG_FEBLEND_MODE_LUMINOSITY: number;\n readonly SVG_FEBLEND_MODE_MULTIPLY: number;\n readonly SVG_FEBLEND_MODE_NORMAL: number;\n readonly SVG_FEBLEND_MODE_OVERLAY: number;\n readonly SVG_FEBLEND_MODE_SATURATION: number;\n readonly SVG_FEBLEND_MODE_SCREEN: number;\n readonly SVG_FEBLEND_MODE_SOFT_LIGHT: number;\n readonly SVG_FEBLEND_MODE_UNKNOWN: number;\n};\n\ninterface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly type: SVGAnimatedEnumeration;\n readonly values: SVGAnimatedNumberList;\n readonly SVG_FECOLORMATRIX_TYPE_HUEROTATE: number;\n readonly SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA: number;\n readonly SVG_FECOLORMATRIX_TYPE_MATRIX: number;\n readonly SVG_FECOLORMATRIX_TYPE_SATURATE: number;\n readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEColorMatrixElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEColorMatrixElement: {\n prototype: SVGFEColorMatrixElement;\n new(): SVGFEColorMatrixElement;\n readonly SVG_FECOLORMATRIX_TYPE_HUEROTATE: number;\n readonly SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA: number;\n readonly SVG_FECOLORMATRIX_TYPE_MATRIX: number;\n readonly SVG_FECOLORMATRIX_TYPE_SATURATE: number;\n readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: number;\n};\n\ninterface SVGFEComponentTransferElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEComponentTransferElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEComponentTransferElement: {\n prototype: SVGFEComponentTransferElement;\n new(): SVGFEComponentTransferElement;\n};\n\ninterface SVGFECompositeElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly in2: SVGAnimatedString;\n readonly k1: SVGAnimatedNumber;\n readonly k2: SVGAnimatedNumber;\n readonly k3: SVGAnimatedNumber;\n readonly k4: SVGAnimatedNumber;\n readonly operator: SVGAnimatedEnumeration;\n readonly SVG_FECOMPOSITE_OPERATOR_ARITHMETIC: number;\n readonly SVG_FECOMPOSITE_OPERATOR_ATOP: number;\n readonly SVG_FECOMPOSITE_OPERATOR_IN: number;\n readonly SVG_FECOMPOSITE_OPERATOR_OUT: number;\n readonly SVG_FECOMPOSITE_OPERATOR_OVER: number;\n readonly SVG_FECOMPOSITE_OPERATOR_UNKNOWN: number;\n readonly SVG_FECOMPOSITE_OPERATOR_XOR: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFECompositeElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFECompositeElement: {\n prototype: SVGFECompositeElement;\n new(): SVGFECompositeElement;\n readonly SVG_FECOMPOSITE_OPERATOR_ARITHMETIC: number;\n readonly SVG_FECOMPOSITE_OPERATOR_ATOP: number;\n readonly SVG_FECOMPOSITE_OPERATOR_IN: number;\n readonly SVG_FECOMPOSITE_OPERATOR_OUT: number;\n readonly SVG_FECOMPOSITE_OPERATOR_OVER: number;\n readonly SVG_FECOMPOSITE_OPERATOR_UNKNOWN: number;\n readonly SVG_FECOMPOSITE_OPERATOR_XOR: number;\n};\n\ninterface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly bias: SVGAnimatedNumber;\n readonly divisor: SVGAnimatedNumber;\n readonly edgeMode: SVGAnimatedEnumeration;\n readonly in1: SVGAnimatedString;\n readonly kernelMatrix: SVGAnimatedNumberList;\n readonly kernelUnitLengthX: SVGAnimatedNumber;\n readonly kernelUnitLengthY: SVGAnimatedNumber;\n readonly orderX: SVGAnimatedInteger;\n readonly orderY: SVGAnimatedInteger;\n readonly preserveAlpha: SVGAnimatedBoolean;\n readonly targetX: SVGAnimatedInteger;\n readonly targetY: SVGAnimatedInteger;\n readonly SVG_EDGEMODE_DUPLICATE: number;\n readonly SVG_EDGEMODE_NONE: number;\n readonly SVG_EDGEMODE_UNKNOWN: number;\n readonly SVG_EDGEMODE_WRAP: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEConvolveMatrixElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEConvolveMatrixElement: {\n prototype: SVGFEConvolveMatrixElement;\n new(): SVGFEConvolveMatrixElement;\n readonly SVG_EDGEMODE_DUPLICATE: number;\n readonly SVG_EDGEMODE_NONE: number;\n readonly SVG_EDGEMODE_UNKNOWN: number;\n readonly SVG_EDGEMODE_WRAP: number;\n};\n\ninterface SVGFEDiffuseLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly diffuseConstant: SVGAnimatedNumber;\n readonly in1: SVGAnimatedString;\n readonly kernelUnitLengthX: SVGAnimatedNumber;\n readonly kernelUnitLengthY: SVGAnimatedNumber;\n readonly surfaceScale: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDiffuseLightingElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEDiffuseLightingElement: {\n prototype: SVGFEDiffuseLightingElement;\n new(): SVGFEDiffuseLightingElement;\n};\n\ninterface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly in2: SVGAnimatedString;\n readonly scale: SVGAnimatedNumber;\n readonly xChannelSelector: SVGAnimatedEnumeration;\n readonly yChannelSelector: SVGAnimatedEnumeration;\n readonly SVG_CHANNEL_A: number;\n readonly SVG_CHANNEL_B: number;\n readonly SVG_CHANNEL_G: number;\n readonly SVG_CHANNEL_R: number;\n readonly SVG_CHANNEL_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDisplacementMapElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEDisplacementMapElement: {\n prototype: SVGFEDisplacementMapElement;\n new(): SVGFEDisplacementMapElement;\n readonly SVG_CHANNEL_A: number;\n readonly SVG_CHANNEL_B: number;\n readonly SVG_CHANNEL_G: number;\n readonly SVG_CHANNEL_R: number;\n readonly SVG_CHANNEL_UNKNOWN: number;\n};\n\ninterface SVGFEDistantLightElement extends SVGElement {\n readonly azimuth: SVGAnimatedNumber;\n readonly elevation: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDistantLightElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEDistantLightElement: {\n prototype: SVGFEDistantLightElement;\n new(): SVGFEDistantLightElement;\n};\n\ninterface SVGFEFloodElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFloodElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEFloodElement: {\n prototype: SVGFEFloodElement;\n new(): SVGFEFloodElement;\n};\n\ninterface SVGFEFuncAElement extends SVGComponentTransferFunctionElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncAElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEFuncAElement: {\n prototype: SVGFEFuncAElement;\n new(): SVGFEFuncAElement;\n};\n\ninterface SVGFEFuncBElement extends SVGComponentTransferFunctionElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncBElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEFuncBElement: {\n prototype: SVGFEFuncBElement;\n new(): SVGFEFuncBElement;\n};\n\ninterface SVGFEFuncGElement extends SVGComponentTransferFunctionElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncGElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEFuncGElement: {\n prototype: SVGFEFuncGElement;\n new(): SVGFEFuncGElement;\n};\n\ninterface SVGFEFuncRElement extends SVGComponentTransferFunctionElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncRElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEFuncRElement: {\n prototype: SVGFEFuncRElement;\n new(): SVGFEFuncRElement;\n};\n\ninterface SVGFEGaussianBlurElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly stdDeviationX: SVGAnimatedNumber;\n readonly stdDeviationY: SVGAnimatedNumber;\n setStdDeviation(stdDeviationX: number, stdDeviationY: number): void;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEGaussianBlurElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEGaussianBlurElement: {\n prototype: SVGFEGaussianBlurElement;\n new(): SVGFEGaussianBlurElement;\n};\n\ninterface SVGFEImageElement extends SVGElement, SVGFilterPrimitiveStandardAttributes, SVGURIReference {\n readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEImageElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEImageElement: {\n prototype: SVGFEImageElement;\n new(): SVGFEImageElement;\n};\n\ninterface SVGFEMergeElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMergeElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEMergeElement: {\n prototype: SVGFEMergeElement;\n new(): SVGFEMergeElement;\n};\n\ninterface SVGFEMergeNodeElement extends SVGElement {\n readonly in1: SVGAnimatedString;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMergeNodeElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEMergeNodeElement: {\n prototype: SVGFEMergeNodeElement;\n new(): SVGFEMergeNodeElement;\n};\n\ninterface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly operator: SVGAnimatedEnumeration;\n readonly radiusX: SVGAnimatedNumber;\n readonly radiusY: SVGAnimatedNumber;\n readonly SVG_MORPHOLOGY_OPERATOR_DILATE: number;\n readonly SVG_MORPHOLOGY_OPERATOR_ERODE: number;\n readonly SVG_MORPHOLOGY_OPERATOR_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMorphologyElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEMorphologyElement: {\n prototype: SVGFEMorphologyElement;\n new(): SVGFEMorphologyElement;\n readonly SVG_MORPHOLOGY_OPERATOR_DILATE: number;\n readonly SVG_MORPHOLOGY_OPERATOR_ERODE: number;\n readonly SVG_MORPHOLOGY_OPERATOR_UNKNOWN: number;\n};\n\ninterface SVGFEOffsetElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly dx: SVGAnimatedNumber;\n readonly dy: SVGAnimatedNumber;\n readonly in1: SVGAnimatedString;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEOffsetElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEOffsetElement: {\n prototype: SVGFEOffsetElement;\n new(): SVGFEOffsetElement;\n};\n\ninterface SVGFEPointLightElement extends SVGElement {\n readonly x: SVGAnimatedNumber;\n readonly y: SVGAnimatedNumber;\n readonly z: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEPointLightElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEPointLightElement: {\n prototype: SVGFEPointLightElement;\n new(): SVGFEPointLightElement;\n};\n\ninterface SVGFESpecularLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly kernelUnitLengthX: SVGAnimatedNumber;\n readonly kernelUnitLengthY: SVGAnimatedNumber;\n readonly specularConstant: SVGAnimatedNumber;\n readonly specularExponent: SVGAnimatedNumber;\n readonly surfaceScale: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpecularLightingElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFESpecularLightingElement: {\n prototype: SVGFESpecularLightingElement;\n new(): SVGFESpecularLightingElement;\n};\n\ninterface SVGFESpotLightElement extends SVGElement {\n readonly limitingConeAngle: SVGAnimatedNumber;\n readonly pointsAtX: SVGAnimatedNumber;\n readonly pointsAtY: SVGAnimatedNumber;\n readonly pointsAtZ: SVGAnimatedNumber;\n readonly specularExponent: SVGAnimatedNumber;\n readonly x: SVGAnimatedNumber;\n readonly y: SVGAnimatedNumber;\n readonly z: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpotLightElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFESpotLightElement: {\n prototype: SVGFESpotLightElement;\n new(): SVGFESpotLightElement;\n};\n\ninterface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFETileElement: {\n prototype: SVGFETileElement;\n new(): SVGFETileElement;\n};\n\ninterface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly baseFrequencyX: SVGAnimatedNumber;\n readonly baseFrequencyY: SVGAnimatedNumber;\n readonly numOctaves: SVGAnimatedInteger;\n readonly seed: SVGAnimatedNumber;\n readonly stitchTiles: SVGAnimatedEnumeration;\n readonly type: SVGAnimatedEnumeration;\n readonly SVG_STITCHTYPE_NOSTITCH: number;\n readonly SVG_STITCHTYPE_STITCH: number;\n readonly SVG_STITCHTYPE_UNKNOWN: number;\n readonly SVG_TURBULENCE_TYPE_FRACTALNOISE: number;\n readonly SVG_TURBULENCE_TYPE_TURBULENCE: number;\n readonly SVG_TURBULENCE_TYPE_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETurbulenceElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFETurbulenceElement: {\n prototype: SVGFETurbulenceElement;\n new(): SVGFETurbulenceElement;\n readonly SVG_STITCHTYPE_NOSTITCH: number;\n readonly SVG_STITCHTYPE_STITCH: number;\n readonly SVG_STITCHTYPE_UNKNOWN: number;\n readonly SVG_TURBULENCE_TYPE_FRACTALNOISE: number;\n readonly SVG_TURBULENCE_TYPE_TURBULENCE: number;\n readonly SVG_TURBULENCE_TYPE_UNKNOWN: number;\n};\n\ninterface SVGFilterElement extends SVGElement, SVGUnitTypes, SVGURIReference {\n readonly filterResX: SVGAnimatedInteger;\n readonly filterResY: SVGAnimatedInteger;\n readonly filterUnits: SVGAnimatedEnumeration;\n readonly height: SVGAnimatedLength;\n readonly primitiveUnits: SVGAnimatedEnumeration;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n setFilterRes(filterResX: number, filterResY: number): void;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFilterElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFilterElement: {\n prototype: SVGFilterElement;\n new(): SVGFilterElement;\n};\n\ninterface SVGForeignObjectElement extends SVGGraphicsElement {\n readonly height: SVGAnimatedLength;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGForeignObjectElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGForeignObjectElement: {\n prototype: SVGForeignObjectElement;\n new(): SVGForeignObjectElement;\n};\n\ninterface SVGGElement extends SVGGraphicsElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGGElement: {\n prototype: SVGGElement;\n new(): SVGGElement;\n};\n\ninterface SVGGradientElement extends SVGElement, SVGUnitTypes, SVGURIReference {\n readonly gradientTransform: SVGAnimatedTransformList;\n readonly gradientUnits: SVGAnimatedEnumeration;\n readonly spreadMethod: SVGAnimatedEnumeration;\n readonly SVG_SPREADMETHOD_PAD: number;\n readonly SVG_SPREADMETHOD_REFLECT: number;\n readonly SVG_SPREADMETHOD_REPEAT: number;\n readonly SVG_SPREADMETHOD_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGradientElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGGradientElement: {\n prototype: SVGGradientElement;\n new(): SVGGradientElement;\n readonly SVG_SPREADMETHOD_PAD: number;\n readonly SVG_SPREADMETHOD_REFLECT: number;\n readonly SVG_SPREADMETHOD_REPEAT: number;\n readonly SVG_SPREADMETHOD_UNKNOWN: number;\n};\n\ninterface SVGGraphicsElement extends SVGElement, SVGTests {\n readonly farthestViewportElement: SVGElement;\n readonly nearestViewportElement: SVGElement;\n readonly transform: SVGAnimatedTransformList;\n getBBox(): SVGRect;\n getCTM(): SVGMatrix;\n getScreenCTM(): SVGMatrix;\n getTransformToElement(element: SVGElement): SVGMatrix;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGraphicsElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGGraphicsElement: {\n prototype: SVGGraphicsElement;\n new(): SVGGraphicsElement;\n};\n\ninterface SVGImageElement extends SVGGraphicsElement, SVGURIReference {\n readonly height: SVGAnimatedLength;\n readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGImageElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGImageElement: {\n prototype: SVGImageElement;\n new(): SVGImageElement;\n};\n\ninterface SVGLength {\n readonly unitType: number;\n value: number;\n valueAsString: string;\n valueInSpecifiedUnits: number;\n convertToSpecifiedUnits(unitType: number): void;\n newValueSpecifiedUnits(unitType: number, valueInSpecifiedUnits: number): void;\n readonly SVG_LENGTHTYPE_CM: number;\n readonly SVG_LENGTHTYPE_EMS: number;\n readonly SVG_LENGTHTYPE_EXS: number;\n readonly SVG_LENGTHTYPE_IN: number;\n readonly SVG_LENGTHTYPE_MM: number;\n readonly SVG_LENGTHTYPE_NUMBER: number;\n readonly SVG_LENGTHTYPE_PC: number;\n readonly SVG_LENGTHTYPE_PERCENTAGE: number;\n readonly SVG_LENGTHTYPE_PT: number;\n readonly SVG_LENGTHTYPE_PX: number;\n readonly SVG_LENGTHTYPE_UNKNOWN: number;\n}\n\ndeclare var SVGLength: {\n prototype: SVGLength;\n new(): SVGLength;\n readonly SVG_LENGTHTYPE_CM: number;\n readonly SVG_LENGTHTYPE_EMS: number;\n readonly SVG_LENGTHTYPE_EXS: number;\n readonly SVG_LENGTHTYPE_IN: number;\n readonly SVG_LENGTHTYPE_MM: number;\n readonly SVG_LENGTHTYPE_NUMBER: number;\n readonly SVG_LENGTHTYPE_PC: number;\n readonly SVG_LENGTHTYPE_PERCENTAGE: number;\n readonly SVG_LENGTHTYPE_PT: number;\n readonly SVG_LENGTHTYPE_PX: number;\n readonly SVG_LENGTHTYPE_UNKNOWN: number;\n};\n\ninterface SVGLengthList {\n readonly numberOfItems: number;\n appendItem(newItem: SVGLength): SVGLength;\n clear(): void;\n getItem(index: number): SVGLength;\n initialize(newItem: SVGLength): SVGLength;\n insertItemBefore(newItem: SVGLength, index: number): SVGLength;\n removeItem(index: number): SVGLength;\n replaceItem(newItem: SVGLength, index: number): SVGLength;\n}\n\ndeclare var SVGLengthList: {\n prototype: SVGLengthList;\n new(): SVGLengthList;\n};\n\ninterface SVGLinearGradientElement extends SVGGradientElement {\n readonly x1: SVGAnimatedLength;\n readonly x2: SVGAnimatedLength;\n readonly y1: SVGAnimatedLength;\n readonly y2: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLinearGradientElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGLinearGradientElement: {\n prototype: SVGLinearGradientElement;\n new(): SVGLinearGradientElement;\n};\n\ninterface SVGLineElement extends SVGGraphicsElement {\n readonly x1: SVGAnimatedLength;\n readonly x2: SVGAnimatedLength;\n readonly y1: SVGAnimatedLength;\n readonly y2: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLineElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGLineElement: {\n prototype: SVGLineElement;\n new(): SVGLineElement;\n};\n\ninterface SVGMarkerElement extends SVGElement, SVGFitToViewBox {\n readonly markerHeight: SVGAnimatedLength;\n readonly markerUnits: SVGAnimatedEnumeration;\n readonly markerWidth: SVGAnimatedLength;\n readonly orientAngle: SVGAnimatedAngle;\n readonly orientType: SVGAnimatedEnumeration;\n readonly refX: SVGAnimatedLength;\n readonly refY: SVGAnimatedLength;\n setOrientToAngle(angle: SVGAngle): void;\n setOrientToAuto(): void;\n readonly SVG_MARKER_ORIENT_ANGLE: number;\n readonly SVG_MARKER_ORIENT_AUTO: number;\n readonly SVG_MARKER_ORIENT_UNKNOWN: number;\n readonly SVG_MARKERUNITS_STROKEWIDTH: number;\n readonly SVG_MARKERUNITS_UNKNOWN: number;\n readonly SVG_MARKERUNITS_USERSPACEONUSE: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMarkerElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGMarkerElement: {\n prototype: SVGMarkerElement;\n new(): SVGMarkerElement;\n readonly SVG_MARKER_ORIENT_ANGLE: number;\n readonly SVG_MARKER_ORIENT_AUTO: number;\n readonly SVG_MARKER_ORIENT_UNKNOWN: number;\n readonly SVG_MARKERUNITS_STROKEWIDTH: number;\n readonly SVG_MARKERUNITS_UNKNOWN: number;\n readonly SVG_MARKERUNITS_USERSPACEONUSE: number;\n};\n\ninterface SVGMaskElement extends SVGElement, SVGTests, SVGUnitTypes {\n readonly height: SVGAnimatedLength;\n readonly maskContentUnits: SVGAnimatedEnumeration;\n readonly maskUnits: SVGAnimatedEnumeration;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMaskElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGMaskElement: {\n prototype: SVGMaskElement;\n new(): SVGMaskElement;\n};\n\ninterface SVGMatrix {\n a: number;\n b: number;\n c: number;\n d: number;\n e: number;\n f: number;\n flipX(): SVGMatrix;\n flipY(): SVGMatrix;\n inverse(): SVGMatrix;\n multiply(secondMatrix: SVGMatrix): SVGMatrix;\n rotate(angle: number): SVGMatrix;\n rotateFromVector(x: number, y: number): SVGMatrix;\n scale(scaleFactor: number): SVGMatrix;\n scaleNonUniform(scaleFactorX: number, scaleFactorY: number): SVGMatrix;\n skewX(angle: number): SVGMatrix;\n skewY(angle: number): SVGMatrix;\n translate(x: number, y: number): SVGMatrix;\n}\n\ndeclare var SVGMatrix: {\n prototype: SVGMatrix;\n new(): SVGMatrix;\n};\n\ninterface SVGMetadataElement extends SVGElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMetadataElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGMetadataElement: {\n prototype: SVGMetadataElement;\n new(): SVGMetadataElement;\n};\n\ninterface SVGNumber {\n value: number;\n}\n\ndeclare var SVGNumber: {\n prototype: SVGNumber;\n new(): SVGNumber;\n};\n\ninterface SVGNumberList {\n readonly numberOfItems: number;\n appendItem(newItem: SVGNumber): SVGNumber;\n clear(): void;\n getItem(index: number): SVGNumber;\n initialize(newItem: SVGNumber): SVGNumber;\n insertItemBefore(newItem: SVGNumber, index: number): SVGNumber;\n removeItem(index: number): SVGNumber;\n replaceItem(newItem: SVGNumber, index: number): SVGNumber;\n}\n\ndeclare var SVGNumberList: {\n prototype: SVGNumberList;\n new(): SVGNumberList;\n};\n\ninterface SVGPathElement extends SVGGraphicsElement {\n readonly pathSegList: SVGPathSegList;\n createSVGPathSegArcAbs(x: number, y: number, r1: number, r2: number, angle: number, largeArcFlag: boolean, sweepFlag: boolean): SVGPathSegArcAbs;\n createSVGPathSegArcRel(x: number, y: number, r1: number, r2: number, angle: number, largeArcFlag: boolean, sweepFlag: boolean): SVGPathSegArcRel;\n createSVGPathSegClosePath(): SVGPathSegClosePath;\n createSVGPathSegCurvetoCubicAbs(x: number, y: number, x1: number, y1: number, x2: number, y2: number): SVGPathSegCurvetoCubicAbs;\n createSVGPathSegCurvetoCubicRel(x: number, y: number, x1: number, y1: number, x2: number, y2: number): SVGPathSegCurvetoCubicRel;\n createSVGPathSegCurvetoCubicSmoothAbs(x: number, y: number, x2: number, y2: number): SVGPathSegCurvetoCubicSmoothAbs;\n createSVGPathSegCurvetoCubicSmoothRel(x: number, y: number, x2: number, y2: number): SVGPathSegCurvetoCubicSmoothRel;\n createSVGPathSegCurvetoQuadraticAbs(x: number, y: number, x1: number, y1: number): SVGPathSegCurvetoQuadraticAbs;\n createSVGPathSegCurvetoQuadraticRel(x: number, y: number, x1: number, y1: number): SVGPathSegCurvetoQuadraticRel;\n createSVGPathSegCurvetoQuadraticSmoothAbs(x: number, y: number): SVGPathSegCurvetoQuadraticSmoothAbs;\n createSVGPathSegCurvetoQuadraticSmoothRel(x: number, y: number): SVGPathSegCurvetoQuadraticSmoothRel;\n createSVGPathSegLinetoAbs(x: number, y: number): SVGPathSegLinetoAbs;\n createSVGPathSegLinetoHorizontalAbs(x: number): SVGPathSegLinetoHorizontalAbs;\n createSVGPathSegLinetoHorizontalRel(x: number): SVGPathSegLinetoHorizontalRel;\n createSVGPathSegLinetoRel(x: number, y: number): SVGPathSegLinetoRel;\n createSVGPathSegLinetoVerticalAbs(y: number): SVGPathSegLinetoVerticalAbs;\n createSVGPathSegLinetoVerticalRel(y: number): SVGPathSegLinetoVerticalRel;\n createSVGPathSegMovetoAbs(x: number, y: number): SVGPathSegMovetoAbs;\n createSVGPathSegMovetoRel(x: number, y: number): SVGPathSegMovetoRel;\n getPathSegAtLength(distance: number): number;\n getPointAtLength(distance: number): SVGPoint;\n getTotalLength(): number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPathElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGPathElement: {\n prototype: SVGPathElement;\n new(): SVGPathElement;\n};\n\ninterface SVGPathSeg {\n readonly pathSegType: number;\n readonly pathSegTypeAsLetter: string;\n readonly PATHSEG_ARC_ABS: number;\n readonly PATHSEG_ARC_REL: number;\n readonly PATHSEG_CLOSEPATH: number;\n readonly PATHSEG_CURVETO_CUBIC_ABS: number;\n readonly PATHSEG_CURVETO_CUBIC_REL: number;\n readonly PATHSEG_CURVETO_CUBIC_SMOOTH_ABS: number;\n readonly PATHSEG_CURVETO_CUBIC_SMOOTH_REL: number;\n readonly PATHSEG_CURVETO_QUADRATIC_ABS: number;\n readonly PATHSEG_CURVETO_QUADRATIC_REL: number;\n readonly PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS: number;\n readonly PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL: number;\n readonly PATHSEG_LINETO_ABS: number;\n readonly PATHSEG_LINETO_HORIZONTAL_ABS: number;\n readonly PATHSEG_LINETO_HORIZONTAL_REL: number;\n readonly PATHSEG_LINETO_REL: number;\n readonly PATHSEG_LINETO_VERTICAL_ABS: number;\n readonly PATHSEG_LINETO_VERTICAL_REL: number;\n readonly PATHSEG_MOVETO_ABS: number;\n readonly PATHSEG_MOVETO_REL: number;\n readonly PATHSEG_UNKNOWN: number;\n}\n\ndeclare var SVGPathSeg: {\n prototype: SVGPathSeg;\n new(): SVGPathSeg;\n readonly PATHSEG_ARC_ABS: number;\n readonly PATHSEG_ARC_REL: number;\n readonly PATHSEG_CLOSEPATH: number;\n readonly PATHSEG_CURVETO_CUBIC_ABS: number;\n readonly PATHSEG_CURVETO_CUBIC_REL: number;\n readonly PATHSEG_CURVETO_CUBIC_SMOOTH_ABS: number;\n readonly PATHSEG_CURVETO_CUBIC_SMOOTH_REL: number;\n readonly PATHSEG_CURVETO_QUADRATIC_ABS: number;\n readonly PATHSEG_CURVETO_QUADRATIC_REL: number;\n readonly PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS: number;\n readonly PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL: number;\n readonly PATHSEG_LINETO_ABS: number;\n readonly PATHSEG_LINETO_HORIZONTAL_ABS: number;\n readonly PATHSEG_LINETO_HORIZONTAL_REL: number;\n readonly PATHSEG_LINETO_REL: number;\n readonly PATHSEG_LINETO_VERTICAL_ABS: number;\n readonly PATHSEG_LINETO_VERTICAL_REL: number;\n readonly PATHSEG_MOVETO_ABS: number;\n readonly PATHSEG_MOVETO_REL: number;\n readonly PATHSEG_UNKNOWN: number;\n};\n\ninterface SVGPathSegArcAbs extends SVGPathSeg {\n angle: number;\n largeArcFlag: boolean;\n r1: number;\n r2: number;\n sweepFlag: boolean;\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegArcAbs: {\n prototype: SVGPathSegArcAbs;\n new(): SVGPathSegArcAbs;\n};\n\ninterface SVGPathSegArcRel extends SVGPathSeg {\n angle: number;\n largeArcFlag: boolean;\n r1: number;\n r2: number;\n sweepFlag: boolean;\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegArcRel: {\n prototype: SVGPathSegArcRel;\n new(): SVGPathSegArcRel;\n};\n\ninterface SVGPathSegClosePath extends SVGPathSeg {\n}\n\ndeclare var SVGPathSegClosePath: {\n prototype: SVGPathSegClosePath;\n new(): SVGPathSegClosePath;\n};\n\ninterface SVGPathSegCurvetoCubicAbs extends SVGPathSeg {\n x: number;\n x1: number;\n x2: number;\n y: number;\n y1: number;\n y2: number;\n}\n\ndeclare var SVGPathSegCurvetoCubicAbs: {\n prototype: SVGPathSegCurvetoCubicAbs;\n new(): SVGPathSegCurvetoCubicAbs;\n};\n\ninterface SVGPathSegCurvetoCubicRel extends SVGPathSeg {\n x: number;\n x1: number;\n x2: number;\n y: number;\n y1: number;\n y2: number;\n}\n\ndeclare var SVGPathSegCurvetoCubicRel: {\n prototype: SVGPathSegCurvetoCubicRel;\n new(): SVGPathSegCurvetoCubicRel;\n};\n\ninterface SVGPathSegCurvetoCubicSmoothAbs extends SVGPathSeg {\n x: number;\n x2: number;\n y: number;\n y2: number;\n}\n\ndeclare var SVGPathSegCurvetoCubicSmoothAbs: {\n prototype: SVGPathSegCurvetoCubicSmoothAbs;\n new(): SVGPathSegCurvetoCubicSmoothAbs;\n};\n\ninterface SVGPathSegCurvetoCubicSmoothRel extends SVGPathSeg {\n x: number;\n x2: number;\n y: number;\n y2: number;\n}\n\ndeclare var SVGPathSegCurvetoCubicSmoothRel: {\n prototype: SVGPathSegCurvetoCubicSmoothRel;\n new(): SVGPathSegCurvetoCubicSmoothRel;\n};\n\ninterface SVGPathSegCurvetoQuadraticAbs extends SVGPathSeg {\n x: number;\n x1: number;\n y: number;\n y1: number;\n}\n\ndeclare var SVGPathSegCurvetoQuadraticAbs: {\n prototype: SVGPathSegCurvetoQuadraticAbs;\n new(): SVGPathSegCurvetoQuadraticAbs;\n};\n\ninterface SVGPathSegCurvetoQuadraticRel extends SVGPathSeg {\n x: number;\n x1: number;\n y: number;\n y1: number;\n}\n\ndeclare var SVGPathSegCurvetoQuadraticRel: {\n prototype: SVGPathSegCurvetoQuadraticRel;\n new(): SVGPathSegCurvetoQuadraticRel;\n};\n\ninterface SVGPathSegCurvetoQuadraticSmoothAbs extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegCurvetoQuadraticSmoothAbs: {\n prototype: SVGPathSegCurvetoQuadraticSmoothAbs;\n new(): SVGPathSegCurvetoQuadraticSmoothAbs;\n};\n\ninterface SVGPathSegCurvetoQuadraticSmoothRel extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegCurvetoQuadraticSmoothRel: {\n prototype: SVGPathSegCurvetoQuadraticSmoothRel;\n new(): SVGPathSegCurvetoQuadraticSmoothRel;\n};\n\ninterface SVGPathSegLinetoAbs extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegLinetoAbs: {\n prototype: SVGPathSegLinetoAbs;\n new(): SVGPathSegLinetoAbs;\n};\n\ninterface SVGPathSegLinetoHorizontalAbs extends SVGPathSeg {\n x: number;\n}\n\ndeclare var SVGPathSegLinetoHorizontalAbs: {\n prototype: SVGPathSegLinetoHorizontalAbs;\n new(): SVGPathSegLinetoHorizontalAbs;\n};\n\ninterface SVGPathSegLinetoHorizontalRel extends SVGPathSeg {\n x: number;\n}\n\ndeclare var SVGPathSegLinetoHorizontalRel: {\n prototype: SVGPathSegLinetoHorizontalRel;\n new(): SVGPathSegLinetoHorizontalRel;\n};\n\ninterface SVGPathSegLinetoRel extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegLinetoRel: {\n prototype: SVGPathSegLinetoRel;\n new(): SVGPathSegLinetoRel;\n};\n\ninterface SVGPathSegLinetoVerticalAbs extends SVGPathSeg {\n y: number;\n}\n\ndeclare var SVGPathSegLinetoVerticalAbs: {\n prototype: SVGPathSegLinetoVerticalAbs;\n new(): SVGPathSegLinetoVerticalAbs;\n};\n\ninterface SVGPathSegLinetoVerticalRel extends SVGPathSeg {\n y: number;\n}\n\ndeclare var SVGPathSegLinetoVerticalRel: {\n prototype: SVGPathSegLinetoVerticalRel;\n new(): SVGPathSegLinetoVerticalRel;\n};\n\ninterface SVGPathSegList {\n readonly numberOfItems: number;\n appendItem(newItem: SVGPathSeg): SVGPathSeg;\n clear(): void;\n getItem(index: number): SVGPathSeg;\n initialize(newItem: SVGPathSeg): SVGPathSeg;\n insertItemBefore(newItem: SVGPathSeg, index: number): SVGPathSeg;\n removeItem(index: number): SVGPathSeg;\n replaceItem(newItem: SVGPathSeg, index: number): SVGPathSeg;\n}\n\ndeclare var SVGPathSegList: {\n prototype: SVGPathSegList;\n new(): SVGPathSegList;\n};\n\ninterface SVGPathSegMovetoAbs extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegMovetoAbs: {\n prototype: SVGPathSegMovetoAbs;\n new(): SVGPathSegMovetoAbs;\n};\n\ninterface SVGPathSegMovetoRel extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegMovetoRel: {\n prototype: SVGPathSegMovetoRel;\n new(): SVGPathSegMovetoRel;\n};\n\ninterface SVGPatternElement extends SVGElement, SVGTests, SVGUnitTypes, SVGFitToViewBox, SVGURIReference {\n readonly height: SVGAnimatedLength;\n readonly patternContentUnits: SVGAnimatedEnumeration;\n readonly patternTransform: SVGAnimatedTransformList;\n readonly patternUnits: SVGAnimatedEnumeration;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPatternElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGPatternElement: {\n prototype: SVGPatternElement;\n new(): SVGPatternElement;\n};\n\ninterface SVGPoint {\n x: number;\n y: number;\n matrixTransform(matrix: SVGMatrix): SVGPoint;\n}\n\ndeclare var SVGPoint: {\n prototype: SVGPoint;\n new(): SVGPoint;\n};\n\ninterface SVGPointList {\n readonly numberOfItems: number;\n appendItem(newItem: SVGPoint): SVGPoint;\n clear(): void;\n getItem(index: number): SVGPoint;\n initialize(newItem: SVGPoint): SVGPoint;\n insertItemBefore(newItem: SVGPoint, index: number): SVGPoint;\n removeItem(index: number): SVGPoint;\n replaceItem(newItem: SVGPoint, index: number): SVGPoint;\n}\n\ndeclare var SVGPointList: {\n prototype: SVGPointList;\n new(): SVGPointList;\n};\n\ninterface SVGPolygonElement extends SVGGraphicsElement, SVGAnimatedPoints {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPolygonElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGPolygonElement: {\n prototype: SVGPolygonElement;\n new(): SVGPolygonElement;\n};\n\ninterface SVGPolylineElement extends SVGGraphicsElement, SVGAnimatedPoints {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPolylineElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGPolylineElement: {\n prototype: SVGPolylineElement;\n new(): SVGPolylineElement;\n};\n\ninterface SVGPreserveAspectRatio {\n align: number;\n meetOrSlice: number;\n readonly SVG_MEETORSLICE_MEET: number;\n readonly SVG_MEETORSLICE_SLICE: number;\n readonly SVG_MEETORSLICE_UNKNOWN: number;\n readonly SVG_PRESERVEASPECTRATIO_NONE: number;\n readonly SVG_PRESERVEASPECTRATIO_UNKNOWN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMIN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMIN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMIN: number;\n}\n\ndeclare var SVGPreserveAspectRatio: {\n prototype: SVGPreserveAspectRatio;\n new(): SVGPreserveAspectRatio;\n readonly SVG_MEETORSLICE_MEET: number;\n readonly SVG_MEETORSLICE_SLICE: number;\n readonly SVG_MEETORSLICE_UNKNOWN: number;\n readonly SVG_PRESERVEASPECTRATIO_NONE: number;\n readonly SVG_PRESERVEASPECTRATIO_UNKNOWN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMIN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMIN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMIN: number;\n};\n\ninterface SVGRadialGradientElement extends SVGGradientElement {\n readonly cx: SVGAnimatedLength;\n readonly cy: SVGAnimatedLength;\n readonly fx: SVGAnimatedLength;\n readonly fy: SVGAnimatedLength;\n readonly r: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRadialGradientElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGRadialGradientElement: {\n prototype: SVGRadialGradientElement;\n new(): SVGRadialGradientElement;\n};\n\ninterface SVGRect {\n height: number;\n width: number;\n x: number;\n y: number;\n}\n\ndeclare var SVGRect: {\n prototype: SVGRect;\n new(): SVGRect;\n};\n\ninterface SVGRectElement extends SVGGraphicsElement {\n readonly height: SVGAnimatedLength;\n readonly rx: SVGAnimatedLength;\n readonly ry: SVGAnimatedLength;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRectElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGRectElement: {\n prototype: SVGRectElement;\n new(): SVGRectElement;\n};\n\ninterface SVGScriptElement extends SVGElement, SVGURIReference {\n type: string;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGScriptElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGScriptElement: {\n prototype: SVGScriptElement;\n new(): SVGScriptElement;\n};\n\ninterface SVGStopElement extends SVGElement {\n readonly offset: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGStopElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGStopElement: {\n prototype: SVGStopElement;\n new(): SVGStopElement;\n};\n\ninterface SVGStringList {\n readonly numberOfItems: number;\n appendItem(newItem: string): string;\n clear(): void;\n getItem(index: number): string;\n initialize(newItem: string): string;\n insertItemBefore(newItem: string, index: number): string;\n removeItem(index: number): string;\n replaceItem(newItem: string, index: number): string;\n}\n\ndeclare var SVGStringList: {\n prototype: SVGStringList;\n new(): SVGStringList;\n};\n\ninterface SVGStyleElement extends SVGElement {\n disabled: boolean;\n media: string;\n title: string;\n type: string;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGStyleElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGStyleElement: {\n prototype: SVGStyleElement;\n new(): SVGStyleElement;\n};\n\ninterface SVGSVGElementEventMap extends SVGElementEventMap {\n "SVGAbort": Event;\n "SVGError": Event;\n "resize": UIEvent;\n "scroll": UIEvent;\n "SVGUnload": Event;\n "SVGZoom": SVGZoomEvent;\n}\n\ninterface SVGSVGElement extends SVGGraphicsElement, DocumentEvent, SVGFitToViewBox, SVGZoomAndPan {\n contentScriptType: string;\n contentStyleType: string;\n currentScale: number;\n readonly currentTranslate: SVGPoint;\n readonly height: SVGAnimatedLength;\n onabort: (this: SVGSVGElement, ev: Event) => any;\n onerror: (this: SVGSVGElement, ev: Event) => any;\n onresize: (this: SVGSVGElement, ev: UIEvent) => any;\n onscroll: (this: SVGSVGElement, ev: UIEvent) => any;\n onunload: (this: SVGSVGElement, ev: Event) => any;\n onzoom: (this: SVGSVGElement, ev: SVGZoomEvent) => any;\n readonly pixelUnitToMillimeterX: number;\n readonly pixelUnitToMillimeterY: number;\n readonly screenPixelToMillimeterX: number;\n readonly screenPixelToMillimeterY: number;\n readonly viewport: SVGRect;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n checkEnclosure(element: SVGElement, rect: SVGRect): boolean;\n checkIntersection(element: SVGElement, rect: SVGRect): boolean;\n createSVGAngle(): SVGAngle;\n createSVGLength(): SVGLength;\n createSVGMatrix(): SVGMatrix;\n createSVGNumber(): SVGNumber;\n createSVGPoint(): SVGPoint;\n createSVGRect(): SVGRect;\n createSVGTransform(): SVGTransform;\n createSVGTransformFromMatrix(matrix: SVGMatrix): SVGTransform;\n deselectAll(): void;\n forceRedraw(): void;\n getComputedStyle(elt: Element, pseudoElt?: string): CSSStyleDeclaration;\n getCurrentTime(): number;\n getElementById(elementId: string): Element;\n getEnclosureList(rect: SVGRect, referenceElement: SVGElement): NodeListOf<SVGCircleElement | SVGEllipseElement | SVGImageElement | SVGLineElement | SVGPathElement | SVGPolygonElement | SVGPolylineElement | SVGRectElement | SVGTextElement | SVGUseElement>;\n getIntersectionList(rect: SVGRect, referenceElement: SVGElement): NodeListOf<SVGCircleElement | SVGEllipseElement | SVGImageElement | SVGLineElement | SVGPathElement | SVGPolygonElement | SVGPolylineElement | SVGRectElement | SVGTextElement | SVGUseElement>;\n pauseAnimations(): void;\n setCurrentTime(seconds: number): void;\n suspendRedraw(maxWaitMilliseconds: number): number;\n unpauseAnimations(): void;\n unsuspendRedraw(suspendHandleID: number): void;\n unsuspendRedrawAll(): void;\n addEventListener<K extends keyof SVGSVGElementEventMap>(type: K, listener: (this: SVGSVGElement, ev: SVGSVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGSVGElement: {\n prototype: SVGSVGElement;\n new(): SVGSVGElement;\n};\n\ninterface SVGSwitchElement extends SVGGraphicsElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGSwitchElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGSwitchElement: {\n prototype: SVGSwitchElement;\n new(): SVGSwitchElement;\n};\n\ninterface SVGSymbolElement extends SVGElement, SVGFitToViewBox {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGSymbolElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGSymbolElement: {\n prototype: SVGSymbolElement;\n new(): SVGSymbolElement;\n};\n\ninterface SVGTextContentElement extends SVGGraphicsElement {\n readonly lengthAdjust: SVGAnimatedEnumeration;\n readonly textLength: SVGAnimatedLength;\n getCharNumAtPosition(point: SVGPoint): number;\n getComputedTextLength(): number;\n getEndPositionOfChar(charnum: number): SVGPoint;\n getExtentOfChar(charnum: number): SVGRect;\n getNumberOfChars(): number;\n getRotationOfChar(charnum: number): number;\n getStartPositionOfChar(charnum: number): SVGPoint;\n getSubStringLength(charnum: number, nchars: number): number;\n selectSubString(charnum: number, nchars: number): void;\n readonly LENGTHADJUST_SPACING: number;\n readonly LENGTHADJUST_SPACINGANDGLYPHS: number;\n readonly LENGTHADJUST_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextContentElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTextContentElement: {\n prototype: SVGTextContentElement;\n new(): SVGTextContentElement;\n readonly LENGTHADJUST_SPACING: number;\n readonly LENGTHADJUST_SPACINGANDGLYPHS: number;\n readonly LENGTHADJUST_UNKNOWN: number;\n};\n\ninterface SVGTextElement extends SVGTextPositioningElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTextElement: {\n prototype: SVGTextElement;\n new(): SVGTextElement;\n};\n\ninterface SVGTextPathElement extends SVGTextContentElement, SVGURIReference {\n readonly method: SVGAnimatedEnumeration;\n readonly spacing: SVGAnimatedEnumeration;\n readonly startOffset: SVGAnimatedLength;\n readonly TEXTPATH_METHODTYPE_ALIGN: number;\n readonly TEXTPATH_METHODTYPE_STRETCH: number;\n readonly TEXTPATH_METHODTYPE_UNKNOWN: number;\n readonly TEXTPATH_SPACINGTYPE_AUTO: number;\n readonly TEXTPATH_SPACINGTYPE_EXACT: number;\n readonly TEXTPATH_SPACINGTYPE_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextPathElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTextPathElement: {\n prototype: SVGTextPathElement;\n new(): SVGTextPathElement;\n readonly TEXTPATH_METHODTYPE_ALIGN: number;\n readonly TEXTPATH_METHODTYPE_STRETCH: number;\n readonly TEXTPATH_METHODTYPE_UNKNOWN: number;\n readonly TEXTPATH_SPACINGTYPE_AUTO: number;\n readonly TEXTPATH_SPACINGTYPE_EXACT: number;\n readonly TEXTPATH_SPACINGTYPE_UNKNOWN: number;\n};\n\ninterface SVGTextPositioningElement extends SVGTextContentElement {\n readonly dx: SVGAnimatedLengthList;\n readonly dy: SVGAnimatedLengthList;\n readonly rotate: SVGAnimatedNumberList;\n readonly x: SVGAnimatedLengthList;\n readonly y: SVGAnimatedLengthList;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextPositioningElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTextPositioningElement: {\n prototype: SVGTextPositioningElement;\n new(): SVGTextPositioningElement;\n};\n\ninterface SVGTitleElement extends SVGElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTitleElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTitleElement: {\n prototype: SVGTitleElement;\n new(): SVGTitleElement;\n};\n\ninterface SVGTransform {\n readonly angle: number;\n readonly matrix: SVGMatrix;\n readonly type: number;\n setMatrix(matrix: SVGMatrix): void;\n setRotate(angle: number, cx: number, cy: number): void;\n setScale(sx: number, sy: number): void;\n setSkewX(angle: number): void;\n setSkewY(angle: number): void;\n setTranslate(tx: number, ty: number): void;\n readonly SVG_TRANSFORM_MATRIX: number;\n readonly SVG_TRANSFORM_ROTATE: number;\n readonly SVG_TRANSFORM_SCALE: number;\n readonly SVG_TRANSFORM_SKEWX: number;\n readonly SVG_TRANSFORM_SKEWY: number;\n readonly SVG_TRANSFORM_TRANSLATE: number;\n readonly SVG_TRANSFORM_UNKNOWN: number;\n}\n\ndeclare var SVGTransform: {\n prototype: SVGTransform;\n new(): SVGTransform;\n readonly SVG_TRANSFORM_MATRIX: number;\n readonly SVG_TRANSFORM_ROTATE: number;\n readonly SVG_TRANSFORM_SCALE: number;\n readonly SVG_TRANSFORM_SKEWX: number;\n readonly SVG_TRANSFORM_SKEWY: number;\n readonly SVG_TRANSFORM_TRANSLATE: number;\n readonly SVG_TRANSFORM_UNKNOWN: number;\n};\n\ninterface SVGTransformList {\n readonly numberOfItems: number;\n appendItem(newItem: SVGTransform): SVGTransform;\n clear(): void;\n consolidate(): SVGTransform;\n createSVGTransformFromMatrix(matrix: SVGMatrix): SVGTransform;\n getItem(index: number): SVGTransform;\n initialize(newItem: SVGTransform): SVGTransform;\n insertItemBefore(newItem: SVGTransform, index: number): SVGTransform;\n removeItem(index: number): SVGTransform;\n replaceItem(newItem: SVGTransform, index: number): SVGTransform;\n}\n\ndeclare var SVGTransformList: {\n prototype: SVGTransformList;\n new(): SVGTransformList;\n};\n\ninterface SVGTSpanElement extends SVGTextPositioningElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTSpanElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTSpanElement: {\n prototype: SVGTSpanElement;\n new(): SVGTSpanElement;\n};\n\ninterface SVGUnitTypes {\n readonly SVG_UNIT_TYPE_OBJECTBOUNDINGBOX: number;\n readonly SVG_UNIT_TYPE_UNKNOWN: number;\n readonly SVG_UNIT_TYPE_USERSPACEONUSE: number;\n}\ndeclare var SVGUnitTypes: SVGUnitTypes;\n\ninterface SVGUseElement extends SVGGraphicsElement, SVGURIReference {\n readonly animatedInstanceRoot: SVGElementInstance;\n readonly height: SVGAnimatedLength;\n readonly instanceRoot: SVGElementInstance;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGUseElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGUseElement: {\n prototype: SVGUseElement;\n new(): SVGUseElement;\n};\n\ninterface SVGViewElement extends SVGElement, SVGZoomAndPan, SVGFitToViewBox {\n readonly viewTarget: SVGStringList;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGViewElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGViewElement: {\n prototype: SVGViewElement;\n new(): SVGViewElement;\n};\n\ninterface SVGZoomAndPan {\n readonly zoomAndPan: number;\n}\n\ndeclare var SVGZoomAndPan: {\n readonly SVG_ZOOMANDPAN_DISABLE: number;\n readonly SVG_ZOOMANDPAN_MAGNIFY: number;\n readonly SVG_ZOOMANDPAN_UNKNOWN: number;\n};\n\ninterface SVGZoomEvent extends UIEvent {\n readonly newScale: number;\n readonly newTranslate: SVGPoint;\n readonly previousScale: number;\n readonly previousTranslate: SVGPoint;\n readonly zoomRectScreen: SVGRect;\n}\n\ndeclare var SVGZoomEvent: {\n prototype: SVGZoomEvent;\n new(): SVGZoomEvent;\n};\n\ninterface SyncManager {\n getTags(): any;\n register(tag: string): Promise<void>;\n}\n\ndeclare var SyncManager: {\n prototype: SyncManager;\n new(): SyncManager;\n};\n\ninterface Text extends CharacterData {\n readonly wholeText: string;\n readonly assignedSlot: HTMLSlotElement | null;\n splitText(offset: number): Text;\n}\n\ndeclare var Text: {\n prototype: Text;\n new(data?: string): Text;\n};\n\ninterface TextEvent extends UIEvent {\n readonly data: string;\n readonly inputMethod: number;\n readonly locale: string;\n initTextEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, dataArg: string, inputMethod: number, locale: string): void;\n readonly DOM_INPUT_METHOD_DROP: number;\n readonly DOM_INPUT_METHOD_HANDWRITING: number;\n readonly DOM_INPUT_METHOD_IME: number;\n readonly DOM_INPUT_METHOD_KEYBOARD: number;\n readonly DOM_INPUT_METHOD_MULTIMODAL: number;\n readonly DOM_INPUT_METHOD_OPTION: number;\n readonly DOM_INPUT_METHOD_PASTE: number;\n readonly DOM_INPUT_METHOD_SCRIPT: number;\n readonly DOM_INPUT_METHOD_UNKNOWN: number;\n readonly DOM_INPUT_METHOD_VOICE: number;\n}\n\ndeclare var TextEvent: {\n prototype: TextEvent;\n new(): TextEvent;\n readonly DOM_INPUT_METHOD_DROP: number;\n readonly DOM_INPUT_METHOD_HANDWRITING: number;\n readonly DOM_INPUT_METHOD_IME: number;\n readonly DOM_INPUT_METHOD_KEYBOARD: number;\n readonly DOM_INPUT_METHOD_MULTIMODAL: number;\n readonly DOM_INPUT_METHOD_OPTION: number;\n readonly DOM_INPUT_METHOD_PASTE: number;\n readonly DOM_INPUT_METHOD_SCRIPT: number;\n readonly DOM_INPUT_METHOD_UNKNOWN: number;\n readonly DOM_INPUT_METHOD_VOICE: number;\n};\n\ninterface TextMetrics {\n readonly width: number;\n}\n\ndeclare var TextMetrics: {\n prototype: TextMetrics;\n new(): TextMetrics;\n};\n\ninterface TextTrackEventMap {\n "cuechange": Event;\n "error": Event;\n "load": Event;\n}\n\ninterface TextTrack extends EventTarget {\n readonly activeCues: TextTrackCueList;\n readonly cues: TextTrackCueList;\n readonly inBandMetadataTrackDispatchType: string;\n readonly kind: string;\n readonly label: string;\n readonly language: string;\n mode: any;\n oncuechange: (this: TextTrack, ev: Event) => any;\n onerror: (this: TextTrack, ev: Event) => any;\n onload: (this: TextTrack, ev: Event) => any;\n readonly readyState: number;\n addCue(cue: TextTrackCue): void;\n removeCue(cue: TextTrackCue): void;\n readonly DISABLED: number;\n readonly ERROR: number;\n readonly HIDDEN: number;\n readonly LOADED: number;\n readonly LOADING: number;\n readonly NONE: number;\n readonly SHOWING: number;\n addEventListener<K extends keyof TextTrackEventMap>(type: K, listener: (this: TextTrack, ev: TextTrackEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var TextTrack: {\n prototype: TextTrack;\n new(): TextTrack;\n readonly DISABLED: number;\n readonly ERROR: number;\n readonly HIDDEN: number;\n readonly LOADED: number;\n readonly LOADING: number;\n readonly NONE: number;\n readonly SHOWING: number;\n};\n\ninterface TextTrackCueEventMap {\n "enter": Event;\n "exit": Event;\n}\n\ninterface TextTrackCue extends EventTarget {\n endTime: number;\n id: string;\n onenter: (this: TextTrackCue, ev: Event) => any;\n onexit: (this: TextTrackCue, ev: Event) => any;\n pauseOnExit: boolean;\n startTime: number;\n text: string;\n readonly track: TextTrack;\n getCueAsHTML(): DocumentFragment;\n addEventListener<K extends keyof TextTrackCueEventMap>(type: K, listener: (this: TextTrackCue, ev: TextTrackCueEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var TextTrackCue: {\n prototype: TextTrackCue;\n new(startTime: number, endTime: number, text: string): TextTrackCue;\n};\n\ninterface TextTrackCueList {\n readonly length: number;\n getCueById(id: string): TextTrackCue;\n item(index: number): TextTrackCue;\n [index: number]: TextTrackCue;\n}\n\ndeclare var TextTrackCueList: {\n prototype: TextTrackCueList;\n new(): TextTrackCueList;\n};\n\ninterface TextTrackListEventMap {\n "addtrack": TrackEvent;\n}\n\ninterface TextTrackList extends EventTarget {\n readonly length: number;\n onaddtrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;\n item(index: number): TextTrack;\n addEventListener<K extends keyof TextTrackListEventMap>(type: K, listener: (this: TextTrackList, ev: TextTrackListEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n [index: number]: TextTrack;\n}\n\ndeclare var TextTrackList: {\n prototype: TextTrackList;\n new(): TextTrackList;\n};\n\ninterface TimeRanges {\n readonly length: number;\n end(index: number): number;\n start(index: number): number;\n}\n\ndeclare var TimeRanges: {\n prototype: TimeRanges;\n new(): TimeRanges;\n};\n\ninterface Touch {\n readonly clientX: number;\n readonly clientY: number;\n readonly identifier: number;\n readonly pageX: number;\n readonly pageY: number;\n readonly screenX: number;\n readonly screenY: number;\n readonly target: EventTarget;\n}\n\ndeclare var Touch: {\n prototype: Touch;\n new(): Touch;\n};\n\ninterface TouchEvent extends UIEvent {\n readonly altKey: boolean;\n readonly changedTouches: TouchList;\n readonly charCode: number;\n readonly ctrlKey: boolean;\n readonly keyCode: number;\n readonly metaKey: boolean;\n readonly shiftKey: boolean;\n readonly targetTouches: TouchList;\n readonly touches: TouchList;\n readonly which: number;\n}\n\ndeclare var TouchEvent: {\n prototype: TouchEvent;\n new(type: string, touchEventInit?: TouchEventInit): TouchEvent;\n};\n\ninterface TouchList {\n readonly length: number;\n item(index: number): Touch | null;\n [index: number]: Touch;\n}\n\ndeclare var TouchList: {\n prototype: TouchList;\n new(): TouchList;\n};\n\ninterface TrackEvent extends Event {\n readonly track: VideoTrack | AudioTrack | TextTrack | null;\n}\n\ndeclare var TrackEvent: {\n prototype: TrackEvent;\n new(typeArg: string, eventInitDict?: TrackEventInit): TrackEvent;\n};\n\ninterface TransitionEvent extends Event {\n readonly elapsedTime: number;\n readonly propertyName: string;\n initTransitionEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, propertyNameArg: string, elapsedTimeArg: number): void;\n}\n\ndeclare var TransitionEvent: {\n prototype: TransitionEvent;\n new(typeArg: string, eventInitDict?: TransitionEventInit): TransitionEvent;\n};\n\ninterface TreeWalker {\n currentNode: Node;\n readonly expandEntityReferences: boolean;\n readonly filter: NodeFilter;\n readonly root: Node;\n readonly whatToShow: number;\n firstChild(): Node;\n lastChild(): Node;\n nextNode(): Node;\n nextSibling(): Node;\n parentNode(): Node;\n previousNode(): Node;\n previousSibling(): Node;\n}\n\ndeclare var TreeWalker: {\n prototype: TreeWalker;\n new(): TreeWalker;\n};\n\ninterface UIEvent extends Event {\n readonly detail: number;\n readonly view: Window;\n initUIEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number): void;\n}\n\ndeclare var UIEvent: {\n prototype: UIEvent;\n new(typeArg: string, eventInitDict?: UIEventInit): UIEvent;\n};\n\ninterface UnviewableContentIdentifiedEvent extends NavigationEventWithReferrer {\n readonly mediaType: string;\n}\n\ndeclare var UnviewableContentIdentifiedEvent: {\n prototype: UnviewableContentIdentifiedEvent;\n new(): UnviewableContentIdentifiedEvent;\n};\n\ninterface URL {\n hash: string;\n host: string;\n hostname: string;\n href: string;\n readonly origin: string;\n password: string;\n pathname: string;\n port: string;\n protocol: string;\n search: string;\n username: string;\n readonly searchParams: URLSearchParams;\n toString(): string;\n}\n\ndeclare var URL: {\n prototype: URL;\n new(url: string, base?: string): URL;\n createObjectURL(object: any, options?: ObjectURLOptions): string;\n revokeObjectURL(url: string): void;\n};\n\ninterface ValidityState {\n readonly badInput: boolean;\n readonly customError: boolean;\n readonly patternMismatch: boolean;\n readonly rangeOverflow: boolean;\n readonly rangeUnderflow: boolean;\n readonly stepMismatch: boolean;\n readonly tooLong: boolean;\n readonly typeMismatch: boolean;\n readonly valid: boolean;\n readonly valueMissing: boolean;\n}\n\ndeclare var ValidityState: {\n prototype: ValidityState;\n new(): ValidityState;\n};\n\ninterface VideoPlaybackQuality {\n readonly corruptedVideoFrames: number;\n readonly creationTime: number;\n readonly droppedVideoFrames: number;\n readonly totalFrameDelay: number;\n readonly totalVideoFrames: number;\n}\n\ndeclare var VideoPlaybackQuality: {\n prototype: VideoPlaybackQuality;\n new(): VideoPlaybackQuality;\n};\n\ninterface VideoTrack {\n readonly id: string;\n kind: string;\n readonly label: string;\n language: string;\n selected: boolean;\n readonly sourceBuffer: SourceBuffer;\n}\n\ndeclare var VideoTrack: {\n prototype: VideoTrack;\n new(): VideoTrack;\n};\n\ninterface VideoTrackListEventMap {\n "addtrack": TrackEvent;\n "change": Event;\n "removetrack": TrackEvent;\n}\n\ninterface VideoTrackList extends EventTarget {\n readonly length: number;\n onaddtrack: (this: VideoTrackList, ev: TrackEvent) => any;\n onchange: (this: VideoTrackList, ev: Event) => any;\n onremovetrack: (this: VideoTrackList, ev: TrackEvent) => any;\n readonly selectedIndex: number;\n getTrackById(id: string): VideoTrack | null;\n item(index: number): VideoTrack;\n addEventListener<K extends keyof VideoTrackListEventMap>(type: K, listener: (this: VideoTrackList, ev: VideoTrackListEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n [index: number]: VideoTrack;\n}\n\ndeclare var VideoTrackList: {\n prototype: VideoTrackList;\n new(): VideoTrackList;\n};\n\ninterface WaveShaperNode extends AudioNode {\n curve: Float32Array | null;\n oversample: OverSampleType;\n}\n\ndeclare var WaveShaperNode: {\n prototype: WaveShaperNode;\n new(): WaveShaperNode;\n};\n\ninterface WebAuthentication {\n getAssertion(assertionChallenge: any, options?: AssertionOptions): Promise<WebAuthnAssertion>;\n makeCredential(accountInformation: Account, cryptoParameters: ScopedCredentialParameters[], attestationChallenge: any, options?: ScopedCredentialOptions): Promise<ScopedCredentialInfo>;\n}\n\ndeclare var WebAuthentication: {\n prototype: WebAuthentication;\n new(): WebAuthentication;\n};\n\ninterface WebAuthnAssertion {\n readonly authenticatorData: ArrayBuffer;\n readonly clientData: ArrayBuffer;\n readonly credential: ScopedCredential;\n readonly signature: ArrayBuffer;\n}\n\ndeclare var WebAuthnAssertion: {\n prototype: WebAuthnAssertion;\n new(): WebAuthnAssertion;\n};\n\ninterface WEBGL_compressed_texture_s3tc {\n readonly COMPRESSED_RGB_S3TC_DXT1_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT1_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT3_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT5_EXT: number;\n}\n\ndeclare var WEBGL_compressed_texture_s3tc: {\n prototype: WEBGL_compressed_texture_s3tc;\n new(): WEBGL_compressed_texture_s3tc;\n readonly COMPRESSED_RGB_S3TC_DXT1_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT1_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT3_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT5_EXT: number;\n};\n\ninterface WEBGL_debug_renderer_info {\n readonly UNMASKED_RENDERER_WEBGL: number;\n readonly UNMASKED_VENDOR_WEBGL: number;\n}\n\ndeclare var WEBGL_debug_renderer_info: {\n prototype: WEBGL_debug_renderer_info;\n new(): WEBGL_debug_renderer_info;\n readonly UNMASKED_RENDERER_WEBGL: number;\n readonly UNMASKED_VENDOR_WEBGL: number;\n};\n\ninterface WEBGL_depth_texture {\n readonly UNSIGNED_INT_24_8_WEBGL: number;\n}\n\ndeclare var WEBGL_depth_texture: {\n prototype: WEBGL_depth_texture;\n new(): WEBGL_depth_texture;\n readonly UNSIGNED_INT_24_8_WEBGL: number;\n};\n\ninterface WebGLActiveInfo {\n readonly name: string;\n readonly size: number;\n readonly type: number;\n}\n\ndeclare var WebGLActiveInfo: {\n prototype: WebGLActiveInfo;\n new(): WebGLActiveInfo;\n};\n\ninterface WebGLBuffer extends WebGLObject {\n}\n\ndeclare var WebGLBuffer: {\n prototype: WebGLBuffer;\n new(): WebGLBuffer;\n};\n\ninterface WebGLContextEvent extends Event {\n readonly statusMessage: string;\n}\n\ndeclare var WebGLContextEvent: {\n prototype: WebGLContextEvent;\n new(typeArg: string, eventInitDict?: WebGLContextEventInit): WebGLContextEvent;\n};\n\ninterface WebGLFramebuffer extends WebGLObject {\n}\n\ndeclare var WebGLFramebuffer: {\n prototype: WebGLFramebuffer;\n new(): WebGLFramebuffer;\n};\n\ninterface WebGLObject {\n}\n\ndeclare var WebGLObject: {\n prototype: WebGLObject;\n new(): WebGLObject;\n};\n\ninterface WebGLProgram extends WebGLObject {\n}\n\ndeclare var WebGLProgram: {\n prototype: WebGLProgram;\n new(): WebGLProgram;\n};\n\ninterface WebGLRenderbuffer extends WebGLObject {\n}\n\ndeclare var WebGLRenderbuffer: {\n prototype: WebGLRenderbuffer;\n new(): WebGLRenderbuffer;\n};\n\ninterface WebGLRenderingContext {\n readonly canvas: HTMLCanvasElement;\n readonly drawingBufferHeight: number;\n readonly drawingBufferWidth: number;\n activeTexture(texture: number): void;\n attachShader(program: WebGLProgram | null, shader: WebGLShader | null): void;\n bindAttribLocation(program: WebGLProgram | null, index: number, name: string): void;\n bindBuffer(target: number, buffer: WebGLBuffer | null): void;\n bindFramebuffer(target: number, framebuffer: WebGLFramebuffer | null): void;\n bindRenderbuffer(target: number, renderbuffer: WebGLRenderbuffer | null): void;\n bindTexture(target: number, texture: WebGLTexture | null): void;\n blendColor(red: number, green: number, blue: number, alpha: number): void;\n blendEquation(mode: number): void;\n blendEquationSeparate(modeRGB: number, modeAlpha: number): void;\n blendFunc(sfactor: number, dfactor: number): void;\n blendFuncSeparate(srcRGB: number, dstRGB: number, srcAlpha: number, dstAlpha: number): void;\n bufferData(target: number, size: number | ArrayBufferView | ArrayBuffer, usage: number): void;\n bufferSubData(target: number, offset: number, data: ArrayBufferView | ArrayBuffer): void;\n checkFramebufferStatus(target: number): number;\n clear(mask: number): void;\n clearColor(red: number, green: number, blue: number, alpha: number): void;\n clearDepth(depth: number): void;\n clearStencil(s: number): void;\n colorMask(red: boolean, green: boolean, blue: boolean, alpha: boolean): void;\n compileShader(shader: WebGLShader | null): void;\n compressedTexImage2D(target: number, level: number, internalformat: number, width: number, height: number, border: number, data: ArrayBufferView): void;\n compressedTexSubImage2D(target: number, level: number, xoffset: number, yoffset: number, width: number, height: number, format: number, data: ArrayBufferView): void;\n copyTexImage2D(target: number, level: number, internalformat: number, x: number, y: number, width: number, height: number, border: number): void;\n copyTexSubImage2D(target: number, level: number, xoffset: number, yoffset: number, x: number, y: number, width: number, height: number): void;\n createBuffer(): WebGLBuffer | null;\n createFramebuffer(): WebGLFramebuffer | null;\n createProgram(): WebGLProgram | null;\n createRenderbuffer(): WebGLRenderbuffer | null;\n createShader(type: number): WebGLShader | null;\n createTexture(): WebGLTexture | null;\n cullFace(mode: number): void;\n deleteBuffer(buffer: WebGLBuffer | null): void;\n deleteFramebuffer(framebuffer: WebGLFramebuffer | null): void;\n deleteProgram(program: WebGLProgram | null): void;\n deleteRenderbuffer(renderbuffer: WebGLRenderbuffer | null): void;\n deleteShader(shader: WebGLShader | null): void;\n deleteTexture(texture: WebGLTexture | null): void;\n depthFunc(func: number): void;\n depthMask(flag: boolean): void;\n depthRange(zNear: number, zFar: number): void;\n detachShader(program: WebGLProgram | null, shader: WebGLShader | null): void;\n disable(cap: number): void;\n disableVertexAttribArray(index: number): void;\n drawArrays(mode: number, first: number, count: number): void;\n drawElements(mode: number, count: number, type: number, offset: number): void;\n enable(cap: number): void;\n enableVertexAttribArray(index: number): void;\n finish(): void;\n flush(): void;\n framebufferRenderbuffer(target: number, attachment: number, renderbuffertarget: number, renderbuffer: WebGLRenderbuffer | null): void;\n framebufferTexture2D(target: number, attachment: number, textarget: number, texture: WebGLTexture | null, level: number): void;\n frontFace(mode: number): void;\n generateMipmap(target: number): void;\n getActiveAttrib(program: WebGLProgram | null, index: number): WebGLActiveInfo | null;\n getActiveUniform(program: WebGLProgram | null, index: number): WebGLActiveInfo | null;\n getAttachedShaders(program: WebGLProgram | null): WebGLShader[] | null;\n getAttribLocation(program: WebGLProgram | null, name: string): number;\n getBufferParameter(target: number, pname: number): any;\n getContextAttributes(): WebGLContextAttributes;\n getError(): number;\n getExtension(name: string): any;\n getFramebufferAttachmentParameter(target: number, attachment: number, pname: number): any;\n getParameter(pname: number): any;\n getProgramInfoLog(program: WebGLProgram | null): string | null;\n getProgramParameter(program: WebGLProgram | null, pname: number): any;\n getRenderbufferParameter(target: number, pname: number): any;\n getShaderInfoLog(shader: WebGLShader | null): string | null;\n getShaderParameter(shader: WebGLShader | null, pname: number): any;\n getShaderPrecisionFormat(shadertype: number, precisiontype: number): WebGLShaderPrecisionFormat | null;\n getShaderSource(shader: WebGLShader | null): string | null;\n getSupportedExtensions(): string[] | null;\n getTexParameter(target: number, pname: number): any;\n getUniform(program: WebGLProgram | null, location: WebGLUniformLocation | null): any;\n getUniformLocation(program: WebGLProgram | null, name: string): WebGLUniformLocation | null;\n getVertexAttrib(index: number, pname: number): any;\n getVertexAttribOffset(index: number, pname: number): number;\n hint(target: number, mode: number): void;\n isBuffer(buffer: WebGLBuffer | null): boolean;\n isContextLost(): boolean;\n isEnabled(cap: number): boolean;\n isFramebuffer(framebuffer: WebGLFramebuffer | null): boolean;\n isProgram(program: WebGLProgram | null): boolean;\n isRenderbuffer(renderbuffer: WebGLRenderbuffer | null): boolean;\n isShader(shader: WebGLShader | null): boolean;\n isTexture(texture: WebGLTexture | null): boolean;\n lineWidth(width: number): void;\n linkProgram(program: WebGLProgram | null): void;\n pixelStorei(pname: number, param: number | boolean): void;\n polygonOffset(factor: number, units: number): void;\n readPixels(x: number, y: number, width: number, height: number, format: number, type: number, pixels: ArrayBufferView | null): void;\n renderbufferStorage(target: number, internalformat: number, width: number, height: number): void;\n sampleCoverage(value: number, invert: boolean): void;\n scissor(x: number, y: number, width: number, height: number): void;\n shaderSource(shader: WebGLShader | null, source: string): void;\n stencilFunc(func: number, ref: number, mask: number): void;\n stencilFuncSeparate(face: number, func: number, ref: number, mask: number): void;\n stencilMask(mask: number): void;\n stencilMaskSeparate(face: number, mask: number): void;\n stencilOp(fail: number, zfail: number, zpass: number): void;\n stencilOpSeparate(face: number, fail: number, zfail: number, zpass: number): void;\n texImage2D(target: number, level: number, internalformat: number, width: number, height: number, border: number, format: number, type: number, pixels: ArrayBufferView | null): void;\n texImage2D(target: number, level: number, internalformat: number, format: number, type: number, pixels: ImageBitmap | ImageData | HTMLVideoElement | HTMLImageElement | HTMLCanvasElement): void;\n texParameterf(target: number, pname: number, param: number): void;\n texParameteri(target: number, pname: number, param: number): void;\n texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, width: number, height: number, format: number, type: number, pixels: ArrayBufferView | null): void;\n texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, format: number, type: number, pixels: ImageBitmap | ImageData | HTMLVideoElement | HTMLImageElement | HTMLCanvasElement): void;\n uniform1f(location: WebGLUniformLocation | null, x: number): void;\n uniform1fv(location: WebGLUniformLocation, v: Float32Array | number[]): void;\n uniform1i(location: WebGLUniformLocation | null, x: number): void;\n uniform1iv(location: WebGLUniformLocation, v: Int32Array | number[]): void;\n uniform2f(location: WebGLUniformLocation | null, x: number, y: number): void;\n uniform2fv(location: WebGLUniformLocation, v: Float32Array | number[]): void;\n uniform2i(location: WebGLUniformLocation | null, x: number, y: number): void;\n uniform2iv(location: WebGLUniformLocation, v: Int32Array | number[]): void;\n uniform3f(location: WebGLUniformLocation | null, x: number, y: number, z: number): void;\n uniform3fv(location: WebGLUniformLocation, v: Float32Array | number[]): void;\n uniform3i(location: WebGLUniformLocation | null, x: number, y: number, z: number): void;\n uniform3iv(location: WebGLUniformLocation, v: Int32Array | number[]): void;\n uniform4f(location: WebGLUniformLocation | null, x: number, y: number, z: number, w: number): void;\n uniform4fv(location: WebGLUniformLocation, v: Float32Array | number[]): void;\n uniform4i(location: WebGLUniformLocation | null, x: number, y: number, z: number, w: number): void;\n uniform4iv(location: WebGLUniformLocation, v: Int32Array | number[]): void;\n uniformMatrix2fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | number[]): void;\n uniformMatrix3fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | number[]): void;\n uniformMatrix4fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | number[]): void;\n useProgram(program: WebGLProgram | null): void;\n validateProgram(program: WebGLProgram | null): void;\n vertexAttrib1f(indx: number, x: number): void;\n vertexAttrib1fv(indx: number, values: Float32Array | number[]): void;\n vertexAttrib2f(indx: number, x: number, y: number): void;\n vertexAttrib2fv(indx: number, values: Float32Array | number[]): void;\n vertexAttrib3f(indx: number, x: number, y: number, z: number): void;\n vertexAttrib3fv(indx: number, values: Float32Array | number[]): void;\n vertexAttrib4f(indx: number, x: number, y: number, z: number, w: number): void;\n vertexAttrib4fv(indx: number, values: Float32Array | number[]): void;\n vertexAttribPointer(indx: number, size: number, type: number, normalized: boolean, stride: number, offset: number): void;\n viewport(x: number, y: number, width: number, height: number): void;\n readonly ACTIVE_ATTRIBUTES: number;\n readonly ACTIVE_TEXTURE: number;\n readonly ACTIVE_UNIFORMS: number;\n readonly ALIASED_LINE_WIDTH_RANGE: number;\n readonly ALIASED_POINT_SIZE_RANGE: number;\n readonly ALPHA: number;\n readonly ALPHA_BITS: number;\n readonly ALWAYS: number;\n readonly ARRAY_BUFFER: number;\n readonly ARRAY_BUFFER_BINDING: number;\n readonly ATTACHED_SHADERS: number;\n readonly BACK: number;\n readonly BLEND: number;\n readonly BLEND_COLOR: number;\n readonly BLEND_DST_ALPHA: number;\n readonly BLEND_DST_RGB: number;\n readonly BLEND_EQUATION: number;\n readonly BLEND_EQUATION_ALPHA: number;\n readonly BLEND_EQUATION_RGB: number;\n readonly BLEND_SRC_ALPHA: number;\n readonly BLEND_SRC_RGB: number;\n readonly BLUE_BITS: number;\n readonly BOOL: number;\n readonly BOOL_VEC2: number;\n readonly BOOL_VEC3: number;\n readonly BOOL_VEC4: number;\n readonly BROWSER_DEFAULT_WEBGL: number;\n readonly BUFFER_SIZE: number;\n readonly BUFFER_USAGE: number;\n readonly BYTE: number;\n readonly CCW: number;\n readonly CLAMP_TO_EDGE: number;\n readonly COLOR_ATTACHMENT0: number;\n readonly COLOR_BUFFER_BIT: number;\n readonly COLOR_CLEAR_VALUE: number;\n readonly COLOR_WRITEMASK: number;\n readonly COMPILE_STATUS: number;\n readonly COMPRESSED_TEXTURE_FORMATS: number;\n readonly CONSTANT_ALPHA: number;\n readonly CONSTANT_COLOR: number;\n readonly CONTEXT_LOST_WEBGL: number;\n readonly CULL_FACE: number;\n readonly CULL_FACE_MODE: number;\n readonly CURRENT_PROGRAM: number;\n readonly CURRENT_VERTEX_ATTRIB: number;\n readonly CW: number;\n readonly DECR: number;\n readonly DECR_WRAP: number;\n readonly DELETE_STATUS: number;\n readonly DEPTH_ATTACHMENT: number;\n readonly DEPTH_BITS: number;\n readonly DEPTH_BUFFER_BIT: number;\n readonly DEPTH_CLEAR_VALUE: number;\n readonly DEPTH_COMPONENT: number;\n readonly DEPTH_COMPONENT16: number;\n readonly DEPTH_FUNC: number;\n readonly DEPTH_RANGE: number;\n readonly DEPTH_STENCIL: number;\n readonly DEPTH_STENCIL_ATTACHMENT: number;\n readonly DEPTH_TEST: number;\n readonly DEPTH_WRITEMASK: number;\n readonly DITHER: number;\n readonly DONT_CARE: number;\n readonly DST_ALPHA: number;\n readonly DST_COLOR: number;\n readonly DYNAMIC_DRAW: number;\n readonly ELEMENT_ARRAY_BUFFER: number;\n readonly ELEMENT_ARRAY_BUFFER_BINDING: number;\n readonly EQUAL: number;\n readonly FASTEST: number;\n readonly FLOAT: number;\n readonly FLOAT_MAT2: number;\n readonly FLOAT_MAT3: number;\n readonly FLOAT_MAT4: number;\n readonly FLOAT_VEC2: number;\n readonly FLOAT_VEC3: number;\n readonly FLOAT_VEC4: number;\n readonly FRAGMENT_SHADER: number;\n readonly FRAMEBUFFER: number;\n readonly FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: number;\n readonly FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: number;\n readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: number;\n readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: number;\n readonly FRAMEBUFFER_BINDING: number;\n readonly FRAMEBUFFER_COMPLETE: number;\n readonly FRAMEBUFFER_INCOMPLETE_ATTACHMENT: number;\n readonly FRAMEBUFFER_INCOMPLETE_DIMENSIONS: number;\n readonly FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: number;\n readonly FRAMEBUFFER_UNSUPPORTED: number;\n readonly FRONT: number;\n readonly FRONT_AND_BACK: number;\n readonly FRONT_FACE: number;\n readonly FUNC_ADD: number;\n readonly FUNC_REVERSE_SUBTRACT: number;\n readonly FUNC_SUBTRACT: number;\n readonly GENERATE_MIPMAP_HINT: number;\n readonly GEQUAL: number;\n readonly GREATER: number;\n readonly GREEN_BITS: number;\n readonly HIGH_FLOAT: number;\n readonly HIGH_INT: number;\n readonly IMPLEMENTATION_COLOR_READ_FORMAT: number;\n readonly IMPLEMENTATION_COLOR_READ_TYPE: number;\n readonly INCR: number;\n readonly INCR_WRAP: number;\n readonly INT: number;\n readonly INT_VEC2: number;\n readonly INT_VEC3: number;\n readonly INT_VEC4: number;\n readonly INVALID_ENUM: number;\n readonly INVALID_FRAMEBUFFER_OPERATION: number;\n readonly INVALID_OPERATION: number;\n readonly INVALID_VALUE: number;\n readonly INVERT: number;\n readonly KEEP: number;\n readonly LEQUAL: number;\n readonly LESS: number;\n readonly LINE_LOOP: number;\n readonly LINE_STRIP: number;\n readonly LINE_WIDTH: number;\n readonly LINEAR: number;\n readonly LINEAR_MIPMAP_LINEAR: number;\n readonly LINEAR_MIPMAP_NEAREST: number;\n readonly LINES: number;\n readonly LINK_STATUS: number;\n readonly LOW_FLOAT: number;\n readonly LOW_INT: number;\n readonly LUMINANCE: number;\n readonly LUMINANCE_ALPHA: number;\n readonly MAX_COMBINED_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_CUBE_MAP_TEXTURE_SIZE: number;\n readonly MAX_FRAGMENT_UNIFORM_VECTORS: number;\n readonly MAX_RENDERBUFFER_SIZE: number;\n readonly MAX_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_TEXTURE_SIZE: number;\n readonly MAX_VARYING_VECTORS: number;\n readonly MAX_VERTEX_ATTRIBS: number;\n readonly MAX_VERTEX_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_VERTEX_UNIFORM_VECTORS: number;\n readonly MAX_VIEWPORT_DIMS: number;\n readonly MEDIUM_FLOAT: number;\n readonly MEDIUM_INT: number;\n readonly MIRRORED_REPEAT: number;\n readonly NEAREST: number;\n readonly NEAREST_MIPMAP_LINEAR: number;\n readonly NEAREST_MIPMAP_NEAREST: number;\n readonly NEVER: number;\n readonly NICEST: number;\n readonly NO_ERROR: number;\n readonly NONE: number;\n readonly NOTEQUAL: number;\n readonly ONE: number;\n readonly ONE_MINUS_CONSTANT_ALPHA: number;\n readonly ONE_MINUS_CONSTANT_COLOR: number;\n readonly ONE_MINUS_DST_ALPHA: number;\n readonly ONE_MINUS_DST_COLOR: number;\n readonly ONE_MINUS_SRC_ALPHA: number;\n readonly ONE_MINUS_SRC_COLOR: number;\n readonly OUT_OF_MEMORY: number;\n readonly PACK_ALIGNMENT: number;\n readonly POINTS: number;\n readonly POLYGON_OFFSET_FACTOR: number;\n readonly POLYGON_OFFSET_FILL: number;\n readonly POLYGON_OFFSET_UNITS: number;\n readonly RED_BITS: number;\n readonly RENDERBUFFER: number;\n readonly RENDERBUFFER_ALPHA_SIZE: number;\n readonly RENDERBUFFER_BINDING: number;\n readonly RENDERBUFFER_BLUE_SIZE: number;\n readonly RENDERBUFFER_DEPTH_SIZE: number;\n readonly RENDERBUFFER_GREEN_SIZE: number;\n readonly RENDERBUFFER_HEIGHT: number;\n readonly RENDERBUFFER_INTERNAL_FORMAT: number;\n readonly RENDERBUFFER_RED_SIZE: number;\n readonly RENDERBUFFER_STENCIL_SIZE: number;\n readonly RENDERBUFFER_WIDTH: number;\n readonly RENDERER: number;\n readonly REPEAT: number;\n readonly REPLACE: number;\n readonly RGB: number;\n readonly RGB5_A1: number;\n readonly RGB565: number;\n readonly RGBA: number;\n readonly RGBA4: number;\n readonly SAMPLE_ALPHA_TO_COVERAGE: number;\n readonly SAMPLE_BUFFERS: number;\n readonly SAMPLE_COVERAGE: number;\n readonly SAMPLE_COVERAGE_INVERT: number;\n readonly SAMPLE_COVERAGE_VALUE: number;\n readonly SAMPLER_2D: number;\n readonly SAMPLER_CUBE: number;\n readonly SAMPLES: number;\n readonly SCISSOR_BOX: number;\n readonly SCISSOR_TEST: number;\n readonly SHADER_TYPE: number;\n readonly SHADING_LANGUAGE_VERSION: number;\n readonly SHORT: number;\n readonly SRC_ALPHA: number;\n readonly SRC_ALPHA_SATURATE: number;\n readonly SRC_COLOR: number;\n readonly STATIC_DRAW: number;\n readonly STENCIL_ATTACHMENT: number;\n readonly STENCIL_BACK_FAIL: number;\n readonly STENCIL_BACK_FUNC: number;\n readonly STENCIL_BACK_PASS_DEPTH_FAIL: number;\n readonly STENCIL_BACK_PASS_DEPTH_PASS: number;\n readonly STENCIL_BACK_REF: number;\n readonly STENCIL_BACK_VALUE_MASK: number;\n readonly STENCIL_BACK_WRITEMASK: number;\n readonly STENCIL_BITS: number;\n readonly STENCIL_BUFFER_BIT: number;\n readonly STENCIL_CLEAR_VALUE: number;\n readonly STENCIL_FAIL: number;\n readonly STENCIL_FUNC: number;\n readonly STENCIL_INDEX: number;\n readonly STENCIL_INDEX8: number;\n readonly STENCIL_PASS_DEPTH_FAIL: number;\n readonly STENCIL_PASS_DEPTH_PASS: number;\n readonly STENCIL_REF: number;\n readonly STENCIL_TEST: number;\n readonly STENCIL_VALUE_MASK: number;\n readonly STENCIL_WRITEMASK: number;\n readonly STREAM_DRAW: number;\n readonly SUBPIXEL_BITS: number;\n readonly TEXTURE: number;\n readonly TEXTURE_2D: number;\n readonly TEXTURE_BINDING_2D: number;\n readonly TEXTURE_BINDING_CUBE_MAP: number;\n readonly TEXTURE_CUBE_MAP: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_X: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_Y: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_Z: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_X: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_Y: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_Z: number;\n readonly TEXTURE_MAG_FILTER: number;\n readonly TEXTURE_MIN_FILTER: number;\n readonly TEXTURE_WRAP_S: number;\n readonly TEXTURE_WRAP_T: number;\n readonly TEXTURE0: number;\n readonly TEXTURE1: number;\n readonly TEXTURE10: number;\n readonly TEXTURE11: number;\n readonly TEXTURE12: number;\n readonly TEXTURE13: number;\n readonly TEXTURE14: number;\n readonly TEXTURE15: number;\n readonly TEXTURE16: number;\n readonly TEXTURE17: number;\n readonly TEXTURE18: number;\n readonly TEXTURE19: number;\n readonly TEXTURE2: number;\n readonly TEXTURE20: number;\n readonly TEXTURE21: number;\n readonly TEXTURE22: number;\n readonly TEXTURE23: number;\n readonly TEXTURE24: number;\n readonly TEXTURE25: number;\n readonly TEXTURE26: number;\n readonly TEXTURE27: number;\n readonly TEXTURE28: number;\n readonly TEXTURE29: number;\n readonly TEXTURE3: number;\n readonly TEXTURE30: number;\n readonly TEXTURE31: number;\n readonly TEXTURE4: number;\n readonly TEXTURE5: number;\n readonly TEXTURE6: number;\n readonly TEXTURE7: number;\n readonly TEXTURE8: number;\n readonly TEXTURE9: number;\n readonly TRIANGLE_FAN: number;\n readonly TRIANGLE_STRIP: number;\n readonly TRIANGLES: number;\n readonly UNPACK_ALIGNMENT: number;\n readonly UNPACK_COLORSPACE_CONVERSION_WEBGL: number;\n readonly UNPACK_FLIP_Y_WEBGL: number;\n readonly UNPACK_PREMULTIPLY_ALPHA_WEBGL: number;\n readonly UNSIGNED_BYTE: number;\n readonly UNSIGNED_INT: number;\n readonly UNSIGNED_SHORT: number;\n readonly UNSIGNED_SHORT_4_4_4_4: number;\n readonly UNSIGNED_SHORT_5_5_5_1: number;\n readonly UNSIGNED_SHORT_5_6_5: number;\n readonly VALIDATE_STATUS: number;\n readonly VENDOR: number;\n readonly VERSION: number;\n readonly VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: number;\n readonly VERTEX_ATTRIB_ARRAY_ENABLED: number;\n readonly VERTEX_ATTRIB_ARRAY_NORMALIZED: number;\n readonly VERTEX_ATTRIB_ARRAY_POINTER: number;\n readonly VERTEX_ATTRIB_ARRAY_SIZE: number;\n readonly VERTEX_ATTRIB_ARRAY_STRIDE: number;\n readonly VERTEX_ATTRIB_ARRAY_TYPE: number;\n readonly VERTEX_SHADER: number;\n readonly VIEWPORT: number;\n readonly ZERO: number;\n}\n\ndeclare var WebGLRenderingContext: {\n prototype: WebGLRenderingContext;\n new(): WebGLRenderingContext;\n readonly ACTIVE_ATTRIBUTES: number;\n readonly ACTIVE_TEXTURE: number;\n readonly ACTIVE_UNIFORMS: number;\n readonly ALIASED_LINE_WIDTH_RANGE: number;\n readonly ALIASED_POINT_SIZE_RANGE: number;\n readonly ALPHA: number;\n readonly ALPHA_BITS: number;\n readonly ALWAYS: number;\n readonly ARRAY_BUFFER: number;\n readonly ARRAY_BUFFER_BINDING: number;\n readonly ATTACHED_SHADERS: number;\n readonly BACK: number;\n readonly BLEND: number;\n readonly BLEND_COLOR: number;\n readonly BLEND_DST_ALPHA: number;\n readonly BLEND_DST_RGB: number;\n readonly BLEND_EQUATION: number;\n readonly BLEND_EQUATION_ALPHA: number;\n readonly BLEND_EQUATION_RGB: number;\n readonly BLEND_SRC_ALPHA: number;\n readonly BLEND_SRC_RGB: number;\n readonly BLUE_BITS: number;\n readonly BOOL: number;\n readonly BOOL_VEC2: number;\n readonly BOOL_VEC3: number;\n readonly BOOL_VEC4: number;\n readonly BROWSER_DEFAULT_WEBGL: number;\n readonly BUFFER_SIZE: number;\n readonly BUFFER_USAGE: number;\n readonly BYTE: number;\n readonly CCW: number;\n readonly CLAMP_TO_EDGE: number;\n readonly COLOR_ATTACHMENT0: number;\n readonly COLOR_BUFFER_BIT: number;\n readonly COLOR_CLEAR_VALUE: number;\n readonly COLOR_WRITEMASK: number;\n readonly COMPILE_STATUS: number;\n readonly COMPRESSED_TEXTURE_FORMATS: number;\n readonly CONSTANT_ALPHA: number;\n readonly CONSTANT_COLOR: number;\n readonly CONTEXT_LOST_WEBGL: number;\n readonly CULL_FACE: number;\n readonly CULL_FACE_MODE: number;\n readonly CURRENT_PROGRAM: number;\n readonly CURRENT_VERTEX_ATTRIB: number;\n readonly CW: number;\n readonly DECR: number;\n readonly DECR_WRAP: number;\n readonly DELETE_STATUS: number;\n readonly DEPTH_ATTACHMENT: number;\n readonly DEPTH_BITS: number;\n readonly DEPTH_BUFFER_BIT: number;\n readonly DEPTH_CLEAR_VALUE: number;\n readonly DEPTH_COMPONENT: number;\n readonly DEPTH_COMPONENT16: number;\n readonly DEPTH_FUNC: number;\n readonly DEPTH_RANGE: number;\n readonly DEPTH_STENCIL: number;\n readonly DEPTH_STENCIL_ATTACHMENT: number;\n readonly DEPTH_TEST: number;\n readonly DEPTH_WRITEMASK: number;\n readonly DITHER: number;\n readonly DONT_CARE: number;\n readonly DST_ALPHA: number;\n readonly DST_COLOR: number;\n readonly DYNAMIC_DRAW: number;\n readonly ELEMENT_ARRAY_BUFFER: number;\n readonly ELEMENT_ARRAY_BUFFER_BINDING: number;\n readonly EQUAL: number;\n readonly FASTEST: number;\n readonly FLOAT: number;\n readonly FLOAT_MAT2: number;\n readonly FLOAT_MAT3: number;\n readonly FLOAT_MAT4: number;\n readonly FLOAT_VEC2: number;\n readonly FLOAT_VEC3: number;\n readonly FLOAT_VEC4: number;\n readonly FRAGMENT_SHADER: number;\n readonly FRAMEBUFFER: number;\n readonly FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: number;\n readonly FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: number;\n readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: number;\n readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: number;\n readonly FRAMEBUFFER_BINDING: number;\n readonly FRAMEBUFFER_COMPLETE: number;\n readonly FRAMEBUFFER_INCOMPLETE_ATTACHMENT: number;\n readonly FRAMEBUFFER_INCOMPLETE_DIMENSIONS: number;\n readonly FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: number;\n readonly FRAMEBUFFER_UNSUPPORTED: number;\n readonly FRONT: number;\n readonly FRONT_AND_BACK: number;\n readonly FRONT_FACE: number;\n readonly FUNC_ADD: number;\n readonly FUNC_REVERSE_SUBTRACT: number;\n readonly FUNC_SUBTRACT: number;\n readonly GENERATE_MIPMAP_HINT: number;\n readonly GEQUAL: number;\n readonly GREATER: number;\n readonly GREEN_BITS: number;\n readonly HIGH_FLOAT: number;\n readonly HIGH_INT: number;\n readonly IMPLEMENTATION_COLOR_READ_FORMAT: number;\n readonly IMPLEMENTATION_COLOR_READ_TYPE: number;\n readonly INCR: number;\n readonly INCR_WRAP: number;\n readonly INT: number;\n readonly INT_VEC2: number;\n readonly INT_VEC3: number;\n readonly INT_VEC4: number;\n readonly INVALID_ENUM: number;\n readonly INVALID_FRAMEBUFFER_OPERATION: number;\n readonly INVALID_OPERATION: number;\n readonly INVALID_VALUE: number;\n readonly INVERT: number;\n readonly KEEP: number;\n readonly LEQUAL: number;\n readonly LESS: number;\n readonly LINE_LOOP: number;\n readonly LINE_STRIP: number;\n readonly LINE_WIDTH: number;\n readonly LINEAR: number;\n readonly LINEAR_MIPMAP_LINEAR: number;\n readonly LINEAR_MIPMAP_NEAREST: number;\n readonly LINES: number;\n readonly LINK_STATUS: number;\n readonly LOW_FLOAT: number;\n readonly LOW_INT: number;\n readonly LUMINANCE: number;\n readonly LUMINANCE_ALPHA: number;\n readonly MAX_COMBINED_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_CUBE_MAP_TEXTURE_SIZE: number;\n readonly MAX_FRAGMENT_UNIFORM_VECTORS: number;\n readonly MAX_RENDERBUFFER_SIZE: number;\n readonly MAX_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_TEXTURE_SIZE: number;\n readonly MAX_VARYING_VECTORS: number;\n readonly MAX_VERTEX_ATTRIBS: number;\n readonly MAX_VERTEX_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_VERTEX_UNIFORM_VECTORS: number;\n readonly MAX_VIEWPORT_DIMS: number;\n readonly MEDIUM_FLOAT: number;\n readonly MEDIUM_INT: number;\n readonly MIRRORED_REPEAT: number;\n readonly NEAREST: number;\n readonly NEAREST_MIPMAP_LINEAR: number;\n readonly NEAREST_MIPMAP_NEAREST: number;\n readonly NEVER: number;\n readonly NICEST: number;\n readonly NO_ERROR: number;\n readonly NONE: number;\n readonly NOTEQUAL: number;\n readonly ONE: number;\n readonly ONE_MINUS_CONSTANT_ALPHA: number;\n readonly ONE_MINUS_CONSTANT_COLOR: number;\n readonly ONE_MINUS_DST_ALPHA: number;\n readonly ONE_MINUS_DST_COLOR: number;\n readonly ONE_MINUS_SRC_ALPHA: number;\n readonly ONE_MINUS_SRC_COLOR: number;\n readonly OUT_OF_MEMORY: number;\n readonly PACK_ALIGNMENT: number;\n readonly POINTS: number;\n readonly POLYGON_OFFSET_FACTOR: number;\n readonly POLYGON_OFFSET_FILL: number;\n readonly POLYGON_OFFSET_UNITS: number;\n readonly RED_BITS: number;\n readonly RENDERBUFFER: number;\n readonly RENDERBUFFER_ALPHA_SIZE: number;\n readonly RENDERBUFFER_BINDING: number;\n readonly RENDERBUFFER_BLUE_SIZE: number;\n readonly RENDERBUFFER_DEPTH_SIZE: number;\n readonly RENDERBUFFER_GREEN_SIZE: number;\n readonly RENDERBUFFER_HEIGHT: number;\n readonly RENDERBUFFER_INTERNAL_FORMAT: number;\n readonly RENDERBUFFER_RED_SIZE: number;\n readonly RENDERBUFFER_STENCIL_SIZE: number;\n readonly RENDERBUFFER_WIDTH: number;\n readonly RENDERER: number;\n readonly REPEAT: number;\n readonly REPLACE: number;\n readonly RGB: number;\n readonly RGB5_A1: number;\n readonly RGB565: number;\n readonly RGBA: number;\n readonly RGBA4: number;\n readonly SAMPLE_ALPHA_TO_COVERAGE: number;\n readonly SAMPLE_BUFFERS: number;\n readonly SAMPLE_COVERAGE: number;\n readonly SAMPLE_COVERAGE_INVERT: number;\n readonly SAMPLE_COVERAGE_VALUE: number;\n readonly SAMPLER_2D: number;\n readonly SAMPLER_CUBE: number;\n readonly SAMPLES: number;\n readonly SCISSOR_BOX: number;\n readonly SCISSOR_TEST: number;\n readonly SHADER_TYPE: number;\n readonly SHADING_LANGUAGE_VERSION: number;\n readonly SHORT: number;\n readonly SRC_ALPHA: number;\n readonly SRC_ALPHA_SATURATE: number;\n readonly SRC_COLOR: number;\n readonly STATIC_DRAW: number;\n readonly STENCIL_ATTACHMENT: number;\n readonly STENCIL_BACK_FAIL: number;\n readonly STENCIL_BACK_FUNC: number;\n readonly STENCIL_BACK_PASS_DEPTH_FAIL: number;\n readonly STENCIL_BACK_PASS_DEPTH_PASS: number;\n readonly STENCIL_BACK_REF: number;\n readonly STENCIL_BACK_VALUE_MASK: number;\n readonly STENCIL_BACK_WRITEMASK: number;\n readonly STENCIL_BITS: number;\n readonly STENCIL_BUFFER_BIT: number;\n readonly STENCIL_CLEAR_VALUE: number;\n readonly STENCIL_FAIL: number;\n readonly STENCIL_FUNC: number;\n readonly STENCIL_INDEX: number;\n readonly STENCIL_INDEX8: number;\n readonly STENCIL_PASS_DEPTH_FAIL: number;\n readonly STENCIL_PASS_DEPTH_PASS: number;\n readonly STENCIL_REF: number;\n readonly STENCIL_TEST: number;\n readonly STENCIL_VALUE_MASK: number;\n readonly STENCIL_WRITEMASK: number;\n readonly STREAM_DRAW: number;\n readonly SUBPIXEL_BITS: number;\n readonly TEXTURE: number;\n readonly TEXTURE_2D: number;\n readonly TEXTURE_BINDING_2D: number;\n readonly TEXTURE_BINDING_CUBE_MAP: number;\n readonly TEXTURE_CUBE_MAP: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_X: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_Y: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_Z: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_X: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_Y: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_Z: number;\n readonly TEXTURE_MAG_FILTER: number;\n readonly TEXTURE_MIN_FILTER: number;\n readonly TEXTURE_WRAP_S: number;\n readonly TEXTURE_WRAP_T: number;\n readonly TEXTURE0: number;\n readonly TEXTURE1: number;\n readonly TEXTURE10: number;\n readonly TEXTURE11: number;\n readonly TEXTURE12: number;\n readonly TEXTURE13: number;\n readonly TEXTURE14: number;\n readonly TEXTURE15: number;\n readonly TEXTURE16: number;\n readonly TEXTURE17: number;\n readonly TEXTURE18: number;\n readonly TEXTURE19: number;\n readonly TEXTURE2: number;\n readonly TEXTURE20: number;\n readonly TEXTURE21: number;\n readonly TEXTURE22: number;\n readonly TEXTURE23: number;\n readonly TEXTURE24: number;\n readonly TEXTURE25: number;\n readonly TEXTURE26: number;\n readonly TEXTURE27: number;\n readonly TEXTURE28: number;\n readonly TEXTURE29: number;\n readonly TEXTURE3: number;\n readonly TEXTURE30: number;\n readonly TEXTURE31: number;\n readonly TEXTURE4: number;\n readonly TEXTURE5: number;\n readonly TEXTURE6: number;\n readonly TEXTURE7: number;\n readonly TEXTURE8: number;\n readonly TEXTURE9: number;\n readonly TRIANGLE_FAN: number;\n readonly TRIANGLE_STRIP: number;\n readonly TRIANGLES: number;\n readonly UNPACK_ALIGNMENT: number;\n readonly UNPACK_COLORSPACE_CONVERSION_WEBGL: number;\n readonly UNPACK_FLIP_Y_WEBGL: number;\n readonly UNPACK_PREMULTIPLY_ALPHA_WEBGL: number;\n readonly UNSIGNED_BYTE: number;\n readonly UNSIGNED_INT: number;\n readonly UNSIGNED_SHORT: number;\n readonly UNSIGNED_SHORT_4_4_4_4: number;\n readonly UNSIGNED_SHORT_5_5_5_1: number;\n readonly UNSIGNED_SHORT_5_6_5: number;\n readonly VALIDATE_STATUS: number;\n readonly VENDOR: number;\n readonly VERSION: number;\n readonly VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: number;\n readonly VERTEX_ATTRIB_ARRAY_ENABLED: number;\n readonly VERTEX_ATTRIB_ARRAY_NORMALIZED: number;\n readonly VERTEX_ATTRIB_ARRAY_POINTER: number;\n readonly VERTEX_ATTRIB_ARRAY_SIZE: number;\n readonly VERTEX_ATTRIB_ARRAY_STRIDE: number;\n readonly VERTEX_ATTRIB_ARRAY_TYPE: number;\n readonly VERTEX_SHADER: number;\n readonly VIEWPORT: number;\n readonly ZERO: number;\n};\n\ninterface WebGLShader extends WebGLObject {\n}\n\ndeclare var WebGLShader: {\n prototype: WebGLShader;\n new(): WebGLShader;\n};\n\ninterface WebGLShaderPrecisionFormat {\n readonly precision: number;\n readonly rangeMax: number;\n readonly rangeMin: number;\n}\n\ndeclare var WebGLShaderPrecisionFormat: {\n prototype: WebGLShaderPrecisionFormat;\n new(): WebGLShaderPrecisionFormat;\n};\n\ninterface WebGLTexture extends WebGLObject {\n}\n\ndeclare var WebGLTexture: {\n prototype: WebGLTexture;\n new(): WebGLTexture;\n};\n\ninterface WebGLUniformLocation {\n}\n\ndeclare var WebGLUniformLocation: {\n prototype: WebGLUniformLocation;\n new(): WebGLUniformLocation;\n};\n\ninterface WebKitCSSMatrix {\n a: number;\n b: number;\n c: number;\n d: number;\n e: number;\n f: number;\n m11: number;\n m12: number;\n m13: number;\n m14: number;\n m21: number;\n m22: number;\n m23: number;\n m24: number;\n m31: number;\n m32: number;\n m33: number;\n m34: number;\n m41: number;\n m42: number;\n m43: number;\n m44: number;\n inverse(): WebKitCSSMatrix;\n multiply(secondMatrix: WebKitCSSMatrix): WebKitCSSMatrix;\n rotate(angleX: number, angleY?: number, angleZ?: number): WebKitCSSMatrix;\n rotateAxisAngle(x: number, y: number, z: number, angle: number): WebKitCSSMatrix;\n scale(scaleX: number, scaleY?: number, scaleZ?: number): WebKitCSSMatrix;\n setMatrixValue(value: string): void;\n skewX(angle: number): WebKitCSSMatrix;\n skewY(angle: number): WebKitCSSMatrix;\n toString(): string;\n translate(x: number, y: number, z?: number): WebKitCSSMatrix;\n}\n\ndeclare var WebKitCSSMatrix: {\n prototype: WebKitCSSMatrix;\n new(text?: string): WebKitCSSMatrix;\n};\n\ninterface WebKitDirectoryEntry extends WebKitEntry {\n createReader(): WebKitDirectoryReader;\n}\n\ndeclare var WebKitDirectoryEntry: {\n prototype: WebKitDirectoryEntry;\n new(): WebKitDirectoryEntry;\n};\n\ninterface WebKitDirectoryReader {\n readEntries(successCallback: WebKitEntriesCallback, errorCallback?: WebKitErrorCallback): void;\n}\n\ndeclare var WebKitDirectoryReader: {\n prototype: WebKitDirectoryReader;\n new(): WebKitDirectoryReader;\n};\n\ninterface WebKitEntry {\n readonly filesystem: WebKitFileSystem;\n readonly fullPath: string;\n readonly isDirectory: boolean;\n readonly isFile: boolean;\n readonly name: string;\n}\n\ndeclare var WebKitEntry: {\n prototype: WebKitEntry;\n new(): WebKitEntry;\n};\n\ninterface WebKitFileEntry extends WebKitEntry {\n file(successCallback: WebKitFileCallback, errorCallback?: WebKitErrorCallback): void;\n}\n\ndeclare var WebKitFileEntry: {\n prototype: WebKitFileEntry;\n new(): WebKitFileEntry;\n};\n\ninterface WebKitFileSystem {\n readonly name: string;\n readonly root: WebKitDirectoryEntry;\n}\n\ndeclare var WebKitFileSystem: {\n prototype: WebKitFileSystem;\n new(): WebKitFileSystem;\n};\n\ninterface WebKitPoint {\n x: number;\n y: number;\n}\n\ndeclare var WebKitPoint: {\n prototype: WebKitPoint;\n new(x?: number, y?: number): WebKitPoint;\n};\n\ninterface webkitRTCPeerConnection extends RTCPeerConnection {\n addEventListener<K extends keyof RTCPeerConnectionEventMap>(type: K, listener: (this: webkitRTCPeerConnection, ev: RTCPeerConnectionEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var webkitRTCPeerConnection: {\n prototype: webkitRTCPeerConnection;\n new(configuration: RTCConfiguration): webkitRTCPeerConnection;\n};\n\ninterface WebSocketEventMap {\n "close": CloseEvent;\n "error": Event;\n "message": MessageEvent;\n "open": Event;\n}\n\ninterface WebSocket extends EventTarget {\n binaryType: string;\n readonly bufferedAmount: number;\n readonly extensions: string;\n onclose: (this: WebSocket, ev: CloseEvent) => any;\n onerror: (this: WebSocket, ev: Event) => any;\n onmessage: (this: WebSocket, ev: MessageEvent) => any;\n onopen: (this: WebSocket, ev: Event) => any;\n readonly protocol: string;\n readonly readyState: number;\n readonly url: string;\n close(code?: number, reason?: string): void;\n send(data: any): void;\n readonly CLOSED: number;\n readonly CLOSING: number;\n readonly CONNECTING: number;\n readonly OPEN: number;\n addEventListener<K extends keyof WebSocketEventMap>(type: K, listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var WebSocket: {\n prototype: WebSocket;\n new(url: string, protocols?: string | string[]): WebSocket;\n readonly CLOSED: number;\n readonly CLOSING: number;\n readonly CONNECTING: number;\n readonly OPEN: number;\n};\n\ninterface WheelEvent extends MouseEvent {\n readonly deltaMode: number;\n readonly deltaX: number;\n readonly deltaY: number;\n readonly deltaZ: number;\n readonly wheelDelta: number;\n readonly wheelDeltaX: number;\n readonly wheelDeltaY: number;\n getCurrentPoint(element: Element): void;\n initWheelEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, buttonArg: number, relatedTargetArg: EventTarget, modifiersListArg: string, deltaXArg: number, deltaYArg: number, deltaZArg: number, deltaMode: number): void;\n readonly DOM_DELTA_LINE: number;\n readonly DOM_DELTA_PAGE: number;\n readonly DOM_DELTA_PIXEL: number;\n}\n\ndeclare var WheelEvent: {\n prototype: WheelEvent;\n new(typeArg: string, eventInitDict?: WheelEventInit): WheelEvent;\n readonly DOM_DELTA_LINE: number;\n readonly DOM_DELTA_PAGE: number;\n readonly DOM_DELTA_PIXEL: number;\n};\n\ninterface WindowEventMap extends GlobalEventHandlersEventMap {\n "abort": UIEvent;\n "afterprint": Event;\n "beforeprint": Event;\n "beforeunload": BeforeUnloadEvent;\n "blur": FocusEvent;\n "canplay": Event;\n "canplaythrough": Event;\n "change": Event;\n "click": MouseEvent;\n "compassneedscalibration": Event;\n "contextmenu": PointerEvent;\n "dblclick": MouseEvent;\n "devicelight": DeviceLightEvent;\n "devicemotion": DeviceMotionEvent;\n "deviceorientation": DeviceOrientationEvent;\n "drag": DragEvent;\n "dragend": DragEvent;\n "dragenter": DragEvent;\n "dragleave": DragEvent;\n "dragover": DragEvent;\n "dragstart": DragEvent;\n "drop": DragEvent;\n "durationchange": Event;\n "emptied": Event;\n "ended": MediaStreamErrorEvent;\n "error": ErrorEvent;\n "focus": FocusEvent;\n "hashchange": HashChangeEvent;\n "input": Event;\n "invalid": Event;\n "keydown": KeyboardEvent;\n "keypress": KeyboardEvent;\n "keyup": KeyboardEvent;\n "load": Event;\n "loadeddata": Event;\n "loadedmetadata": Event;\n "loadstart": Event;\n "message": MessageEvent;\n "mousedown": MouseEvent;\n "mouseenter": MouseEvent;\n "mouseleave": MouseEvent;\n "mousemove": MouseEvent;\n "mouseout": MouseEvent;\n "mouseover": MouseEvent;\n "mouseup": MouseEvent;\n "mousewheel": WheelEvent;\n "MSGestureChange": MSGestureEvent;\n "MSGestureDoubleTap": MSGestureEvent;\n "MSGestureEnd": MSGestureEvent;\n "MSGestureHold": MSGestureEvent;\n "MSGestureStart": MSGestureEvent;\n "MSGestureTap": MSGestureEvent;\n "MSInertiaStart": MSGestureEvent;\n "MSPointerCancel": MSPointerEvent;\n "MSPointerDown": MSPointerEvent;\n "MSPointerEnter": MSPointerEvent;\n "MSPointerLeave": MSPointerEvent;\n "MSPointerMove": MSPointerEvent;\n "MSPointerOut": MSPointerEvent;\n "MSPointerOver": MSPointerEvent;\n "MSPointerUp": MSPointerEvent;\n "offline": Event;\n "online": Event;\n "orientationchange": Event;\n "pagehide": PageTransitionEvent;\n "pageshow": PageTransitionEvent;\n "pause": Event;\n "play": Event;\n "playing": Event;\n "popstate": PopStateEvent;\n "progress": ProgressEvent;\n "ratechange": Event;\n "readystatechange": ProgressEvent;\n "reset": Event;\n "resize": UIEvent;\n "scroll": UIEvent;\n "seeked": Event;\n "seeking": Event;\n "select": UIEvent;\n "stalled": Event;\n "storage": StorageEvent;\n "submit": Event;\n "suspend": Event;\n "timeupdate": Event;\n "touchcancel": TouchEvent;\n "touchend": TouchEvent;\n "touchmove": TouchEvent;\n "touchstart": TouchEvent;\n "unload": Event;\n "volumechange": Event;\n "waiting": Event;\n}\n\ninterface Window extends EventTarget, WindowTimers, WindowSessionStorage, WindowLocalStorage, WindowConsole, GlobalEventHandlers, IDBEnvironment, WindowBase64, GlobalFetch {\n readonly applicationCache: ApplicationCache;\n readonly caches: CacheStorage;\n readonly clientInformation: Navigator;\n readonly closed: boolean;\n readonly crypto: Crypto;\n defaultStatus: string;\n readonly devicePixelRatio: number;\n readonly document: Document;\n readonly doNotTrack: string;\n event: Event | undefined;\n readonly external: External;\n readonly frameElement: Element;\n readonly frames: Window;\n readonly history: History;\n readonly innerHeight: number;\n readonly innerWidth: number;\n readonly isSecureContext: boolean;\n readonly length: number;\n readonly location: Location;\n readonly locationbar: BarProp;\n readonly menubar: BarProp;\n readonly msContentScript: ExtensionScriptApis;\n readonly msCredentials: MSCredentials;\n name: string;\n readonly navigator: Navigator;\n offscreenBuffering: string | boolean;\n onabort: (this: Window, ev: UIEvent) => any;\n onafterprint: (this: Window, ev: Event) => any;\n onbeforeprint: (this: Window, ev: Event) => any;\n onbeforeunload: (this: Window, ev: BeforeUnloadEvent) => any;\n onblur: (this: Window, ev: FocusEvent) => any;\n oncanplay: (this: Window, ev: Event) => any;\n oncanplaythrough: (this: Window, ev: Event) => any;\n onchange: (this: Window, ev: Event) => any;\n onclick: (this: Window, ev: MouseEvent) => any;\n oncompassneedscalibration: (this: Window, ev: Event) => any;\n oncontextmenu: (this: Window, ev: PointerEvent) => any;\n ondblclick: (this: Window, ev: MouseEvent) => any;\n ondevicelight: (this: Window, ev: DeviceLightEvent) => any;\n ondevicemotion: (this: Window, ev: DeviceMotionEvent) => any;\n ondeviceorientation: (this: Window, ev: DeviceOrientationEvent) => any;\n ondrag: (this: Window, ev: DragEvent) => any;\n ondragend: (this: Window, ev: DragEvent) => any;\n ondragenter: (this: Window, ev: DragEvent) => any;\n ondragleave: (this: Window, ev: DragEvent) => any;\n ondragover: (this: Window, ev: DragEvent) => any;\n ondragstart: (this: Window, ev: DragEvent) => any;\n ondrop: (this: Window, ev: DragEvent) => any;\n ondurationchange: (this: Window, ev: Event) => any;\n onemptied: (this: Window, ev: Event) => any;\n onended: (this: Window, ev: MediaStreamErrorEvent) => any;\n onerror: ErrorEventHandler;\n onfocus: (this: Window, ev: FocusEvent) => any;\n onhashchange: (this: Window, ev: HashChangeEvent) => any;\n oninput: (this: Window, ev: Event) => any;\n oninvalid: (this: Window, ev: Event) => any;\n onkeydown: (this: Window, ev: KeyboardEvent) => any;\n onkeypress: (this: Window, ev: KeyboardEvent) => any;\n onkeyup: (this: Window, ev: KeyboardEvent) => any;\n onload: (this: Window, ev: Event) => any;\n onloadeddata: (this: Window, ev: Event) => any;\n onloadedmetadata: (this: Window, ev: Event) => any;\n onloadstart: (this: Window, ev: Event) => any;\n onmessage: (this: Window, ev: MessageEvent) => any;\n onmousedown: (this: Window, ev: MouseEvent) => any;\n onmouseenter: (this: Window, ev: MouseEvent) => any;\n onmouseleave: (this: Window, ev: MouseEvent) => any;\n onmousemove: (this: Window, ev: MouseEvent) => any;\n onmouseout: (this: Window, ev: MouseEvent) => any;\n onmouseover: (this: Window, ev: MouseEvent) => any;\n onmouseup: (this: Window, ev: MouseEvent) => any;\n onmousewheel: (this: Window, ev: WheelEvent) => any;\n onmsgesturechange: (this: Window, ev: MSGestureEvent) => any;\n onmsgesturedoubletap: (this: Window, ev: MSGestureEvent) => any;\n onmsgestureend: (this: Window, ev: MSGestureEvent) => any;\n onmsgesturehold: (this: Window, ev: MSGestureEvent) => any;\n onmsgesturestart: (this: Window, ev: MSGestureEvent) => any;\n onmsgesturetap: (this: Window, ev: MSGestureEvent) => any;\n onmsinertiastart: (this: Window, ev: MSGestureEvent) => any;\n onmspointercancel: (this: Window, ev: MSPointerEvent) => any;\n onmspointerdown: (this: Window, ev: MSPointerEvent) => any;\n onmspointerenter: (this: Window, ev: MSPointerEvent) => any;\n onmspointerleave: (this: Window, ev: MSPointerEvent) => any;\n onmspointermove: (this: Window, ev: MSPointerEvent) => any;\n onmspointerout: (this: Window, ev: MSPointerEvent) => any;\n onmspointerover: (this: Window, ev: MSPointerEvent) => any;\n onmspointerup: (this: Window, ev: MSPointerEvent) => any;\n onoffline: (this: Window, ev: Event) => any;\n ononline: (this: Window, ev: Event) => any;\n onorientationchange: (this: Window, ev: Event) => any;\n onpagehide: (this: Window, ev: PageTransitionEvent) => any;\n onpageshow: (this: Window, ev: PageTransitionEvent) => any;\n onpause: (this: Window, ev: Event) => any;\n onplay: (this: Window, ev: Event) => any;\n onplaying: (this: Window, ev: Event) => any;\n onpopstate: (this: Window, ev: PopStateEvent) => any;\n onprogress: (this: Window, ev: ProgressEvent) => any;\n onratechange: (this: Window, ev: Event) => any;\n onreadystatechange: (this: Window, ev: ProgressEvent) => any;\n onreset: (this: Window, ev: Event) => any;\n onresize: (this: Window, ev: UIEvent) => any;\n onscroll: (this: Window, ev: UIEvent) => any;\n onseeked: (this: Window, ev: Event) => any;\n onseeking: (this: Window, ev: Event) => any;\n onselect: (this: Window, ev: UIEvent) => any;\n onstalled: (this: Window, ev: Event) => any;\n onstorage: (this: Window, ev: StorageEvent) => any;\n onsubmit: (this: Window, ev: Event) => any;\n onsuspend: (this: Window, ev: Event) => any;\n ontimeupdate: (this: Window, ev: Event) => any;\n ontouchcancel: (ev: TouchEvent) => any;\n ontouchend: (ev: TouchEvent) => any;\n ontouchmove: (ev: TouchEvent) => any;\n ontouchstart: (ev: TouchEvent) => any;\n onunload: (this: Window, ev: Event) => any;\n onvolumechange: (this: Window, ev: Event) => any;\n onwaiting: (this: Window, ev: Event) => any;\n opener: any;\n orientation: string | number;\n readonly outerHeight: number;\n readonly outerWidth: number;\n readonly pageXOffset: number;\n readonly pageYOffset: number;\n readonly parent: Window;\n readonly performance: Performance;\n readonly personalbar: BarProp;\n readonly screen: Screen;\n readonly screenLeft: number;\n readonly screenTop: number;\n readonly screenX: number;\n readonly screenY: number;\n readonly scrollbars: BarProp;\n readonly scrollX: number;\n readonly scrollY: number;\n readonly self: Window;\n readonly speechSynthesis: SpeechSynthesis;\n status: string;\n readonly statusbar: BarProp;\n readonly styleMedia: StyleMedia;\n readonly toolbar: BarProp;\n readonly top: Window;\n readonly window: Window;\n URL: typeof URL;\n URLSearchParams: typeof URLSearchParams;\n Blob: typeof Blob;\n customElements: CustomElementRegistry;\n alert(message?: any): void;\n blur(): void;\n cancelAnimationFrame(handle: number): void;\n captureEvents(): void;\n close(): void;\n confirm(message?: string): boolean;\n departFocus(navigationReason: NavigationReason, origin: FocusNavigationOrigin): void;\n focus(): void;\n getComputedStyle(elt: Element, pseudoElt?: string): CSSStyleDeclaration;\n getMatchedCSSRules(elt: Element, pseudoElt?: string): CSSRuleList;\n getSelection(): Selection;\n matchMedia(mediaQuery: string): MediaQueryList;\n moveBy(x?: number, y?: number): void;\n moveTo(x?: number, y?: number): void;\n msWriteProfilerMark(profilerMarkName: string): void;\n open(url?: string, target?: string, features?: string, replace?: boolean): Window;\n postMessage(message: any, targetOrigin: string, transfer?: any[]): void;\n print(): void;\n prompt(message?: string, _default?: string): string | null;\n releaseEvents(): void;\n requestAnimationFrame(callback: FrameRequestCallback): number;\n resizeBy(x?: number, y?: number): void;\n resizeTo(x?: number, y?: number): void;\n scroll(x?: number, y?: number): void;\n scrollBy(x?: number, y?: number): void;\n scrollTo(x?: number, y?: number): void;\n stop(): void;\n webkitCancelAnimationFrame(handle: number): void;\n webkitConvertPointFromNodeToPage(node: Node, pt: WebKitPoint): WebKitPoint;\n webkitConvertPointFromPageToNode(node: Node, pt: WebKitPoint): WebKitPoint;\n webkitRequestAnimationFrame(callback: FrameRequestCallback): number;\n createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise<ImageBitmap>;\n createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;\n scroll(options?: ScrollToOptions): void;\n scrollTo(options?: ScrollToOptions): void;\n scrollBy(options?: ScrollToOptions): void;\n addEventListener<K extends keyof WindowEventMap>(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Window: {\n prototype: Window;\n new(): Window;\n};\n\ninterface WorkerEventMap extends AbstractWorkerEventMap {\n "message": MessageEvent;\n}\n\ninterface Worker extends EventTarget, AbstractWorker {\n onmessage: (this: Worker, ev: MessageEvent) => any;\n postMessage(message: any, transfer?: any[]): void;\n terminate(): void;\n addEventListener<K extends keyof WorkerEventMap>(type: K, listener: (this: Worker, ev: WorkerEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Worker: {\n prototype: Worker;\n new(stringUrl: string): Worker;\n};\n\ninterface XMLDocument extends Document {\n addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: XMLDocument, ev: DocumentEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var XMLDocument: {\n prototype: XMLDocument;\n new(): XMLDocument;\n};\n\ninterface XMLHttpRequestEventMap extends XMLHttpRequestEventTargetEventMap {\n "readystatechange": Event;\n}\n\ninterface XMLHttpRequest extends EventTarget, XMLHttpRequestEventTarget {\n onreadystatechange: (this: XMLHttpRequest, ev: Event) => any;\n readonly readyState: number;\n readonly response: any;\n readonly responseText: string;\n responseType: XMLHttpRequestResponseType;\n readonly responseURL: string;\n readonly responseXML: Document | null;\n readonly status: number;\n readonly statusText: string;\n timeout: number;\n readonly upload: XMLHttpRequestUpload;\n withCredentials: boolean;\n msCaching?: string;\n abort(): void;\n getAllResponseHeaders(): string;\n getResponseHeader(header: string): string | null;\n msCachingEnabled(): boolean;\n open(method: string, url: string, async?: boolean, user?: string, password?: string): void;\n overrideMimeType(mime: string): void;\n send(data?: Document): void;\n send(data?: string): void;\n send(data?: any): void;\n setRequestHeader(header: string, value: string): void;\n readonly DONE: number;\n readonly HEADERS_RECEIVED: number;\n readonly LOADING: number;\n readonly OPENED: number;\n readonly UNSENT: number;\n addEventListener<K extends keyof XMLHttpRequestEventMap>(type: K, listener: (this: XMLHttpRequest, ev: XMLHttpRequestEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var XMLHttpRequest: {\n prototype: XMLHttpRequest;\n new(): XMLHttpRequest;\n readonly DONE: number;\n readonly HEADERS_RECEIVED: number;\n readonly LOADING: number;\n readonly OPENED: number;\n readonly UNSENT: number;\n};\n\ninterface XMLHttpRequestUpload extends EventTarget, XMLHttpRequestEventTarget {\n addEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestUpload, ev: XMLHttpRequestEventTargetEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var XMLHttpRequestUpload: {\n prototype: XMLHttpRequestUpload;\n new(): XMLHttpRequestUpload;\n};\n\ninterface XMLSerializer {\n serializeToString(target: Node): string;\n}\n\ndeclare var XMLSerializer: {\n prototype: XMLSerializer;\n new(): XMLSerializer;\n};\n\ninterface XPathEvaluator {\n createExpression(expression: string, resolver: XPathNSResolver): XPathExpression;\n createNSResolver(nodeResolver?: Node): XPathNSResolver;\n evaluate(expression: string, contextNode: Node, resolver: XPathNSResolver | null, type: number, result: XPathResult | null): XPathResult;\n}\n\ndeclare var XPathEvaluator: {\n prototype: XPathEvaluator;\n new(): XPathEvaluator;\n};\n\ninterface XPathExpression {\n evaluate(contextNode: Node, type: number, result: XPathResult | null): XPathResult;\n}\n\ndeclare var XPathExpression: {\n prototype: XPathExpression;\n new(): XPathExpression;\n};\n\ninterface XPathNSResolver {\n lookupNamespaceURI(prefix: string): string;\n}\n\ndeclare var XPathNSResolver: {\n prototype: XPathNSResolver;\n new(): XPathNSResolver;\n};\n\ninterface XPathResult {\n readonly booleanValue: boolean;\n readonly invalidIteratorState: boolean;\n readonly numberValue: number;\n readonly resultType: number;\n readonly singleNodeValue: Node;\n readonly snapshotLength: number;\n readonly stringValue: string;\n iterateNext(): Node;\n snapshotItem(index: number): Node;\n readonly ANY_TYPE: number;\n readonly ANY_UNORDERED_NODE_TYPE: number;\n readonly BOOLEAN_TYPE: number;\n readonly FIRST_ORDERED_NODE_TYPE: number;\n readonly NUMBER_TYPE: number;\n readonly ORDERED_NODE_ITERATOR_TYPE: number;\n readonly ORDERED_NODE_SNAPSHOT_TYPE: number;\n readonly STRING_TYPE: number;\n readonly UNORDERED_NODE_ITERATOR_TYPE: number;\n readonly UNORDERED_NODE_SNAPSHOT_TYPE: number;\n}\n\ndeclare var XPathResult: {\n prototype: XPathResult;\n new(): XPathResult;\n readonly ANY_TYPE: number;\n readonly ANY_UNORDERED_NODE_TYPE: number;\n readonly BOOLEAN_TYPE: number;\n readonly FIRST_ORDERED_NODE_TYPE: number;\n readonly NUMBER_TYPE: number;\n readonly ORDERED_NODE_ITERATOR_TYPE: number;\n readonly ORDERED_NODE_SNAPSHOT_TYPE: number;\n readonly STRING_TYPE: number;\n readonly UNORDERED_NODE_ITERATOR_TYPE: number;\n readonly UNORDERED_NODE_SNAPSHOT_TYPE: number;\n};\n\ninterface XSLTProcessor {\n clearParameters(): void;\n getParameter(namespaceURI: string, localName: string): any;\n importStylesheet(style: Node): void;\n removeParameter(namespaceURI: string, localName: string): void;\n reset(): void;\n setParameter(namespaceURI: string, localName: string, value: any): void;\n transformToDocument(source: Node): Document;\n transformToFragment(source: Node, document: Document): DocumentFragment;\n}\n\ndeclare var XSLTProcessor: {\n prototype: XSLTProcessor;\n new(): XSLTProcessor;\n};\n\ninterface AbstractWorkerEventMap {\n "error": ErrorEvent;\n}\n\ninterface AbstractWorker {\n onerror: (this: AbstractWorker, ev: ErrorEvent) => any;\n addEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ninterface Body {\n readonly bodyUsed: boolean;\n arrayBuffer(): Promise<ArrayBuffer>;\n blob(): Promise<Blob>;\n json(): Promise<any>;\n text(): Promise<string>;\n formData(): Promise<FormData>;\n}\n\ninterface CanvasPathMethods {\n arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, anticlockwise?: boolean): void;\n arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void;\n bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;\n closePath(): void;\n ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, anticlockwise?: boolean): void;\n lineTo(x: number, y: number): void;\n moveTo(x: number, y: number): void;\n quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;\n rect(x: number, y: number, w: number, h: number): void;\n}\n\ninterface ChildNode {\n remove(): void;\n}\n\ninterface DocumentEvent {\n createEvent(eventInterface: "AnimationEvent"): AnimationEvent;\n createEvent(eventInterface: "AudioProcessingEvent"): AudioProcessingEvent;\n createEvent(eventInterface: "BeforeUnloadEvent"): BeforeUnloadEvent;\n createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;\n createEvent(eventInterface: "CloseEvent"): CloseEvent;\n createEvent(eventInterface: "CompositionEvent"): CompositionEvent;\n createEvent(eventInterface: "CustomEvent"): CustomEvent;\n createEvent(eventInterface: "DeviceLightEvent"): DeviceLightEvent;\n createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;\n createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;\n createEvent(eventInterface: "DragEvent"): DragEvent;\n createEvent(eventInterface: "ErrorEvent"): ErrorEvent;\n createEvent(eventInterface: "Event"): Event;\n createEvent(eventInterface: "Events"): Event;\n createEvent(eventInterface: "FocusEvent"): FocusEvent;\n createEvent(eventInterface: "FocusNavigationEvent"): FocusNavigationEvent;\n createEvent(eventInterface: "GamepadEvent"): GamepadEvent;\n createEvent(eventInterface: "HashChangeEvent"): HashChangeEvent;\n createEvent(eventInterface: "IDBVersionChangeEvent"): IDBVersionChangeEvent;\n createEvent(eventInterface: "KeyboardEvent"): KeyboardEvent;\n createEvent(eventInterface: "ListeningStateChangedEvent"): ListeningStateChangedEvent;\n createEvent(eventInterface: "LongRunningScriptDetectedEvent"): LongRunningScriptDetectedEvent;\n createEvent(eventInterface: "MSGestureEvent"): MSGestureEvent;\n createEvent(eventInterface: "MSManipulationEvent"): MSManipulationEvent;\n createEvent(eventInterface: "MSMediaKeyMessageEvent"): MSMediaKeyMessageEvent;\n createEvent(eventInterface: "MSMediaKeyNeededEvent"): MSMediaKeyNeededEvent;\n createEvent(eventInterface: "MSPointerEvent"): MSPointerEvent;\n createEvent(eventInterface: "MSSiteModeEvent"): MSSiteModeEvent;\n createEvent(eventInterface: "MediaEncryptedEvent"): MediaEncryptedEvent;\n createEvent(eventInterface: "MediaKeyMessageEvent"): MediaKeyMessageEvent;\n createEvent(eventInterface: "MediaStreamErrorEvent"): MediaStreamErrorEvent;\n createEvent(eventInterface: "MediaStreamEvent"): MediaStreamEvent;\n createEvent(eventInterface: "MediaStreamTrackEvent"): MediaStreamTrackEvent;\n createEvent(eventInterface: "MessageEvent"): MessageEvent;\n createEvent(eventInterface: "MouseEvent"): MouseEvent;\n createEvent(eventInterface: "MouseEvents"): MouseEvent;\n createEvent(eventInterface: "MutationEvent"): MutationEvent;\n createEvent(eventInterface: "MutationEvents"): MutationEvent;\n createEvent(eventInterface: "NavigationCompletedEvent"): NavigationCompletedEvent;\n createEvent(eventInterface: "NavigationEvent"): NavigationEvent;\n createEvent(eventInterface: "NavigationEventWithReferrer"): NavigationEventWithReferrer;\n createEvent(eventInterface: "OfflineAudioCompletionEvent"): OfflineAudioCompletionEvent;\n createEvent(eventInterface: "OverflowEvent"): OverflowEvent;\n createEvent(eventInterface: "PageTransitionEvent"): PageTransitionEvent;\n createEvent(eventInterface: "PaymentRequestUpdateEvent"): PaymentRequestUpdateEvent;\n createEvent(eventInterface: "PermissionRequestedEvent"): PermissionRequestedEvent;\n createEvent(eventInterface: "PointerEvent"): PointerEvent;\n createEvent(eventInterface: "PopStateEvent"): PopStateEvent;\n createEvent(eventInterface: "ProgressEvent"): ProgressEvent;\n createEvent(eventInterface: "RTCDTMFToneChangeEvent"): RTCDTMFToneChangeEvent;\n createEvent(eventInterface: "RTCDtlsTransportStateChangedEvent"): RTCDtlsTransportStateChangedEvent;\n createEvent(eventInterface: "RTCIceCandidatePairChangedEvent"): RTCIceCandidatePairChangedEvent;\n createEvent(eventInterface: "RTCIceGathererEvent"): RTCIceGathererEvent;\n createEvent(eventInterface: "RTCIceTransportStateChangedEvent"): RTCIceTransportStateChangedEvent;\n createEvent(eventInterface: "RTCPeerConnectionIceEvent"): RTCPeerConnectionIceEvent;\n createEvent(eventInterface: "RTCSsrcConflictEvent"): RTCSsrcConflictEvent;\n createEvent(eventInterface: "SVGZoomEvent"): SVGZoomEvent;\n createEvent(eventInterface: "SVGZoomEvents"): SVGZoomEvent;\n createEvent(eventInterface: "ScriptNotifyEvent"): ScriptNotifyEvent;\n createEvent(eventInterface: "ServiceWorkerMessageEvent"): ServiceWorkerMessageEvent;\n createEvent(eventInterface: "SpeechSynthesisEvent"): SpeechSynthesisEvent;\n createEvent(eventInterface: "StorageEvent"): StorageEvent;\n createEvent(eventInterface: "TextEvent"): TextEvent;\n createEvent(eventInterface: "TouchEvent"): TouchEvent;\n createEvent(eventInterface: "TrackEvent"): TrackEvent;\n createEvent(eventInterface: "TransitionEvent"): TransitionEvent;\n createEvent(eventInterface: "UIEvent"): UIEvent;\n createEvent(eventInterface: "UIEvents"): UIEvent;\n createEvent(eventInterface: "UnviewableContentIdentifiedEvent"): UnviewableContentIdentifiedEvent;\n createEvent(eventInterface: "WebGLContextEvent"): WebGLContextEvent;\n createEvent(eventInterface: "WheelEvent"): WheelEvent;\n createEvent(eventInterface: string): Event;\n}\n\ninterface DOML2DeprecatedColorProperty {\n color: string;\n}\n\ninterface DOML2DeprecatedSizeProperty {\n size: number;\n}\n\ninterface ElementTraversal {\n readonly childElementCount: number;\n readonly firstElementChild: Element | null;\n readonly lastElementChild: Element | null;\n readonly nextElementSibling: Element | null;\n readonly previousElementSibling: Element | null;\n}\n\ninterface GetSVGDocument {\n getSVGDocument(): Document;\n}\n\ninterface GlobalEventHandlersEventMap {\n "pointercancel": PointerEvent;\n "pointerdown": PointerEvent;\n "pointerenter": PointerEvent;\n "pointerleave": PointerEvent;\n "pointermove": PointerEvent;\n "pointerout": PointerEvent;\n "pointerover": PointerEvent;\n "pointerup": PointerEvent;\n "wheel": WheelEvent;\n}\n\ninterface GlobalEventHandlers {\n onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;\n addEventListener<K extends keyof GlobalEventHandlersEventMap>(type: K, listener: (this: GlobalEventHandlers, ev: GlobalEventHandlersEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ninterface GlobalFetch {\n fetch(input: RequestInfo, init?: RequestInit): Promise<Response>;\n}\n\ninterface HTMLTableAlignment {\n /**\n * Sets or retrieves a value that you can use to implement your own ch functionality for the object.\n */\n ch: string;\n /**\n * Sets or retrieves a value that you can use to implement your own chOff functionality for the object.\n */\n chOff: string;\n /**\n * Sets or retrieves how text and other content are vertically aligned within the object that contains them.\n */\n vAlign: string;\n}\n\ninterface IDBEnvironment {\n readonly indexedDB: IDBFactory;\n}\n\ninterface LinkStyle {\n readonly sheet: StyleSheet;\n}\n\ninterface MSBaseReaderEventMap {\n "abort": Event;\n "error": ErrorEvent;\n "load": Event;\n "loadend": ProgressEvent;\n "loadstart": Event;\n "progress": ProgressEvent;\n}\n\ninterface MSBaseReader {\n onabort: (this: MSBaseReader, ev: Event) => any;\n onerror: (this: MSBaseReader, ev: ErrorEvent) => any;\n onload: (this: MSBaseReader, ev: Event) => any;\n onloadend: (this: MSBaseReader, ev: ProgressEvent) => any;\n onloadstart: (this: MSBaseReader, ev: Event) => any;\n onprogress: (this: MSBaseReader, ev: ProgressEvent) => any;\n readonly readyState: number;\n readonly result: any;\n abort(): void;\n readonly DONE: number;\n readonly EMPTY: number;\n readonly LOADING: number;\n addEventListener<K extends keyof MSBaseReaderEventMap>(type: K, listener: (this: MSBaseReader, ev: MSBaseReaderEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ninterface MSFileSaver {\n msSaveBlob(blob: any, defaultName?: string): boolean;\n msSaveOrOpenBlob(blob: any, defaultName?: string): boolean;\n}\n\ninterface MSNavigatorDoNotTrack {\n confirmSiteSpecificTrackingException(args: ConfirmSiteSpecificExceptionsInformation): boolean;\n confirmWebWideTrackingException(args: ExceptionInformation): boolean;\n removeSiteSpecificTrackingException(args: ExceptionInformation): void;\n removeWebWideTrackingException(args: ExceptionInformation): void;\n storeSiteSpecificTrackingException(args: StoreSiteSpecificExceptionsInformation): void;\n storeWebWideTrackingException(args: StoreExceptionsInformation): void;\n}\n\ninterface NavigatorBeacon {\n sendBeacon(url: USVString, data?: BodyInit): boolean;\n}\n\ninterface NavigatorConcurrentHardware {\n readonly hardwareConcurrency: number;\n}\n\ninterface NavigatorContentUtils {\n}\n\ninterface NavigatorGeolocation {\n readonly geolocation: Geolocation;\n}\n\ninterface NavigatorID {\n readonly appCodeName: string;\n readonly appName: string;\n readonly appVersion: string;\n readonly platform: string;\n readonly product: string;\n readonly productSub: string;\n readonly userAgent: string;\n readonly vendor: string;\n readonly vendorSub: string;\n}\n\ninterface NavigatorOnLine {\n readonly onLine: boolean;\n}\n\ninterface NavigatorStorageUtils {\n}\n\ninterface NavigatorUserMedia {\n readonly mediaDevices: MediaDevices;\n getUserMedia(constraints: MediaStreamConstraints, successCallback: NavigatorUserMediaSuccessCallback, errorCallback: NavigatorUserMediaErrorCallback): void;\n}\n\ninterface NodeSelector {\n querySelector<K extends keyof ElementTagNameMap>(selectors: K): ElementTagNameMap[K] | null;\n querySelector(selectors: string): Element | null;\n querySelectorAll<K extends keyof ElementListTagNameMap>(selectors: K): ElementListTagNameMap[K];\n querySelectorAll(selectors: string): NodeListOf<Element>;\n}\n\ninterface RandomSource {\n getRandomValues(array: ArrayBufferView): ArrayBufferView;\n}\n\ninterface SVGAnimatedPoints {\n readonly animatedPoints: SVGPointList;\n readonly points: SVGPointList;\n}\n\ninterface SVGFilterPrimitiveStandardAttributes {\n readonly height: SVGAnimatedLength;\n readonly result: SVGAnimatedString;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n}\n\ninterface SVGFitToViewBox {\n readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;\n readonly viewBox: SVGAnimatedRect;\n}\n\ninterface SVGTests {\n readonly requiredExtensions: SVGStringList;\n readonly requiredFeatures: SVGStringList;\n readonly systemLanguage: SVGStringList;\n hasExtension(extension: string): boolean;\n}\n\ninterface SVGURIReference {\n readonly href: SVGAnimatedString;\n}\n\ninterface WindowBase64 {\n atob(encodedString: string): string;\n btoa(rawString: string): string;\n}\n\ninterface WindowConsole {\n readonly console: Console;\n}\n\ninterface WindowLocalStorage {\n readonly localStorage: Storage;\n}\n\ninterface WindowSessionStorage {\n readonly sessionStorage: Storage;\n}\n\ninterface WindowTimers extends Object, WindowTimersExtension {\n clearInterval(handle: number): void;\n clearTimeout(handle: number): void;\n setInterval(handler: (...args: any[]) => void, timeout: number): number;\n setInterval(handler: any, timeout?: any, ...args: any[]): number;\n setTimeout(handler: (...args: any[]) => void, timeout: number): number;\n setTimeout(handler: any, timeout?: any, ...args: any[]): number;\n}\n\ninterface WindowTimersExtension {\n clearImmediate(handle: number): void;\n setImmediate(handler: (...args: any[]) => void): number;\n setImmediate(handler: any, ...args: any[]): number;\n}\n\ninterface XMLHttpRequestEventTargetEventMap {\n "abort": Event;\n "error": ErrorEvent;\n "load": Event;\n "loadend": ProgressEvent;\n "loadstart": Event;\n "progress": ProgressEvent;\n "timeout": ProgressEvent;\n}\n\ninterface XMLHttpRequestEventTarget {\n onabort: (this: XMLHttpRequestEventTarget, ev: Event) => any;\n onerror: (this: XMLHttpRequestEventTarget, ev: ErrorEvent) => any;\n onload: (this: XMLHttpRequestEventTarget, ev: Event) => any;\n onloadend: (this: XMLHttpRequestEventTarget, ev: ProgressEvent) => any;\n onloadstart: (this: XMLHttpRequestEventTarget, ev: Event) => any;\n onprogress: (this: XMLHttpRequestEventTarget, ev: ProgressEvent) => any;\n ontimeout: (this: XMLHttpRequestEventTarget, ev: ProgressEvent) => any;\n addEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestEventTarget, ev: XMLHttpRequestEventTargetEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ninterface ErrorEventInit {\n message?: string;\n filename?: string;\n lineno?: number;\n conlno?: number;\n error?: any;\n}\n\ninterface StorageEventInit extends EventInit {\n key?: string;\n oldValue?: string;\n newValue?: string;\n url: string;\n storageArea?: Storage;\n}\n\ninterface Canvas2DContextAttributes {\n alpha?: boolean;\n willReadFrequently?: boolean;\n storage?: boolean;\n [attribute: string]: boolean | string | undefined;\n}\n\ninterface ImageBitmapOptions {\n imageOrientation?: "none" | "flipY";\n premultiplyAlpha?: "none" | "premultiply" | "default";\n colorSpaceConversion?: "none" | "default";\n resizeWidth?: number;\n resizeHeight?: number;\n resizeQuality?: "pixelated" | "low" | "medium" | "high";\n}\n\ninterface ImageBitmap {\n readonly width: number;\n readonly height: number;\n close(): void;\n}\n\ninterface URLSearchParams {\n /**\n * Appends a specified key/value pair as a new search parameter.\n */\n append(name: string, value: string): void;\n /**\n * Deletes the given search parameter, and its associated value, from the list of all search parameters.\n */\n delete(name: string): void;\n /**\n * Returns the first value associated to the given search parameter.\n */\n get(name: string): string | null;\n /**\n * Returns all the values association with a given search parameter.\n */\n getAll(name: string): string[];\n /**\n * Returns a Boolean indicating if such a search parameter exists.\n */\n has(name: string): boolean;\n /**\n * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.\n */\n set(name: string, value: string): void;\n}\n\ndeclare var URLSearchParams: {\n prototype: URLSearchParams;\n /**\n * Constructor returning a URLSearchParams object.\n */\n new (init?: string | URLSearchParams): URLSearchParams;\n};\n\ninterface NodeListOf<TNode extends Node> extends NodeList {\n length: number;\n item(index: number): TNode;\n [index: number]: TNode;\n}\n\ninterface HTMLCollectionOf<T extends Element> extends HTMLCollection {\n item(index: number): T;\n namedItem(name: string): T;\n [index: number]: T;\n}\n\ninterface BlobPropertyBag {\n type?: string;\n endings?: string;\n}\n\ninterface FilePropertyBag {\n type?: string;\n lastModified?: number;\n}\n\ninterface EventListenerObject {\n handleEvent(evt: Event): void;\n}\n\ninterface ProgressEventInit extends EventInit {\n lengthComputable?: boolean;\n loaded?: number;\n total?: number;\n}\n\ninterface ScrollOptions {\n behavior?: ScrollBehavior;\n}\n\ninterface ScrollToOptions extends ScrollOptions {\n left?: number;\n top?: number;\n}\n\ninterface ScrollIntoViewOptions extends ScrollOptions {\n block?: ScrollLogicalPosition;\n inline?: ScrollLogicalPosition;\n}\n\ninterface ClipboardEventInit extends EventInit {\n data?: string;\n dataType?: string;\n}\n\ninterface IDBArrayKey extends Array<IDBValidKey> {\n}\n\ninterface RsaKeyGenParams extends Algorithm {\n modulusLength: number;\n publicExponent: Uint8Array;\n}\n\ninterface RsaHashedKeyGenParams extends RsaKeyGenParams {\n hash: AlgorithmIdentifier;\n}\n\ninterface RsaKeyAlgorithm extends KeyAlgorithm {\n modulusLength: number;\n publicExponent: Uint8Array;\n}\n\ninterface RsaHashedKeyAlgorithm extends RsaKeyAlgorithm {\n hash: AlgorithmIdentifier;\n}\n\ninterface RsaHashedImportParams {\n hash: AlgorithmIdentifier;\n}\n\ninterface RsaPssParams {\n saltLength: number;\n}\n\ninterface RsaOaepParams extends Algorithm {\n label?: BufferSource;\n}\n\ninterface EcdsaParams extends Algorithm {\n hash: AlgorithmIdentifier;\n}\n\ninterface EcKeyGenParams extends Algorithm {\n namedCurve: string;\n}\n\ninterface EcKeyAlgorithm extends KeyAlgorithm {\n typedCurve: string;\n}\n\ninterface EcKeyImportParams {\n namedCurve: string;\n}\n\ninterface EcdhKeyDeriveParams extends Algorithm {\n public: CryptoKey;\n}\n\ninterface AesCtrParams extends Algorithm {\n counter: BufferSource;\n length: number;\n}\n\ninterface AesKeyAlgorithm extends KeyAlgorithm {\n length: number;\n}\n\ninterface AesKeyGenParams extends Algorithm {\n length: number;\n}\n\ninterface AesDerivedKeyParams extends Algorithm {\n length: number;\n}\n\ninterface AesCbcParams extends Algorithm {\n iv: BufferSource;\n}\n\ninterface AesCmacParams extends Algorithm {\n length: number;\n}\n\ninterface AesGcmParams extends Algorithm {\n iv: BufferSource;\n additionalData?: BufferSource;\n tagLength?: number;\n}\n\ninterface AesCfbParams extends Algorithm {\n iv: BufferSource;\n}\n\ninterface HmacImportParams extends Algorithm {\n hash?: AlgorithmIdentifier;\n length?: number;\n}\n\ninterface HmacKeyAlgorithm extends KeyAlgorithm {\n hash: AlgorithmIdentifier;\n length: number;\n}\n\ninterface HmacKeyGenParams extends Algorithm {\n hash: AlgorithmIdentifier;\n length?: number;\n}\n\ninterface DhKeyGenParams extends Algorithm {\n prime: Uint8Array;\n generator: Uint8Array;\n}\n\ninterface DhKeyAlgorithm extends KeyAlgorithm {\n prime: Uint8Array;\n generator: Uint8Array;\n}\n\ninterface DhKeyDeriveParams extends Algorithm {\n public: CryptoKey;\n}\n\ninterface DhImportKeyParams extends Algorithm {\n prime: Uint8Array;\n generator: Uint8Array;\n}\n\ninterface ConcatParams extends Algorithm {\n hash?: AlgorithmIdentifier;\n algorithmId: Uint8Array;\n partyUInfo: Uint8Array;\n partyVInfo: Uint8Array;\n publicInfo?: Uint8Array;\n privateInfo?: Uint8Array;\n}\n\ninterface HkdfCtrParams extends Algorithm {\n hash: AlgorithmIdentifier;\n label: BufferSource;\n context: BufferSource;\n}\n\ninterface Pbkdf2Params extends Algorithm {\n salt: BufferSource;\n iterations: number;\n hash: AlgorithmIdentifier;\n}\n\ninterface RsaOtherPrimesInfo {\n r: string;\n d: string;\n t: string;\n}\n\ninterface JsonWebKey {\n kty: string;\n use?: string;\n key_ops?: string[];\n alg?: string;\n kid?: string;\n x5u?: string;\n x5c?: string;\n x5t?: string;\n ext?: boolean;\n crv?: string;\n x?: string;\n y?: string;\n d?: string;\n n?: string;\n e?: string;\n p?: string;\n q?: string;\n dp?: string;\n dq?: string;\n qi?: string;\n oth?: RsaOtherPrimesInfo[];\n k?: string;\n}\n\ninterface ParentNode {\n readonly children: HTMLCollection;\n readonly firstElementChild: Element | null;\n readonly lastElementChild: Element | null;\n readonly childElementCount: number;\n}\n\ninterface DocumentOrShadowRoot {\n readonly activeElement: Element | null;\n readonly stylesheets: StyleSheetList;\n getSelection(): Selection | null;\n elementFromPoint(x: number, y: number): Element | null;\n elementsFromPoint(x: number, y: number): Element[];\n}\n\ninterface ShadowRoot extends DocumentOrShadowRoot, DocumentFragment {\n readonly host: Element;\n innerHTML: string;\n}\n\ninterface ShadowRootInit {\n mode: "open" | "closed";\n delegatesFocus?: boolean;\n}\n\ninterface HTMLSlotElement extends HTMLElement {\n name: string;\n assignedNodes(options?: AssignedNodesOptions): Node[];\n}\n\ninterface AssignedNodesOptions {\n flatten?: boolean;\n}\n\ninterface ElementDefinitionOptions {\n extends: string;\n}\n\ninterface CustomElementRegistry {\n define(name: string, constructor: Function, options?: ElementDefinitionOptions): void;\n get(name: string): any;\n whenDefined(name: string): PromiseLike<void>;\n}\n\ninterface PromiseRejectionEvent extends Event {\n readonly promise: PromiseLike<any>;\n readonly reason: any;\n}\n\ninterface PromiseRejectionEventInit extends EventInit {\n promise: PromiseLike<any>;\n reason?: any;\n}\n\ninterface EventListenerOptions {\n capture?: boolean;\n}\n\ninterface AddEventListenerOptions extends EventListenerOptions {\n passive?: boolean;\n once?: boolean;\n}\n\ninterface TouchEventInit extends EventModifierInit {\n touches?: Touch[];\n targetTouches?: Touch[];\n changedTouches?: Touch[];\n}\n\ndeclare type EventListenerOrEventListenerObject = EventListener | EventListenerObject;\n\ninterface DecodeErrorCallback {\n (error: DOMException): void;\n}\ninterface DecodeSuccessCallback {\n (decodedData: AudioBuffer): void;\n}\ninterface ErrorEventHandler {\n (message: string, filename?: string, lineno?: number, colno?: number, error?: Error): void;\n}\ninterface ForEachCallback {\n (keyId: any, status: MediaKeyStatus): void;\n}\ninterface FrameRequestCallback {\n (time: number): void;\n}\ninterface FunctionStringCallback {\n (data: string): void;\n}\ninterface IntersectionObserverCallback {\n (entries: IntersectionObserverEntry[], observer: IntersectionObserver): void;\n}\ninterface MediaQueryListListener {\n (mql: MediaQueryList): void;\n}\ninterface MSExecAtPriorityFunctionCallback {\n (...args: any[]): any;\n}\ninterface MSLaunchUriCallback {\n (): void;\n}\ninterface MSUnsafeFunctionCallback {\n (): any;\n}\ninterface MutationCallback {\n (mutations: MutationRecord[], observer: MutationObserver): void;\n}\ninterface NavigatorUserMediaErrorCallback {\n (error: MediaStreamError): void;\n}\ninterface NavigatorUserMediaSuccessCallback {\n (stream: MediaStream): void;\n}\ninterface NotificationPermissionCallback {\n (permission: NotificationPermission): void;\n}\ninterface PositionCallback {\n (position: Position): void;\n}\ninterface PositionErrorCallback {\n (error: PositionError): void;\n}\ninterface RTCPeerConnectionErrorCallback {\n (error: DOMError): void;\n}\ninterface RTCSessionDescriptionCallback {\n (sdp: RTCSessionDescription): void;\n}\ninterface RTCStatsCallback {\n (report: RTCStatsReport): void;\n}\ninterface VoidFunction {\n (): void;\n}\ninterface HTMLElementTagNameMap {\n "a": HTMLAnchorElement;\n "applet": HTMLAppletElement;\n "area": HTMLAreaElement;\n "audio": HTMLAudioElement;\n "base": HTMLBaseElement;\n "basefont": HTMLBaseFontElement;\n "blockquote": HTMLQuoteElement;\n "body": HTMLBodyElement;\n "br": HTMLBRElement;\n "button": HTMLButtonElement;\n "canvas": HTMLCanvasElement;\n "caption": HTMLTableCaptionElement;\n "col": HTMLTableColElement;\n "colgroup": HTMLTableColElement;\n "data": HTMLDataElement;\n "datalist": HTMLDataListElement;\n "del": HTMLModElement;\n "dir": HTMLDirectoryElement;\n "div": HTMLDivElement;\n "dl": HTMLDListElement;\n "embed": HTMLEmbedElement;\n "fieldset": HTMLFieldSetElement;\n "font": HTMLFontElement;\n "form": HTMLFormElement;\n "frame": HTMLFrameElement;\n "frameset": HTMLFrameSetElement;\n "h1": HTMLHeadingElement;\n "h2": HTMLHeadingElement;\n "h3": HTMLHeadingElement;\n "h4": HTMLHeadingElement;\n "h5": HTMLHeadingElement;\n "h6": HTMLHeadingElement;\n "head": HTMLHeadElement;\n "hr": HTMLHRElement;\n "html": HTMLHtmlElement;\n "iframe": HTMLIFrameElement;\n "img": HTMLImageElement;\n "input": HTMLInputElement;\n "ins": HTMLModElement;\n "isindex": HTMLUnknownElement;\n "label": HTMLLabelElement;\n "legend": HTMLLegendElement;\n "li": HTMLLIElement;\n "link": HTMLLinkElement;\n "listing": HTMLPreElement;\n "map": HTMLMapElement;\n "marquee": HTMLMarqueeElement;\n "menu": HTMLMenuElement;\n "meta": HTMLMetaElement;\n "meter": HTMLMeterElement;\n "nextid": HTMLUnknownElement;\n "object": HTMLObjectElement;\n "ol": HTMLOListElement;\n "optgroup": HTMLOptGroupElement;\n "option": HTMLOptionElement;\n "output": HTMLOutputElement;\n "p": HTMLParagraphElement;\n "param": HTMLParamElement;\n "picture": HTMLPictureElement;\n "pre": HTMLPreElement;\n "progress": HTMLProgressElement;\n "q": HTMLQuoteElement;\n "script": HTMLScriptElement;\n "select": HTMLSelectElement;\n "source": HTMLSourceElement;\n "span": HTMLSpanElement;\n "style": HTMLStyleElement;\n "table": HTMLTableElement;\n "tbody": HTMLTableSectionElement;\n "td": HTMLTableDataCellElement;\n "template": HTMLTemplateElement;\n "textarea": HTMLTextAreaElement;\n "tfoot": HTMLTableSectionElement;\n "th": HTMLTableHeaderCellElement;\n "thead": HTMLTableSectionElement;\n "time": HTMLTimeElement;\n "title": HTMLTitleElement;\n "tr": HTMLTableRowElement;\n "track": HTMLTrackElement;\n "ul": HTMLUListElement;\n "video": HTMLVideoElement;\n "x-ms-webview": MSHTMLWebViewElement;\n "xmp": HTMLPreElement;\n}\n\ninterface ElementTagNameMap extends HTMLElementTagNameMap {\n "abbr": HTMLElement;\n "acronym": HTMLElement;\n "address": HTMLElement;\n "article": HTMLElement;\n "aside": HTMLElement;\n "b": HTMLElement;\n "bdo": HTMLElement;\n "big": HTMLElement;\n "center": HTMLElement;\n "circle": SVGCircleElement;\n "cite": HTMLElement;\n "clippath": SVGClipPathElement;\n "code": HTMLElement;\n "dd": HTMLElement;\n "defs": SVGDefsElement;\n "desc": SVGDescElement;\n "dfn": HTMLElement;\n "dt": HTMLElement;\n "ellipse": SVGEllipseElement;\n "em": HTMLElement;\n "feblend": SVGFEBlendElement;\n "fecolormatrix": SVGFEColorMatrixElement;\n "fecomponenttransfer": SVGFEComponentTransferElement;\n "fecomposite": SVGFECompositeElement;\n "feconvolvematrix": SVGFEConvolveMatrixElement;\n "fediffuselighting": SVGFEDiffuseLightingElement;\n "fedisplacementmap": SVGFEDisplacementMapElement;\n "fedistantlight": SVGFEDistantLightElement;\n "feflood": SVGFEFloodElement;\n "fefunca": SVGFEFuncAElement;\n "fefuncb": SVGFEFuncBElement;\n "fefuncg": SVGFEFuncGElement;\n "fefuncr": SVGFEFuncRElement;\n "fegaussianblur": SVGFEGaussianBlurElement;\n "feimage": SVGFEImageElement;\n "femerge": SVGFEMergeElement;\n "femergenode": SVGFEMergeNodeElement;\n "femorphology": SVGFEMorphologyElement;\n "feoffset": SVGFEOffsetElement;\n "fepointlight": SVGFEPointLightElement;\n "fespecularlighting": SVGFESpecularLightingElement;\n "fespotlight": SVGFESpotLightElement;\n "fetile": SVGFETileElement;\n "feturbulence": SVGFETurbulenceElement;\n "figcaption": HTMLElement;\n "figure": HTMLElement;\n "filter": SVGFilterElement;\n "footer": HTMLElement;\n "foreignobject": SVGForeignObjectElement;\n "g": SVGGElement;\n "header": HTMLElement;\n "hgroup": HTMLElement;\n "i": HTMLElement;\n "image": SVGImageElement;\n "kbd": HTMLElement;\n "keygen": HTMLElement;\n "line": SVGLineElement;\n "lineargradient": SVGLinearGradientElement;\n "mark": HTMLElement;\n "marker": SVGMarkerElement;\n "mask": SVGMaskElement;\n "metadata": SVGMetadataElement;\n "nav": HTMLElement;\n "nobr": HTMLElement;\n "noframes": HTMLElement;\n "noscript": HTMLElement;\n "path": SVGPathElement;\n "pattern": SVGPatternElement;\n "plaintext": HTMLElement;\n "polygon": SVGPolygonElement;\n "polyline": SVGPolylineElement;\n "radialgradient": SVGRadialGradientElement;\n "rect": SVGRectElement;\n "rt": HTMLElement;\n "ruby": HTMLElement;\n "s": HTMLElement;\n "samp": HTMLElement;\n "section": HTMLElement;\n "small": HTMLElement;\n "stop": SVGStopElement;\n "strike": HTMLElement;\n "strong": HTMLElement;\n "sub": HTMLElement;\n "sup": HTMLElement;\n "svg": SVGSVGElement;\n "switch": SVGSwitchElement;\n "symbol": SVGSymbolElement;\n "text": SVGTextElement;\n "textpath": SVGTextPathElement;\n "tspan": SVGTSpanElement;\n "tt": HTMLElement;\n "u": HTMLElement;\n "use": SVGUseElement;\n "var": HTMLElement;\n "view": SVGViewElement;\n "wbr": HTMLElement;\n}\n\ntype ElementListTagNameMap = {\n [key in keyof ElementTagNameMap]: NodeListOf<ElementTagNameMap[key]>\n};\n\ndeclare var Audio: { new(src?: string): HTMLAudioElement; };\ndeclare var Image: { new(width?: number, height?: number): HTMLImageElement; };\ndeclare var Option: { new(text?: string, value?: string, defaultSelected?: boolean, selected?: boolean): HTMLOptionElement; };\ndeclare var applicationCache: ApplicationCache;\ndeclare var caches: CacheStorage;\ndeclare var clientInformation: Navigator;\ndeclare var closed: boolean;\ndeclare var crypto: Crypto;\ndeclare var defaultStatus: string;\ndeclare var devicePixelRatio: number;\ndeclare var document: Document;\ndeclare var doNotTrack: string;\ndeclare var event: Event | undefined;\ndeclare var external: External;\ndeclare var frameElement: Element;\ndeclare var frames: Window;\ndeclare var history: History;\ndeclare var innerHeight: number;\ndeclare var innerWidth: number;\ndeclare var isSecureContext: boolean;\ndeclare var length: number;\ndeclare var location: Location;\ndeclare var locationbar: BarProp;\ndeclare var menubar: BarProp;\ndeclare var msContentScript: ExtensionScriptApis;\ndeclare var msCredentials: MSCredentials;\ndeclare const name: never;\ndeclare var navigator: Navigator;\ndeclare var offscreenBuffering: string | boolean;\ndeclare var onabort: (this: Window, ev: UIEvent) => any;\ndeclare var onafterprint: (this: Window, ev: Event) => any;\ndeclare var onbeforeprint: (this: Window, ev: Event) => any;\ndeclare var onbeforeunload: (this: Window, ev: BeforeUnloadEvent) => any;\ndeclare var onblur: (this: Window, ev: FocusEvent) => any;\ndeclare var oncanplay: (this: Window, ev: Event) => any;\ndeclare var oncanplaythrough: (this: Window, ev: Event) => any;\ndeclare var onchange: (this: Window, ev: Event) => any;\ndeclare var onclick: (this: Window, ev: MouseEvent) => any;\ndeclare var oncompassneedscalibration: (this: Window, ev: Event) => any;\ndeclare var oncontextmenu: (this: Window, ev: PointerEvent) => any;\ndeclare var ondblclick: (this: Window, ev: MouseEvent) => any;\ndeclare var ondevicelight: (this: Window, ev: DeviceLightEvent) => any;\ndeclare var ondevicemotion: (this: Window, ev: DeviceMotionEvent) => any;\ndeclare var ondeviceorientation: (this: Window, ev: DeviceOrientationEvent) => any;\ndeclare var ondrag: (this: Window, ev: DragEvent) => any;\ndeclare var ondragend: (this: Window, ev: DragEvent) => any;\ndeclare var ondragenter: (this: Window, ev: DragEvent) => any;\ndeclare var ondragleave: (this: Window, ev: DragEvent) => any;\ndeclare var ondragover: (this: Window, ev: DragEvent) => any;\ndeclare var ondragstart: (this: Window, ev: DragEvent) => any;\ndeclare var ondrop: (this: Window, ev: DragEvent) => any;\ndeclare var ondurationchange: (this: Window, ev: Event) => any;\ndeclare var onemptied: (this: Window, ev: Event) => any;\ndeclare var onended: (this: Window, ev: MediaStreamErrorEvent) => any;\ndeclare var onerror: ErrorEventHandler;\ndeclare var onfocus: (this: Window, ev: FocusEvent) => any;\ndeclare var onhashchange: (this: Window, ev: HashChangeEvent) => any;\ndeclare var oninput: (this: Window, ev: Event) => any;\ndeclare var oninvalid: (this: Window, ev: Event) => any;\ndeclare var onkeydown: (this: Window, ev: KeyboardEvent) => any;\ndeclare var onkeypress: (this: Window, ev: KeyboardEvent) => any;\ndeclare var onkeyup: (this: Window, ev: KeyboardEvent) => any;\ndeclare var onload: (this: Window, ev: Event) => any;\ndeclare var onloadeddata: (this: Window, ev: Event) => any;\ndeclare var onloadedmetadata: (this: Window, ev: Event) => any;\ndeclare var onloadstart: (this: Window, ev: Event) => any;\ndeclare var onmessage: (this: Window, ev: MessageEvent) => any;\ndeclare var onmousedown: (this: Window, ev: MouseEvent) => any;\ndeclare var onmouseenter: (this: Window, ev: MouseEvent) => any;\ndeclare var onmouseleave: (this: Window, ev: MouseEvent) => any;\ndeclare var onmousemove: (this: Window, ev: MouseEvent) => any;\ndeclare var onmouseout: (this: Window, ev: MouseEvent) => any;\ndeclare var onmouseover: (this: Window, ev: MouseEvent) => any;\ndeclare var onmouseup: (this: Window, ev: MouseEvent) => any;\ndeclare var onmousewheel: (this: Window, ev: WheelEvent) => any;\ndeclare var onmsgesturechange: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsgesturedoubletap: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsgestureend: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsgesturehold: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsgesturestart: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsgesturetap: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsinertiastart: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmspointercancel: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerdown: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerenter: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerleave: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointermove: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerout: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerover: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerup: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onoffline: (this: Window, ev: Event) => any;\ndeclare var ononline: (this: Window, ev: Event) => any;\ndeclare var onorientationchange: (this: Window, ev: Event) => any;\ndeclare var onpagehide: (this: Window, ev: PageTransitionEvent) => any;\ndeclare var onpageshow: (this: Window, ev: PageTransitionEvent) => any;\ndeclare var onpause: (this: Window, ev: Event) => any;\ndeclare var onplay: (this: Window, ev: Event) => any;\ndeclare var onplaying: (this: Window, ev: Event) => any;\ndeclare var onpopstate: (this: Window, ev: PopStateEvent) => any;\ndeclare var onprogress: (this: Window, ev: ProgressEvent) => any;\ndeclare var onratechange: (this: Window, ev: Event) => any;\ndeclare var onreadystatechange: (this: Window, ev: ProgressEvent) => any;\ndeclare var onreset: (this: Window, ev: Event) => any;\ndeclare var onresize: (this: Window, ev: UIEvent) => any;\ndeclare var onscroll: (this: Window, ev: UIEvent) => any;\ndeclare var onseeked: (this: Window, ev: Event) => any;\ndeclare var onseeking: (this: Window, ev: Event) => any;\ndeclare var onselect: (this: Window, ev: UIEvent) => any;\ndeclare var onstalled: (this: Window, ev: Event) => any;\ndeclare var onstorage: (this: Window, ev: StorageEvent) => any;\ndeclare var onsubmit: (this: Window, ev: Event) => any;\ndeclare var onsuspend: (this: Window, ev: Event) => any;\ndeclare var ontimeupdate: (this: Window, ev: Event) => any;\ndeclare var ontouchcancel: (ev: TouchEvent) => any;\ndeclare var ontouchend: (ev: TouchEvent) => any;\ndeclare var ontouchmove: (ev: TouchEvent) => any;\ndeclare var ontouchstart: (ev: TouchEvent) => any;\ndeclare var onunload: (this: Window, ev: Event) => any;\ndeclare var onvolumechange: (this: Window, ev: Event) => any;\ndeclare var onwaiting: (this: Window, ev: Event) => any;\ndeclare var opener: any;\ndeclare var orientation: string | number;\ndeclare var outerHeight: number;\ndeclare var outerWidth: number;\ndeclare var pageXOffset: number;\ndeclare var pageYOffset: number;\ndeclare var parent: Window;\ndeclare var performance: Performance;\ndeclare var personalbar: BarProp;\ndeclare var screen: Screen;\ndeclare var screenLeft: number;\ndeclare var screenTop: number;\ndeclare var screenX: number;\ndeclare var screenY: number;\ndeclare var scrollbars: BarProp;\ndeclare var scrollX: number;\ndeclare var scrollY: number;\ndeclare var self: Window;\ndeclare var speechSynthesis: SpeechSynthesis;\ndeclare var status: string;\ndeclare var statusbar: BarProp;\ndeclare var styleMedia: StyleMedia;\ndeclare var toolbar: BarProp;\ndeclare var top: Window;\ndeclare var window: Window;\ndeclare var customElements: CustomElementRegistry;\ndeclare function alert(message?: any): void;\ndeclare function blur(): void;\ndeclare function cancelAnimationFrame(handle: number): void;\ndeclare function captureEvents(): void;\ndeclare function close(): void;\ndeclare function confirm(message?: string): boolean;\ndeclare function departFocus(navigationReason: NavigationReason, origin: FocusNavigationOrigin): void;\ndeclare function focus(): void;\ndeclare function getComputedStyle(elt: Element, pseudoElt?: string): CSSStyleDeclaration;\ndeclare function getMatchedCSSRules(elt: Element, pseudoElt?: string): CSSRuleList;\ndeclare function getSelection(): Selection;\ndeclare function matchMedia(mediaQuery: string): MediaQueryList;\ndeclare function moveBy(x?: number, y?: number): void;\ndeclare function moveTo(x?: number, y?: number): void;\ndeclare function msWriteProfilerMark(profilerMarkName: string): void;\ndeclare function open(url?: string, target?: string, features?: string, replace?: boolean): Window;\ndeclare function postMessage(message: any, targetOrigin: string, transfer?: any[]): void;\ndeclare function print(): void;\ndeclare function prompt(message?: string, _default?: string): string | null;\ndeclare function releaseEvents(): void;\ndeclare function requestAnimationFrame(callback: FrameRequestCallback): number;\ndeclare function resizeBy(x?: number, y?: number): void;\ndeclare function resizeTo(x?: number, y?: number): void;\ndeclare function scroll(x?: number, y?: number): void;\ndeclare function scrollBy(x?: number, y?: number): void;\ndeclare function scrollTo(x?: number, y?: number): void;\ndeclare function stop(): void;\ndeclare function webkitCancelAnimationFrame(handle: number): void;\ndeclare function webkitConvertPointFromNodeToPage(node: Node, pt: WebKitPoint): WebKitPoint;\ndeclare function webkitConvertPointFromPageToNode(node: Node, pt: WebKitPoint): WebKitPoint;\ndeclare function webkitRequestAnimationFrame(callback: FrameRequestCallback): number;\ndeclare function createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise<ImageBitmap>;\ndeclare function createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;\ndeclare function scroll(options?: ScrollToOptions): void;\ndeclare function scrollTo(options?: ScrollToOptions): void;\ndeclare function scrollBy(options?: ScrollToOptions): void;\ndeclare function toString(): string;\ndeclare function dispatchEvent(evt: Event): boolean;\ndeclare function removeEventListener(type: string, listener?: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\ndeclare function clearInterval(handle: number): void;\ndeclare function clearTimeout(handle: number): void;\ndeclare function setInterval(handler: (...args: any[]) => void, timeout: number): number;\ndeclare function setInterval(handler: any, timeout?: any, ...args: any[]): number;\ndeclare function setTimeout(handler: (...args: any[]) => void, timeout: number): number;\ndeclare function setTimeout(handler: any, timeout?: any, ...args: any[]): number;\ndeclare function clearImmediate(handle: number): void;\ndeclare function setImmediate(handler: (...args: any[]) => void): number;\ndeclare function setImmediate(handler: any, ...args: any[]): number;\ndeclare var sessionStorage: Storage;\ndeclare var localStorage: Storage;\ndeclare var console: Console;\ndeclare var onpointercancel: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerdown: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerenter: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerleave: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointermove: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerout: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerover: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerup: (this: Window, ev: PointerEvent) => any;\ndeclare var onwheel: (this: Window, ev: WheelEvent) => any;\ndeclare var indexedDB: IDBFactory;\ndeclare function atob(encodedString: string): string;\ndeclare function btoa(rawString: string): string;\ndeclare function fetch(input: RequestInfo, init?: RequestInit): Promise<Response>;\ndeclare function addEventListener<K extends keyof WindowEventMap>(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, useCapture?: boolean): void;\ndeclare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\ntype AAGUID = string;\ntype AlgorithmIdentifier = string | Algorithm;\ntype BodyInit = any;\ntype ByteString = string;\ntype ConstrainBoolean = boolean | ConstrainBooleanParameters;\ntype ConstrainDOMString = string | string[] | ConstrainDOMStringParameters;\ntype ConstrainDouble = number | ConstrainDoubleRange;\ntype ConstrainLong = number | ConstrainLongRange;\ntype CryptoOperationData = ArrayBufferView;\ntype GLbitfield = number;\ntype GLboolean = boolean;\ntype GLbyte = number;\ntype GLclampf = number;\ntype GLenum = number;\ntype GLfloat = number;\ntype GLint = number;\ntype GLintptr = number;\ntype GLshort = number;\ntype GLsizei = number;\ntype GLsizeiptr = number;\ntype GLubyte = number;\ntype GLuint = number;\ntype GLushort = number;\ntype HeadersInit = any;\ntype IDBKeyPath = string;\ntype KeyFormat = string;\ntype KeyType = string;\ntype KeyUsage = string;\ntype MSInboundPayload = MSVideoRecvPayload | MSAudioRecvPayload;\ntype MSLocalClientEvent = MSLocalClientEventBase | MSAudioLocalClientEvent;\ntype MSOutboundPayload = MSVideoSendPayload | MSAudioSendPayload;\ntype RTCIceGatherCandidate = RTCIceCandidateDictionary | RTCIceCandidateComplete;\ntype RTCTransport = RTCDtlsTransport | RTCSrtpSdesTransport;\ntype RequestInfo = Request | string;\ntype USVString = string;\ntype payloadtype = number;\ntype ScrollBehavior = "auto" | "instant" | "smooth";\ntype ScrollLogicalPosition = "start" | "center" | "end" | "nearest";\ntype IDBValidKey = number | string | Date | IDBArrayKey;\ntype BufferSource = ArrayBuffer | ArrayBufferView;\ntype MouseWheelEvent = WheelEvent;\ntype ScrollRestoration = "auto" | "manual";\ntype FormDataEntryValue = string | File;\ntype InsertPosition = "beforebegin" | "afterbegin" | "beforeend" | "afterend";\ntype AppendMode = "segments" | "sequence";\ntype AudioContextState = "suspended" | "running" | "closed";\ntype BiquadFilterType = "lowpass" | "highpass" | "bandpass" | "lowshelf" | "highshelf" | "peaking" | "notch" | "allpass";\ntype CanvasFillRule = "nonzero" | "evenodd";\ntype ChannelCountMode = "max" | "clamped-max" | "explicit";\ntype ChannelInterpretation = "speakers" | "discrete";\ntype DistanceModelType = "linear" | "inverse" | "exponential";\ntype ExpandGranularity = "character" | "word" | "sentence" | "textedit";\ntype GamepadInputEmulationType = "mouse" | "keyboard" | "gamepad";\ntype IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";\ntype IDBRequestReadyState = "pending" | "done";\ntype IDBTransactionMode = "readonly" | "readwrite" | "versionchange";\ntype ListeningState = "inactive" | "active" | "disambiguation";\ntype MediaDeviceKind = "audioinput" | "audiooutput" | "videoinput";\ntype MediaKeyMessageType = "license-request" | "license-renewal" | "license-release" | "individualization-request";\ntype MediaKeySessionType = "temporary" | "persistent-license" | "persistent-release-message";\ntype MediaKeysRequirement = "required" | "optional" | "not-allowed";\ntype MediaKeyStatus = "usable" | "expired" | "output-downscaled" | "output-not-allowed" | "status-pending" | "internal-error";\ntype MediaStreamTrackState = "live" | "ended";\ntype MSCredentialType = "FIDO_2_0";\ntype MSIceAddrType = "os" | "stun" | "turn" | "peer-derived";\ntype MSIceType = "failed" | "direct" | "relay";\ntype MSStatsType = "description" | "localclientevent" | "inbound-network" | "outbound-network" | "inbound-payload" | "outbound-payload" | "transportdiagnostics";\ntype MSTransportType = "Embedded" | "USB" | "NFC" | "BT";\ntype MSWebViewPermissionState = "unknown" | "defer" | "allow" | "deny";\ntype MSWebViewPermissionType = "geolocation" | "unlimitedIndexedDBQuota" | "media" | "pointerlock" | "webnotifications";\ntype NavigationReason = "up" | "down" | "left" | "right";\ntype NavigationType = "navigate" | "reload" | "back_forward" | "prerender";\ntype NotificationDirection = "auto" | "ltr" | "rtl";\ntype NotificationPermission = "default" | "denied" | "granted";\ntype OscillatorType = "sine" | "square" | "sawtooth" | "triangle" | "custom";\ntype OverSampleType = "none" | "2x" | "4x";\ntype PanningModelType = "equalpower";\ntype PaymentComplete = "success" | "fail" | "";\ntype PaymentShippingType = "shipping" | "delivery" | "pickup";\ntype PushEncryptionKeyName = "p256dh" | "auth";\ntype PushPermissionState = "granted" | "denied" | "prompt";\ntype ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin-only" | "origin-when-cross-origin" | "unsafe-url";\ntype RequestCache = "default" | "no-store" | "reload" | "no-cache" | "force-cache";\ntype RequestCredentials = "omit" | "same-origin" | "include";\ntype RequestDestination = "" | "document" | "sharedworker" | "subresource" | "unknown" | "worker";\ntype RequestMode = "navigate" | "same-origin" | "no-cors" | "cors";\ntype RequestRedirect = "follow" | "error" | "manual";\ntype RequestType = "" | "audio" | "font" | "image" | "script" | "style" | "track" | "video";\ntype ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";\ntype RTCBundlePolicy = "balanced" | "max-compat" | "max-bundle";\ntype RTCDegradationPreference = "maintain-framerate" | "maintain-resolution" | "balanced";\ntype RTCDtlsRole = "auto" | "client" | "server";\ntype RTCDtlsTransportState = "new" | "connecting" | "connected" | "closed";\ntype RTCIceCandidateType = "host" | "srflx" | "prflx" | "relay";\ntype RTCIceComponent = "RTP" | "RTCP";\ntype RTCIceConnectionState = "new" | "checking" | "connected" | "completed" | "failed" | "disconnected" | "closed";\ntype RTCIceGathererState = "new" | "gathering" | "complete";\ntype RTCIceGatheringState = "new" | "gathering" | "complete";\ntype RTCIceGatherPolicy = "all" | "nohost" | "relay";\ntype RTCIceProtocol = "udp" | "tcp";\ntype RTCIceRole = "controlling" | "controlled";\ntype RTCIceTcpCandidateType = "active" | "passive" | "so";\ntype RTCIceTransportPolicy = "none" | "relay" | "all";\ntype RTCIceTransportState = "new" | "checking" | "connected" | "completed" | "disconnected" | "closed";\ntype RTCSdpType = "offer" | "pranswer" | "answer";\ntype RTCSignalingState = "stable" | "have-local-offer" | "have-remote-offer" | "have-local-pranswer" | "have-remote-pranswer" | "closed";\ntype RTCStatsIceCandidatePairState = "frozen" | "waiting" | "inprogress" | "failed" | "succeeded" | "cancelled";\ntype RTCStatsIceCandidateType = "host" | "serverreflexive" | "peerreflexive" | "relayed";\ntype RTCStatsType = "inboundrtp" | "outboundrtp" | "session" | "datachannel" | "track" | "transport" | "candidatepair" | "localcandidate" | "remotecandidate";\ntype ScopedCredentialType = "ScopedCred";\ntype ServiceWorkerState = "installing" | "installed" | "activating" | "activated" | "redundant";\ntype Transport = "usb" | "nfc" | "ble";\ntype VideoFacingModeEnum = "user" | "environment" | "left" | "right";\ntype VisibilityState = "hidden" | "visible" | "prerender" | "unloaded";\ntype XMLHttpRequestResponseType = "" | "arraybuffer" | "blob" | "document" | "json" | "text";\n\n\n/////////////////////////////\n/// WorkerGlobalScope APIs\n/////////////////////////////\n// These are only available in a Web Worker\ndeclare function importScripts(...urls: string[]): void;\n\n\n\n\n/////////////////////////////\n/// Windows Script Host APIS\n/////////////////////////////\n\n\ninterface ActiveXObject {\n new (s: string): any;\n}\ndeclare var ActiveXObject: ActiveXObject;\n\ninterface ITextWriter {\n Write(s: string): void;\n WriteLine(s: string): void;\n Close(): void;\n}\n\ninterface TextStreamBase {\n /**\n * The column number of the current character position in an input stream.\n */\n Column: number;\n\n /**\n * The current line number in an input stream.\n */\n Line: number;\n\n /**\n * Closes a text stream.\n * It is not necessary to close standard streams; they close automatically when the process ends. If\n * you close a standard stream, be aware that any other pointers to that standard stream become invalid.\n */\n Close(): void;\n}\n\ninterface TextStreamWriter extends TextStreamBase {\n /**\n * Sends a string to an output stream.\n */\n Write(s: string): void;\n\n /**\n * Sends a specified number of blank lines (newline characters) to an output stream.\n */\n WriteBlankLines(intLines: number): void;\n\n /**\n * Sends a string followed by a newline character to an output stream.\n */\n WriteLine(s: string): void;\n}\n\ninterface TextStreamReader extends TextStreamBase {\n /**\n * Returns a specified number of characters from an input stream, starting at the current pointer position.\n * Does not return until the ENTER key is pressed.\n * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n */\n Read(characters: number): string;\n\n /**\n * Returns all characters from an input stream.\n * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n */\n ReadAll(): string;\n\n /**\n * Returns an entire line from an input stream.\n * Although this method extracts the newline character, it does not add it to the returned string.\n * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n */\n ReadLine(): string;\n\n /**\n * Skips a specified number of characters when reading from an input text stream.\n * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n * @param characters Positive number of characters to skip forward. (Backward skipping is not supported.)\n */\n Skip(characters: number): void;\n\n /**\n * Skips the next line when reading from an input text stream.\n * Can only be used on a stream in reading mode, not writing or appending mode.\n */\n SkipLine(): void;\n\n /**\n * Indicates whether the stream pointer position is at the end of a line.\n */\n AtEndOfLine: boolean;\n\n /**\n * Indicates whether the stream pointer position is at the end of a stream.\n */\n AtEndOfStream: boolean;\n}\n\ndeclare var WScript: {\n /**\n * Outputs text to either a message box (under WScript.exe) or the command console window followed by\n * a newline (under CScript.exe).\n */\n Echo(s: any): void;\n\n /**\n * Exposes the write-only error output stream for the current script.\n * Can be accessed only while using CScript.exe.\n */\n StdErr: TextStreamWriter;\n\n /**\n * Exposes the write-only output stream for the current script.\n * Can be accessed only while using CScript.exe.\n */\n StdOut: TextStreamWriter;\n Arguments: { length: number; Item(n: number): string; };\n\n /**\n * The full path of the currently running script.\n */\n ScriptFullName: string;\n\n /**\n * Forces the script to stop immediately, with an optional exit code.\n */\n Quit(exitCode?: number): number;\n\n /**\n * The Windows Script Host build version number.\n */\n BuildVersion: number;\n\n /**\n * Fully qualified path of the host executable.\n */\n FullName: string;\n\n /**\n * Gets/sets the script mode - interactive(true) or batch(false).\n */\n Interactive: boolean;\n\n /**\n * The name of the host executable (WScript.exe or CScript.exe).\n */\n Name: string;\n\n /**\n * Path of the directory containing the host executable.\n */\n Path: string;\n\n /**\n * The filename of the currently running script.\n */\n ScriptName: string;\n\n /**\n * Exposes the read-only input stream for the current script.\n * Can be accessed only while using CScript.exe.\n */\n StdIn: TextStreamReader;\n\n /**\n * Windows Script Host version\n */\n Version: string;\n\n /**\n * Connects a COM object\'s event sources to functions named with a given prefix, in the form prefix_event.\n */\n ConnectObject(objEventSource: any, strPrefix: string): void;\n\n /**\n * Creates a COM object.\n * @param strProgiID\n * @param strPrefix Function names in the form prefix_event will be bound to this object\'s COM events.\n */\n CreateObject(strProgID: string, strPrefix?: string): any;\n\n /**\n * Disconnects a COM object from its event sources.\n */\n DisconnectObject(obj: any): void;\n\n /**\n * Retrieves an existing object with the specified ProgID from memory, or creates a new one from a file.\n * @param strPathname Fully qualified path to the file containing the object persisted to disk.\n * For objects in memory, pass a zero-length string.\n * @param strProgID\n * @param strPrefix Function names in the form prefix_event will be bound to this object\'s COM events.\n */\n GetObject(strPathname: string, strProgID?: string, strPrefix?: string): any;\n\n /**\n * Suspends script execution for a specified length of time, then continues execution.\n * @param intTime Interval (in milliseconds) to suspend script execution.\n */\n Sleep(intTime: number): void;\n};\n\n/**\n * Allows enumerating over a COM collection, which may not have indexed item access.\n */\ninterface Enumerator<T> {\n /**\n * Returns true if the current item is the last one in the collection, or the collection is empty,\n * or the current item is undefined.\n */\n atEnd(): boolean;\n\n /**\n * Returns the current item in the collection\n */\n item(): T;\n\n /**\n * Resets the current item in the collection to the first item. If there are no items in the collection,\n * the current item is set to undefined.\n */\n moveFirst(): void;\n\n /**\n * Moves the current item to the next item in the collection. If the enumerator is at the end of\n * the collection or the collection is empty, the current item is set to undefined.\n */\n moveNext(): void;\n}\n\ninterface EnumeratorConstructor {\n new <T>(collection: any): Enumerator<T>;\n new (collection: any): Enumerator<any>;\n}\n\ndeclare var Enumerator: EnumeratorConstructor;\n\n/**\n * Enables reading from a COM safe array, which might have an alternate lower bound, or multiple dimensions.\n */\ninterface VBArray<T> {\n /**\n * Returns the number of dimensions (1-based).\n */\n dimensions(): number;\n\n /**\n * Takes an index for each dimension in the array, and returns the item at the corresponding location.\n */\n getItem(dimension1Index: number, ...dimensionNIndexes: number[]): T;\n\n /**\n * Returns the smallest available index for a given dimension.\n * @param dimension 1-based dimension (defaults to 1)\n */\n lbound(dimension?: number): number;\n\n /**\n * Returns the largest available index for a given dimension.\n * @param dimension 1-based dimension (defaults to 1)\n */\n ubound(dimension?: number): number;\n\n /**\n * Returns a Javascript array with all the elements in the VBArray. If there are multiple dimensions,\n * each successive dimension is appended to the end of the array.\n * Example: [[1,2,3],[4,5,6]] becomes [1,2,3,4,5,6]\n */\n toArray(): T[];\n}\n\ninterface VBArrayConstructor {\n new <T>(safeArray: any): VBArray<T>;\n new (safeArray: any): VBArray<any>;\n}\n\ndeclare var VBArray: VBArrayConstructor;\n\n/**\n * Automation date (VT_DATE)\n */\ninterface VarDate { }\n\ninterface DateConstructor {\n new (vd: VarDate): Date;\n}\n\ninterface Date {\n getVarDate: () => VarDate;\n}\n' |
| | | }}),define("vs/language/typescript/lib/lib-es6-ts",[],function(){return{contents:'/*! *****************************************************************************\nCopyright (c) Microsoft Corporation. All rights reserved. \nLicensed under the Apache License, Version 2.0 (the "License"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at http://www.apache.org/licenses/LICENSE-2.0 \n \nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, \nMERCHANTABLITY OR NON-INFRINGEMENT. \n \nSee the Apache Version 2.0 License for specific language governing permissions\nand limitations under the License.\n***************************************************************************** */\n\n\n\n/// <reference no-default-lib="true"/>\n\n\n/////////////////////////////\n/// ECMAScript APIs\n/////////////////////////////\n\ndeclare const NaN: number;\ndeclare const Infinity: number;\n\n/**\n * Evaluates JavaScript code and executes it.\n * @param x A String value that contains valid JavaScript code.\n */\ndeclare function eval(x: string): any;\n\n/**\n * Converts A string to an integer.\n * @param s A string to convert into a number.\n * @param radix A value between 2 and 36 that specifies the base of the number in numString.\n * If this argument is not supplied, strings with a prefix of \'0x\' are considered hexadecimal.\n * All other strings are considered decimal.\n */\ndeclare function parseInt(s: string, radix?: number): number;\n\n/**\n * Converts a string to a floating-point number.\n * @param string A string that contains a floating-point number.\n */\ndeclare function parseFloat(string: string): number;\n\n/**\n * Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number).\n * @param number A numeric value.\n */\ndeclare function isNaN(number: number): boolean;\n\n/**\n * Determines whether a supplied number is finite.\n * @param number Any numeric value.\n */\ndeclare function isFinite(number: number): boolean;\n\n/**\n * Gets the unencoded version of an encoded Uniform Resource Identifier (URI).\n * @param encodedURI A value representing an encoded URI.\n */\ndeclare function decodeURI(encodedURI: string): string;\n\n/**\n * Gets the unencoded version of an encoded component of a Uniform Resource Identifier (URI).\n * @param encodedURIComponent A value representing an encoded URI component.\n */\ndeclare function decodeURIComponent(encodedURIComponent: string): string;\n\n/**\n * Encodes a text string as a valid Uniform Resource Identifier (URI)\n * @param uri A value representing an encoded URI.\n */\ndeclare function encodeURI(uri: string): string;\n\n/**\n * Encodes a text string as a valid component of a Uniform Resource Identifier (URI).\n * @param uriComponent A value representing an encoded URI component.\n */\ndeclare function encodeURIComponent(uriComponent: string): string;\n\ninterface PropertyDescriptor {\n configurable?: boolean;\n enumerable?: boolean;\n value?: any;\n writable?: boolean;\n get?(): any;\n set?(v: any): void;\n}\n\ninterface PropertyDescriptorMap {\n [s: string]: PropertyDescriptor;\n}\n\ninterface Object {\n /** The initial value of Object.prototype.constructor is the standard built-in Object constructor. */\n constructor: Function;\n\n /** Returns a string representation of an object. */\n toString(): string;\n\n /** Returns a date converted to a string using the current locale. */\n toLocaleString(): string;\n\n /** Returns the primitive value of the specified object. */\n valueOf(): Object;\n\n /**\n * Determines whether an object has a property with the specified name.\n * @param v A property name.\n */\n hasOwnProperty(v: string): boolean;\n\n /**\n * Determines whether an object exists in another object\'s prototype chain.\n * @param v Another object whose prototype chain is to be checked.\n */\n isPrototypeOf(v: Object): boolean;\n\n /**\n * Determines whether a specified property is enumerable.\n * @param v A property name.\n */\n propertyIsEnumerable(v: string): boolean;\n}\n\ninterface ObjectConstructor {\n new(value?: any): Object;\n (): any;\n (value: any): any;\n\n /** A reference to the prototype for a class of objects. */\n readonly prototype: Object;\n\n /**\n * Returns the prototype of an object.\n * @param o The object that references the prototype.\n */\n getPrototypeOf(o: any): any;\n\n /**\n * Gets the own property descriptor of the specified object.\n * An own property descriptor is one that is defined directly on the object and is not inherited from the object\'s prototype.\n * @param o Object that contains the property.\n * @param p Name of the property.\n */\n getOwnPropertyDescriptor(o: any, p: string): PropertyDescriptor;\n\n /**\n * Returns the names of the own properties of an object. The own properties of an object are those that are defined directly\n * on that object, and are not inherited from the object\'s prototype. The properties of an object include both fields (objects) and functions.\n * @param o Object that contains the own properties.\n */\n getOwnPropertyNames(o: any): string[];\n\n /**\n * Creates an object that has the specified prototype or that has null prototype.\n * @param o Object to use as a prototype. May be null.\n */\n create(o: object | null): any;\n\n /**\n * Creates an object that has the specified prototype, and that optionally contains specified properties.\n * @param o Object to use as a prototype. May be null\n * @param properties JavaScript object that contains one or more property descriptors.\n */\n create(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;\n\n /**\n * Adds a property to an object, or modifies attributes of an existing property.\n * @param o Object on which to add or modify the property. This can be a native JavaScript object (that is, a user-defined object or a built in object) or a DOM object.\n * @param p The property name.\n * @param attributes Descriptor for the property. It can be for a data property or an accessor property.\n */\n defineProperty(o: any, p: string, attributes: PropertyDescriptor & ThisType<any>): any;\n\n /**\n * Adds one or more properties to an object, and/or modifies attributes of existing properties.\n * @param o Object on which to add or modify the properties. This can be a native JavaScript object or a DOM object.\n * @param properties JavaScript object that contains one or more descriptor objects. Each descriptor object describes a data property or an accessor property.\n */\n defineProperties(o: any, properties: PropertyDescriptorMap & ThisType<any>): any;\n\n /**\n * Prevents the modification of attributes of existing properties, and prevents the addition of new properties.\n * @param o Object on which to lock the attributes.\n */\n seal<T>(o: T): T;\n\n /**\n * Prevents the modification of existing property attributes and values, and prevents the addition of new properties.\n * @param o Object on which to lock the attributes.\n */\n freeze<T>(a: T[]): ReadonlyArray<T>;\n\n /**\n * Prevents the modification of existing property attributes and values, and prevents the addition of new properties.\n * @param o Object on which to lock the attributes.\n */\n freeze<T extends Function>(f: T): T;\n\n /**\n * Prevents the modification of existing property attributes and values, and prevents the addition of new properties.\n * @param o Object on which to lock the attributes.\n */\n freeze<T>(o: T): Readonly<T>;\n\n /**\n * Prevents the addition of new properties to an object.\n * @param o Object to make non-extensible.\n */\n preventExtensions<T>(o: T): T;\n\n /**\n * Returns true if existing property attributes cannot be modified in an object and new properties cannot be added to the object.\n * @param o Object to test.\n */\n isSealed(o: any): boolean;\n\n /**\n * Returns true if existing property attributes and values cannot be modified in an object, and new properties cannot be added to the object.\n * @param o Object to test.\n */\n isFrozen(o: any): boolean;\n\n /**\n * Returns a value that indicates whether new properties can be added to an object.\n * @param o Object to test.\n */\n isExtensible(o: any): boolean;\n\n /**\n * Returns the names of the enumerable properties and methods of an object.\n * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.\n */\n keys(o: any): string[];\n}\n\n/**\n * Provides functionality common to all JavaScript objects.\n */\ndeclare const Object: ObjectConstructor;\n\n/**\n * Creates a new function.\n */\ninterface Function {\n /**\n * Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function.\n * @param thisArg The object to be used as the this object.\n * @param argArray A set of arguments to be passed to the function.\n */\n apply(this: Function, thisArg: any, argArray?: any): any;\n\n /**\n * Calls a method of an object, substituting another object for the current object.\n * @param thisArg The object to be used as the current object.\n * @param argArray A list of arguments to be passed to the method.\n */\n call(this: Function, thisArg: any, ...argArray: any[]): any;\n\n /**\n * For a given function, creates a bound function that has the same body as the original function.\n * The this object of the bound function is associated with the specified object, and has the specified initial parameters.\n * @param thisArg An object to which the this keyword can refer inside the new function.\n * @param argArray A list of arguments to be passed to the new function.\n */\n bind(this: Function, thisArg: any, ...argArray: any[]): any;\n\n /** Returns a string representation of a function. */\n toString(): string;\n\n prototype: any;\n readonly length: number;\n\n // Non-standard extensions\n arguments: any;\n caller: Function;\n}\n\ninterface FunctionConstructor {\n /**\n * Creates a new function.\n * @param args A list of arguments the function accepts.\n */\n new(...args: string[]): Function;\n (...args: string[]): Function;\n readonly prototype: Function;\n}\n\ndeclare const Function: FunctionConstructor;\n\ninterface IArguments {\n [index: number]: any;\n length: number;\n callee: Function;\n}\n\ninterface String {\n /** Returns a string representation of a string. */\n toString(): string;\n\n /**\n * Returns the character at the specified index.\n * @param pos The zero-based index of the desired character.\n */\n charAt(pos: number): string;\n\n /**\n * Returns the Unicode value of the character at the specified location.\n * @param index The zero-based index of the desired character. If there is no character at the specified index, NaN is returned.\n */\n charCodeAt(index: number): number;\n\n /**\n * Returns a string that contains the concatenation of two or more strings.\n * @param strings The strings to append to the end of the string.\n */\n concat(...strings: string[]): string;\n\n /**\n * Returns the position of the first occurrence of a substring.\n * @param searchString The substring to search for in the string\n * @param position The index at which to begin searching the String object. If omitted, search starts at the beginning of the string.\n */\n indexOf(searchString: string, position?: number): number;\n\n /**\n * Returns the last occurrence of a substring in the string.\n * @param searchString The substring to search for.\n * @param position The index at which to begin searching. If omitted, the search begins at the end of the string.\n */\n lastIndexOf(searchString: string, position?: number): number;\n\n /**\n * Determines whether two strings are equivalent in the current locale.\n * @param that String to compare to target string\n */\n localeCompare(that: string): number;\n\n /**\n * Matches a string with a regular expression, and returns an array containing the results of that search.\n * @param regexp A variable name or string literal containing the regular expression pattern and flags.\n */\n match(regexp: string | RegExp): RegExpMatchArray | null;\n\n /**\n * Replaces text in a string, using a regular expression or search string.\n * @param searchValue A string to search for.\n * @param replaceValue A string containing the text to replace for every successful match of searchValue in this string.\n */\n replace(searchValue: string | RegExp, replaceValue: string): string;\n\n /**\n * Replaces text in a string, using a regular expression or search string.\n * @param searchValue A string to search for.\n * @param replacer A function that returns the replacement text.\n */\n replace(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;\n\n /**\n * Finds the first substring match in a regular expression search.\n * @param regexp The regular expression pattern and applicable flags.\n */\n search(regexp: string | RegExp): number;\n\n /**\n * Returns a section of a string.\n * @param start The index to the beginning of the specified portion of stringObj.\n * @param end The index to the end of the specified portion of stringObj. The substring includes the characters up to, but not including, the character indicated by end.\n * If this value is not specified, the substring continues to the end of stringObj.\n */\n slice(start?: number, end?: number): string;\n\n /**\n * Split a string into substrings using the specified separator and return them as an array.\n * @param separator A string that identifies character or characters to use in separating the string. If omitted, a single-element array containing the entire string is returned.\n * @param limit A value used to limit the number of elements returned in the array.\n */\n split(separator: string | RegExp, limit?: number): string[];\n\n /**\n * Returns the substring at the specified location within a String object.\n * @param start The zero-based index number indicating the beginning of the substring.\n * @param end Zero-based index number indicating the end of the substring. The substring includes the characters up to, but not including, the character indicated by end.\n * If end is omitted, the characters from start through the end of the original string are returned.\n */\n substring(start: number, end?: number): string;\n\n /** Converts all the alphabetic characters in a string to lowercase. */\n toLowerCase(): string;\n\n /** Converts all alphabetic characters to lowercase, taking into account the host environment\'s current locale. */\n toLocaleLowerCase(): string;\n\n /** Converts all the alphabetic characters in a string to uppercase. */\n toUpperCase(): string;\n\n /** Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment\'s current locale. */\n toLocaleUpperCase(): string;\n\n /** Removes the leading and trailing white space and line terminator characters from a string. */\n trim(): string;\n\n /** Returns the length of a String object. */\n readonly length: number;\n\n // IE extensions\n /**\n * Gets a substring beginning at the specified location and having the specified length.\n * @param from The starting position of the desired substring. The index of the first character in the string is zero.\n * @param length The number of characters to include in the returned substring.\n */\n substr(from: number, length?: number): string;\n\n /** Returns the primitive value of the specified object. */\n valueOf(): string;\n\n readonly [index: number]: string;\n}\n\ninterface StringConstructor {\n new(value?: any): String;\n (value?: any): string;\n readonly prototype: String;\n fromCharCode(...codes: number[]): string;\n}\n\n/**\n * Allows manipulation and formatting of text strings and determination and location of substrings within strings.\n */\ndeclare const String: StringConstructor;\n\ninterface Boolean {\n /** Returns the primitive value of the specified object. */\n valueOf(): boolean;\n}\n\ninterface BooleanConstructor {\n new(value?: any): Boolean;\n (value?: any): boolean;\n readonly prototype: Boolean;\n}\n\ndeclare const Boolean: BooleanConstructor;\n\ninterface Number {\n /**\n * Returns a string representation of an object.\n * @param radix Specifies a radix for converting numeric values to strings. This value is only used for numbers.\n */\n toString(radix?: number): string;\n\n /**\n * Returns a string representing a number in fixed-point notation.\n * @param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.\n */\n toFixed(fractionDigits?: number): string;\n\n /**\n * Returns a string containing a number represented in exponential notation.\n * @param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20, inclusive.\n */\n toExponential(fractionDigits?: number): string;\n\n /**\n * Returns a string containing a number represented either in exponential or fixed-point notation with a specified number of digits.\n * @param precision Number of significant digits. Must be in the range 1 - 21, inclusive.\n */\n toPrecision(precision?: number): string;\n\n /** Returns the primitive value of the specified object. */\n valueOf(): number;\n}\n\ninterface NumberConstructor {\n new(value?: any): Number;\n (value?: any): number;\n readonly prototype: Number;\n\n /** The largest number that can be represented in JavaScript. Equal to approximately 1.79E+308. */\n readonly MAX_VALUE: number;\n\n /** The closest number to zero that can be represented in JavaScript. Equal to approximately 5.00E-324. */\n readonly MIN_VALUE: number;\n\n /**\n * A value that is not a number.\n * In equality comparisons, NaN does not equal any value, including itself. To test whether a value is equivalent to NaN, use the isNaN function.\n */\n readonly NaN: number;\n\n /**\n * A value that is less than the largest negative number that can be represented in JavaScript.\n * JavaScript displays NEGATIVE_INFINITY values as -infinity.\n */\n readonly NEGATIVE_INFINITY: number;\n\n /**\n * A value greater than the largest number that can be represented in JavaScript.\n * JavaScript displays POSITIVE_INFINITY values as infinity.\n */\n readonly POSITIVE_INFINITY: number;\n}\n\n/** An object that represents a number of any kind. All JavaScript numbers are 64-bit floating-point numbers. */\ndeclare const Number: NumberConstructor;\n\ninterface TemplateStringsArray extends ReadonlyArray<string> {\n readonly raw: ReadonlyArray<string>;\n}\n\ninterface Math {\n /** The mathematical constant e. This is Euler\'s number, the base of natural logarithms. */\n readonly E: number;\n /** The natural logarithm of 10. */\n readonly LN10: number;\n /** The natural logarithm of 2. */\n readonly LN2: number;\n /** The base-2 logarithm of e. */\n readonly LOG2E: number;\n /** The base-10 logarithm of e. */\n readonly LOG10E: number;\n /** Pi. This is the ratio of the circumference of a circle to its diameter. */\n readonly PI: number;\n /** The square root of 0.5, or, equivalently, one divided by the square root of 2. */\n readonly SQRT1_2: number;\n /** The square root of 2. */\n readonly SQRT2: number;\n /**\n * Returns the absolute value of a number (the value without regard to whether it is positive or negative).\n * For example, the absolute value of -5 is the same as the absolute value of 5.\n * @param x A numeric expression for which the absolute value is needed.\n */\n abs(x: number): number;\n /**\n * Returns the arc cosine (or inverse cosine) of a number.\n * @param x A numeric expression.\n */\n acos(x: number): number;\n /**\n * Returns the arcsine of a number.\n * @param x A numeric expression.\n */\n asin(x: number): number;\n /**\n * Returns the arctangent of a number.\n * @param x A numeric expression for which the arctangent is needed.\n */\n atan(x: number): number;\n /**\n * Returns the angle (in radians) from the X axis to a point.\n * @param y A numeric expression representing the cartesian y-coordinate.\n * @param x A numeric expression representing the cartesian x-coordinate.\n */\n atan2(y: number, x: number): number;\n /**\n * Returns the smallest number greater than or equal to its numeric argument.\n * @param x A numeric expression.\n */\n ceil(x: number): number;\n /**\n * Returns the cosine of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n cos(x: number): number;\n /**\n * Returns e (the base of natural logarithms) raised to a power.\n * @param x A numeric expression representing the power of e.\n */\n exp(x: number): number;\n /**\n * Returns the greatest number less than or equal to its numeric argument.\n * @param x A numeric expression.\n */\n floor(x: number): number;\n /**\n * Returns the natural logarithm (base e) of a number.\n * @param x A numeric expression.\n */\n log(x: number): number;\n /**\n * Returns the larger of a set of supplied numeric expressions.\n * @param values Numeric expressions to be evaluated.\n */\n max(...values: number[]): number;\n /**\n * Returns the smaller of a set of supplied numeric expressions.\n * @param values Numeric expressions to be evaluated.\n */\n min(...values: number[]): number;\n /**\n * Returns the value of a base expression taken to a specified power.\n * @param x The base value of the expression.\n * @param y The exponent value of the expression.\n */\n pow(x: number, y: number): number;\n /** Returns a pseudorandom number between 0 and 1. */\n random(): number;\n /**\n * Returns a supplied numeric expression rounded to the nearest number.\n * @param x The value to be rounded to the nearest number.\n */\n round(x: number): number;\n /**\n * Returns the sine of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n sin(x: number): number;\n /**\n * Returns the square root of a number.\n * @param x A numeric expression.\n */\n sqrt(x: number): number;\n /**\n * Returns the tangent of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n tan(x: number): number;\n}\n/** An intrinsic object that provides basic mathematics functionality and constants. */\ndeclare const Math: Math;\n\n/** Enables basic storage and retrieval of dates and times. */\ninterface Date {\n /** Returns a string representation of a date. The format of the string depends on the locale. */\n toString(): string;\n /** Returns a date as a string value. */\n toDateString(): string;\n /** Returns a time as a string value. */\n toTimeString(): string;\n /** Returns a value as a string value appropriate to the host environment\'s current locale. */\n toLocaleString(): string;\n /** Returns a date as a string value appropriate to the host environment\'s current locale. */\n toLocaleDateString(): string;\n /** Returns a time as a string value appropriate to the host environment\'s current locale. */\n toLocaleTimeString(): string;\n /** Returns the stored time value in milliseconds since midnight, January 1, 1970 UTC. */\n valueOf(): number;\n /** Gets the time value in milliseconds. */\n getTime(): number;\n /** Gets the year, using local time. */\n getFullYear(): number;\n /** Gets the year using Universal Coordinated Time (UTC). */\n getUTCFullYear(): number;\n /** Gets the month, using local time. */\n getMonth(): number;\n /** Gets the month of a Date object using Universal Coordinated Time (UTC). */\n getUTCMonth(): number;\n /** Gets the day-of-the-month, using local time. */\n getDate(): number;\n /** Gets the day-of-the-month, using Universal Coordinated Time (UTC). */\n getUTCDate(): number;\n /** Gets the day of the week, using local time. */\n getDay(): number;\n /** Gets the day of the week using Universal Coordinated Time (UTC). */\n getUTCDay(): number;\n /** Gets the hours in a date, using local time. */\n getHours(): number;\n /** Gets the hours value in a Date object using Universal Coordinated Time (UTC). */\n getUTCHours(): number;\n /** Gets the minutes of a Date object, using local time. */\n getMinutes(): number;\n /** Gets the minutes of a Date object using Universal Coordinated Time (UTC). */\n getUTCMinutes(): number;\n /** Gets the seconds of a Date object, using local time. */\n getSeconds(): number;\n /** Gets the seconds of a Date object using Universal Coordinated Time (UTC). */\n getUTCSeconds(): number;\n /** Gets the milliseconds of a Date, using local time. */\n getMilliseconds(): number;\n /** Gets the milliseconds of a Date object using Universal Coordinated Time (UTC). */\n getUTCMilliseconds(): number;\n /** Gets the difference in minutes between the time on the local computer and Universal Coordinated Time (UTC). */\n getTimezoneOffset(): number;\n /**\n * Sets the date and time value in the Date object.\n * @param time A numeric value representing the number of elapsed milliseconds since midnight, January 1, 1970 GMT.\n */\n setTime(time: number): number;\n /**\n * Sets the milliseconds value in the Date object using local time.\n * @param ms A numeric value equal to the millisecond value.\n */\n setMilliseconds(ms: number): number;\n /**\n * Sets the milliseconds value in the Date object using Universal Coordinated Time (UTC).\n * @param ms A numeric value equal to the millisecond value.\n */\n setUTCMilliseconds(ms: number): number;\n\n /**\n * Sets the seconds value in the Date object using local time.\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setSeconds(sec: number, ms?: number): number;\n /**\n * Sets the seconds value in the Date object using Universal Coordinated Time (UTC).\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setUTCSeconds(sec: number, ms?: number): number;\n /**\n * Sets the minutes value in the Date object using local time.\n * @param min A numeric value equal to the minutes value.\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setMinutes(min: number, sec?: number, ms?: number): number;\n /**\n * Sets the minutes value in the Date object using Universal Coordinated Time (UTC).\n * @param min A numeric value equal to the minutes value.\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setUTCMinutes(min: number, sec?: number, ms?: number): number;\n /**\n * Sets the hour value in the Date object using local time.\n * @param hours A numeric value equal to the hours value.\n * @param min A numeric value equal to the minutes value.\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setHours(hours: number, min?: number, sec?: number, ms?: number): number;\n /**\n * Sets the hours value in the Date object using Universal Coordinated Time (UTC).\n * @param hours A numeric value equal to the hours value.\n * @param min A numeric value equal to the minutes value.\n * @param sec A numeric value equal to the seconds value.\n * @param ms A numeric value equal to the milliseconds value.\n */\n setUTCHours(hours: number, min?: number, sec?: number, ms?: number): number;\n /**\n * Sets the numeric day-of-the-month value of the Date object using local time.\n * @param date A numeric value equal to the day of the month.\n */\n setDate(date: number): number;\n /**\n * Sets the numeric day of the month in the Date object using Universal Coordinated Time (UTC).\n * @param date A numeric value equal to the day of the month.\n */\n setUTCDate(date: number): number;\n /**\n * Sets the month value in the Date object using local time.\n * @param month A numeric value equal to the month. The value for January is 0, and other month values follow consecutively.\n * @param date A numeric value representing the day of the month. If this value is not supplied, the value from a call to the getDate method is used.\n */\n setMonth(month: number, date?: number): number;\n /**\n * Sets the month value in the Date object using Universal Coordinated Time (UTC).\n * @param month A numeric value equal to the month. The value for January is 0, and other month values follow consecutively.\n * @param date A numeric value representing the day of the month. If it is not supplied, the value from a call to the getUTCDate method is used.\n */\n setUTCMonth(month: number, date?: number): number;\n /**\n * Sets the year of the Date object using local time.\n * @param year A numeric value for the year.\n * @param month A zero-based numeric value for the month (0 for January, 11 for December). Must be specified if numDate is specified.\n * @param date A numeric value equal for the day of the month.\n */\n setFullYear(year: number, month?: number, date?: number): number;\n /**\n * Sets the year value in the Date object using Universal Coordinated Time (UTC).\n * @param year A numeric value equal to the year.\n * @param month A numeric value equal to the month. The value for January is 0, and other month values follow consecutively. Must be supplied if numDate is supplied.\n * @param date A numeric value equal to the day of the month.\n */\n setUTCFullYear(year: number, month?: number, date?: number): number;\n /** Returns a date converted to a string using Universal Coordinated Time (UTC). */\n toUTCString(): string;\n /** Returns a date as a string value in ISO format. */\n toISOString(): string;\n /** Used by the JSON.stringify method to enable the transformation of an object\'s data for JavaScript Object Notation (JSON) serialization. */\n toJSON(key?: any): string;\n}\n\ninterface DateConstructor {\n new(): Date;\n new(value: number): Date;\n new(value: string): Date;\n new(year: number, month: number, date?: number, hours?: number, minutes?: number, seconds?: number, ms?: number): Date;\n (): string;\n readonly prototype: Date;\n /**\n * Parses a string containing a date, and returns the number of milliseconds between that date and midnight, January 1, 1970.\n * @param s A date string\n */\n parse(s: string): number;\n /**\n * Returns the number of milliseconds between midnight, January 1, 1970 Universal Coordinated Time (UTC) (or GMT) and the specified date.\n * @param year The full year designation is required for cross-century date accuracy. If year is between 0 and 99 is used, then year is assumed to be 1900 + year.\n * @param month The month as an number between 0 and 11 (January to December).\n * @param date The date as an number between 1 and 31.\n * @param hours Must be supplied if minutes is supplied. An number from 0 to 23 (midnight to 11pm) that specifies the hour.\n * @param minutes Must be supplied if seconds is supplied. An number from 0 to 59 that specifies the minutes.\n * @param seconds Must be supplied if milliseconds is supplied. An number from 0 to 59 that specifies the seconds.\n * @param ms An number from 0 to 999 that specifies the milliseconds.\n */\n UTC(year: number, month: number, date?: number, hours?: number, minutes?: number, seconds?: number, ms?: number): number;\n now(): number;\n}\n\ndeclare const Date: DateConstructor;\n\ninterface RegExpMatchArray extends Array<string> {\n index?: number;\n input?: string;\n}\n\ninterface RegExpExecArray extends Array<string> {\n index: number;\n input: string;\n}\n\ninterface RegExp {\n /**\n * Executes a search on a string using a regular expression pattern, and returns an array containing the results of that search.\n * @param string The String object or string literal on which to perform the search.\n */\n exec(string: string): RegExpExecArray | null;\n\n /**\n * Returns a Boolean value that indicates whether or not a pattern exists in a searched string.\n * @param string String on which to perform the search.\n */\n test(string: string): boolean;\n\n /** Returns a copy of the text of the regular expression pattern. Read-only. The regExp argument is a Regular expression object. It can be a variable name or a literal. */\n readonly source: string;\n\n /** Returns a Boolean value indicating the state of the global flag (g) used with a regular expression. Default is false. Read-only. */\n readonly global: boolean;\n\n /** Returns a Boolean value indicating the state of the ignoreCase flag (i) used with a regular expression. Default is false. Read-only. */\n readonly ignoreCase: boolean;\n\n /** Returns a Boolean value indicating the state of the multiline flag (m) used with a regular expression. Default is false. Read-only. */\n readonly multiline: boolean;\n\n lastIndex: number;\n\n // Non-standard extensions\n compile(): this;\n}\n\ninterface RegExpConstructor {\n new(pattern: RegExp | string): RegExp;\n new(pattern: string, flags?: string): RegExp;\n (pattern: RegExp | string): RegExp;\n (pattern: string, flags?: string): RegExp;\n readonly prototype: RegExp;\n\n // Non-standard extensions\n $1: string;\n $2: string;\n $3: string;\n $4: string;\n $5: string;\n $6: string;\n $7: string;\n $8: string;\n $9: string;\n lastMatch: string;\n}\n\ndeclare const RegExp: RegExpConstructor;\n\ninterface Error {\n name: string;\n message: string;\n stack?: string;\n}\n\ninterface ErrorConstructor {\n new(message?: string): Error;\n (message?: string): Error;\n readonly prototype: Error;\n}\n\ndeclare const Error: ErrorConstructor;\n\ninterface EvalError extends Error {\n}\n\ninterface EvalErrorConstructor {\n new(message?: string): EvalError;\n (message?: string): EvalError;\n readonly prototype: EvalError;\n}\n\ndeclare const EvalError: EvalErrorConstructor;\n\ninterface RangeError extends Error {\n}\n\ninterface RangeErrorConstructor {\n new(message?: string): RangeError;\n (message?: string): RangeError;\n readonly prototype: RangeError;\n}\n\ndeclare const RangeError: RangeErrorConstructor;\n\ninterface ReferenceError extends Error {\n}\n\ninterface ReferenceErrorConstructor {\n new(message?: string): ReferenceError;\n (message?: string): ReferenceError;\n readonly prototype: ReferenceError;\n}\n\ndeclare const ReferenceError: ReferenceErrorConstructor;\n\ninterface SyntaxError extends Error {\n}\n\ninterface SyntaxErrorConstructor {\n new(message?: string): SyntaxError;\n (message?: string): SyntaxError;\n readonly prototype: SyntaxError;\n}\n\ndeclare const SyntaxError: SyntaxErrorConstructor;\n\ninterface TypeError extends Error {\n}\n\ninterface TypeErrorConstructor {\n new(message?: string): TypeError;\n (message?: string): TypeError;\n readonly prototype: TypeError;\n}\n\ndeclare const TypeError: TypeErrorConstructor;\n\ninterface URIError extends Error {\n}\n\ninterface URIErrorConstructor {\n new(message?: string): URIError;\n (message?: string): URIError;\n readonly prototype: URIError;\n}\n\ndeclare const URIError: URIErrorConstructor;\n\ninterface JSON {\n /**\n * Converts a JavaScript Object Notation (JSON) string into an object.\n * @param text A valid JSON string.\n * @param reviver A function that transforms the results. This function is called for each member of the object.\n * If a member contains nested objects, the nested objects are transformed before the parent object is.\n */\n parse(text: string, reviver?: (key: any, value: any) => any): any;\n /**\n * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.\n * @param value A JavaScript value, usually an object or array, to be converted.\n * @param replacer A function that transforms the results.\n * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.\n */\n stringify(value: any, replacer?: (key: string, value: any) => any, space?: string | number): string;\n /**\n * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.\n * @param value A JavaScript value, usually an object or array, to be converted.\n * @param replacer An array of strings and numbers that acts as a approved list for selecting the object properties that will be stringified.\n * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.\n */\n stringify(value: any, replacer?: (number | string)[] | null, space?: string | number): string;\n}\n\n/**\n * An intrinsic object that provides functions to convert JavaScript values to and from the JavaScript Object Notation (JSON) format.\n */\ndeclare const JSON: JSON;\n\n\n/////////////////////////////\n/// ECMAScript Array API (specially handled by compiler)\n/////////////////////////////\n\ninterface ReadonlyArray<T> {\n /**\n * Gets the length of the array. This is a number one higher than the highest element defined in an array.\n */\n readonly length: number;\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n /**\n * Returns a string representation of an array. The elements are converted to string using thier toLocalString methods.\n */\n toLocaleString(): string;\n /**\n * Combines two or more arrays.\n * @param items Additional items to add to the end of array1.\n */\n concat(...items: T[][]): T[];\n /**\n * Combines two or more arrays.\n * @param items Additional items to add to the end of array1.\n */\n concat(...items: (T | T[])[]): T[];\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): T[];\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.\n */\n indexOf(searchElement: T, fromIndex?: number): number;\n /**\n * Returns the index of the last occurrence of a specified value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array.\n */\n lastIndexOf(searchElement: T, fromIndex?: number): number;\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls the callbackfn function for each element in array1 until the callbackfn returns false, or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => boolean, thisArg?: any): boolean;\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the callbackfn function for each element in array1 until the callbackfn returns true, or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => boolean, thisArg?: any): boolean;\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => void, thisArg?: any): void;\n /**\n * Calls a defined callback function on each element of an array, and returns an array that contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n map<U>(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => U, thisArg?: any): U[];\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n filter<S extends T>(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => value is S, thisArg?: any): S[];\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => any, thisArg?: any): T[];\n /**\n * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => T, initialValue?: T): T;\n /**\n * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => U, initialValue: U): U;\n /**\n * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => T, initialValue?: T): T;\n /**\n * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => U, initialValue: U): U;\n\n readonly [n: number]: T;\n}\n\ninterface Array<T> {\n /**\n * Gets or sets the length of the array. This is a number one higher than the highest element defined in an array.\n */\n length: number;\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n /**\n * Returns a string representation of an array. The elements are converted to string using thier toLocalString methods.\n */\n toLocaleString(): string;\n /**\n * Appends new elements to an array, and returns the new length of the array.\n * @param items New elements of the Array.\n */\n push(...items: T[]): number;\n /**\n * Removes the last element from an array and returns it.\n */\n pop(): T | undefined;\n /**\n * Combines two or more arrays.\n * @param items Additional items to add to the end of array1.\n */\n concat(...items: T[][]): T[];\n /**\n * Combines two or more arrays.\n * @param items Additional items to add to the end of array1.\n */\n concat(...items: (T | T[])[]): T[];\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n /**\n * Reverses the elements in an Array.\n */\n reverse(): T[];\n /**\n * Removes the first element from an array and returns it.\n */\n shift(): T | undefined;\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): T[];\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: T, b: T) => number): this;\n /**\n * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.\n * @param start The zero-based location in the array from which to start removing elements.\n * @param deleteCount The number of elements to remove.\n */\n splice(start: number, deleteCount?: number): T[];\n /**\n * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.\n * @param start The zero-based location in the array from which to start removing elements.\n * @param deleteCount The number of elements to remove.\n * @param items Elements to insert into the array in place of the deleted elements.\n */\n splice(start: number, deleteCount: number, ...items: T[]): T[];\n /**\n * Inserts new elements at the start of an array.\n * @param items Elements to insert at the start of the Array.\n */\n unshift(...items: T[]): number;\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.\n */\n indexOf(searchElement: T, fromIndex?: number): number;\n /**\n * Returns the index of the last occurrence of a specified value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array.\n */\n lastIndexOf(searchElement: T, fromIndex?: number): number;\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls the callbackfn function for each element in array1 until the callbackfn returns false, or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: any): boolean;\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the callbackfn function for each element in array1 until the callbackfn returns true, or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: any): boolean;\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any): void;\n /**\n * Calls a defined callback function on each element of an array, and returns an array that contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[];\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n filter<S extends T>(callbackfn: (value: T, index: number, array: T[]) => value is S, thisArg?: any): S[];\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: T, index: number, array: T[]) => any, thisArg?: any): T[];\n /**\n * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T;\n /**\n * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;\n /**\n * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T;\n /**\n * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;\n\n [n: number]: T;\n}\n\ninterface ArrayConstructor {\n new(arrayLength?: number): any[];\n new <T>(arrayLength: number): T[];\n new <T>(...items: T[]): T[];\n (arrayLength?: number): any[];\n <T>(arrayLength: number): T[];\n <T>(...items: T[]): T[];\n isArray(arg: any): arg is Array<any>;\n readonly prototype: Array<any>;\n}\n\ndeclare const Array: ArrayConstructor;\n\ninterface TypedPropertyDescriptor<T> {\n enumerable?: boolean;\n configurable?: boolean;\n writable?: boolean;\n value?: T;\n get?: () => T;\n set?: (value: T) => void;\n}\n\ndeclare type ClassDecorator = <TFunction extends Function>(target: TFunction) => TFunction | void;\ndeclare type PropertyDecorator = (target: Object, propertyKey: string | symbol) => void;\ndeclare type MethodDecorator = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;\ndeclare type ParameterDecorator = (target: Object, propertyKey: string | symbol, parameterIndex: number) => void;\n\ndeclare type PromiseConstructorLike = new <T>(executor: (resolve: (value?: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void) => PromiseLike<T>;\n\ninterface PromiseLike<T> {\n /**\n * Attaches callbacks for the resolution and/or rejection of the Promise.\n * @param onfulfilled The callback to execute when the Promise is resolved.\n * @param onrejected The callback to execute when the Promise is rejected.\n * @returns A Promise for the completion of which ever callback is executed.\n */\n then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): PromiseLike<TResult1 | TResult2>;\n}\n\n/**\n * Represents the completion of an asynchronous operation\n */\ninterface Promise<T> {\n /**\n * Attaches callbacks for the resolution and/or rejection of the Promise.\n * @param onfulfilled The callback to execute when the Promise is resolved.\n * @param onrejected The callback to execute when the Promise is rejected.\n * @returns A Promise for the completion of which ever callback is executed.\n */\n then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): Promise<TResult1 | TResult2>;\n\n /**\n * Attaches a callback for only the rejection of the Promise.\n * @param onrejected The callback to execute when the Promise is rejected.\n * @returns A Promise for the completion of the callback.\n */\n catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): Promise<T | TResult>;\n}\n\ninterface ArrayLike<T> {\n readonly length: number;\n readonly [n: number]: T;\n}\n\n/**\n * Make all properties in T optional\n */\ntype Partial<T> = {\n [P in keyof T]?: T[P];\n};\n\n/**\n * Make all properties in T readonly\n */\ntype Readonly<T> = {\n readonly [P in keyof T]: T[P];\n};\n\n/**\n * From T pick a set of properties K\n */\ntype Pick<T, K extends keyof T> = {\n [P in K]: T[P];\n};\n\n/**\n * Construct a type with a set of properties K of type T\n */\ntype Record<K extends string, T> = {\n [P in K]: T;\n};\n\n/**\n * Marker for contextual \'this\' type\n */\ninterface ThisType<T> { }\n\n/**\n * Represents a raw buffer of binary data, which is used to store data for the\n * different typed arrays. ArrayBuffers cannot be read from or written to directly,\n * but can be passed to a typed array or DataView Object to interpret the raw\n * buffer as needed.\n */\ninterface ArrayBuffer {\n /**\n * Read-only. The length of the ArrayBuffer (in bytes).\n */\n readonly byteLength: number;\n\n /**\n * Returns a section of an ArrayBuffer.\n */\n slice(begin: number, end?: number): ArrayBuffer;\n}\n\n/**\n * Allowed ArrayBuffer types for the buffer of an ArrayBufferView and related Typed Arrays.\n */\ninterface ArrayBufferTypes {\n ArrayBuffer: ArrayBuffer;\n}\ntype ArrayBufferLike = ArrayBufferTypes[keyof ArrayBufferTypes];\n\ninterface ArrayBufferConstructor {\n readonly prototype: ArrayBuffer;\n new(byteLength: number): ArrayBuffer;\n isView(arg: any): arg is ArrayBufferView;\n}\ndeclare const ArrayBuffer: ArrayBufferConstructor;\n\ninterface ArrayBufferView {\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n byteOffset: number;\n}\n\ninterface DataView {\n readonly buffer: ArrayBuffer;\n readonly byteLength: number;\n readonly byteOffset: number;\n /**\n * Gets the Float32 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getFloat32(byteOffset: number, littleEndian?: boolean): number;\n\n /**\n * Gets the Float64 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getFloat64(byteOffset: number, littleEndian?: boolean): number;\n\n /**\n * Gets the Int8 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getInt8(byteOffset: number): number;\n\n /**\n * Gets the Int16 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getInt16(byteOffset: number, littleEndian?: boolean): number;\n /**\n * Gets the Int32 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getInt32(byteOffset: number, littleEndian?: boolean): number;\n\n /**\n * Gets the Uint8 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getUint8(byteOffset: number): number;\n\n /**\n * Gets the Uint16 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getUint16(byteOffset: number, littleEndian?: boolean): number;\n\n /**\n * Gets the Uint32 value at the specified byte offset from the start of the view. There is\n * no alignment constraint; multi-byte values may be fetched from any offset.\n * @param byteOffset The place in the buffer at which the value should be retrieved.\n */\n getUint32(byteOffset: number, littleEndian?: boolean): number;\n\n /**\n * Stores an Float32 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setFloat32(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n /**\n * Stores an Float64 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setFloat64(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n /**\n * Stores an Int8 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n */\n setInt8(byteOffset: number, value: number): void;\n\n /**\n * Stores an Int16 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setInt16(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n /**\n * Stores an Int32 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setInt32(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n /**\n * Stores an Uint8 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n */\n setUint8(byteOffset: number, value: number): void;\n\n /**\n * Stores an Uint16 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setUint16(byteOffset: number, value: number, littleEndian?: boolean): void;\n\n /**\n * Stores an Uint32 value at the specified byte offset from the start of the view.\n * @param byteOffset The place in the buffer at which the value should be set.\n * @param value The value to set.\n * @param littleEndian If false or undefined, a big-endian value should be written,\n * otherwise a little-endian value should be written.\n */\n setUint32(byteOffset: number, value: number, littleEndian?: boolean): void;\n}\n\ninterface DataViewConstructor {\n new(buffer: ArrayBufferLike, byteOffset?: number, byteLength?: number): DataView;\n}\ndeclare const DataView: DataViewConstructor;\n\n/**\n * A typed array of 8-bit integer values. The contents are initialized to 0. If the requested\n * number of bytes could not be allocated an exception is raised.\n */\ninterface Int8Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Int8Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Int8Array) => any, thisArg?: any): Int8Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Int8Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Int8Array) => number, thisArg?: any): Int8Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int8Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int8Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int8Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int8Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Int8Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Int8Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Int8Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Int8Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Int8Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\ninterface Int8ArrayConstructor {\n readonly prototype: Int8Array;\n new(length: number): Int8Array;\n new(array: ArrayLike<number>): Int8Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int8Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Int8Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int8Array;\n\n\n}\ndeclare const Int8Array: Int8ArrayConstructor;\n\n/**\n * A typed array of 8-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint8Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Uint8Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Uint8Array) => any, thisArg?: any): Uint8Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Uint8Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Uint8Array) => number, thisArg?: any): Uint8Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint8Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint8Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint8Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint8Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Uint8Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Uint8Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Uint8Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Uint8Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Uint8Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Uint8ArrayConstructor {\n readonly prototype: Uint8Array;\n new(length: number): Uint8Array;\n new(array: ArrayLike<number>): Uint8Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint8Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Uint8Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint8Array;\n\n}\ndeclare const Uint8Array: Uint8ArrayConstructor;\n\n/**\n * A typed array of 8-bit unsigned integer (clamped) values. The contents are initialized to 0.\n * If the requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint8ClampedArray {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => any, thisArg?: any): Uint8ClampedArray;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Uint8ClampedArray) => number, thisArg?: any): Uint8ClampedArray;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint8ClampedArray) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint8ClampedArray) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint8ClampedArray) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint8ClampedArray) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Uint8ClampedArray;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Uint8ClampedArray;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Uint8ClampedArray view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Uint8ClampedArray;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Uint8ClampedArrayConstructor {\n readonly prototype: Uint8ClampedArray;\n new(length: number): Uint8ClampedArray;\n new(array: ArrayLike<number>): Uint8ClampedArray;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint8ClampedArray;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Uint8ClampedArray;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint8ClampedArray;\n}\ndeclare const Uint8ClampedArray: Uint8ClampedArrayConstructor;\n\n/**\n * A typed array of 16-bit signed integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Int16Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Int16Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (this: void, value: number, index: number, array: Int16Array) => any, thisArg?: any): Int16Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Int16Array) => void, thisArg?: any): void;\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Int16Array) => number, thisArg?: any): Int16Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int16Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int16Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int16Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int16Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Int16Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Int16Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Int16Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Int16Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Int16Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Int16ArrayConstructor {\n readonly prototype: Int16Array;\n new(length: number): Int16Array;\n new(array: ArrayLike<number>): Int16Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int16Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Int16Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int16Array;\n\n\n}\ndeclare const Int16Array: Int16ArrayConstructor;\n\n/**\n * A typed array of 16-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint16Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Uint16Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Uint16Array) => any, thisArg?: any): Uint16Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Uint16Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Uint16Array) => number, thisArg?: any): Uint16Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint16Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint16Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint16Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint16Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Uint16Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Uint16Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Uint16Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Uint16Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Uint16Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Uint16ArrayConstructor {\n readonly prototype: Uint16Array;\n new(length: number): Uint16Array;\n new(array: ArrayLike<number>): Uint16Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint16Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Uint16Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint16Array;\n\n\n}\ndeclare const Uint16Array: Uint16ArrayConstructor;\n/**\n * A typed array of 32-bit signed integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Int32Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Int32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Int32Array) => any, thisArg?: any): Int32Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Int32Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (value: number, index: number, array: Int32Array) => number, thisArg?: any): Int32Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int32Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Int32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Int32Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Int32Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Int32Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Int32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Int32Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Int32Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Int32ArrayConstructor {\n readonly prototype: Int32Array;\n new(length: number): Int32Array;\n new(array: ArrayLike<number>): Int32Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int32Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Int32Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Int32Array;\n\n}\ndeclare const Int32Array: Int32ArrayConstructor;\n\n/**\n * A typed array of 32-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint32Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Uint32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Uint32Array) => any, thisArg?: any): Uint32Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Uint32Array) => void, thisArg?: any): void;\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Uint32Array) => number, thisArg?: any): Uint32Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint32Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Uint32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Uint32Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Uint32Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Uint32Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Uint32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Uint32Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Uint32Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Uint32ArrayConstructor {\n readonly prototype: Uint32Array;\n new(length: number): Uint32Array;\n new(array: ArrayLike<number>): Uint32Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint32Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Uint32Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Uint32Array;\n\n}\ndeclare const Uint32Array: Uint32ArrayConstructor;\n\n/**\n * A typed array of 32-bit float values. The contents are initialized to 0. If the requested number\n * of bytes could not be allocated an exception is raised.\n */\ninterface Float32Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Float32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Float32Array) => any, thisArg?: any): Float32Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Float32Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Float32Array) => number, thisArg?: any): Float32Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Float32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Float32Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Float32Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Float32Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Float32Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Float32Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Float32Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Float32Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Float32Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Float32ArrayConstructor {\n readonly prototype: Float32Array;\n new(length: number): Float32Array;\n new(array: ArrayLike<number>): Float32Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Float32Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Float32Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Float32Array;\n\n\n}\ndeclare const Float32Array: Float32ArrayConstructor;\n\n/**\n * A typed array of 64-bit float values. The contents are initialized to 0. If the requested\n * number of bytes could not be allocated an exception is raised.\n */\ninterface Float64Array {\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * The ArrayBuffer instance referenced by the array.\n */\n readonly buffer: ArrayBufferLike;\n\n /**\n * The length in bytes of the array.\n */\n readonly byteLength: number;\n\n /**\n * The offset in bytes of the array.\n */\n readonly byteOffset: number;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n\n /**\n * Determines whether all the members of an array satisfy the specified test.\n * @param callbackfn A function that accepts up to three arguments. The every method calls\n * the callbackfn function for each element in array1 until the callbackfn returns false,\n * or until the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n every(callbackfn: (value: number, index: number, array: Float64Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: number, start?: number, end?: number): this;\n\n /**\n * Returns the elements of an array that meet the condition specified in a callback function.\n * @param callbackfn A function that accepts up to three arguments. The filter method calls\n * the callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n filter(callbackfn: (value: number, index: number, array: Float64Array) => any, thisArg?: any): Float64Array;\n\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (value: number, index: number, obj: Array<number>) => boolean, thisArg?: any): number;\n\n /**\n * Performs the specified action for each element in an array.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: number, index: number, array: Float64Array) => void, thisArg?: any): void;\n\n /**\n * Returns the index of the first occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n indexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * Adds all the elements of an array separated by the specified separator string.\n * @param separator A string used to separate one element of an array from the next in the\n * resulting String. If omitted, the array elements are separated with a comma.\n */\n join(separator?: string): string;\n\n /**\n * Returns the index of the last occurrence of a value in an array.\n * @param searchElement The value to locate in the array.\n * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the\n * search starts at index 0.\n */\n lastIndexOf(searchElement: number, fromIndex?: number): number;\n\n /**\n * The length of the array.\n */\n readonly length: number;\n\n /**\n * Calls a defined callback function on each element of an array, and returns an array that\n * contains the results.\n * @param callbackfn A function that accepts up to three arguments. The map method calls the\n * callbackfn function one time for each element in the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n map(callbackfn: (this: void, value: number, index: number, array: Float64Array) => number, thisArg?: any): Float64Array;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Float64Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array. The return value of\n * the callback function is the accumulated result, and is provided as an argument in the next\n * call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduce method calls the\n * callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduce<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Float64Array) => U, initialValue: U): U;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an\n * argument instead of an array value.\n */\n reduceRight(callbackfn: (previousValue: number, currentValue: number, currentIndex: number, array: Float64Array) => number, initialValue?: number): number;\n\n /**\n * Calls the specified callback function for all the elements in an array, in descending order.\n * The return value of the callback function is the accumulated result, and is provided as an\n * argument in the next call to the callback function.\n * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls\n * the callbackfn function one time for each element in the array.\n * @param initialValue If initialValue is specified, it is used as the initial value to start\n * the accumulation. The first call to the callbackfn function provides this value as an argument\n * instead of an array value.\n */\n reduceRight<U>(callbackfn: (previousValue: U, currentValue: number, currentIndex: number, array: Float64Array) => U, initialValue: U): U;\n\n /**\n * Reverses the elements in an Array.\n */\n reverse(): Float64Array;\n\n /**\n * Sets a value or an array of values.\n * @param array A typed or untyped array of values to set.\n * @param offset The index in the current array at which the values are to be written.\n */\n set(array: ArrayLike<number>, offset?: number): void;\n\n /**\n * Returns a section of an array.\n * @param start The beginning of the specified portion of the array.\n * @param end The end of the specified portion of the array.\n */\n slice(start?: number, end?: number): Float64Array;\n\n /**\n * Determines whether the specified callback function returns true for any element of an array.\n * @param callbackfn A function that accepts up to three arguments. The some method calls the\n * callbackfn function for each element in array1 until the callbackfn returns true, or until\n * the end of the array.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function.\n * If thisArg is omitted, undefined is used as the this value.\n */\n some(callbackfn: (value: number, index: number, array: Float64Array) => boolean, thisArg?: any): boolean;\n\n /**\n * Sorts an array.\n * @param compareFn The name of the function used to determine the order of the elements. If\n * omitted, the elements are sorted in ascending, ASCII character order.\n */\n sort(compareFn?: (a: number, b: number) => number): this;\n\n /**\n * Gets a new Float64Array view of the ArrayBuffer store for this array, referencing the elements\n * at begin, inclusive, up to end, exclusive.\n * @param begin The index of the beginning of the array.\n * @param end The index of the end of the array.\n */\n subarray(begin: number, end?: number): Float64Array;\n\n /**\n * Converts a number to a string by using the current locale.\n */\n toLocaleString(): string;\n\n /**\n * Returns a string representation of an array.\n */\n toString(): string;\n\n [index: number]: number;\n}\n\ninterface Float64ArrayConstructor {\n readonly prototype: Float64Array;\n new(length: number): Float64Array;\n new(array: ArrayLike<number>): Float64Array;\n new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Float64Array;\n\n /**\n * The size in bytes of each element in the array.\n */\n readonly BYTES_PER_ELEMENT: number;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of(...items: number[]): Float64Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: ArrayLike<number>, mapfn?: (v: number, k: number) => number, thisArg?: any): Float64Array;\n\n}\ndeclare const Float64Array: Float64ArrayConstructor;\n\n/////////////////////////////\n/// ECMAScript Internationalization API\n/////////////////////////////\n\ndeclare namespace Intl {\n interface CollatorOptions {\n usage?: string;\n localeMatcher?: string;\n numeric?: boolean;\n caseFirst?: string;\n sensitivity?: string;\n ignorePunctuation?: boolean;\n }\n\n interface ResolvedCollatorOptions {\n locale: string;\n usage: string;\n sensitivity: string;\n ignorePunctuation: boolean;\n collation: string;\n caseFirst: string;\n numeric: boolean;\n }\n\n interface Collator {\n compare(x: string, y: string): number;\n resolvedOptions(): ResolvedCollatorOptions;\n }\n var Collator: {\n new(locales?: string | string[], options?: CollatorOptions): Collator;\n (locales?: string | string[], options?: CollatorOptions): Collator;\n supportedLocalesOf(locales: string | string[], options?: CollatorOptions): string[];\n };\n\n interface NumberFormatOptions {\n localeMatcher?: string;\n style?: string;\n currency?: string;\n currencyDisplay?: string;\n useGrouping?: boolean;\n minimumIntegerDigits?: number;\n minimumFractionDigits?: number;\n maximumFractionDigits?: number;\n minimumSignificantDigits?: number;\n maximumSignificantDigits?: number;\n }\n\n interface ResolvedNumberFormatOptions {\n locale: string;\n numberingSystem: string;\n style: string;\n currency?: string;\n currencyDisplay?: string;\n minimumIntegerDigits: number;\n minimumFractionDigits: number;\n maximumFractionDigits: number;\n minimumSignificantDigits?: number;\n maximumSignificantDigits?: number;\n useGrouping: boolean;\n }\n\n interface NumberFormat {\n format(value: number): string;\n resolvedOptions(): ResolvedNumberFormatOptions;\n }\n var NumberFormat: {\n new(locales?: string | string[], options?: NumberFormatOptions): NumberFormat;\n (locales?: string | string[], options?: NumberFormatOptions): NumberFormat;\n supportedLocalesOf(locales: string | string[], options?: NumberFormatOptions): string[];\n };\n\n interface DateTimeFormatOptions {\n localeMatcher?: string;\n weekday?: string;\n era?: string;\n year?: string;\n month?: string;\n day?: string;\n hour?: string;\n minute?: string;\n second?: string;\n timeZoneName?: string;\n formatMatcher?: string;\n hour12?: boolean;\n timeZone?: string;\n }\n\n interface ResolvedDateTimeFormatOptions {\n locale: string;\n calendar: string;\n numberingSystem: string;\n timeZone: string;\n hour12?: boolean;\n weekday?: string;\n era?: string;\n year?: string;\n month?: string;\n day?: string;\n hour?: string;\n minute?: string;\n second?: string;\n timeZoneName?: string;\n }\n\n interface DateTimeFormat {\n format(date?: Date | number): string;\n resolvedOptions(): ResolvedDateTimeFormatOptions;\n }\n var DateTimeFormat: {\n new(locales?: string | string[], options?: DateTimeFormatOptions): DateTimeFormat;\n (locales?: string | string[], options?: DateTimeFormatOptions): DateTimeFormat;\n supportedLocalesOf(locales: string | string[], options?: DateTimeFormatOptions): string[];\n };\n}\n\ninterface String {\n /**\n * Determines whether two strings are equivalent in the current or specified locale.\n * @param that String to compare to target string\n * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used. This parameter must conform to BCP 47 standards; see the Intl.Collator object for details.\n * @param options An object that contains one or more properties that specify comparison options. see the Intl.Collator object for details.\n */\n localeCompare(that: string, locales?: string | string[], options?: Intl.CollatorOptions): number;\n}\n\ninterface Number {\n /**\n * Converts a number to a string by using the current or specified locale.\n * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n * @param options An object that contains one or more properties that specify comparison options.\n */\n toLocaleString(locales?: string | string[], options?: Intl.NumberFormatOptions): string;\n}\n\ninterface Date {\n /**\n * Converts a date and time to a string by using the current or specified locale.\n * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n * @param options An object that contains one or more properties that specify comparison options.\n */\n toLocaleString(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;\n /**\n * Converts a date to a string by using the current or specified locale.\n * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n * @param options An object that contains one or more properties that specify comparison options.\n */\n toLocaleDateString(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;\n\n /**\n * Converts a time to a string by using the current or specified locale.\n * @param locales A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.\n * @param options An object that contains one or more properties that specify comparison options.\n */\n toLocaleTimeString(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string;\n}\n\n\ndeclare type PropertyKey = string | number | symbol;\n\ninterface Array<T> {\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (this: void, value: T, index: number, obj: Array<T>) => boolean): T | undefined;\n find(predicate: (this: void, value: T, index: number, obj: Array<T>) => boolean, thisArg: undefined): T | undefined;\n find<Z>(predicate: (this: Z, value: T, index: number, obj: Array<T>) => boolean, thisArg: Z): T | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (this: void, value: T, index: number, obj: Array<T>) => boolean): number;\n findIndex(predicate: (this: void, value: T, index: number, obj: Array<T>) => boolean, thisArg: undefined): number;\n findIndex<Z>(predicate: (this: Z, value: T, index: number, obj: Array<T>) => boolean, thisArg: Z): number;\n\n /**\n * Returns the this object after filling the section identified by start and end with value\n * @param value value to fill array section with\n * @param start index to start filling the array at. If start is negative, it is treated as\n * length+start where length is the length of the array.\n * @param end index to stop filling the array at. If end is negative, it is treated as\n * length+end.\n */\n fill(value: T, start?: number, end?: number): this;\n\n /**\n * Returns the this object after copying a section of the array identified by start and end\n * to the same array starting at position target\n * @param target If target is negative, it is treated as length+target where length is the\n * length of the array.\n * @param start If start is negative, it is treated as length+start. If end is negative, it\n * is treated as length+end.\n * @param end If not specified, length of the this object is used as its default value.\n */\n copyWithin(target: number, start: number, end?: number): this;\n}\n\ninterface ArrayConstructor {\n /**\n * Creates an array from an array-like object.\n * @param arrayLike An array-like object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from<T, U>(arrayLike: ArrayLike<T>, mapfn: (this: void, v: T, k: number) => U): Array<U>;\n from<T, U>(arrayLike: ArrayLike<T>, mapfn: (this: void, v: T, k: number) => U, thisArg: undefined): Array<U>;\n from<Z, T, U>(arrayLike: ArrayLike<T>, mapfn: (this: Z, v: T, k: number) => U, thisArg: Z): Array<U>;\n\n\n /**\n * Creates an array from an array-like object.\n * @param arrayLike An array-like object to convert to an array.\n */\n from<T>(arrayLike: ArrayLike<T>): Array<T>;\n\n /**\n * Returns a new array from a set of elements.\n * @param items A set of elements to include in the new array object.\n */\n of<T>(...items: T[]): Array<T>;\n}\n\ninterface DateConstructor {\n new (value: Date): Date;\n}\n\ninterface Function {\n /**\n * Returns the name of the function. Function names are read-only and can not be changed.\n */\n readonly name: string;\n}\n\ninterface Math {\n /**\n * Returns the number of leading zero bits in the 32-bit binary representation of a number.\n * @param x A numeric expression.\n */\n clz32(x: number): number;\n\n /**\n * Returns the result of 32-bit multiplication of two numbers.\n * @param x First number\n * @param y Second number\n */\n imul(x: number, y: number): number;\n\n /**\n * Returns the sign of the x, indicating whether x is positive, negative or zero.\n * @param x The numeric expression to test\n */\n sign(x: number): number;\n\n /**\n * Returns the base 10 logarithm of a number.\n * @param x A numeric expression.\n */\n log10(x: number): number;\n\n /**\n * Returns the base 2 logarithm of a number.\n * @param x A numeric expression.\n */\n log2(x: number): number;\n\n /**\n * Returns the natural logarithm of 1 + x.\n * @param x A numeric expression.\n */\n log1p(x: number): number;\n\n /**\n * Returns the result of (e^x - 1) of x (e raised to the power of x, where e is the base of\n * the natural logarithms).\n * @param x A numeric expression.\n */\n expm1(x: number): number;\n\n /**\n * Returns the hyperbolic cosine of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n cosh(x: number): number;\n\n /**\n * Returns the hyperbolic sine of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n sinh(x: number): number;\n\n /**\n * Returns the hyperbolic tangent of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n tanh(x: number): number;\n\n /**\n * Returns the inverse hyperbolic cosine of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n acosh(x: number): number;\n\n /**\n * Returns the inverse hyperbolic sine of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n asinh(x: number): number;\n\n /**\n * Returns the inverse hyperbolic tangent of a number.\n * @param x A numeric expression that contains an angle measured in radians.\n */\n atanh(x: number): number;\n\n /**\n * Returns the square root of the sum of squares of its arguments.\n * @param values Values to compute the square root for.\n * If no arguments are passed, the result is +0.\n * If there is only one argument, the result is the absolute value.\n * If any argument is +Infinity or -Infinity, the result is +Infinity.\n * If any argument is NaN, the result is NaN.\n * If all arguments are either +0 or â0, the result is +0.\n */\n hypot(...values: number[] ): number;\n\n /**\n * Returns the integral part of the a numeric expression, x, removing any fractional digits.\n * If x is already an integer, the result is x.\n * @param x A numeric expression.\n */\n trunc(x: number): number;\n\n /**\n * Returns the nearest single precision float representation of a number.\n * @param x A numeric expression.\n */\n fround(x: number): number;\n\n /**\n * Returns an implementation-dependent approximation to the cube root of number.\n * @param x A numeric expression.\n */\n cbrt(x: number): number;\n}\n\ninterface NumberConstructor {\n /**\n * The value of Number.EPSILON is the difference between 1 and the smallest value greater than 1\n * that is representable as a Number value, which is approximately:\n * 2.2204460492503130808472633361816 x 10âââ16.\n */\n readonly EPSILON: number;\n\n /**\n * Returns true if passed value is finite.\n * Unlike the global isFinite, Number.isFinite doesn\'t forcibly convert the parameter to a\n * number. Only finite values of the type number, result in true.\n * @param number A numeric value.\n */\n isFinite(number: number): boolean;\n\n /**\n * Returns true if the value passed is an integer, false otherwise.\n * @param number A numeric value.\n */\n isInteger(number: number): boolean;\n\n /**\n * Returns a Boolean value that indicates whether a value is the reserved value NaN (not a\n * number). Unlike the global isNaN(), Number.isNaN() doesn\'t forcefully convert the parameter\n * to a number. Only values of the type number, that are also NaN, result in true.\n * @param number A numeric value.\n */\n isNaN(number: number): boolean;\n\n /**\n * Returns true if the value passed is a safe integer.\n * @param number A numeric value.\n */\n isSafeInteger(number: number): boolean;\n\n /**\n * The value of the largest integer n such that n and n + 1 are both exactly representable as\n * a Number value.\n * The value of Number.MAX_SAFE_INTEGER is 9007199254740991 2^53 â 1.\n */\n readonly MAX_SAFE_INTEGER: number;\n\n /**\n * The value of the smallest integer n such that n and n â 1 are both exactly representable as\n * a Number value.\n * The value of Number.MIN_SAFE_INTEGER is â9007199254740991 (â(2^53 â 1)).\n */\n readonly MIN_SAFE_INTEGER: number;\n\n /**\n * Converts a string to a floating-point number.\n * @param string A string that contains a floating-point number.\n */\n parseFloat(string: string): number;\n\n /**\n * Converts A string to an integer.\n * @param s A string to convert into a number.\n * @param radix A value between 2 and 36 that specifies the base of the number in numString.\n * If this argument is not supplied, strings with a prefix of \'0x\' are considered hexadecimal.\n * All other strings are considered decimal.\n */\n parseInt(string: string, radix?: number): number;\n}\n\ninterface Object {\n /**\n * Determines whether an object has a property with the specified name.\n * @param v A property name.\n */\n hasOwnProperty(v: PropertyKey): boolean;\n\n /**\n * Determines whether a specified property is enumerable.\n * @param v A property name.\n */\n propertyIsEnumerable(v: PropertyKey): boolean;\n}\n\ninterface ObjectConstructor {\n /**\n * Copy the values of all of the enumerable own properties from one or more source objects to a\n * target object. Returns the target object.\n * @param target The target object to copy to.\n * @param source The source object from which to copy properties.\n */\n assign<T, U>(target: T, source: U): T & U;\n\n /**\n * Copy the values of all of the enumerable own properties from one or more source objects to a\n * target object. Returns the target object.\n * @param target The target object to copy to.\n * @param source1 The first source object from which to copy properties.\n * @param source2 The second source object from which to copy properties.\n */\n assign<T, U, V>(target: T, source1: U, source2: V): T & U & V;\n\n /**\n * Copy the values of all of the enumerable own properties from one or more source objects to a\n * target object. Returns the target object.\n * @param target The target object to copy to.\n * @param source1 The first source object from which to copy properties.\n * @param source2 The second source object from which to copy properties.\n * @param source3 The third source object from which to copy properties.\n */\n assign<T, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;\n\n /**\n * Copy the values of all of the enumerable own properties from one or more source objects to a\n * target object. Returns the target object.\n * @param target The target object to copy to.\n * @param sources One or more source objects from which to copy properties\n */\n assign(target: object, ...sources: any[]): any;\n\n /**\n * Returns an array of all symbol properties found directly on object o.\n * @param o Object to retrieve the symbols from.\n */\n getOwnPropertySymbols(o: any): symbol[];\n\n /**\n * Returns true if the values are the same value, false otherwise.\n * @param value1 The first value.\n * @param value2 The second value.\n */\n is(value1: any, value2: any): boolean;\n\n /**\n * Sets the prototype of a specified object o to object proto or null. Returns the object o.\n * @param o The object to change its prototype.\n * @param proto The value of the new prototype or null.\n */\n setPrototypeOf(o: any, proto: object | null): any;\n\n /**\n * Gets the own property descriptor of the specified object.\n * An own property descriptor is one that is defined directly on the object and is not\n * inherited from the object\'s prototype.\n * @param o Object that contains the property.\n * @param p Name of the property.\n */\n getOwnPropertyDescriptor(o: any, propertyKey: PropertyKey): PropertyDescriptor;\n\n /**\n * Adds a property to an object, or modifies attributes of an existing property.\n * @param o Object on which to add or modify the property. This can be a native JavaScript\n * object (that is, a user-defined object or a built in object) or a DOM object.\n * @param p The property name.\n * @param attributes Descriptor for the property. It can be for a data property or an accessor\n * property.\n */\n defineProperty(o: any, propertyKey: PropertyKey, attributes: PropertyDescriptor): any;\n}\n\ninterface ReadonlyArray<T> {\n /**\n * Returns the value of the first element in the array where predicate is true, and undefined\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found, find\n * immediately returns that element value. Otherwise, find returns undefined.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n find(predicate: (this: void, value: T, index: number, obj: ReadonlyArray<T>) => boolean): T | undefined;\n find(predicate: (this: void, value: T, index: number, obj: ReadonlyArray<T>) => boolean, thisArg: undefined): T | undefined;\n find<Z>(predicate: (this: Z, value: T, index: number, obj: ReadonlyArray<T>) => boolean, thisArg: Z): T | undefined;\n\n /**\n * Returns the index of the first element in the array where predicate is true, and -1\n * otherwise.\n * @param predicate find calls predicate once for each element of the array, in ascending\n * order, until it finds one where predicate returns true. If such an element is found,\n * findIndex immediately returns that element index. Otherwise, findIndex returns -1.\n * @param thisArg If provided, it will be used as the this value for each invocation of\n * predicate. If it is not provided, undefined is used instead.\n */\n findIndex(predicate: (this: void, value: T, index: number, obj: Array<T>) => boolean): number;\n findIndex(predicate: (this: void, value: T, index: number, obj: Array<T>) => boolean, thisArg: undefined): number;\n findIndex<Z>(predicate: (this: Z, value: T, index: number, obj: Array<T>) => boolean, thisArg: Z): number;\n}\n\ninterface RegExp {\n /**\n * Returns a string indicating the flags of the regular expression in question. This field is read-only.\n * The characters in this string are sequenced and concatenated in the following order:\n *\n * - "g" for global\n * - "i" for ignoreCase\n * - "m" for multiline\n * - "u" for unicode\n * - "y" for sticky\n *\n * If no flags are set, the value is the empty string.\n */\n readonly flags: string;\n\n /**\n * Returns a Boolean value indicating the state of the sticky flag (y) used with a regular\n * expression. Default is false. Read-only.\n */\n readonly sticky: boolean;\n\n /**\n * Returns a Boolean value indicating the state of the Unicode flag (u) used with a regular\n * expression. Default is false. Read-only.\n */\n readonly unicode: boolean;\n}\n\ninterface RegExpConstructor {\n new (pattern: RegExp, flags?: string): RegExp;\n (pattern: RegExp, flags?: string): RegExp;\n}\n\ninterface String {\n /**\n * Returns a nonnegative integer Number less than 1114112 (0x110000) that is the code point\n * value of the UTF-16 encoded code point starting at the string element at position pos in\n * the String resulting from converting this object to a String.\n * If there is no element at that position, the result is undefined.\n * If a valid UTF-16 surrogate pair does not begin at pos, the result is the code unit at pos.\n */\n codePointAt(pos: number): number | undefined;\n\n /**\n * Returns true if searchString appears as a substring of the result of converting this\n * object to a String, at one or more positions that are\n * greater than or equal to position; otherwise, returns false.\n * @param searchString search string\n * @param position If position is undefined, 0 is assumed, so as to search all of the String.\n */\n includes(searchString: string, position?: number): boolean;\n\n /**\n * Returns true if the sequence of elements of searchString converted to a String is the\n * same as the corresponding elements of this object (converted to a String) starting at\n * endPosition â length(this). Otherwise returns false.\n */\n endsWith(searchString: string, endPosition?: number): boolean;\n\n /**\n * Returns the String value result of normalizing the string into the normalization form\n * named by form as specified in Unicode Standard Annex #15, Unicode Normalization Forms.\n * @param form Applicable values: "NFC", "NFD", "NFKC", or "NFKD", If not specified default\n * is "NFC"\n */\n normalize(form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;\n\n /**\n * Returns the String value result of normalizing the string into the normalization form\n * named by form as specified in Unicode Standard Annex #15, Unicode Normalization Forms.\n * @param form Applicable values: "NFC", "NFD", "NFKC", or "NFKD", If not specified default\n * is "NFC"\n */\n normalize(form?: string): string;\n\n /**\n * Returns a String value that is made from count copies appended together. If count is 0,\n * T is the empty String is returned.\n * @param count number of copies to append\n */\n repeat(count: number): string;\n\n /**\n * Returns true if the sequence of elements of searchString converted to a String is the\n * same as the corresponding elements of this object (converted to a String) starting at\n * position. Otherwise returns false.\n */\n startsWith(searchString: string, position?: number): boolean;\n\n /**\n * Returns an <a> HTML anchor element and sets the name attribute to the text value\n * @param name\n */\n anchor(name: string): string;\n\n /** Returns a <big> HTML element */\n big(): string;\n\n /** Returns a <blink> HTML element */\n blink(): string;\n\n /** Returns a <b> HTML element */\n bold(): string;\n\n /** Returns a <tt> HTML element */\n fixed(): string;\n\n /** Returns a <font> HTML element and sets the color attribute value */\n fontcolor(color: string): string;\n\n /** Returns a <font> HTML element and sets the size attribute value */\n fontsize(size: number): string;\n\n /** Returns a <font> HTML element and sets the size attribute value */\n fontsize(size: string): string;\n\n /** Returns an <i> HTML element */\n italics(): string;\n\n /** Returns an <a> HTML element and sets the href attribute value */\n link(url: string): string;\n\n /** Returns a <small> HTML element */\n small(): string;\n\n /** Returns a <strike> HTML element */\n strike(): string;\n\n /** Returns a <sub> HTML element */\n sub(): string;\n\n /** Returns a <sup> HTML element */\n sup(): string;\n}\n\ninterface StringConstructor {\n /**\n * Return the String value whose elements are, in order, the elements in the List elements.\n * If length is 0, the empty string is returned.\n */\n fromCodePoint(...codePoints: number[]): string;\n\n /**\n * String.raw is intended for use as a tag function of a Tagged Template String. When called\n * as such the first argument will be a well formed template call site object and the rest\n * parameter will contain the substitution values.\n * @param template A well-formed template string call site representation.\n * @param substitutions A set of substitution values.\n */\n raw(template: TemplateStringsArray, ...substitutions: any[]): string;\n}\n\n\ninterface Map<K, V> {\n clear(): void;\n delete(key: K): boolean;\n forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, thisArg?: any): void;\n get(key: K): V | undefined;\n has(key: K): boolean;\n set(key: K, value: V): this;\n readonly size: number;\n}\n\ninterface MapConstructor {\n new (): Map<any, any>;\n new <K, V>(entries?: [K, V][]): Map<K, V>;\n readonly prototype: Map<any, any>;\n}\ndeclare var Map: MapConstructor;\n\ninterface ReadonlyMap<K, V> {\n forEach(callbackfn: (value: V, key: K, map: ReadonlyMap<K, V>) => void, thisArg?: any): void;\n get(key: K): V | undefined;\n has(key: K): boolean;\n readonly size: number;\n}\n\ninterface WeakMap<K extends object, V> {\n delete(key: K): boolean;\n get(key: K): V | undefined;\n has(key: K): boolean;\n set(key: K, value: V): this;\n}\n\ninterface WeakMapConstructor {\n new (): WeakMap<object, any>;\n new <K extends object, V>(entries?: [K, V][]): WeakMap<K, V>;\n readonly prototype: WeakMap<object, any>;\n}\ndeclare var WeakMap: WeakMapConstructor;\n\ninterface Set<T> {\n add(value: T): this;\n clear(): void;\n delete(value: T): boolean;\n forEach(callbackfn: (value: T, value2: T, set: Set<T>) => void, thisArg?: any): void;\n has(value: T): boolean;\n readonly size: number;\n}\n\ninterface SetConstructor {\n new (): Set<any>;\n new <T>(values?: T[]): Set<T>;\n readonly prototype: Set<any>;\n}\ndeclare var Set: SetConstructor;\n\ninterface ReadonlySet<T> {\n forEach(callbackfn: (value: T, value2: T, set: ReadonlySet<T>) => void, thisArg?: any): void;\n has(value: T): boolean;\n readonly size: number;\n}\n\ninterface WeakSet<T> {\n add(value: T): this;\n delete(value: T): boolean;\n has(value: T): boolean;\n}\n\ninterface WeakSetConstructor {\n new (): WeakSet<object>;\n new <T extends object>(values?: T[]): WeakSet<T>;\n readonly prototype: WeakSet<object>;\n}\ndeclare var WeakSet: WeakSetConstructor;\n\n\ninterface Generator extends Iterator<any> { }\n\ninterface GeneratorFunction {\n /**\n * Creates a new Generator object.\n * @param args A list of arguments the function accepts.\n */\n new (...args: any[]): Generator;\n /**\n * Creates a new Generator object.\n * @param args A list of arguments the function accepts.\n */\n (...args: any[]): Generator;\n /**\n * The length of the arguments.\n */\n readonly length: number;\n /**\n * Returns the name of the function.\n */\n readonly name: string;\n /**\n * A reference to the prototype.\n */\n readonly prototype: Generator;\n}\n\ninterface GeneratorFunctionConstructor {\n /**\n * Creates a new Generator function.\n * @param args A list of arguments the function accepts.\n */\n new (...args: string[]): GeneratorFunction;\n /**\n * Creates a new Generator function.\n * @param args A list of arguments the function accepts.\n */\n (...args: string[]): GeneratorFunction;\n /**\n * The length of the arguments.\n */\n readonly length: number;\n /**\n * Returns the name of the function.\n */\n readonly name: string;\n /**\n * A reference to the prototype.\n */\n readonly prototype: GeneratorFunction;\n}\ndeclare var GeneratorFunction: GeneratorFunctionConstructor;\n\n\n/// <reference path="lib.es2015.symbol.d.ts" />\n\ninterface SymbolConstructor {\n /**\n * A method that returns the default iterator for an object. Called by the semantics of the\n * for-of statement.\n */\n readonly iterator: symbol;\n}\n\ninterface IteratorResult<T> {\n done: boolean;\n value: T;\n}\n\ninterface Iterator<T> {\n next(value?: any): IteratorResult<T>;\n return?(value?: any): IteratorResult<T>;\n throw?(e?: any): IteratorResult<T>;\n}\n\ninterface Iterable<T> {\n [Symbol.iterator](): Iterator<T>;\n}\n\ninterface IterableIterator<T> extends Iterator<T> {\n [Symbol.iterator](): IterableIterator<T>;\n}\n\ninterface Array<T> {\n /** Iterator */\n [Symbol.iterator](): IterableIterator<T>;\n\n /**\n * Returns an iterable of key, value pairs for every entry in the array\n */\n entries(): IterableIterator<[number, T]>;\n\n /**\n * Returns an iterable of keys in the array\n */\n keys(): IterableIterator<number>;\n\n /**\n * Returns an iterable of values in the array\n */\n values(): IterableIterator<T>;\n}\n\ninterface ArrayConstructor {\n /**\n * Creates an array from an iterable object.\n * @param iterable An iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from<T, U>(iterable: Iterable<T>, mapfn: (this: void, v: T, k: number) => U): Array<U>;\n from<T, U>(iterable: Iterable<T>, mapfn: (this: void, v: T, k: number) => U, thisArg: undefined): Array<U>;\n from<Z, T, U>(iterable: Iterable<T>, mapfn: (this: Z, v: T, k: number) => U, thisArg: Z): Array<U>;\n\n /**\n * Creates an array from an iterable object.\n * @param iterable An iterable object to convert to an array.\n */\n from<T>(iterable: Iterable<T>): Array<T>;\n}\n\ninterface ReadonlyArray<T> {\n /** Iterator of values in the array. */\n [Symbol.iterator](): IterableIterator<T>;\n\n /**\n * Returns an iterable of key, value pairs for every entry in the array\n */\n entries(): IterableIterator<[number, T]>;\n\n /**\n * Returns an iterable of keys in the array\n */\n keys(): IterableIterator<number>;\n\n /**\n * Returns an iterable of values in the array\n */\n values(): IterableIterator<T>;\n}\n\ninterface IArguments {\n /** Iterator */\n [Symbol.iterator](): IterableIterator<any>;\n}\n\ninterface Map<K, V> {\n /** Returns an iterable of entries in the map. */\n [Symbol.iterator](): IterableIterator<[K, V]>;\n\n /**\n * Returns an iterable of key, value pairs for every entry in the map.\n */\n entries(): IterableIterator<[K, V]>;\n\n /**\n * Returns an iterable of keys in the map\n */\n keys(): IterableIterator<K>;\n\n /**\n * Returns an iterable of values in the map\n */\n values(): IterableIterator<V>;\n}\n\ninterface ReadonlyMap<K, V> {\n /** Returns an iterable of entries in the map. */\n [Symbol.iterator](): IterableIterator<[K, V]>;\n\n /**\n * Returns an iterable of key, value pairs for every entry in the map.\n */\n entries(): IterableIterator<[K, V]>;\n\n /**\n * Returns an iterable of keys in the map\n */\n keys(): IterableIterator<K>;\n\n /**\n * Returns an iterable of values in the map\n */\n values(): IterableIterator<V>;\n}\n\ninterface MapConstructor {\n new <K, V>(iterable: Iterable<[K, V]>): Map<K, V>;\n}\n\ninterface WeakMap<K extends object, V> { }\n\ninterface WeakMapConstructor {\n new <K extends object, V>(iterable: Iterable<[K, V]>): WeakMap<K, V>;\n}\n\ninterface Set<T> {\n /** Iterates over values in the set. */\n [Symbol.iterator](): IterableIterator<T>;\n /**\n * Returns an iterable of [v,v] pairs for every value `v` in the set.\n */\n entries(): IterableIterator<[T, T]>;\n /**\n * Despite its name, returns an iterable of the values in the set,\n */\n keys(): IterableIterator<T>;\n\n /**\n * Returns an iterable of values in the set.\n */\n values(): IterableIterator<T>;\n}\n\ninterface ReadonlySet<T> {\n /** Iterates over values in the set. */\n [Symbol.iterator](): IterableIterator<T>;\n\n /**\n * Returns an iterable of [v,v] pairs for every value `v` in the set.\n */\n entries(): IterableIterator<[T, T]>;\n\n /**\n * Despite its name, returns an iterable of the values in the set,\n */\n keys(): IterableIterator<T>;\n\n /**\n * Returns an iterable of values in the set.\n */\n values(): IterableIterator<T>;\n}\n\ninterface SetConstructor {\n new <T>(iterable: Iterable<T>): Set<T>;\n}\n\ninterface WeakSet<T> { }\n\ninterface WeakSetConstructor {\n new <T extends object>(iterable: Iterable<T>): WeakSet<T>;\n}\n\ninterface Promise<T> { }\n\ninterface PromiseConstructor {\n /**\n * Creates a Promise that is resolved with an array of results when all of the provided Promises\n * resolve, or rejected when any Promise is rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n all<TAll>(values: Iterable<TAll | PromiseLike<TAll>>): Promise<TAll[]>;\n\n /**\n * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n * or rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n race<T>(values: Iterable<T | PromiseLike<T>>): Promise<T>;\n}\n\ndeclare namespace Reflect {\n function enumerate(target: object): IterableIterator<any>;\n}\n\ninterface String {\n /** Iterator */\n [Symbol.iterator](): IterableIterator<string>;\n}\n\n/**\n * A typed array of 8-bit integer values. The contents are initialized to 0. If the requested\n * number of bytes could not be allocated an exception is raised.\n */\ninterface Int8Array {\n [Symbol.iterator](): IterableIterator<number>;\n /**\n * Returns an array of key, value pairs for every entry in the array\n */\n entries(): IterableIterator<[number, number]>;\n /**\n * Returns an list of keys in the array\n */\n keys(): IterableIterator<number>;\n /**\n * Returns an list of values in the array\n */\n values(): IterableIterator<number>;\n}\n\ninterface Int8ArrayConstructor {\n new (elements: Iterable<number>): Int8Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number): Int8Array;\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number, thisArg: undefined): Int8Array;\n from<Z>(arrayLike: Iterable<number>, mapfn: (this: Z, v: number, k: number) => number, thisArg: Z): Int8Array;\n\n from(arrayLike: Iterable<number>): Int8Array;\n}\n\n/**\n * A typed array of 8-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint8Array {\n [Symbol.iterator](): IterableIterator<number>;\n /**\n * Returns an array of key, value pairs for every entry in the array\n */\n entries(): IterableIterator<[number, number]>;\n /**\n * Returns an list of keys in the array\n */\n keys(): IterableIterator<number>;\n /**\n * Returns an list of values in the array\n */\n values(): IterableIterator<number>;\n}\n\ninterface Uint8ArrayConstructor {\n new (elements: Iterable<number>): Uint8Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number): Uint8Array;\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number, thisArg: undefined): Uint8Array;\n from<Z>(arrayLike: Iterable<number>, mapfn: (this: Z, v: number, k: number) => number, thisArg: Z): Uint8Array;\n\n from(arrayLike: Iterable<number>): Uint8Array;\n}\n\n/**\n * A typed array of 8-bit unsigned integer (clamped) values. The contents are initialized to 0.\n * If the requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint8ClampedArray {\n [Symbol.iterator](): IterableIterator<number>;\n /**\n * Returns an array of key, value pairs for every entry in the array\n */\n entries(): IterableIterator<[number, number]>;\n\n /**\n * Returns an list of keys in the array\n */\n keys(): IterableIterator<number>;\n\n /**\n * Returns an list of values in the array\n */\n values(): IterableIterator<number>;\n}\n\ninterface Uint8ClampedArrayConstructor {\n new (elements: Iterable<number>): Uint8ClampedArray;\n\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number): Uint8ClampedArray;\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number, thisArg: undefined): Uint8ClampedArray;\n from<Z>(arrayLike: Iterable<number>, mapfn: (this: Z, v: number, k: number) => number, thisArg: Z): Uint8ClampedArray;\n\n from(arrayLike: Iterable<number>): Uint8ClampedArray;\n}\n\n/**\n * A typed array of 16-bit signed integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Int16Array {\n [Symbol.iterator](): IterableIterator<number>;\n /**\n * Returns an array of key, value pairs for every entry in the array\n */\n entries(): IterableIterator<[number, number]>;\n\n /**\n * Returns an list of keys in the array\n */\n keys(): IterableIterator<number>;\n\n /**\n * Returns an list of values in the array\n */\n values(): IterableIterator<number>;\n}\n\ninterface Int16ArrayConstructor {\n new (elements: Iterable<number>): Int16Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number): Int16Array;\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number, thisArg: undefined): Int16Array;\n from<Z>(arrayLike: Iterable<number>, mapfn: (this: Z, v: number, k: number) => number, thisArg: Z): Int16Array;\n\n from(arrayLike: Iterable<number>): Int16Array;\n}\n\n/**\n * A typed array of 16-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint16Array {\n [Symbol.iterator](): IterableIterator<number>;\n /**\n * Returns an array of key, value pairs for every entry in the array\n */\n entries(): IterableIterator<[number, number]>;\n /**\n * Returns an list of keys in the array\n */\n keys(): IterableIterator<number>;\n /**\n * Returns an list of values in the array\n */\n values(): IterableIterator<number>;\n}\n\ninterface Uint16ArrayConstructor {\n new (elements: Iterable<number>): Uint16Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number): Uint16Array;\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number, thisArg: undefined): Uint16Array;\n from<Z>(arrayLike: Iterable<number>, mapfn: (this: Z, v: number, k: number) => number, thisArg: Z): Uint16Array;\n\n from(arrayLike: Iterable<number>): Uint16Array;\n}\n\n/**\n * A typed array of 32-bit signed integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Int32Array {\n [Symbol.iterator](): IterableIterator<number>;\n /**\n * Returns an array of key, value pairs for every entry in the array\n */\n entries(): IterableIterator<[number, number]>;\n /**\n * Returns an list of keys in the array\n */\n keys(): IterableIterator<number>;\n /**\n * Returns an list of values in the array\n */\n values(): IterableIterator<number>;\n}\n\ninterface Int32ArrayConstructor {\n new (elements: Iterable<number>): Int32Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number): Int32Array;\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number, thisArg: undefined): Int32Array;\n from<Z>(arrayLike: Iterable<number>, mapfn: (this: Z, v: number, k: number) => number, thisArg: Z): Int32Array;\n\n from(arrayLike: Iterable<number>): Int32Array;\n}\n\n/**\n * A typed array of 32-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint32Array {\n [Symbol.iterator](): IterableIterator<number>;\n /**\n * Returns an array of key, value pairs for every entry in the array\n */\n entries(): IterableIterator<[number, number]>;\n /**\n * Returns an list of keys in the array\n */\n keys(): IterableIterator<number>;\n /**\n * Returns an list of values in the array\n */\n values(): IterableIterator<number>;\n}\n\ninterface Uint32ArrayConstructor {\n new (elements: Iterable<number>): Uint32Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number): Uint32Array;\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number, thisArg: undefined): Uint32Array;\n from<Z>(arrayLike: Iterable<number>, mapfn: (this: Z, v: number, k: number) => number, thisArg: Z): Uint32Array;\n\n from(arrayLike: Iterable<number>): Uint32Array;\n}\n\n/**\n * A typed array of 32-bit float values. The contents are initialized to 0. If the requested number\n * of bytes could not be allocated an exception is raised.\n */\ninterface Float32Array {\n [Symbol.iterator](): IterableIterator<number>;\n /**\n * Returns an array of key, value pairs for every entry in the array\n */\n entries(): IterableIterator<[number, number]>;\n /**\n * Returns an list of keys in the array\n */\n keys(): IterableIterator<number>;\n /**\n * Returns an list of values in the array\n */\n values(): IterableIterator<number>;\n}\n\ninterface Float32ArrayConstructor {\n new (elements: Iterable<number>): Float32Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number): Float32Array;\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number, thisArg: undefined): Float32Array;\n from<Z>(arrayLike: Iterable<number>, mapfn: (this: Z, v: number, k: number) => number, thisArg: Z): Float32Array;\n\n from(arrayLike: Iterable<number>): Float32Array;\n}\n\n/**\n * A typed array of 64-bit float values. The contents are initialized to 0. If the requested\n * number of bytes could not be allocated an exception is raised.\n */\ninterface Float64Array {\n [Symbol.iterator](): IterableIterator<number>;\n /**\n * Returns an array of key, value pairs for every entry in the array\n */\n entries(): IterableIterator<[number, number]>;\n /**\n * Returns an list of keys in the array\n */\n keys(): IterableIterator<number>;\n /**\n * Returns an list of values in the array\n */\n values(): IterableIterator<number>;\n}\n\ninterface Float64ArrayConstructor {\n new (elements: Iterable<number>): Float64Array;\n\n /**\n * Creates an array from an array-like or iterable object.\n * @param arrayLike An array-like or iterable object to convert to an array.\n * @param mapfn A mapping function to call on every element of the array.\n * @param thisArg Value of \'this\' used to invoke the mapfn.\n */\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number): Float64Array;\n from(arrayLike: Iterable<number>, mapfn: (this: void, v: number, k: number) => number, thisArg: undefined): Float64Array;\n from<Z>(arrayLike: Iterable<number>, mapfn: (this: Z, v: number, k: number) => number, thisArg: Z): Float64Array;\n\n from(arrayLike: Iterable<number>): Float64Array;\n}\n\n\ninterface PromiseConstructor {\n /**\n * A reference to the prototype.\n */\n readonly prototype: Promise<any>;\n\n /**\n * Creates a new Promise.\n * @param executor A callback used to initialize the promise. This callback is passed two arguments:\n * a resolve callback used resolve the promise with a value or the result of another promise,\n * and a reject callback used to reject the promise with a provided reason or error.\n */\n new <T>(executor: (resolve: (value?: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void): Promise<T>;\n\n /**\n * Creates a Promise that is resolved with an array of results when all of the provided Promises\n * resolve, or rejected when any Promise is rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n all<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>, T10 | PromiseLike<T10>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10]>;\n\n /**\n * Creates a Promise that is resolved with an array of results when all of the provided Promises\n * resolve, or rejected when any Promise is rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n all<T1, T2, T3, T4, T5, T6, T7, T8, T9>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9]>;\n\n /**\n * Creates a Promise that is resolved with an array of results when all of the provided Promises\n * resolve, or rejected when any Promise is rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n all<T1, T2, T3, T4, T5, T6, T7, T8>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8]>;\n\n /**\n * Creates a Promise that is resolved with an array of results when all of the provided Promises\n * resolve, or rejected when any Promise is rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n all<T1, T2, T3, T4, T5, T6, T7>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>]): Promise<[T1, T2, T3, T4, T5, T6, T7]>;\n\n /**\n * Creates a Promise that is resolved with an array of results when all of the provided Promises\n * resolve, or rejected when any Promise is rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n all<T1, T2, T3, T4, T5, T6>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>]): Promise<[T1, T2, T3, T4, T5, T6]>;\n\n /**\n * Creates a Promise that is resolved with an array of results when all of the provided Promises\n * resolve, or rejected when any Promise is rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n all<T1, T2, T3, T4, T5>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>]): Promise<[T1, T2, T3, T4, T5]>;\n\n /**\n * Creates a Promise that is resolved with an array of results when all of the provided Promises\n * resolve, or rejected when any Promise is rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n all<T1, T2, T3, T4>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>]): Promise<[T1, T2, T3, T4]>;\n\n /**\n * Creates a Promise that is resolved with an array of results when all of the provided Promises\n * resolve, or rejected when any Promise is rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n all<T1, T2, T3>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>]): Promise<[T1, T2, T3]>;\n\n /**\n * Creates a Promise that is resolved with an array of results when all of the provided Promises\n * resolve, or rejected when any Promise is rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n all<T1, T2>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>]): Promise<[T1, T2]>;\n\n /**\n * Creates a Promise that is resolved with an array of results when all of the provided Promises\n * resolve, or rejected when any Promise is rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n all<T>(values: (T | PromiseLike<T>)[]): Promise<T[]>;\n\n /**\n * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n * or rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n race<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>, T10 | PromiseLike<T10>]): Promise<T1 | T2 | T3 | T4 | T5 | T6 | T7 | T8 | T9 | T10>;\n\n /**\n * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n * or rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n race<T1, T2, T3, T4, T5, T6, T7, T8, T9>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>]): Promise<T1 | T2 | T3 | T4 | T5 | T6 | T7 | T8 | T9>;\n\n /**\n * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n * or rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n race<T1, T2, T3, T4, T5, T6, T7, T8>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>]): Promise<T1 | T2 | T3 | T4 | T5 | T6 | T7 | T8>;\n\n /**\n * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n * or rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n race<T1, T2, T3, T4, T5, T6, T7>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>]): Promise<T1 | T2 | T3 | T4 | T5 | T6 | T7>;\n\n /**\n * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n * or rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n race<T1, T2, T3, T4, T5, T6>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>]): Promise<T1 | T2 | T3 | T4 | T5 | T6>;\n\n /**\n * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n * or rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n race<T1, T2, T3, T4, T5>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>]): Promise<T1 | T2 | T3 | T4 | T5>;\n\n /**\n * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n * or rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n race<T1, T2, T3, T4>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>]): Promise<T1 | T2 | T3 | T4>;\n\n /**\n * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n * or rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n race<T1, T2, T3>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>]): Promise<T1 | T2 | T3>;\n\n /**\n * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n * or rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n race<T1, T2>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>]): Promise<T1 | T2>;\n\n /**\n * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved\n * or rejected.\n * @param values An array of Promises.\n * @returns A new Promise.\n */\n race<T>(values: (T | PromiseLike<T>)[]): Promise<T>;\n\n /**\n * Creates a new rejected promise for the provided reason.\n * @param reason The reason the promise was rejected.\n * @returns A new rejected Promise.\n */\n reject(reason: any): Promise<never>;\n\n /**\n * Creates a new rejected promise for the provided reason.\n * @param reason The reason the promise was rejected.\n * @returns A new rejected Promise.\n */\n reject<T>(reason: any): Promise<T>;\n\n /**\n * Creates a new resolved promise for the provided value.\n * @param value A promise.\n * @returns A promise whose internal state matches the provided promise.\n */\n resolve<T>(value: T | PromiseLike<T>): Promise<T>;\n\n /**\n * Creates a new resolved promise .\n * @returns A resolved promise.\n */\n resolve(): Promise<void>;\n}\n\ndeclare var Promise: PromiseConstructor;\n\ninterface ProxyHandler<T extends object> {\n getPrototypeOf? (target: T): object | null;\n setPrototypeOf? (target: T, v: any): boolean;\n isExtensible? (target: T): boolean;\n preventExtensions? (target: T): boolean;\n getOwnPropertyDescriptor? (target: T, p: PropertyKey): PropertyDescriptor | undefined;\n has? (target: T, p: PropertyKey): boolean;\n get? (target: T, p: PropertyKey, receiver: any): any;\n set? (target: T, p: PropertyKey, value: any, receiver: any): boolean;\n deleteProperty? (target: T, p: PropertyKey): boolean;\n defineProperty? (target: T, p: PropertyKey, attributes: PropertyDescriptor): boolean;\n enumerate? (target: T): PropertyKey[];\n ownKeys? (target: T): PropertyKey[];\n apply? (target: T, thisArg: any, argArray?: any): any;\n construct? (target: T, argArray: any, newTarget?: any): object;\n}\n\ninterface ProxyConstructor {\n revocable<T extends object>(target: T, handler: ProxyHandler<T>): { proxy: T; revoke: () => void; };\n new <T extends object>(target: T, handler: ProxyHandler<T>): T;\n}\ndeclare var Proxy: ProxyConstructor;\n\n\ndeclare namespace Reflect {\n function apply(target: Function, thisArgument: any, argumentsList: ArrayLike<any>): any;\n function construct(target: Function, argumentsList: ArrayLike<any>, newTarget?: any): any;\n function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor): boolean;\n function deleteProperty(target: object, propertyKey: PropertyKey): boolean;\n function get(target: object, propertyKey: PropertyKey, receiver?: any): any;\n function getOwnPropertyDescriptor(target: object, propertyKey: PropertyKey): PropertyDescriptor;\n function getPrototypeOf(target: object): object;\n function has(target: object, propertyKey: PropertyKey): boolean;\n function isExtensible(target: object): boolean;\n function ownKeys(target: object): Array<PropertyKey>;\n function preventExtensions(target: object): boolean;\n function set(target: object, propertyKey: PropertyKey, value: any, receiver?: any): boolean;\n function setPrototypeOf(target: object, proto: any): boolean;\n}\n\n\ninterface Symbol {\n /** Returns a string representation of an object. */\n toString(): string;\n\n /** Returns the primitive value of the specified object. */\n valueOf(): symbol;\n}\n\ninterface SymbolConstructor {\n /**\n * A reference to the prototype.\n */\n readonly prototype: Symbol;\n\n /**\n * Returns a new unique Symbol value.\n * @param description Description of the new Symbol object.\n */\n (description?: string | number): symbol;\n\n /**\n * Returns a Symbol object from the global symbol registry matching the given key if found.\n * Otherwise, returns a new symbol with this key.\n * @param key key to search for.\n */\n for(key: string): symbol;\n\n /**\n * Returns a key from the global symbol registry matching the given Symbol if found.\n * Otherwise, returns a undefined.\n * @param sym Symbol to find the key for.\n */\n keyFor(sym: symbol): string | undefined;\n}\n\ndeclare var Symbol: SymbolConstructor;\n\n/// <reference path="lib.es2015.symbol.d.ts" />\n\ninterface SymbolConstructor {\n /**\n * A method that determines if a constructor object recognizes an object as one of the\n * constructorâs instances. Called by the semantics of the instanceof operator.\n */\n readonly hasInstance: symbol;\n\n /**\n * A Boolean value that if true indicates that an object should flatten to its array elements\n * by Array.prototype.concat.\n */\n readonly isConcatSpreadable: symbol;\n\n /**\n * A regular expression method that matches the regular expression against a string. Called\n * by the String.prototype.match method.\n */\n readonly match: symbol;\n\n /**\n * A regular expression method that replaces matched substrings of a string. Called by the\n * String.prototype.replace method.\n */\n readonly replace: symbol;\n\n /**\n * A regular expression method that returns the index within a string that matches the\n * regular expression. Called by the String.prototype.search method.\n */\n readonly search: symbol;\n\n /**\n * A function valued property that is the constructor function that is used to create\n * derived objects.\n */\n readonly species: symbol;\n\n /**\n * A regular expression method that splits a string at the indices that match the regular\n * expression. Called by the String.prototype.split method.\n */\n readonly split: symbol;\n\n /**\n * A method that converts an object to a corresponding primitive value.\n * Called by the ToPrimitive abstract operation.\n */\n readonly toPrimitive: symbol;\n\n /**\n * A String value that is used in the creation of the default string description of an object.\n * Called by the built-in method Object.prototype.toString.\n */\n readonly toStringTag: symbol;\n\n /**\n * An Object whose own property names are property names that are excluded from the \'with\'\n * environment bindings of the associated objects.\n */\n readonly unscopables: symbol;\n}\n\ninterface Symbol {\n readonly [Symbol.toStringTag]: "Symbol";\n}\n\ninterface Array<T> {\n /**\n * Returns an object whose properties have the value \'true\'\n * when they will be absent when used in a \'with\' statement.\n */\n [Symbol.unscopables](): {\n copyWithin: boolean;\n entries: boolean;\n fill: boolean;\n find: boolean;\n findIndex: boolean;\n keys: boolean;\n values: boolean;\n };\n}\n\ninterface Date {\n /**\n * Converts a Date object to a string.\n */\n [Symbol.toPrimitive](hint: "default"): string;\n /**\n * Converts a Date object to a string.\n */\n [Symbol.toPrimitive](hint: "string"): string;\n /**\n * Converts a Date object to a number.\n */\n [Symbol.toPrimitive](hint: "number"): number;\n /**\n * Converts a Date object to a string or number.\n *\n * @param hint The strings "number", "string", or "default" to specify what primitive to return.\n *\n * @throws {TypeError} If \'hint\' was given something other than "number", "string", or "default".\n * @returns A number if \'hint\' was "number", a string if \'hint\' was "string" or "default".\n */\n [Symbol.toPrimitive](hint: string): string | number;\n}\n\ninterface Map<K, V> {\n readonly [Symbol.toStringTag]: "Map";\n}\n\ninterface WeakMap<K extends object, V>{\n readonly [Symbol.toStringTag]: "WeakMap";\n}\n\ninterface Set<T> {\n readonly [Symbol.toStringTag]: "Set";\n}\n\ninterface WeakSet<T> {\n readonly [Symbol.toStringTag]: "WeakSet";\n}\n\ninterface JSON {\n readonly [Symbol.toStringTag]: "JSON";\n}\n\ninterface Function {\n /**\n * Determines whether the given value inherits from this function if this function was used\n * as a constructor function.\n *\n * A constructor function can control which objects are recognized as its instances by\n * \'instanceof\' by overriding this method.\n */\n [Symbol.hasInstance](value: any): boolean;\n}\n\ninterface GeneratorFunction {\n readonly [Symbol.toStringTag]: "GeneratorFunction";\n}\n\ninterface Math {\n readonly [Symbol.toStringTag]: "Math";\n}\n\ninterface Promise<T> {\n readonly [Symbol.toStringTag]: "Promise";\n}\n\ninterface PromiseConstructor {\n readonly [Symbol.species]: Function;\n}\n\ninterface RegExp {\n /**\n * Matches a string with this regular expression, and returns an array containing the results of\n * that search.\n * @param string A string to search within.\n */\n [Symbol.match](string: string): RegExpMatchArray | null;\n\n /**\n * Replaces text in a string, using this regular expression.\n * @param string A String object or string literal whose contents matching against\n * this regular expression will be replaced\n * @param replaceValue A String object or string literal containing the text to replace for every\n * successful match of this regular expression.\n */\n [Symbol.replace](string: string, replaceValue: string): string;\n\n /**\n * Replaces text in a string, using this regular expression.\n * @param string A String object or string literal whose contents matching against\n * this regular expression will be replaced\n * @param replacer A function that returns the replacement text.\n */\n [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;\n\n /**\n * Finds the position beginning first substring match in a regular expression search\n * using this regular expression.\n *\n * @param string The string to search within.\n */\n [Symbol.search](string: string): number;\n\n /**\n * Returns an array of substrings that were delimited by strings in the original input that\n * match against this regular expression.\n *\n * If the regular expression contains capturing parentheses, then each time this\n * regular expression matches, the results (including any undefined results) of the\n * capturing parentheses are spliced.\n *\n * @param string string value to split\n * @param limit if not undefined, the output array is truncated so that it contains no more\n * than \'limit\' elements.\n */\n [Symbol.split](string: string, limit?: number): string[];\n}\n\ninterface RegExpConstructor {\n [Symbol.species](): RegExpConstructor;\n}\n\ninterface String {\n /**\n * Matches a string an object that supports being matched against, and returns an array containing the results of that search.\n * @param matcher An object that supports being matched against.\n */\n match(matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): RegExpMatchArray | null;\n\n /**\n * Replaces text in a string, using an object that supports replacement within a string.\n * @param searchValue A object can search for and replace matches within a string.\n * @param replaceValue A string containing the text to replace for every successful match of searchValue in this string.\n */\n replace(searchValue: { [Symbol.replace](string: string, replaceValue: string): string; }, replaceValue: string): string;\n\n /**\n * Replaces text in a string, using an object that supports replacement within a string.\n * @param searchValue A object can search for and replace matches within a string.\n * @param replacer A function that returns the replacement text.\n */\n replace(searchValue: { [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string; }, replacer: (substring: string, ...args: any[]) => string): string;\n\n /**\n * Finds the first substring match in a regular expression search.\n * @param searcher An object which supports searching within a string.\n */\n search(searcher: { [Symbol.search](string: string): number; }): number;\n\n /**\n * Split a string into substrings using the specified separator and return them as an array.\n * @param splitter An object that can split a string.\n * @param limit A value used to limit the number of elements returned in the array.\n */\n split(splitter: { [Symbol.split](string: string, limit?: number): string[]; }, limit?: number): string[];\n}\n\n/**\n * Represents a raw buffer of binary data, which is used to store data for the\n * different typed arrays. ArrayBuffers cannot be read from or written to directly,\n * but can be passed to a typed array or DataView Object to interpret the raw\n * buffer as needed.\n */\ninterface ArrayBuffer {\n readonly [Symbol.toStringTag]: "ArrayBuffer";\n}\n\ninterface DataView {\n readonly [Symbol.toStringTag]: "DataView";\n}\n\n/**\n * A typed array of 8-bit integer values. The contents are initialized to 0. If the requested\n * number of bytes could not be allocated an exception is raised.\n */\ninterface Int8Array {\n readonly [Symbol.toStringTag]: "Int8Array";\n}\n\n/**\n * A typed array of 8-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint8Array {\n readonly [Symbol.toStringTag]: "UInt8Array";\n}\n\n/**\n * A typed array of 8-bit unsigned integer (clamped) values. The contents are initialized to 0.\n * If the requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint8ClampedArray {\n readonly [Symbol.toStringTag]: "Uint8ClampedArray";\n}\n\n/**\n * A typed array of 16-bit signed integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Int16Array {\n readonly [Symbol.toStringTag]: "Int16Array";\n}\n\n/**\n * A typed array of 16-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint16Array {\n readonly [Symbol.toStringTag]: "Uint16Array";\n}\n\n/**\n * A typed array of 32-bit signed integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Int32Array {\n readonly [Symbol.toStringTag]: "Int32Array";\n}\n\n/**\n * A typed array of 32-bit unsigned integer values. The contents are initialized to 0. If the\n * requested number of bytes could not be allocated an exception is raised.\n */\ninterface Uint32Array {\n readonly [Symbol.toStringTag]: "Uint32Array";\n}\n\n/**\n * A typed array of 32-bit float values. The contents are initialized to 0. If the requested number\n * of bytes could not be allocated an exception is raised.\n */\ninterface Float32Array {\n readonly [Symbol.toStringTag]: "Float32Array";\n}\n\n/**\n * A typed array of 64-bit float values. The contents are initialized to 0. If the requested\n * number of bytes could not be allocated an exception is raised.\n */\ninterface Float64Array {\n readonly [Symbol.toStringTag]: "Float64Array";\n}\n\n\n\n/////////////////////////////\n/// DOM APIs\n/////////////////////////////\n\ninterface Account {\n displayName?: string;\n id?: string;\n imageURL?: string;\n name?: string;\n rpDisplayName?: string;\n}\n\ninterface Algorithm {\n name: string;\n}\n\ninterface AnimationEventInit extends EventInit {\n animationName?: string;\n elapsedTime?: number;\n}\n\ninterface AssertionOptions {\n allowList?: ScopedCredentialDescriptor[];\n extensions?: WebAuthnExtensions;\n rpId?: USVString;\n timeoutSeconds?: number;\n}\n\ninterface CacheQueryOptions {\n cacheName?: string;\n ignoreMethod?: boolean;\n ignoreSearch?: boolean;\n ignoreVary?: boolean;\n}\n\ninterface ClientData {\n challenge?: string;\n extensions?: WebAuthnExtensions;\n hashAlg?: string | Algorithm;\n origin?: string;\n rpId?: string;\n tokenBinding?: string;\n}\n\ninterface CloseEventInit extends EventInit {\n code?: number;\n reason?: string;\n wasClean?: boolean;\n}\n\ninterface CompositionEventInit extends UIEventInit {\n data?: string;\n}\n\ninterface ConfirmSiteSpecificExceptionsInformation extends ExceptionInformation {\n arrayOfDomainStrings?: string[];\n}\n\ninterface ConstrainBooleanParameters {\n exact?: boolean;\n ideal?: boolean;\n}\n\ninterface ConstrainDOMStringParameters {\n exact?: string | string[];\n ideal?: string | string[];\n}\n\ninterface ConstrainDoubleRange extends DoubleRange {\n exact?: number;\n ideal?: number;\n}\n\ninterface ConstrainLongRange extends LongRange {\n exact?: number;\n ideal?: number;\n}\n\ninterface ConstrainVideoFacingModeParameters {\n exact?: VideoFacingModeEnum | VideoFacingModeEnum[];\n ideal?: VideoFacingModeEnum | VideoFacingModeEnum[];\n}\n\ninterface CustomEventInit extends EventInit {\n detail?: any;\n}\n\ninterface DeviceAccelerationDict {\n x?: number;\n y?: number;\n z?: number;\n}\n\ninterface DeviceLightEventInit extends EventInit {\n value?: number;\n}\n\ninterface DeviceMotionEventInit extends EventInit {\n acceleration?: DeviceAccelerationDict;\n accelerationIncludingGravity?: DeviceAccelerationDict;\n interval?: number;\n rotationRate?: DeviceRotationRateDict;\n}\n\ninterface DeviceOrientationEventInit extends EventInit {\n absolute?: boolean;\n alpha?: number;\n beta?: number;\n gamma?: number;\n}\n\ninterface DeviceRotationRateDict {\n alpha?: number;\n beta?: number;\n gamma?: number;\n}\n\ninterface DOMRectInit {\n height?: any;\n width?: any;\n x?: any;\n y?: any;\n}\n\ninterface DoubleRange {\n max?: number;\n min?: number;\n}\n\ninterface ErrorEventInit extends EventInit {\n colno?: number;\n error?: any;\n filename?: string;\n lineno?: number;\n message?: string;\n}\n\ninterface EventInit {\n scoped?: boolean;\n bubbles?: boolean;\n cancelable?: boolean;\n}\n\ninterface EventModifierInit extends UIEventInit {\n altKey?: boolean;\n ctrlKey?: boolean;\n metaKey?: boolean;\n modifierAltGraph?: boolean;\n modifierCapsLock?: boolean;\n modifierFn?: boolean;\n modifierFnLock?: boolean;\n modifierHyper?: boolean;\n modifierNumLock?: boolean;\n modifierOS?: boolean;\n modifierScrollLock?: boolean;\n modifierSuper?: boolean;\n modifierSymbol?: boolean;\n modifierSymbolLock?: boolean;\n shiftKey?: boolean;\n}\n\ninterface ExceptionInformation {\n domain?: string;\n}\n\ninterface FocusEventInit extends UIEventInit {\n relatedTarget?: EventTarget;\n}\n\ninterface FocusNavigationEventInit extends EventInit {\n navigationReason?: string;\n originHeight?: number;\n originLeft?: number;\n originTop?: number;\n originWidth?: number;\n}\n\ninterface FocusNavigationOrigin {\n originHeight?: number;\n originLeft?: number;\n originTop?: number;\n originWidth?: number;\n}\n\ninterface GamepadEventInit extends EventInit {\n gamepad?: Gamepad;\n}\n\ninterface GetNotificationOptions {\n tag?: string;\n}\n\ninterface HashChangeEventInit extends EventInit {\n newURL?: string;\n oldURL?: string;\n}\n\ninterface IDBIndexParameters {\n multiEntry?: boolean;\n unique?: boolean;\n}\n\ninterface IDBObjectStoreParameters {\n autoIncrement?: boolean;\n keyPath?: IDBKeyPath;\n}\n\ninterface IntersectionObserverEntryInit {\n boundingClientRect?: DOMRectInit;\n intersectionRect?: DOMRectInit;\n rootBounds?: DOMRectInit;\n target?: Element;\n time?: number;\n}\n\ninterface IntersectionObserverInit {\n root?: Element;\n rootMargin?: string;\n threshold?: number | number[];\n}\n\ninterface KeyAlgorithm {\n name?: string;\n}\n\ninterface KeyboardEventInit extends EventModifierInit {\n code?: string;\n key?: string;\n location?: number;\n repeat?: boolean;\n}\n\ninterface LongRange {\n max?: number;\n min?: number;\n}\n\ninterface MediaEncryptedEventInit extends EventInit {\n initData?: ArrayBuffer;\n initDataType?: string;\n}\n\ninterface MediaKeyMessageEventInit extends EventInit {\n message?: ArrayBuffer;\n messageType?: MediaKeyMessageType;\n}\n\ninterface MediaKeySystemConfiguration {\n audioCapabilities?: MediaKeySystemMediaCapability[];\n distinctiveIdentifier?: MediaKeysRequirement;\n initDataTypes?: string[];\n persistentState?: MediaKeysRequirement;\n videoCapabilities?: MediaKeySystemMediaCapability[];\n}\n\ninterface MediaKeySystemMediaCapability {\n contentType?: string;\n robustness?: string;\n}\n\ninterface MediaStreamConstraints {\n audio?: boolean | MediaTrackConstraints;\n video?: boolean | MediaTrackConstraints;\n}\n\ninterface MediaStreamErrorEventInit extends EventInit {\n error?: MediaStreamError;\n}\n\ninterface MediaStreamEventInit extends EventInit {\n stream?: MediaStream;\n}\n\ninterface MediaStreamTrackEventInit extends EventInit {\n track?: MediaStreamTrack;\n}\n\ninterface MediaTrackCapabilities {\n aspectRatio?: number | DoubleRange;\n deviceId?: string;\n echoCancellation?: boolean[];\n facingMode?: string;\n frameRate?: number | DoubleRange;\n groupId?: string;\n height?: number | LongRange;\n sampleRate?: number | LongRange;\n sampleSize?: number | LongRange;\n volume?: number | DoubleRange;\n width?: number | LongRange;\n}\n\ninterface MediaTrackConstraints extends MediaTrackConstraintSet {\n advanced?: MediaTrackConstraintSet[];\n}\n\ninterface MediaTrackConstraintSet {\n aspectRatio?: number | ConstrainDoubleRange;\n deviceId?: string | string[] | ConstrainDOMStringParameters;\n echoCancelation?: boolean | ConstrainBooleanParameters;\n facingMode?: string | string[] | ConstrainDOMStringParameters;\n frameRate?: number | ConstrainDoubleRange;\n groupId?: string | string[] | ConstrainDOMStringParameters;\n height?: number | ConstrainLongRange;\n sampleRate?: number | ConstrainLongRange;\n sampleSize?: number | ConstrainLongRange;\n volume?: number | ConstrainDoubleRange;\n width?: number | ConstrainLongRange;\n}\n\ninterface MediaTrackSettings {\n aspectRatio?: number;\n deviceId?: string;\n echoCancellation?: boolean;\n facingMode?: string;\n frameRate?: number;\n groupId?: string;\n height?: number;\n sampleRate?: number;\n sampleSize?: number;\n volume?: number;\n width?: number;\n}\n\ninterface MediaTrackSupportedConstraints {\n aspectRatio?: boolean;\n deviceId?: boolean;\n echoCancellation?: boolean;\n facingMode?: boolean;\n frameRate?: boolean;\n groupId?: boolean;\n height?: boolean;\n sampleRate?: boolean;\n sampleSize?: boolean;\n volume?: boolean;\n width?: boolean;\n}\n\ninterface MessageEventInit extends EventInit {\n lastEventId?: string;\n channel?: string;\n data?: any;\n origin?: string;\n ports?: MessagePort[];\n source?: Window;\n}\n\ninterface MouseEventInit extends EventModifierInit {\n button?: number;\n buttons?: number;\n clientX?: number;\n clientY?: number;\n relatedTarget?: EventTarget;\n screenX?: number;\n screenY?: number;\n}\n\ninterface MSAccountInfo {\n accountImageUri?: string;\n accountName?: string;\n rpDisplayName?: string;\n userDisplayName?: string;\n userId?: string;\n}\n\ninterface MSAudioLocalClientEvent extends MSLocalClientEventBase {\n cpuInsufficientEventRatio?: number;\n deviceCaptureNotFunctioningEventRatio?: number;\n deviceClippingEventRatio?: number;\n deviceEchoEventRatio?: number;\n deviceGlitchesEventRatio?: number;\n deviceHalfDuplexAECEventRatio?: number;\n deviceHowlingEventCount?: number;\n deviceLowSNREventRatio?: number;\n deviceLowSpeechLevelEventRatio?: number;\n deviceMultipleEndpointsEventCount?: number;\n deviceNearEndToEchoRatioEventRatio?: number;\n deviceRenderMuteEventRatio?: number;\n deviceRenderNotFunctioningEventRatio?: number;\n deviceRenderZeroVolumeEventRatio?: number;\n networkDelayEventRatio?: number;\n networkSendQualityEventRatio?: number;\n}\n\ninterface MSAudioRecvPayload extends MSPayloadBase {\n burstLossLength1?: number;\n burstLossLength2?: number;\n burstLossLength3?: number;\n burstLossLength4?: number;\n burstLossLength5?: number;\n burstLossLength6?: number;\n burstLossLength7?: number;\n burstLossLength8OrHigher?: number;\n fecRecvDistance1?: number;\n fecRecvDistance2?: number;\n fecRecvDistance3?: number;\n packetReorderDepthAvg?: number;\n packetReorderDepthMax?: number;\n packetReorderRatio?: number;\n ratioCompressedSamplesAvg?: number;\n ratioConcealedSamplesAvg?: number;\n ratioStretchedSamplesAvg?: number;\n samplingRate?: number;\n signal?: MSAudioRecvSignal;\n}\n\ninterface MSAudioRecvSignal {\n initialSignalLevelRMS?: number;\n recvNoiseLevelCh1?: number;\n recvSignalLevelCh1?: number;\n renderLoopbackSignalLevel?: number;\n renderNoiseLevel?: number;\n renderSignalLevel?: number;\n}\n\ninterface MSAudioSendPayload extends MSPayloadBase {\n audioFECUsed?: boolean;\n samplingRate?: number;\n sendMutePercent?: number;\n signal?: MSAudioSendSignal;\n}\n\ninterface MSAudioSendSignal {\n noiseLevel?: number;\n sendNoiseLevelCh1?: number;\n sendSignalLevelCh1?: number;\n}\n\ninterface MSConnectivity {\n iceType?: MSIceType;\n iceWarningFlags?: MSIceWarningFlags;\n relayAddress?: MSRelayAddress;\n}\n\ninterface MSCredentialFilter {\n accept?: MSCredentialSpec[];\n}\n\ninterface MSCredentialParameters {\n type?: MSCredentialType;\n}\n\ninterface MSCredentialSpec {\n id?: string;\n type?: MSCredentialType;\n}\n\ninterface MSDelay {\n roundTrip?: number;\n roundTripMax?: number;\n}\n\ninterface MSDescription extends RTCStats {\n connectivity?: MSConnectivity;\n deviceDevName?: string;\n localAddr?: MSIPAddressInfo;\n networkconnectivity?: MSNetworkConnectivityInfo;\n reflexiveLocalIPAddr?: MSIPAddressInfo;\n remoteAddr?: MSIPAddressInfo;\n transport?: RTCIceProtocol;\n}\n\ninterface MSFIDOCredentialParameters extends MSCredentialParameters {\n algorithm?: string | Algorithm;\n authenticators?: AAGUID[];\n}\n\ninterface MSIceWarningFlags {\n allocationMessageIntegrityFailed?: boolean;\n alternateServerReceived?: boolean;\n connCheckMessageIntegrityFailed?: boolean;\n connCheckOtherError?: boolean;\n fipsAllocationFailure?: boolean;\n multipleRelayServersAttempted?: boolean;\n noRelayServersConfigured?: boolean;\n portRangeExhausted?: boolean;\n pseudoTLSFailure?: boolean;\n tcpNatConnectivityFailed?: boolean;\n tcpRelayConnectivityFailed?: boolean;\n turnAuthUnknownUsernameError?: boolean;\n turnTcpAllocateFailed?: boolean;\n turnTcpSendFailed?: boolean;\n turnTcpTimedOut?: boolean;\n turnTurnTcpConnectivityFailed?: boolean;\n turnUdpAllocateFailed?: boolean;\n turnUdpSendFailed?: boolean;\n udpLocalConnectivityFailed?: boolean;\n udpNatConnectivityFailed?: boolean;\n udpRelayConnectivityFailed?: boolean;\n useCandidateChecksFailed?: boolean;\n}\n\ninterface MSIPAddressInfo {\n ipAddr?: string;\n manufacturerMacAddrMask?: string;\n port?: number;\n}\n\ninterface MSJitter {\n interArrival?: number;\n interArrivalMax?: number;\n interArrivalSD?: number;\n}\n\ninterface MSLocalClientEventBase extends RTCStats {\n networkBandwidthLowEventRatio?: number;\n networkReceiveQualityEventRatio?: number;\n}\n\ninterface MSNetwork extends RTCStats {\n delay?: MSDelay;\n jitter?: MSJitter;\n packetLoss?: MSPacketLoss;\n utilization?: MSUtilization;\n}\n\ninterface MSNetworkConnectivityInfo {\n linkspeed?: number;\n networkConnectionDetails?: string;\n vpn?: boolean;\n}\n\ninterface MSNetworkInterfaceType {\n interfaceTypeEthernet?: boolean;\n interfaceTypePPP?: boolean;\n interfaceTypeTunnel?: boolean;\n interfaceTypeWireless?: boolean;\n interfaceTypeWWAN?: boolean;\n}\n\ninterface MSOutboundNetwork extends MSNetwork {\n appliedBandwidthLimit?: number;\n}\n\ninterface MSPacketLoss {\n lossRate?: number;\n lossRateMax?: number;\n}\n\ninterface MSPayloadBase extends RTCStats {\n payloadDescription?: string;\n}\n\ninterface MSPortRange {\n max?: number;\n min?: number;\n}\n\ninterface MSRelayAddress {\n port?: number;\n relayAddress?: string;\n}\n\ninterface MSSignatureParameters {\n userPrompt?: string;\n}\n\ninterface MSTransportDiagnosticsStats extends RTCStats {\n allocationTimeInMs?: number;\n baseAddress?: string;\n baseInterface?: MSNetworkInterfaceType;\n iceRole?: RTCIceRole;\n iceWarningFlags?: MSIceWarningFlags;\n interfaces?: MSNetworkInterfaceType;\n localAddress?: string;\n localAddrType?: MSIceAddrType;\n localInterface?: MSNetworkInterfaceType;\n localMR?: string;\n localMRTCPPort?: number;\n localSite?: string;\n msRtcEngineVersion?: string;\n networkName?: string;\n numConsentReqReceived?: number;\n numConsentReqSent?: number;\n numConsentRespReceived?: number;\n numConsentRespSent?: number;\n portRangeMax?: number;\n portRangeMin?: number;\n protocol?: RTCIceProtocol;\n remoteAddress?: string;\n remoteAddrType?: MSIceAddrType;\n remoteMR?: string;\n remoteMRTCPPort?: number;\n remoteSite?: string;\n rtpRtcpMux?: boolean;\n stunVer?: number;\n}\n\ninterface MSUtilization {\n bandwidthEstimation?: number;\n bandwidthEstimationAvg?: number;\n bandwidthEstimationMax?: number;\n bandwidthEstimationMin?: number;\n bandwidthEstimationStdDev?: number;\n packets?: number;\n}\n\ninterface MSVideoPayload extends MSPayloadBase {\n durationSeconds?: number;\n resolution?: string;\n videoBitRateAvg?: number;\n videoBitRateMax?: number;\n videoFrameRateAvg?: number;\n videoPacketLossRate?: number;\n}\n\ninterface MSVideoRecvPayload extends MSVideoPayload {\n lowBitRateCallPercent?: number;\n lowFrameRateCallPercent?: number;\n recvBitRateAverage?: number;\n recvBitRateMaximum?: number;\n recvCodecType?: string;\n recvFpsHarmonicAverage?: number;\n recvFrameRateAverage?: number;\n recvNumResSwitches?: number;\n recvReorderBufferMaxSuccessfullyOrderedExtent?: number;\n recvReorderBufferMaxSuccessfullyOrderedLateTime?: number;\n recvReorderBufferPacketsDroppedDueToBufferExhaustion?: number;\n recvReorderBufferPacketsDroppedDueToTimeout?: number;\n recvReorderBufferReorderedPackets?: number;\n recvResolutionHeight?: number;\n recvResolutionWidth?: number;\n recvVideoStreamsMax?: number;\n recvVideoStreamsMin?: number;\n recvVideoStreamsMode?: number;\n reorderBufferTotalPackets?: number;\n videoFrameLossRate?: number;\n videoPostFECPLR?: number;\n videoResolutions?: MSVideoResolutionDistribution;\n}\n\ninterface MSVideoResolutionDistribution {\n cifQuality?: number;\n h1080Quality?: number;\n h1440Quality?: number;\n h2160Quality?: number;\n h720Quality?: number;\n vgaQuality?: number;\n}\n\ninterface MSVideoSendPayload extends MSVideoPayload {\n sendBitRateAverage?: number;\n sendBitRateMaximum?: number;\n sendFrameRateAverage?: number;\n sendResolutionHeight?: number;\n sendResolutionWidth?: number;\n sendVideoStreamsMax?: number;\n}\n\ninterface MsZoomToOptions {\n animate?: string;\n contentX?: number;\n contentY?: number;\n scaleFactor?: number;\n viewportX?: string;\n viewportY?: string;\n}\n\ninterface MutationObserverInit {\n attributeFilter?: string[];\n attributeOldValue?: boolean;\n attributes?: boolean;\n characterData?: boolean;\n characterDataOldValue?: boolean;\n childList?: boolean;\n subtree?: boolean;\n}\n\ninterface NotificationOptions {\n body?: string;\n dir?: NotificationDirection;\n icon?: string;\n lang?: string;\n tag?: string;\n}\n\ninterface ObjectURLOptions {\n oneTimeOnly?: boolean;\n}\n\ninterface PaymentCurrencyAmount {\n currency?: string;\n currencySystem?: string;\n value?: string;\n}\n\ninterface PaymentDetails {\n displayItems?: PaymentItem[];\n error?: string;\n modifiers?: PaymentDetailsModifier[];\n shippingOptions?: PaymentShippingOption[];\n total?: PaymentItem;\n}\n\ninterface PaymentDetailsModifier {\n additionalDisplayItems?: PaymentItem[];\n data?: any;\n supportedMethods?: string[];\n total?: PaymentItem;\n}\n\ninterface PaymentItem {\n amount?: PaymentCurrencyAmount;\n label?: string;\n pending?: boolean;\n}\n\ninterface PaymentMethodData {\n data?: any;\n supportedMethods?: string[];\n}\n\ninterface PaymentOptions {\n requestPayerEmail?: boolean;\n requestPayerName?: boolean;\n requestPayerPhone?: boolean;\n requestShipping?: boolean;\n shippingType?: string;\n}\n\ninterface PaymentRequestUpdateEventInit extends EventInit {\n}\n\ninterface PaymentShippingOption {\n amount?: PaymentCurrencyAmount;\n id?: string;\n label?: string;\n selected?: boolean;\n}\n\ninterface PeriodicWaveConstraints {\n disableNormalization?: boolean;\n}\n\ninterface PointerEventInit extends MouseEventInit {\n height?: number;\n isPrimary?: boolean;\n pointerId?: number;\n pointerType?: string;\n pressure?: number;\n tiltX?: number;\n tiltY?: number;\n width?: number;\n}\n\ninterface PopStateEventInit extends EventInit {\n state?: any;\n}\n\ninterface PositionOptions {\n enableHighAccuracy?: boolean;\n maximumAge?: number;\n timeout?: number;\n}\n\ninterface ProgressEventInit extends EventInit {\n lengthComputable?: boolean;\n loaded?: number;\n total?: number;\n}\n\ninterface PushSubscriptionOptionsInit {\n applicationServerKey?: any;\n userVisibleOnly?: boolean;\n}\n\ninterface RegistrationOptions {\n scope?: string;\n}\n\ninterface RequestInit {\n body?: any;\n cache?: RequestCache;\n credentials?: RequestCredentials;\n headers?: any;\n integrity?: string;\n keepalive?: boolean;\n method?: string;\n mode?: RequestMode;\n redirect?: RequestRedirect;\n referrer?: string;\n referrerPolicy?: ReferrerPolicy;\n window?: any;\n}\n\ninterface ResponseInit {\n headers?: any;\n status?: number;\n statusText?: string;\n}\n\ninterface RTCConfiguration {\n bundlePolicy?: RTCBundlePolicy;\n iceServers?: RTCIceServer[];\n iceTransportPolicy?: RTCIceTransportPolicy;\n peerIdentity?: string;\n}\n\ninterface RTCDtlsFingerprint {\n algorithm?: string;\n value?: string;\n}\n\ninterface RTCDtlsParameters {\n fingerprints?: RTCDtlsFingerprint[];\n role?: RTCDtlsRole;\n}\n\ninterface RTCDTMFToneChangeEventInit extends EventInit {\n tone?: string;\n}\n\ninterface RTCIceCandidateAttributes extends RTCStats {\n addressSourceUrl?: string;\n candidateType?: RTCStatsIceCandidateType;\n ipAddress?: string;\n portNumber?: number;\n priority?: number;\n transport?: string;\n}\n\ninterface RTCIceCandidateComplete {\n}\n\ninterface RTCIceCandidateDictionary {\n foundation?: string;\n ip?: string;\n msMTurnSessionId?: string;\n port?: number;\n priority?: number;\n protocol?: RTCIceProtocol;\n relatedAddress?: string;\n relatedPort?: number;\n tcpType?: RTCIceTcpCandidateType;\n type?: RTCIceCandidateType;\n}\n\ninterface RTCIceCandidateInit {\n candidate?: string;\n sdpMid?: string;\n sdpMLineIndex?: number;\n}\n\ninterface RTCIceCandidatePair {\n local?: RTCIceCandidateDictionary;\n remote?: RTCIceCandidateDictionary;\n}\n\ninterface RTCIceCandidatePairStats extends RTCStats {\n availableIncomingBitrate?: number;\n availableOutgoingBitrate?: number;\n bytesReceived?: number;\n bytesSent?: number;\n localCandidateId?: string;\n nominated?: boolean;\n priority?: number;\n readable?: boolean;\n remoteCandidateId?: string;\n roundTripTime?: number;\n state?: RTCStatsIceCandidatePairState;\n transportId?: string;\n writable?: boolean;\n}\n\ninterface RTCIceGatherOptions {\n gatherPolicy?: RTCIceGatherPolicy;\n iceservers?: RTCIceServer[];\n portRange?: MSPortRange;\n}\n\ninterface RTCIceParameters {\n iceLite?: boolean;\n password?: string;\n usernameFragment?: string;\n}\n\ninterface RTCIceServer {\n credential?: string;\n urls?: any;\n username?: string;\n}\n\ninterface RTCInboundRTPStreamStats extends RTCRTPStreamStats {\n bytesReceived?: number;\n fractionLost?: number;\n jitter?: number;\n packetsLost?: number;\n packetsReceived?: number;\n}\n\ninterface RTCMediaStreamTrackStats extends RTCStats {\n audioLevel?: number;\n echoReturnLoss?: number;\n echoReturnLossEnhancement?: number;\n frameHeight?: number;\n framesCorrupted?: number;\n framesDecoded?: number;\n framesDropped?: number;\n framesPerSecond?: number;\n framesReceived?: number;\n framesSent?: number;\n frameWidth?: number;\n remoteSource?: boolean;\n ssrcIds?: string[];\n trackIdentifier?: string;\n}\n\ninterface RTCOfferOptions {\n iceRestart?: boolean;\n offerToReceiveAudio?: number;\n offerToReceiveVideo?: number;\n voiceActivityDetection?: boolean;\n}\n\ninterface RTCOutboundRTPStreamStats extends RTCRTPStreamStats {\n bytesSent?: number;\n packetsSent?: number;\n roundTripTime?: number;\n targetBitrate?: number;\n}\n\ninterface RTCPeerConnectionIceEventInit extends EventInit {\n candidate?: RTCIceCandidate;\n}\n\ninterface RTCRtcpFeedback {\n parameter?: string;\n type?: string;\n}\n\ninterface RTCRtcpParameters {\n cname?: string;\n mux?: boolean;\n reducedSize?: boolean;\n ssrc?: number;\n}\n\ninterface RTCRtpCapabilities {\n codecs?: RTCRtpCodecCapability[];\n fecMechanisms?: string[];\n headerExtensions?: RTCRtpHeaderExtension[];\n}\n\ninterface RTCRtpCodecCapability {\n clockRate?: number;\n kind?: string;\n maxptime?: number;\n maxSpatialLayers?: number;\n maxTemporalLayers?: number;\n name?: string;\n numChannels?: number;\n options?: any;\n parameters?: any;\n preferredPayloadType?: number;\n ptime?: number;\n rtcpFeedback?: RTCRtcpFeedback[];\n svcMultiStreamSupport?: boolean;\n}\n\ninterface RTCRtpCodecParameters {\n clockRate?: number;\n maxptime?: number;\n name?: string;\n numChannels?: number;\n parameters?: any;\n payloadType?: any;\n ptime?: number;\n rtcpFeedback?: RTCRtcpFeedback[];\n}\n\ninterface RTCRtpContributingSource {\n audioLevel?: number;\n csrc?: number;\n timestamp?: number;\n}\n\ninterface RTCRtpEncodingParameters {\n active?: boolean;\n codecPayloadType?: number;\n dependencyEncodingIds?: string[];\n encodingId?: string;\n fec?: RTCRtpFecParameters;\n framerateScale?: number;\n maxBitrate?: number;\n maxFramerate?: number;\n minQuality?: number;\n priority?: number;\n resolutionScale?: number;\n rtx?: RTCRtpRtxParameters;\n ssrc?: number;\n ssrcRange?: RTCSsrcRange;\n}\n\ninterface RTCRtpFecParameters {\n mechanism?: string;\n ssrc?: number;\n}\n\ninterface RTCRtpHeaderExtension {\n kind?: string;\n preferredEncrypt?: boolean;\n preferredId?: number;\n uri?: string;\n}\n\ninterface RTCRtpHeaderExtensionParameters {\n encrypt?: boolean;\n id?: number;\n uri?: string;\n}\n\ninterface RTCRtpParameters {\n codecs?: RTCRtpCodecParameters[];\n degradationPreference?: RTCDegradationPreference;\n encodings?: RTCRtpEncodingParameters[];\n headerExtensions?: RTCRtpHeaderExtensionParameters[];\n muxId?: string;\n rtcp?: RTCRtcpParameters;\n}\n\ninterface RTCRtpRtxParameters {\n ssrc?: number;\n}\n\ninterface RTCRTPStreamStats extends RTCStats {\n associateStatsId?: string;\n codecId?: string;\n firCount?: number;\n isRemote?: boolean;\n mediaTrackId?: string;\n nackCount?: number;\n pliCount?: number;\n sliCount?: number;\n ssrc?: string;\n transportId?: string;\n}\n\ninterface RTCRtpUnhandled {\n muxId?: string;\n payloadType?: number;\n ssrc?: number;\n}\n\ninterface RTCSessionDescriptionInit {\n sdp?: string;\n type?: RTCSdpType;\n}\n\ninterface RTCSrtpKeyParam {\n keyMethod?: string;\n keySalt?: string;\n lifetime?: string;\n mkiLength?: number;\n mkiValue?: number;\n}\n\ninterface RTCSrtpSdesParameters {\n cryptoSuite?: string;\n keyParams?: RTCSrtpKeyParam[];\n sessionParams?: string[];\n tag?: number;\n}\n\ninterface RTCSsrcRange {\n max?: number;\n min?: number;\n}\n\ninterface RTCStats {\n id?: string;\n msType?: MSStatsType;\n timestamp?: number;\n type?: RTCStatsType;\n}\n\ninterface RTCStatsReport {\n}\n\ninterface RTCTransportStats extends RTCStats {\n activeConnection?: boolean;\n bytesReceived?: number;\n bytesSent?: number;\n localCertificateId?: string;\n remoteCertificateId?: string;\n rtcpTransportStatsId?: string;\n selectedCandidatePairId?: string;\n}\n\ninterface ScopedCredentialDescriptor {\n id?: any;\n transports?: Transport[];\n type?: ScopedCredentialType;\n}\n\ninterface ScopedCredentialOptions {\n excludeList?: ScopedCredentialDescriptor[];\n extensions?: WebAuthnExtensions;\n rpId?: USVString;\n timeoutSeconds?: number;\n}\n\ninterface ScopedCredentialParameters {\n algorithm?: string | Algorithm;\n type?: ScopedCredentialType;\n}\n\ninterface ServiceWorkerMessageEventInit extends EventInit {\n data?: any;\n lastEventId?: string;\n origin?: string;\n ports?: MessagePort[];\n source?: ServiceWorker | MessagePort;\n}\n\ninterface SpeechSynthesisEventInit extends EventInit {\n charIndex?: number;\n elapsedTime?: number;\n name?: string;\n utterance?: SpeechSynthesisUtterance;\n}\n\ninterface StoreExceptionsInformation extends ExceptionInformation {\n detailURI?: string;\n explanationString?: string;\n siteName?: string;\n}\n\ninterface StoreSiteSpecificExceptionsInformation extends StoreExceptionsInformation {\n arrayOfDomainStrings?: string[];\n}\n\ninterface TrackEventInit extends EventInit {\n track?: VideoTrack | AudioTrack | TextTrack;\n}\n\ninterface TransitionEventInit extends EventInit {\n elapsedTime?: number;\n propertyName?: string;\n}\n\ninterface UIEventInit extends EventInit {\n detail?: number;\n view?: Window;\n}\n\ninterface WebAuthnExtensions {\n}\n\ninterface WebGLContextAttributes {\n failIfMajorPerformanceCaveat?: boolean;\n alpha?: boolean;\n antialias?: boolean;\n depth?: boolean;\n premultipliedAlpha?: boolean;\n preserveDrawingBuffer?: boolean;\n stencil?: boolean;\n}\n\ninterface WebGLContextEventInit extends EventInit {\n statusMessage?: string;\n}\n\ninterface WheelEventInit extends MouseEventInit {\n deltaMode?: number;\n deltaX?: number;\n deltaY?: number;\n deltaZ?: number;\n}\n\ninterface EventListener {\n (evt: Event): void;\n}\n\ninterface WebKitEntriesCallback {\n (evt: Event): void;\n}\n\ninterface WebKitErrorCallback {\n (evt: Event): void;\n}\n\ninterface WebKitFileCallback {\n (evt: Event): void;\n}\n\ninterface AnalyserNode extends AudioNode {\n fftSize: number;\n readonly frequencyBinCount: number;\n maxDecibels: number;\n minDecibels: number;\n smoothingTimeConstant: number;\n getByteFrequencyData(array: Uint8Array): void;\n getByteTimeDomainData(array: Uint8Array): void;\n getFloatFrequencyData(array: Float32Array): void;\n getFloatTimeDomainData(array: Float32Array): void;\n}\n\ndeclare var AnalyserNode: {\n prototype: AnalyserNode;\n new(): AnalyserNode;\n};\n\ninterface ANGLE_instanced_arrays {\n drawArraysInstancedANGLE(mode: number, first: number, count: number, primcount: number): void;\n drawElementsInstancedANGLE(mode: number, count: number, type: number, offset: number, primcount: number): void;\n vertexAttribDivisorANGLE(index: number, divisor: number): void;\n readonly VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE: number;\n}\n\ndeclare var ANGLE_instanced_arrays: {\n prototype: ANGLE_instanced_arrays;\n new(): ANGLE_instanced_arrays;\n readonly VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE: number;\n};\n\ninterface AnimationEvent extends Event {\n readonly animationName: string;\n readonly elapsedTime: number;\n initAnimationEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, animationNameArg: string, elapsedTimeArg: number): void;\n}\n\ndeclare var AnimationEvent: {\n prototype: AnimationEvent;\n new(typeArg: string, eventInitDict?: AnimationEventInit): AnimationEvent;\n};\n\ninterface ApplicationCacheEventMap {\n "cached": Event;\n "checking": Event;\n "downloading": Event;\n "error": Event;\n "noupdate": Event;\n "obsolete": Event;\n "progress": ProgressEvent;\n "updateready": Event;\n}\n\ninterface ApplicationCache extends EventTarget {\n oncached: (this: ApplicationCache, ev: Event) => any;\n onchecking: (this: ApplicationCache, ev: Event) => any;\n ondownloading: (this: ApplicationCache, ev: Event) => any;\n onerror: (this: ApplicationCache, ev: Event) => any;\n onnoupdate: (this: ApplicationCache, ev: Event) => any;\n onobsolete: (this: ApplicationCache, ev: Event) => any;\n onprogress: (this: ApplicationCache, ev: ProgressEvent) => any;\n onupdateready: (this: ApplicationCache, ev: Event) => any;\n readonly status: number;\n abort(): void;\n swapCache(): void;\n update(): void;\n readonly CHECKING: number;\n readonly DOWNLOADING: number;\n readonly IDLE: number;\n readonly OBSOLETE: number;\n readonly UNCACHED: number;\n readonly UPDATEREADY: number;\n addEventListener<K extends keyof ApplicationCacheEventMap>(type: K, listener: (this: ApplicationCache, ev: ApplicationCacheEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var ApplicationCache: {\n prototype: ApplicationCache;\n new(): ApplicationCache;\n readonly CHECKING: number;\n readonly DOWNLOADING: number;\n readonly IDLE: number;\n readonly OBSOLETE: number;\n readonly UNCACHED: number;\n readonly UPDATEREADY: number;\n};\n\ninterface Attr extends Node {\n readonly name: string;\n readonly ownerElement: Element;\n readonly prefix: string | null;\n readonly specified: boolean;\n value: string;\n}\n\ndeclare var Attr: {\n prototype: Attr;\n new(): Attr;\n};\n\ninterface AudioBuffer {\n readonly duration: number;\n readonly length: number;\n readonly numberOfChannels: number;\n readonly sampleRate: number;\n copyFromChannel(destination: Float32Array, channelNumber: number, startInChannel?: number): void;\n copyToChannel(source: Float32Array, channelNumber: number, startInChannel?: number): void;\n getChannelData(channel: number): Float32Array;\n}\n\ndeclare var AudioBuffer: {\n prototype: AudioBuffer;\n new(): AudioBuffer;\n};\n\ninterface AudioBufferSourceNodeEventMap {\n "ended": MediaStreamErrorEvent;\n}\n\ninterface AudioBufferSourceNode extends AudioNode {\n buffer: AudioBuffer | null;\n readonly detune: AudioParam;\n loop: boolean;\n loopEnd: number;\n loopStart: number;\n onended: (this: AudioBufferSourceNode, ev: MediaStreamErrorEvent) => any;\n readonly playbackRate: AudioParam;\n start(when?: number, offset?: number, duration?: number): void;\n stop(when?: number): void;\n addEventListener<K extends keyof AudioBufferSourceNodeEventMap>(type: K, listener: (this: AudioBufferSourceNode, ev: AudioBufferSourceNodeEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var AudioBufferSourceNode: {\n prototype: AudioBufferSourceNode;\n new(): AudioBufferSourceNode;\n};\n\ninterface AudioContextEventMap {\n "statechange": Event;\n}\n\ninterface AudioContextBase extends EventTarget {\n readonly currentTime: number;\n readonly destination: AudioDestinationNode;\n readonly listener: AudioListener;\n onstatechange: (this: AudioContext, ev: Event) => any;\n readonly sampleRate: number;\n readonly state: AudioContextState;\n close(): Promise<void>;\n createAnalyser(): AnalyserNode;\n createBiquadFilter(): BiquadFilterNode;\n createBuffer(numberOfChannels: number, length: number, sampleRate: number): AudioBuffer;\n createBufferSource(): AudioBufferSourceNode;\n createChannelMerger(numberOfInputs?: number): ChannelMergerNode;\n createChannelSplitter(numberOfOutputs?: number): ChannelSplitterNode;\n createConvolver(): ConvolverNode;\n createDelay(maxDelayTime?: number): DelayNode;\n createDynamicsCompressor(): DynamicsCompressorNode;\n createGain(): GainNode;\n createIIRFilter(feedforward: number[], feedback: number[]): IIRFilterNode;\n createMediaElementSource(mediaElement: HTMLMediaElement): MediaElementAudioSourceNode;\n createMediaStreamSource(mediaStream: MediaStream): MediaStreamAudioSourceNode;\n createOscillator(): OscillatorNode;\n createPanner(): PannerNode;\n createPeriodicWave(real: Float32Array, imag: Float32Array, constraints?: PeriodicWaveConstraints): PeriodicWave;\n createScriptProcessor(bufferSize?: number, numberOfInputChannels?: number, numberOfOutputChannels?: number): ScriptProcessorNode;\n createStereoPanner(): StereoPannerNode;\n createWaveShaper(): WaveShaperNode;\n decodeAudioData(audioData: ArrayBuffer, successCallback?: DecodeSuccessCallback, errorCallback?: DecodeErrorCallback): Promise<AudioBuffer>;\n resume(): Promise<void>;\n addEventListener<K extends keyof AudioContextEventMap>(type: K, listener: (this: AudioContext, ev: AudioContextEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ninterface AudioContext extends AudioContextBase {\n suspend(): Promise<void>;\n}\n\ndeclare var AudioContext: {\n prototype: AudioContext;\n new(): AudioContext;\n};\n\ninterface AudioDestinationNode extends AudioNode {\n readonly maxChannelCount: number;\n}\n\ndeclare var AudioDestinationNode: {\n prototype: AudioDestinationNode;\n new(): AudioDestinationNode;\n};\n\ninterface AudioListener {\n dopplerFactor: number;\n speedOfSound: number;\n setOrientation(x: number, y: number, z: number, xUp: number, yUp: number, zUp: number): void;\n setPosition(x: number, y: number, z: number): void;\n setVelocity(x: number, y: number, z: number): void;\n}\n\ndeclare var AudioListener: {\n prototype: AudioListener;\n new(): AudioListener;\n};\n\ninterface AudioNode extends EventTarget {\n channelCount: number;\n channelCountMode: ChannelCountMode;\n channelInterpretation: ChannelInterpretation;\n readonly context: AudioContext;\n readonly numberOfInputs: number;\n readonly numberOfOutputs: number;\n connect(destination: AudioNode, output?: number, input?: number): AudioNode;\n connect(destination: AudioParam, output?: number): void;\n disconnect(output?: number): void;\n disconnect(destination: AudioNode, output?: number, input?: number): void;\n disconnect(destination: AudioParam, output?: number): void;\n}\n\ndeclare var AudioNode: {\n prototype: AudioNode;\n new(): AudioNode;\n};\n\ninterface AudioParam {\n readonly defaultValue: number;\n value: number;\n cancelScheduledValues(startTime: number): AudioParam;\n exponentialRampToValueAtTime(value: number, endTime: number): AudioParam;\n linearRampToValueAtTime(value: number, endTime: number): AudioParam;\n setTargetAtTime(target: number, startTime: number, timeConstant: number): AudioParam;\n setValueAtTime(value: number, startTime: number): AudioParam;\n setValueCurveAtTime(values: Float32Array, startTime: number, duration: number): AudioParam;\n}\n\ndeclare var AudioParam: {\n prototype: AudioParam;\n new(): AudioParam;\n};\n\ninterface AudioProcessingEvent extends Event {\n readonly inputBuffer: AudioBuffer;\n readonly outputBuffer: AudioBuffer;\n readonly playbackTime: number;\n}\n\ndeclare var AudioProcessingEvent: {\n prototype: AudioProcessingEvent;\n new(): AudioProcessingEvent;\n};\n\ninterface AudioTrack {\n enabled: boolean;\n readonly id: string;\n kind: string;\n readonly label: string;\n language: string;\n readonly sourceBuffer: SourceBuffer;\n}\n\ndeclare var AudioTrack: {\n prototype: AudioTrack;\n new(): AudioTrack;\n};\n\ninterface AudioTrackListEventMap {\n "addtrack": TrackEvent;\n "change": Event;\n "removetrack": TrackEvent;\n}\n\ninterface AudioTrackList extends EventTarget {\n readonly length: number;\n onaddtrack: (this: AudioTrackList, ev: TrackEvent) => any;\n onchange: (this: AudioTrackList, ev: Event) => any;\n onremovetrack: (this: AudioTrackList, ev: TrackEvent) => any;\n getTrackById(id: string): AudioTrack | null;\n item(index: number): AudioTrack;\n addEventListener<K extends keyof AudioTrackListEventMap>(type: K, listener: (this: AudioTrackList, ev: AudioTrackListEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n [index: number]: AudioTrack;\n}\n\ndeclare var AudioTrackList: {\n prototype: AudioTrackList;\n new(): AudioTrackList;\n};\n\ninterface BarProp {\n readonly visible: boolean;\n}\n\ndeclare var BarProp: {\n prototype: BarProp;\n new(): BarProp;\n};\n\ninterface BeforeUnloadEvent extends Event {\n returnValue: any;\n}\n\ndeclare var BeforeUnloadEvent: {\n prototype: BeforeUnloadEvent;\n new(): BeforeUnloadEvent;\n};\n\ninterface BiquadFilterNode extends AudioNode {\n readonly detune: AudioParam;\n readonly frequency: AudioParam;\n readonly gain: AudioParam;\n readonly Q: AudioParam;\n type: BiquadFilterType;\n getFrequencyResponse(frequencyHz: Float32Array, magResponse: Float32Array, phaseResponse: Float32Array): void;\n}\n\ndeclare var BiquadFilterNode: {\n prototype: BiquadFilterNode;\n new(): BiquadFilterNode;\n};\n\ninterface Blob {\n readonly size: number;\n readonly type: string;\n msClose(): void;\n msDetachStream(): any;\n slice(start?: number, end?: number, contentType?: string): Blob;\n}\n\ndeclare var Blob: {\n prototype: Blob;\n new (blobParts?: any[], options?: BlobPropertyBag): Blob;\n};\n\ninterface Cache {\n add(request: RequestInfo): Promise<void>;\n addAll(requests: RequestInfo[]): Promise<void>;\n delete(request: RequestInfo, options?: CacheQueryOptions): Promise<boolean>;\n keys(request?: RequestInfo, options?: CacheQueryOptions): any;\n match(request: RequestInfo, options?: CacheQueryOptions): Promise<Response>;\n matchAll(request?: RequestInfo, options?: CacheQueryOptions): any;\n put(request: RequestInfo, response: Response): Promise<void>;\n}\n\ndeclare var Cache: {\n prototype: Cache;\n new(): Cache;\n};\n\ninterface CacheStorage {\n delete(cacheName: string): Promise<boolean>;\n has(cacheName: string): Promise<boolean>;\n keys(): any;\n match(request: RequestInfo, options?: CacheQueryOptions): Promise<any>;\n open(cacheName: string): Promise<Cache>;\n}\n\ndeclare var CacheStorage: {\n prototype: CacheStorage;\n new(): CacheStorage;\n};\n\ninterface CanvasGradient {\n addColorStop(offset: number, color: string): void;\n}\n\ndeclare var CanvasGradient: {\n prototype: CanvasGradient;\n new(): CanvasGradient;\n};\n\ninterface CanvasPattern {\n setTransform(matrix: SVGMatrix): void;\n}\n\ndeclare var CanvasPattern: {\n prototype: CanvasPattern;\n new(): CanvasPattern;\n};\n\ninterface CanvasRenderingContext2D extends Object, CanvasPathMethods {\n readonly canvas: HTMLCanvasElement;\n fillStyle: string | CanvasGradient | CanvasPattern;\n font: string;\n globalAlpha: number;\n globalCompositeOperation: string;\n imageSmoothingEnabled: boolean;\n lineCap: string;\n lineDashOffset: number;\n lineJoin: string;\n lineWidth: number;\n miterLimit: number;\n msFillRule: CanvasFillRule;\n shadowBlur: number;\n shadowColor: string;\n shadowOffsetX: number;\n shadowOffsetY: number;\n strokeStyle: string | CanvasGradient | CanvasPattern;\n textAlign: string;\n textBaseline: string;\n mozImageSmoothingEnabled: boolean;\n webkitImageSmoothingEnabled: boolean;\n oImageSmoothingEnabled: boolean;\n beginPath(): void;\n clearRect(x: number, y: number, w: number, h: number): void;\n clip(fillRule?: CanvasFillRule): void;\n createImageData(imageDataOrSw: number | ImageData, sh?: number): ImageData;\n createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;\n createPattern(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement, repetition: string): CanvasPattern;\n createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;\n drawFocusIfNeeded(element: Element): void;\n drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, dstX: number, dstY: number): void;\n drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, dstX: number, dstY: number, dstW: number, dstH: number): void;\n drawImage(image: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap, srcX: number, srcY: number, srcW: number, srcH: number, dstX: number, dstY: number, dstW: number, dstH: number): void;\n fill(fillRule?: CanvasFillRule): void;\n fillRect(x: number, y: number, w: number, h: number): void;\n fillText(text: string, x: number, y: number, maxWidth?: number): void;\n getImageData(sx: number, sy: number, sw: number, sh: number): ImageData;\n getLineDash(): number[];\n isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean;\n measureText(text: string): TextMetrics;\n putImageData(imagedata: ImageData, dx: number, dy: number, dirtyX?: number, dirtyY?: number, dirtyWidth?: number, dirtyHeight?: number): void;\n restore(): void;\n rotate(angle: number): void;\n save(): void;\n scale(x: number, y: number): void;\n setLineDash(segments: number[]): void;\n setTransform(m11: number, m12: number, m21: number, m22: number, dx: number, dy: number): void;\n stroke(path?: Path2D): void;\n strokeRect(x: number, y: number, w: number, h: number): void;\n strokeText(text: string, x: number, y: number, maxWidth?: number): void;\n transform(m11: number, m12: number, m21: number, m22: number, dx: number, dy: number): void;\n translate(x: number, y: number): void;\n}\n\ndeclare var CanvasRenderingContext2D: {\n prototype: CanvasRenderingContext2D;\n new(): CanvasRenderingContext2D;\n};\n\ninterface CDATASection extends Text {\n}\n\ndeclare var CDATASection: {\n prototype: CDATASection;\n new(): CDATASection;\n};\n\ninterface ChannelMergerNode extends AudioNode {\n}\n\ndeclare var ChannelMergerNode: {\n prototype: ChannelMergerNode;\n new(): ChannelMergerNode;\n};\n\ninterface ChannelSplitterNode extends AudioNode {\n}\n\ndeclare var ChannelSplitterNode: {\n prototype: ChannelSplitterNode;\n new(): ChannelSplitterNode;\n};\n\ninterface CharacterData extends Node, ChildNode {\n data: string;\n readonly length: number;\n appendData(arg: string): void;\n deleteData(offset: number, count: number): void;\n insertData(offset: number, arg: string): void;\n replaceData(offset: number, count: number, arg: string): void;\n substringData(offset: number, count: number): string;\n}\n\ndeclare var CharacterData: {\n prototype: CharacterData;\n new(): CharacterData;\n};\n\ninterface ClientRect {\n bottom: number;\n readonly height: number;\n left: number;\n right: number;\n top: number;\n readonly width: number;\n}\n\ndeclare var ClientRect: {\n prototype: ClientRect;\n new(): ClientRect;\n};\n\ninterface ClientRectList {\n readonly length: number;\n item(index: number): ClientRect;\n [index: number]: ClientRect;\n}\n\ndeclare var ClientRectList: {\n prototype: ClientRectList;\n new(): ClientRectList;\n};\n\ninterface ClipboardEvent extends Event {\n readonly clipboardData: DataTransfer;\n}\n\ndeclare var ClipboardEvent: {\n prototype: ClipboardEvent;\n new(type: string, eventInitDict?: ClipboardEventInit): ClipboardEvent;\n};\n\ninterface CloseEvent extends Event {\n readonly code: number;\n readonly reason: string;\n readonly wasClean: boolean;\n initCloseEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, wasCleanArg: boolean, codeArg: number, reasonArg: string): void;\n}\n\ndeclare var CloseEvent: {\n prototype: CloseEvent;\n new(typeArg: string, eventInitDict?: CloseEventInit): CloseEvent;\n};\n\ninterface Comment extends CharacterData {\n text: string;\n}\n\ndeclare var Comment: {\n prototype: Comment;\n new(): Comment;\n};\n\ninterface CompositionEvent extends UIEvent {\n readonly data: string;\n readonly locale: string;\n initCompositionEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, dataArg: string, locale: string): void;\n}\n\ndeclare var CompositionEvent: {\n prototype: CompositionEvent;\n new(typeArg: string, eventInitDict?: CompositionEventInit): CompositionEvent;\n};\n\ninterface Console {\n assert(test?: boolean, message?: string, ...optionalParams: any[]): void;\n clear(): void;\n count(countTitle?: string): void;\n debug(message?: any, ...optionalParams: any[]): void;\n dir(value?: any, ...optionalParams: any[]): void;\n dirxml(value: any): void;\n error(message?: any, ...optionalParams: any[]): void;\n exception(message?: string, ...optionalParams: any[]): void;\n group(groupTitle?: string, ...optionalParams: any[]): void;\n groupCollapsed(groupTitle?: string, ...optionalParams: any[]): void;\n groupEnd(): void;\n info(message?: any, ...optionalParams: any[]): void;\n log(message?: any, ...optionalParams: any[]): void;\n msIsIndependentlyComposed(element: Element): boolean;\n profile(reportName?: string): void;\n profileEnd(): void;\n select(element: Element): void;\n table(...data: any[]): void;\n time(timerName?: string): void;\n timeEnd(timerName?: string): void;\n trace(message?: any, ...optionalParams: any[]): void;\n warn(message?: any, ...optionalParams: any[]): void;\n}\n\ndeclare var Console: {\n prototype: Console;\n new(): Console;\n};\n\ninterface ConvolverNode extends AudioNode {\n buffer: AudioBuffer | null;\n normalize: boolean;\n}\n\ndeclare var ConvolverNode: {\n prototype: ConvolverNode;\n new(): ConvolverNode;\n};\n\ninterface Coordinates {\n readonly accuracy: number;\n readonly altitude: number | null;\n readonly altitudeAccuracy: number | null;\n readonly heading: number | null;\n readonly latitude: number;\n readonly longitude: number;\n readonly speed: number | null;\n}\n\ndeclare var Coordinates: {\n prototype: Coordinates;\n new(): Coordinates;\n};\n\ninterface Crypto extends Object, RandomSource {\n readonly subtle: SubtleCrypto;\n}\n\ndeclare var Crypto: {\n prototype: Crypto;\n new(): Crypto;\n};\n\ninterface CryptoKey {\n readonly algorithm: KeyAlgorithm;\n readonly extractable: boolean;\n readonly type: string;\n readonly usages: string[];\n}\n\ndeclare var CryptoKey: {\n prototype: CryptoKey;\n new(): CryptoKey;\n};\n\ninterface CryptoKeyPair {\n privateKey: CryptoKey;\n publicKey: CryptoKey;\n}\n\ndeclare var CryptoKeyPair: {\n prototype: CryptoKeyPair;\n new(): CryptoKeyPair;\n};\n\ninterface CSS {\n supports(property: string, value?: string): boolean;\n}\ndeclare var CSS: CSS;\n\ninterface CSSConditionRule extends CSSGroupingRule {\n conditionText: string;\n}\n\ndeclare var CSSConditionRule: {\n prototype: CSSConditionRule;\n new(): CSSConditionRule;\n};\n\ninterface CSSFontFaceRule extends CSSRule {\n readonly style: CSSStyleDeclaration;\n}\n\ndeclare var CSSFontFaceRule: {\n prototype: CSSFontFaceRule;\n new(): CSSFontFaceRule;\n};\n\ninterface CSSGroupingRule extends CSSRule {\n readonly cssRules: CSSRuleList;\n deleteRule(index: number): void;\n insertRule(rule: string, index: number): number;\n}\n\ndeclare var CSSGroupingRule: {\n prototype: CSSGroupingRule;\n new(): CSSGroupingRule;\n};\n\ninterface CSSImportRule extends CSSRule {\n readonly href: string;\n readonly media: MediaList;\n readonly styleSheet: CSSStyleSheet;\n}\n\ndeclare var CSSImportRule: {\n prototype: CSSImportRule;\n new(): CSSImportRule;\n};\n\ninterface CSSKeyframeRule extends CSSRule {\n keyText: string;\n readonly style: CSSStyleDeclaration;\n}\n\ndeclare var CSSKeyframeRule: {\n prototype: CSSKeyframeRule;\n new(): CSSKeyframeRule;\n};\n\ninterface CSSKeyframesRule extends CSSRule {\n readonly cssRules: CSSRuleList;\n name: string;\n appendRule(rule: string): void;\n deleteRule(rule: string): void;\n findRule(rule: string): CSSKeyframeRule;\n}\n\ndeclare var CSSKeyframesRule: {\n prototype: CSSKeyframesRule;\n new(): CSSKeyframesRule;\n};\n\ninterface CSSMediaRule extends CSSConditionRule {\n readonly media: MediaList;\n}\n\ndeclare var CSSMediaRule: {\n prototype: CSSMediaRule;\n new(): CSSMediaRule;\n};\n\ninterface CSSNamespaceRule extends CSSRule {\n readonly namespaceURI: string;\n readonly prefix: string;\n}\n\ndeclare var CSSNamespaceRule: {\n prototype: CSSNamespaceRule;\n new(): CSSNamespaceRule;\n};\n\ninterface CSSPageRule extends CSSRule {\n readonly pseudoClass: string;\n readonly selector: string;\n selectorText: string;\n readonly style: CSSStyleDeclaration;\n}\n\ndeclare var CSSPageRule: {\n prototype: CSSPageRule;\n new(): CSSPageRule;\n};\n\ninterface CSSRule {\n cssText: string;\n readonly parentRule: CSSRule;\n readonly parentStyleSheet: CSSStyleSheet;\n readonly type: number;\n readonly CHARSET_RULE: number;\n readonly FONT_FACE_RULE: number;\n readonly IMPORT_RULE: number;\n readonly KEYFRAME_RULE: number;\n readonly KEYFRAMES_RULE: number;\n readonly MEDIA_RULE: number;\n readonly NAMESPACE_RULE: number;\n readonly PAGE_RULE: number;\n readonly STYLE_RULE: number;\n readonly SUPPORTS_RULE: number;\n readonly UNKNOWN_RULE: number;\n readonly VIEWPORT_RULE: number;\n}\n\ndeclare var CSSRule: {\n prototype: CSSRule;\n new(): CSSRule;\n readonly CHARSET_RULE: number;\n readonly FONT_FACE_RULE: number;\n readonly IMPORT_RULE: number;\n readonly KEYFRAME_RULE: number;\n readonly KEYFRAMES_RULE: number;\n readonly MEDIA_RULE: number;\n readonly NAMESPACE_RULE: number;\n readonly PAGE_RULE: number;\n readonly STYLE_RULE: number;\n readonly SUPPORTS_RULE: number;\n readonly UNKNOWN_RULE: number;\n readonly VIEWPORT_RULE: number;\n};\n\ninterface CSSRuleList {\n readonly length: number;\n item(index: number): CSSRule;\n [index: number]: CSSRule;\n}\n\ndeclare var CSSRuleList: {\n prototype: CSSRuleList;\n new(): CSSRuleList;\n};\n\ninterface CSSStyleDeclaration {\n alignContent: string | null;\n alignItems: string | null;\n alignmentBaseline: string | null;\n alignSelf: string | null;\n animation: string | null;\n animationDelay: string | null;\n animationDirection: string | null;\n animationDuration: string | null;\n animationFillMode: string | null;\n animationIterationCount: string | null;\n animationName: string | null;\n animationPlayState: string | null;\n animationTimingFunction: string | null;\n backfaceVisibility: string | null;\n background: string | null;\n backgroundAttachment: string | null;\n backgroundClip: string | null;\n backgroundColor: string | null;\n backgroundImage: string | null;\n backgroundOrigin: string | null;\n backgroundPosition: string | null;\n backgroundPositionX: string | null;\n backgroundPositionY: string | null;\n backgroundRepeat: string | null;\n backgroundSize: string | null;\n baselineShift: string | null;\n border: string | null;\n borderBottom: string | null;\n borderBottomColor: string | null;\n borderBottomLeftRadius: string | null;\n borderBottomRightRadius: string | null;\n borderBottomStyle: string | null;\n borderBottomWidth: string | null;\n borderCollapse: string | null;\n borderColor: string | null;\n borderImage: string | null;\n borderImageOutset: string | null;\n borderImageRepeat: string | null;\n borderImageSlice: string | null;\n borderImageSource: string | null;\n borderImageWidth: string | null;\n borderLeft: string | null;\n borderLeftColor: string | null;\n borderLeftStyle: string | null;\n borderLeftWidth: string | null;\n borderRadius: string | null;\n borderRight: string | null;\n borderRightColor: string | null;\n borderRightStyle: string | null;\n borderRightWidth: string | null;\n borderSpacing: string | null;\n borderStyle: string | null;\n borderTop: string | null;\n borderTopColor: string | null;\n borderTopLeftRadius: string | null;\n borderTopRightRadius: string | null;\n borderTopStyle: string | null;\n borderTopWidth: string | null;\n borderWidth: string | null;\n bottom: string | null;\n boxShadow: string | null;\n boxSizing: string | null;\n breakAfter: string | null;\n breakBefore: string | null;\n breakInside: string | null;\n captionSide: string | null;\n clear: string | null;\n clip: string | null;\n clipPath: string | null;\n clipRule: string | null;\n color: string | null;\n colorInterpolationFilters: string | null;\n columnCount: any;\n columnFill: string | null;\n columnGap: any;\n columnRule: string | null;\n columnRuleColor: any;\n columnRuleStyle: string | null;\n columnRuleWidth: any;\n columns: string | null;\n columnSpan: string | null;\n columnWidth: any;\n content: string | null;\n counterIncrement: string | null;\n counterReset: string | null;\n cssFloat: string | null;\n cssText: string;\n cursor: string | null;\n direction: string | null;\n display: string | null;\n dominantBaseline: string | null;\n emptyCells: string | null;\n enableBackground: string | null;\n fill: string | null;\n fillOpacity: string | null;\n fillRule: string | null;\n filter: string | null;\n flex: string | null;\n flexBasis: string | null;\n flexDirection: string | null;\n flexFlow: string | null;\n flexGrow: string | null;\n flexShrink: string | null;\n flexWrap: string | null;\n floodColor: string | null;\n floodOpacity: string | null;\n font: string | null;\n fontFamily: string | null;\n fontFeatureSettings: string | null;\n fontSize: string | null;\n fontSizeAdjust: string | null;\n fontStretch: string | null;\n fontStyle: string | null;\n fontVariant: string | null;\n fontWeight: string | null;\n glyphOrientationHorizontal: string | null;\n glyphOrientationVertical: string | null;\n height: string | null;\n imeMode: string | null;\n justifyContent: string | null;\n kerning: string | null;\n layoutGrid: string | null;\n layoutGridChar: string | null;\n layoutGridLine: string | null;\n layoutGridMode: string | null;\n layoutGridType: string | null;\n left: string | null;\n readonly length: number;\n letterSpacing: string | null;\n lightingColor: string | null;\n lineBreak: string | null;\n lineHeight: string | null;\n listStyle: string | null;\n listStyleImage: string | null;\n listStylePosition: string | null;\n listStyleType: string | null;\n margin: string | null;\n marginBottom: string | null;\n marginLeft: string | null;\n marginRight: string | null;\n marginTop: string | null;\n marker: string | null;\n markerEnd: string | null;\n markerMid: string | null;\n markerStart: string | null;\n mask: string | null;\n maxHeight: string | null;\n maxWidth: string | null;\n minHeight: string | null;\n minWidth: string | null;\n msContentZoomChaining: string | null;\n msContentZooming: string | null;\n msContentZoomLimit: string | null;\n msContentZoomLimitMax: any;\n msContentZoomLimitMin: any;\n msContentZoomSnap: string | null;\n msContentZoomSnapPoints: string | null;\n msContentZoomSnapType: string | null;\n msFlowFrom: string | null;\n msFlowInto: string | null;\n msFontFeatureSettings: string | null;\n msGridColumn: any;\n msGridColumnAlign: string | null;\n msGridColumns: string | null;\n msGridColumnSpan: any;\n msGridRow: any;\n msGridRowAlign: string | null;\n msGridRows: string | null;\n msGridRowSpan: any;\n msHighContrastAdjust: string | null;\n msHyphenateLimitChars: string | null;\n msHyphenateLimitLines: any;\n msHyphenateLimitZone: any;\n msHyphens: string | null;\n msImeAlign: string | null;\n msOverflowStyle: string | null;\n msScrollChaining: string | null;\n msScrollLimit: string | null;\n msScrollLimitXMax: any;\n msScrollLimitXMin: any;\n msScrollLimitYMax: any;\n msScrollLimitYMin: any;\n msScrollRails: string | null;\n msScrollSnapPointsX: string | null;\n msScrollSnapPointsY: string | null;\n msScrollSnapType: string | null;\n msScrollSnapX: string | null;\n msScrollSnapY: string | null;\n msScrollTranslation: string | null;\n msTextCombineHorizontal: string | null;\n msTextSizeAdjust: any;\n msTouchAction: string | null;\n msTouchSelect: string | null;\n msUserSelect: string | null;\n msWrapFlow: string;\n msWrapMargin: any;\n msWrapThrough: string;\n opacity: string | null;\n order: string | null;\n orphans: string | null;\n outline: string | null;\n outlineColor: string | null;\n outlineOffset: string | null;\n outlineStyle: string | null;\n outlineWidth: string | null;\n overflow: string | null;\n overflowX: string | null;\n overflowY: string | null;\n padding: string | null;\n paddingBottom: string | null;\n paddingLeft: string | null;\n paddingRight: string | null;\n paddingTop: string | null;\n pageBreakAfter: string | null;\n pageBreakBefore: string | null;\n pageBreakInside: string | null;\n readonly parentRule: CSSRule;\n perspective: string | null;\n perspectiveOrigin: string | null;\n pointerEvents: string | null;\n position: string | null;\n quotes: string | null;\n right: string | null;\n rotate: string | null;\n rubyAlign: string | null;\n rubyOverhang: string | null;\n rubyPosition: string | null;\n scale: string | null;\n stopColor: string | null;\n stopOpacity: string | null;\n stroke: string | null;\n strokeDasharray: string | null;\n strokeDashoffset: string | null;\n strokeLinecap: string | null;\n strokeLinejoin: string | null;\n strokeMiterlimit: string | null;\n strokeOpacity: string | null;\n strokeWidth: string | null;\n tableLayout: string | null;\n textAlign: string | null;\n textAlignLast: string | null;\n textAnchor: string | null;\n textDecoration: string | null;\n textIndent: string | null;\n textJustify: string | null;\n textKashida: string | null;\n textKashidaSpace: string | null;\n textOverflow: string | null;\n textShadow: string | null;\n textTransform: string | null;\n textUnderlinePosition: string | null;\n top: string | null;\n touchAction: string | null;\n transform: string | null;\n transformOrigin: string | null;\n transformStyle: string | null;\n transition: string | null;\n transitionDelay: string | null;\n transitionDuration: string | null;\n transitionProperty: string | null;\n transitionTimingFunction: string | null;\n translate: string | null;\n unicodeBidi: string | null;\n verticalAlign: string | null;\n visibility: string | null;\n webkitAlignContent: string | null;\n webkitAlignItems: string | null;\n webkitAlignSelf: string | null;\n webkitAnimation: string | null;\n webkitAnimationDelay: string | null;\n webkitAnimationDirection: string | null;\n webkitAnimationDuration: string | null;\n webkitAnimationFillMode: string | null;\n webkitAnimationIterationCount: string | null;\n webkitAnimationName: string | null;\n webkitAnimationPlayState: string | null;\n webkitAnimationTimingFunction: string | null;\n webkitAppearance: string | null;\n webkitBackfaceVisibility: string | null;\n webkitBackgroundClip: string | null;\n webkitBackgroundOrigin: string | null;\n webkitBackgroundSize: string | null;\n webkitBorderBottomLeftRadius: string | null;\n webkitBorderBottomRightRadius: string | null;\n webkitBorderImage: string | null;\n webkitBorderRadius: string | null;\n webkitBorderTopLeftRadius: string | null;\n webkitBorderTopRightRadius: string | null;\n webkitBoxAlign: string | null;\n webkitBoxDirection: string | null;\n webkitBoxFlex: string | null;\n webkitBoxOrdinalGroup: string | null;\n webkitBoxOrient: string | null;\n webkitBoxPack: string | null;\n webkitBoxSizing: string | null;\n webkitColumnBreakAfter: string | null;\n webkitColumnBreakBefore: string | null;\n webkitColumnBreakInside: string | null;\n webkitColumnCount: any;\n webkitColumnGap: any;\n webkitColumnRule: string | null;\n webkitColumnRuleColor: any;\n webkitColumnRuleStyle: string | null;\n webkitColumnRuleWidth: any;\n webkitColumns: string | null;\n webkitColumnSpan: string | null;\n webkitColumnWidth: any;\n webkitFilter: string | null;\n webkitFlex: string | null;\n webkitFlexBasis: string | null;\n webkitFlexDirection: string | null;\n webkitFlexFlow: string | null;\n webkitFlexGrow: string | null;\n webkitFlexShrink: string | null;\n webkitFlexWrap: string | null;\n webkitJustifyContent: string | null;\n webkitOrder: string | null;\n webkitPerspective: string | null;\n webkitPerspectiveOrigin: string | null;\n webkitTapHighlightColor: string | null;\n webkitTextFillColor: string | null;\n webkitTextSizeAdjust: any;\n webkitTextStroke: string | null;\n webkitTextStrokeColor: string | null;\n webkitTextStrokeWidth: string | null;\n webkitTransform: string | null;\n webkitTransformOrigin: string | null;\n webkitTransformStyle: string | null;\n webkitTransition: string | null;\n webkitTransitionDelay: string | null;\n webkitTransitionDuration: string | null;\n webkitTransitionProperty: string | null;\n webkitTransitionTimingFunction: string | null;\n webkitUserModify: string | null;\n webkitUserSelect: string | null;\n webkitWritingMode: string | null;\n whiteSpace: string | null;\n widows: string | null;\n width: string | null;\n wordBreak: string | null;\n wordSpacing: string | null;\n wordWrap: string | null;\n writingMode: string | null;\n zIndex: string | null;\n zoom: string | null;\n resize: string | null;\n userSelect: string | null;\n getPropertyPriority(propertyName: string): string;\n getPropertyValue(propertyName: string): string;\n item(index: number): string;\n removeProperty(propertyName: string): string;\n setProperty(propertyName: string, value: string | null, priority?: string): void;\n [index: number]: string;\n}\n\ndeclare var CSSStyleDeclaration: {\n prototype: CSSStyleDeclaration;\n new(): CSSStyleDeclaration;\n};\n\ninterface CSSStyleRule extends CSSRule {\n readonly readOnly: boolean;\n selectorText: string;\n readonly style: CSSStyleDeclaration;\n}\n\ndeclare var CSSStyleRule: {\n prototype: CSSStyleRule;\n new(): CSSStyleRule;\n};\n\ninterface CSSStyleSheet extends StyleSheet {\n readonly cssRules: CSSRuleList;\n cssText: string;\n readonly id: string;\n readonly imports: StyleSheetList;\n readonly isAlternate: boolean;\n readonly isPrefAlternate: boolean;\n readonly ownerRule: CSSRule;\n readonly owningElement: Element;\n readonly pages: StyleSheetPageList;\n readonly readOnly: boolean;\n readonly rules: CSSRuleList;\n addImport(bstrURL: string, lIndex?: number): number;\n addPageRule(bstrSelector: string, bstrStyle: string, lIndex?: number): number;\n addRule(bstrSelector: string, bstrStyle?: string, lIndex?: number): number;\n deleteRule(index?: number): void;\n insertRule(rule: string, index?: number): number;\n removeImport(lIndex: number): void;\n removeRule(lIndex: number): void;\n}\n\ndeclare var CSSStyleSheet: {\n prototype: CSSStyleSheet;\n new(): CSSStyleSheet;\n};\n\ninterface CSSSupportsRule extends CSSConditionRule {\n}\n\ndeclare var CSSSupportsRule: {\n prototype: CSSSupportsRule;\n new(): CSSSupportsRule;\n};\n\ninterface CustomEvent extends Event {\n readonly detail: any;\n initCustomEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, detailArg: any): void;\n}\n\ndeclare var CustomEvent: {\n prototype: CustomEvent;\n new(typeArg: string, eventInitDict?: CustomEventInit): CustomEvent;\n};\n\ninterface DataCue extends TextTrackCue {\n data: ArrayBuffer;\n addEventListener<K extends keyof TextTrackCueEventMap>(type: K, listener: (this: DataCue, ev: TextTrackCueEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var DataCue: {\n prototype: DataCue;\n new(): DataCue;\n};\n\ninterface DataTransfer {\n dropEffect: string;\n effectAllowed: string;\n readonly files: FileList;\n readonly items: DataTransferItemList;\n readonly types: string[];\n clearData(format?: string): boolean;\n getData(format: string): string;\n setData(format: string, data: string): boolean;\n setDragImage(image: Element, x: number, y: number): void;\n}\n\ndeclare var DataTransfer: {\n prototype: DataTransfer;\n new(): DataTransfer;\n};\n\ninterface DataTransferItem {\n readonly kind: string;\n readonly type: string;\n getAsFile(): File | null;\n getAsString(_callback: FunctionStringCallback | null): void;\n webkitGetAsEntry(): any;\n}\n\ndeclare var DataTransferItem: {\n prototype: DataTransferItem;\n new(): DataTransferItem;\n};\n\ninterface DataTransferItemList {\n readonly length: number;\n add(data: File): DataTransferItem | null;\n clear(): void;\n item(index: number): DataTransferItem;\n remove(index: number): void;\n [index: number]: DataTransferItem;\n}\n\ndeclare var DataTransferItemList: {\n prototype: DataTransferItemList;\n new(): DataTransferItemList;\n};\n\ninterface DeferredPermissionRequest {\n readonly id: number;\n readonly type: MSWebViewPermissionType;\n readonly uri: string;\n allow(): void;\n deny(): void;\n}\n\ndeclare var DeferredPermissionRequest: {\n prototype: DeferredPermissionRequest;\n new(): DeferredPermissionRequest;\n};\n\ninterface DelayNode extends AudioNode {\n readonly delayTime: AudioParam;\n}\n\ndeclare var DelayNode: {\n prototype: DelayNode;\n new(): DelayNode;\n};\n\ninterface DeviceAcceleration {\n readonly x: number | null;\n readonly y: number | null;\n readonly z: number | null;\n}\n\ndeclare var DeviceAcceleration: {\n prototype: DeviceAcceleration;\n new(): DeviceAcceleration;\n};\n\ninterface DeviceLightEvent extends Event {\n readonly value: number;\n}\n\ndeclare var DeviceLightEvent: {\n prototype: DeviceLightEvent;\n new(typeArg: string, eventInitDict?: DeviceLightEventInit): DeviceLightEvent;\n};\n\ninterface DeviceMotionEvent extends Event {\n readonly acceleration: DeviceAcceleration | null;\n readonly accelerationIncludingGravity: DeviceAcceleration | null;\n readonly interval: number | null;\n readonly rotationRate: DeviceRotationRate | null;\n initDeviceMotionEvent(type: string, bubbles: boolean, cancelable: boolean, acceleration: DeviceAccelerationDict | null, accelerationIncludingGravity: DeviceAccelerationDict | null, rotationRate: DeviceRotationRateDict | null, interval: number | null): void;\n}\n\ndeclare var DeviceMotionEvent: {\n prototype: DeviceMotionEvent;\n new(typeArg: string, eventInitDict?: DeviceMotionEventInit): DeviceMotionEvent;\n};\n\ninterface DeviceOrientationEvent extends Event {\n readonly absolute: boolean;\n readonly alpha: number | null;\n readonly beta: number | null;\n readonly gamma: number | null;\n initDeviceOrientationEvent(type: string, bubbles: boolean, cancelable: boolean, alpha: number | null, beta: number | null, gamma: number | null, absolute: boolean): void;\n}\n\ndeclare var DeviceOrientationEvent: {\n prototype: DeviceOrientationEvent;\n new(typeArg: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;\n};\n\ninterface DeviceRotationRate {\n readonly alpha: number | null;\n readonly beta: number | null;\n readonly gamma: number | null;\n}\n\ndeclare var DeviceRotationRate: {\n prototype: DeviceRotationRate;\n new(): DeviceRotationRate;\n};\n\ninterface DocumentEventMap extends GlobalEventHandlersEventMap {\n "abort": UIEvent;\n "activate": UIEvent;\n "beforeactivate": UIEvent;\n "beforedeactivate": UIEvent;\n "blur": FocusEvent;\n "canplay": Event;\n "canplaythrough": Event;\n "change": Event;\n "click": MouseEvent;\n "contextmenu": PointerEvent;\n "dblclick": MouseEvent;\n "deactivate": UIEvent;\n "drag": DragEvent;\n "dragend": DragEvent;\n "dragenter": DragEvent;\n "dragleave": DragEvent;\n "dragover": DragEvent;\n "dragstart": DragEvent;\n "drop": DragEvent;\n "durationchange": Event;\n "emptied": Event;\n "ended": MediaStreamErrorEvent;\n "error": ErrorEvent;\n "focus": FocusEvent;\n "fullscreenchange": Event;\n "fullscreenerror": Event;\n "input": Event;\n "invalid": Event;\n "keydown": KeyboardEvent;\n "keypress": KeyboardEvent;\n "keyup": KeyboardEvent;\n "load": Event;\n "loadeddata": Event;\n "loadedmetadata": Event;\n "loadstart": Event;\n "mousedown": MouseEvent;\n "mousemove": MouseEvent;\n "mouseout": MouseEvent;\n "mouseover": MouseEvent;\n "mouseup": MouseEvent;\n "mousewheel": WheelEvent;\n "MSContentZoom": UIEvent;\n "MSGestureChange": MSGestureEvent;\n "MSGestureDoubleTap": MSGestureEvent;\n "MSGestureEnd": MSGestureEvent;\n "MSGestureHold": MSGestureEvent;\n "MSGestureStart": MSGestureEvent;\n "MSGestureTap": MSGestureEvent;\n "MSInertiaStart": MSGestureEvent;\n "MSManipulationStateChanged": MSManipulationEvent;\n "MSPointerCancel": MSPointerEvent;\n "MSPointerDown": MSPointerEvent;\n "MSPointerEnter": MSPointerEvent;\n "MSPointerLeave": MSPointerEvent;\n "MSPointerMove": MSPointerEvent;\n "MSPointerOut": MSPointerEvent;\n "MSPointerOver": MSPointerEvent;\n "MSPointerUp": MSPointerEvent;\n "mssitemodejumplistitemremoved": MSSiteModeEvent;\n "msthumbnailclick": MSSiteModeEvent;\n "pause": Event;\n "play": Event;\n "playing": Event;\n "pointerlockchange": Event;\n "pointerlockerror": Event;\n "progress": ProgressEvent;\n "ratechange": Event;\n "readystatechange": Event;\n "reset": Event;\n "scroll": UIEvent;\n "seeked": Event;\n "seeking": Event;\n "select": UIEvent;\n "selectionchange": Event;\n "selectstart": Event;\n "stalled": Event;\n "stop": Event;\n "submit": Event;\n "suspend": Event;\n "timeupdate": Event;\n "touchcancel": TouchEvent;\n "touchend": TouchEvent;\n "touchmove": TouchEvent;\n "touchstart": TouchEvent;\n "volumechange": Event;\n "waiting": Event;\n "webkitfullscreenchange": Event;\n "webkitfullscreenerror": Event;\n}\n\ninterface Document extends Node, GlobalEventHandlers, NodeSelector, DocumentEvent, ParentNode, DocumentOrShadowRoot {\n /**\n * Gets the object that has the focus when the parent document has focus.\n */\n readonly activeElement: Element;\n /**\n * Sets or gets the color of all active links in the document.\n */\n alinkColor: string;\n /**\n * Returns a reference to the collection of elements contained by the object.\n */\n readonly all: HTMLAllCollection;\n /**\n * Retrieves a collection of all a objects that have a name and/or id property. Objects in this collection are in HTML source order.\n */\n anchors: HTMLCollectionOf<HTMLAnchorElement>;\n /**\n * Retrieves a collection of all applet objects in the document.\n */\n applets: HTMLCollectionOf<HTMLAppletElement>;\n /**\n * Deprecated. Sets or retrieves a value that indicates the background color behind the object.\n */\n bgColor: string;\n /**\n * Specifies the beginning and end of the document body.\n */\n body: HTMLElement;\n readonly characterSet: string;\n /**\n * Gets or sets the character set used to encode the object.\n */\n charset: string;\n /**\n * Gets a value that indicates whether standards-compliant mode is switched on for the object.\n */\n readonly compatMode: string;\n cookie: string;\n readonly currentScript: HTMLScriptElement | SVGScriptElement;\n readonly defaultView: Window;\n /**\n * Sets or gets a value that indicates whether the document can be edited.\n */\n designMode: string;\n /**\n * Sets or retrieves a value that indicates the reading order of the object.\n */\n dir: string;\n /**\n * Gets an object representing the document type declaration associated with the current document.\n */\n readonly doctype: DocumentType;\n /**\n * Gets a reference to the root node of the document.\n */\n documentElement: HTMLElement;\n /**\n * Sets or gets the security domain of the document.\n */\n domain: string;\n /**\n * Retrieves a collection of all embed objects in the document.\n */\n embeds: HTMLCollectionOf<HTMLEmbedElement>;\n /**\n * Sets or gets the foreground (text) color of the document.\n */\n fgColor: string;\n /**\n * Retrieves a collection, in source order, of all form objects in the document.\n */\n forms: HTMLCollectionOf<HTMLFormElement>;\n readonly fullscreenElement: Element | null;\n readonly fullscreenEnabled: boolean;\n readonly head: HTMLHeadElement;\n readonly hidden: boolean;\n /**\n * Retrieves a collection, in source order, of img objects in the document.\n */\n images: HTMLCollectionOf<HTMLImageElement>;\n /**\n * Gets the implementation object of the current document.\n */\n readonly implementation: DOMImplementation;\n /**\n * Returns the character encoding used to create the webpage that is loaded into the document object.\n */\n readonly inputEncoding: string | null;\n /**\n * Gets the date that the page was last modified, if the page supplies one.\n */\n readonly lastModified: string;\n /**\n * Sets or gets the color of the document links.\n */\n linkColor: string;\n /**\n * Retrieves a collection of all a objects that specify the href property and all area objects in the document.\n */\n links: HTMLCollectionOf<HTMLAnchorElement | HTMLAreaElement>;\n /**\n * Contains information about the current URL.\n */\n readonly location: Location;\n msCapsLockWarningOff: boolean;\n msCSSOMElementFloatMetrics: boolean;\n /**\n * Fires when the user aborts the download.\n * @param ev The event.\n */\n onabort: (this: Document, ev: UIEvent) => any;\n /**\n * Fires when the object is set as the active element.\n * @param ev The event.\n */\n onactivate: (this: Document, ev: UIEvent) => any;\n /**\n * Fires immediately before the object is set as the active element.\n * @param ev The event.\n */\n onbeforeactivate: (this: Document, ev: UIEvent) => any;\n /**\n * Fires immediately before the activeElement is changed from the current object to another object in the parent document.\n * @param ev The event.\n */\n onbeforedeactivate: (this: Document, ev: UIEvent) => any;\n /**\n * Fires when the object loses the input focus.\n * @param ev The focus event.\n */\n onblur: (this: Document, ev: FocusEvent) => any;\n /**\n * Occurs when playback is possible, but would require further buffering.\n * @param ev The event.\n */\n oncanplay: (this: Document, ev: Event) => any;\n oncanplaythrough: (this: Document, ev: Event) => any;\n /**\n * Fires when the contents of the object or selection have changed.\n * @param ev The event.\n */\n onchange: (this: Document, ev: Event) => any;\n /**\n * Fires when the user clicks the left mouse button on the object\n * @param ev The mouse event.\n */\n onclick: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the user clicks the right mouse button in the client area, opening the context menu.\n * @param ev The mouse event.\n */\n oncontextmenu: (this: Document, ev: PointerEvent) => any;\n /**\n * Fires when the user double-clicks the object.\n * @param ev The mouse event.\n */\n ondblclick: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the activeElement is changed from the current object to another object in the parent document.\n * @param ev The UI Event\n */\n ondeactivate: (this: Document, ev: UIEvent) => any;\n /**\n * Fires on the source object continuously during a drag operation.\n * @param ev The event.\n */\n ondrag: (this: Document, ev: DragEvent) => any;\n /**\n * Fires on the source object when the user releases the mouse at the close of a drag operation.\n * @param ev The event.\n */\n ondragend: (this: Document, ev: DragEvent) => any;\n /**\n * Fires on the target element when the user drags the object to a valid drop target.\n * @param ev The drag event.\n */\n ondragenter: (this: Document, ev: DragEvent) => any;\n /**\n * Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation.\n * @param ev The drag event.\n */\n ondragleave: (this: Document, ev: DragEvent) => any;\n /**\n * Fires on the target element continuously while the user drags the object over a valid drop target.\n * @param ev The event.\n */\n ondragover: (this: Document, ev: DragEvent) => any;\n /**\n * Fires on the source object when the user starts to drag a text selection or selected object.\n * @param ev The event.\n */\n ondragstart: (this: Document, ev: DragEvent) => any;\n ondrop: (this: Document, ev: DragEvent) => any;\n /**\n * Occurs when the duration attribute is updated.\n * @param ev The event.\n */\n ondurationchange: (this: Document, ev: Event) => any;\n /**\n * Occurs when the media element is reset to its initial state.\n * @param ev The event.\n */\n onemptied: (this: Document, ev: Event) => any;\n /**\n * Occurs when the end of playback is reached.\n * @param ev The event\n */\n onended: (this: Document, ev: MediaStreamErrorEvent) => any;\n /**\n * Fires when an error occurs during object loading.\n * @param ev The event.\n */\n onerror: (this: Document, ev: ErrorEvent) => any;\n /**\n * Fires when the object receives focus.\n * @param ev The event.\n */\n onfocus: (this: Document, ev: FocusEvent) => any;\n onfullscreenchange: (this: Document, ev: Event) => any;\n onfullscreenerror: (this: Document, ev: Event) => any;\n oninput: (this: Document, ev: Event) => any;\n oninvalid: (this: Document, ev: Event) => any;\n /**\n * Fires when the user presses a key.\n * @param ev The keyboard event\n */\n onkeydown: (this: Document, ev: KeyboardEvent) => any;\n /**\n * Fires when the user presses an alphanumeric key.\n * @param ev The event.\n */\n onkeypress: (this: Document, ev: KeyboardEvent) => any;\n /**\n * Fires when the user releases a key.\n * @param ev The keyboard event\n */\n onkeyup: (this: Document, ev: KeyboardEvent) => any;\n /**\n * Fires immediately after the browser loads the object.\n * @param ev The event.\n */\n onload: (this: Document, ev: Event) => any;\n /**\n * Occurs when media data is loaded at the current playback position.\n * @param ev The event.\n */\n onloadeddata: (this: Document, ev: Event) => any;\n /**\n * Occurs when the duration and dimensions of the media have been determined.\n * @param ev The event.\n */\n onloadedmetadata: (this: Document, ev: Event) => any;\n /**\n * Occurs when Internet Explorer begins looking for media data.\n * @param ev The event.\n */\n onloadstart: (this: Document, ev: Event) => any;\n /**\n * Fires when the user clicks the object with either mouse button.\n * @param ev The mouse event.\n */\n onmousedown: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the user moves the mouse over the object.\n * @param ev The mouse event.\n */\n onmousemove: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the user moves the mouse pointer outside the boundaries of the object.\n * @param ev The mouse event.\n */\n onmouseout: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the user moves the mouse pointer into the object.\n * @param ev The mouse event.\n */\n onmouseover: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the user releases a mouse button while the mouse is over the object.\n * @param ev The mouse event.\n */\n onmouseup: (this: Document, ev: MouseEvent) => any;\n /**\n * Fires when the wheel button is rotated.\n * @param ev The mouse event\n */\n onmousewheel: (this: Document, ev: WheelEvent) => any;\n onmscontentzoom: (this: Document, ev: UIEvent) => any;\n onmsgesturechange: (this: Document, ev: MSGestureEvent) => any;\n onmsgesturedoubletap: (this: Document, ev: MSGestureEvent) => any;\n onmsgestureend: (this: Document, ev: MSGestureEvent) => any;\n onmsgesturehold: (this: Document, ev: MSGestureEvent) => any;\n onmsgesturestart: (this: Document, ev: MSGestureEvent) => any;\n onmsgesturetap: (this: Document, ev: MSGestureEvent) => any;\n onmsinertiastart: (this: Document, ev: MSGestureEvent) => any;\n onmsmanipulationstatechanged: (this: Document, ev: MSManipulationEvent) => any;\n onmspointercancel: (this: Document, ev: MSPointerEvent) => any;\n onmspointerdown: (this: Document, ev: MSPointerEvent) => any;\n onmspointerenter: (this: Document, ev: MSPointerEvent) => any;\n onmspointerleave: (this: Document, ev: MSPointerEvent) => any;\n onmspointermove: (this: Document, ev: MSPointerEvent) => any;\n onmspointerout: (this: Document, ev: MSPointerEvent) => any;\n onmspointerover: (this: Document, ev: MSPointerEvent) => any;\n onmspointerup: (this: Document, ev: MSPointerEvent) => any;\n /**\n * Occurs when an item is removed from a Jump List of a webpage running in Site Mode.\n * @param ev The event.\n */\n onmssitemodejumplistitemremoved: (this: Document, ev: MSSiteModeEvent) => any;\n /**\n * Occurs when a user clicks a button in a Thumbnail Toolbar of a webpage running in Site Mode.\n * @param ev The event.\n */\n onmsthumbnailclick: (this: Document, ev: MSSiteModeEvent) => any;\n /**\n * Occurs when playback is paused.\n * @param ev The event.\n */\n onpause: (this: Document, ev: Event) => any;\n /**\n * Occurs when the play method is requested.\n * @param ev The event.\n */\n onplay: (this: Document, ev: Event) => any;\n /**\n * Occurs when the audio or video has started playing.\n * @param ev The event.\n */\n onplaying: (this: Document, ev: Event) => any;\n onpointerlockchange: (this: Document, ev: Event) => any;\n onpointerlockerror: (this: Document, ev: Event) => any;\n /**\n * Occurs to indicate progress while downloading media data.\n * @param ev The event.\n */\n onprogress: (this: Document, ev: ProgressEvent) => any;\n /**\n * Occurs when the playback rate is increased or decreased.\n * @param ev The event.\n */\n onratechange: (this: Document, ev: Event) => any;\n /**\n * Fires when the state of the object has changed.\n * @param ev The event\n */\n onreadystatechange: (this: Document, ev: Event) => any;\n /**\n * Fires when the user resets a form.\n * @param ev The event.\n */\n onreset: (this: Document, ev: Event) => any;\n /**\n * Fires when the user repositions the scroll box in the scroll bar on the object.\n * @param ev The event.\n */\n onscroll: (this: Document, ev: UIEvent) => any;\n /**\n * Occurs when the seek operation ends.\n * @param ev The event.\n */\n onseeked: (this: Document, ev: Event) => any;\n /**\n * Occurs when the current playback position is moved.\n * @param ev The event.\n */\n onseeking: (this: Document, ev: Event) => any;\n /**\n * Fires when the current selection changes.\n * @param ev The event.\n */\n onselect: (this: Document, ev: UIEvent) => any;\n /**\n * Fires when the selection state of a document changes.\n * @param ev The event.\n */\n onselectionchange: (this: Document, ev: Event) => any;\n onselectstart: (this: Document, ev: Event) => any;\n /**\n * Occurs when the download has stopped.\n * @param ev The event.\n */\n onstalled: (this: Document, ev: Event) => any;\n /**\n * Fires when the user clicks the Stop button or leaves the Web page.\n * @param ev The event.\n */\n onstop: (this: Document, ev: Event) => any;\n onsubmit: (this: Document, ev: Event) => any;\n /**\n * Occurs if the load operation has been intentionally halted.\n * @param ev The event.\n */\n onsuspend: (this: Document, ev: Event) => any;\n /**\n * Occurs to indicate the current playback position.\n * @param ev The event.\n */\n ontimeupdate: (this: Document, ev: Event) => any;\n ontouchcancel: (ev: TouchEvent) => any;\n ontouchend: (ev: TouchEvent) => any;\n ontouchmove: (ev: TouchEvent) => any;\n ontouchstart: (ev: TouchEvent) => any;\n /**\n * Occurs when the volume is changed, or playback is muted or unmuted.\n * @param ev The event.\n */\n onvolumechange: (this: Document, ev: Event) => any;\n /**\n * Occurs when playback stops because the next frame of a video resource is not available.\n * @param ev The event.\n */\n onwaiting: (this: Document, ev: Event) => any;\n onwebkitfullscreenchange: (this: Document, ev: Event) => any;\n onwebkitfullscreenerror: (this: Document, ev: Event) => any;\n plugins: HTMLCollectionOf<HTMLEmbedElement>;\n readonly pointerLockElement: Element;\n /**\n * Retrieves a value that indicates the current state of the object.\n */\n readonly readyState: string;\n /**\n * Gets the URL of the location that referred the user to the current page.\n */\n readonly referrer: string;\n /**\n * Gets the root svg element in the document hierarchy.\n */\n readonly rootElement: SVGSVGElement;\n /**\n * Retrieves a collection of all script objects in the document.\n */\n scripts: HTMLCollectionOf<HTMLScriptElement>;\n readonly scrollingElement: Element | null;\n /**\n * Retrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document.\n */\n readonly styleSheets: StyleSheetList;\n /**\n * Contains the title of the document.\n */\n title: string;\n /**\n * Sets or gets the URL for the current document.\n */\n readonly URL: string;\n /**\n * Gets the URL for the document, stripped of any character encoding.\n */\n readonly URLUnencoded: string;\n readonly visibilityState: VisibilityState;\n /**\n * Sets or gets the color of the links that the user has visited.\n */\n vlinkColor: string;\n readonly webkitCurrentFullScreenElement: Element | null;\n readonly webkitFullscreenElement: Element | null;\n readonly webkitFullscreenEnabled: boolean;\n readonly webkitIsFullScreen: boolean;\n readonly xmlEncoding: string | null;\n xmlStandalone: boolean;\n /**\n * Gets or sets the version attribute specified in the declaration of an XML document.\n */\n xmlVersion: string | null;\n adoptNode<T extends Node>(source: T): T;\n captureEvents(): void;\n caretRangeFromPoint(x: number, y: number): Range;\n clear(): void;\n /**\n * Closes an output stream and forces the sent data to display.\n */\n close(): void;\n /**\n * Creates an attribute object with a specified name.\n * @param name String that sets the attribute object\'s name.\n */\n createAttribute(name: string): Attr;\n createAttributeNS(namespaceURI: string | null, qualifiedName: string): Attr;\n createCDATASection(data: string): CDATASection;\n /**\n * Creates a comment object with the specified data.\n * @param data Sets the comment object\'s data.\n */\n createComment(data: string): Comment;\n /**\n * Creates a new document.\n */\n createDocumentFragment(): DocumentFragment;\n /**\n * Creates an instance of the element for the specified tag.\n * @param tagName The name of an element.\n */\n createElement<K extends keyof HTMLElementTagNameMap>(tagName: K): HTMLElementTagNameMap[K];\n createElement(tagName: string): HTMLElement;\n createElementNS(namespaceURI: "http://www.w3.org/1999/xhtml", qualifiedName: string): HTMLElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "a"): SVGAElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "circle"): SVGCircleElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "clipPath"): SVGClipPathElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "componentTransferFunction"): SVGComponentTransferFunctionElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "defs"): SVGDefsElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "desc"): SVGDescElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "ellipse"): SVGEllipseElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feBlend"): SVGFEBlendElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feColorMatrix"): SVGFEColorMatrixElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feComponentTransfer"): SVGFEComponentTransferElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feComposite"): SVGFECompositeElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feConvolveMatrix"): SVGFEConvolveMatrixElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feDiffuseLighting"): SVGFEDiffuseLightingElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feDisplacementMap"): SVGFEDisplacementMapElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feDistantLight"): SVGFEDistantLightElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feFlood"): SVGFEFloodElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feFuncA"): SVGFEFuncAElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feFuncB"): SVGFEFuncBElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feFuncG"): SVGFEFuncGElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feFuncR"): SVGFEFuncRElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feGaussianBlur"): SVGFEGaussianBlurElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feImage"): SVGFEImageElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feMerge"): SVGFEMergeElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feMergeNode"): SVGFEMergeNodeElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feMorphology"): SVGFEMorphologyElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feOffset"): SVGFEOffsetElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "fePointLight"): SVGFEPointLightElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feSpecularLighting"): SVGFESpecularLightingElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feSpotLight"): SVGFESpotLightElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feTile"): SVGFETileElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "feTurbulence"): SVGFETurbulenceElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "filter"): SVGFilterElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "foreignObject"): SVGForeignObjectElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "g"): SVGGElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "image"): SVGImageElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "gradient"): SVGGradientElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "line"): SVGLineElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "linearGradient"): SVGLinearGradientElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "marker"): SVGMarkerElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "mask"): SVGMaskElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "path"): SVGPathElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "metadata"): SVGMetadataElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "pattern"): SVGPatternElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "polygon"): SVGPolygonElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "polyline"): SVGPolylineElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "radialGradient"): SVGRadialGradientElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "rect"): SVGRectElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "svg"): SVGSVGElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "script"): SVGScriptElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "stop"): SVGStopElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "style"): SVGStyleElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "switch"): SVGSwitchElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "symbol"): SVGSymbolElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "tspan"): SVGTSpanElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "textContent"): SVGTextContentElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "text"): SVGTextElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "textPath"): SVGTextPathElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "textPositioning"): SVGTextPositioningElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "title"): SVGTitleElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "use"): SVGUseElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: "view"): SVGViewElement;\n createElementNS(namespaceURI: "http://www.w3.org/2000/svg", qualifiedName: string): SVGElement;\n createElementNS(namespaceURI: string | null, qualifiedName: string): Element;\n createExpression(expression: string, resolver: XPathNSResolver): XPathExpression;\n /**\n * Creates a NodeIterator object that you can use to traverse filtered lists of nodes or elements in a document.\n * @param root The root element or node to start traversing on.\n * @param whatToShow The type of nodes or elements to appear in the node list\n * @param filter A custom NodeFilter function to use. For more information, see filter. Use null for no filter.\n * @param entityReferenceExpansion A flag that specifies whether entity reference nodes are expanded.\n */\n createNodeIterator(root: Node, whatToShow?: number, filter?: NodeFilter, entityReferenceExpansion?: boolean): NodeIterator;\n createNSResolver(nodeResolver: Node): XPathNSResolver;\n createProcessingInstruction(target: string, data: string): ProcessingInstruction;\n /**\n * Returns an empty range object that has both of its boundary points positioned at the beginning of the document.\n */\n createRange(): Range;\n /**\n * Creates a text string from the specified value.\n * @param data String that specifies the nodeValue property of the text node.\n */\n createTextNode(data: string): Text;\n createTouch(view: Window, target: EventTarget, identifier: number, pageX: number, pageY: number, screenX: number, screenY: number): Touch;\n createTouchList(...touches: Touch[]): TouchList;\n /**\n * Creates a TreeWalker object that you can use to traverse filtered lists of nodes or elements in a document.\n * @param root The root element or node to start traversing on.\n * @param whatToShow The type of nodes or elements to appear in the node list. For more information, see whatToShow.\n * @param filter A custom NodeFilter function to use.\n * @param entityReferenceExpansion A flag that specifies whether entity reference nodes are expanded.\n */\n createTreeWalker(root: Node, whatToShow?: number, filter?: NodeFilter, entityReferenceExpansion?: boolean): TreeWalker;\n /**\n * Returns the element for the specified x coordinate and the specified y coordinate.\n * @param x The x-offset\n * @param y The y-offset\n */\n elementFromPoint(x: number, y: number): Element;\n evaluate(expression: string, contextNode: Node, resolver: XPathNSResolver | null, type: number, result: XPathResult | null): XPathResult;\n /**\n * Executes a command on the current document, current selection, or the given range.\n * @param commandId String that specifies the command to execute. This command can be any of the command identifiers that can be executed in script.\n * @param showUI Display the user interface, defaults to false.\n * @param value Value to assign.\n */\n execCommand(commandId: string, showUI?: boolean, value?: any): boolean;\n /**\n * Displays help information for the given command identifier.\n * @param commandId Displays help information for the given command identifier.\n */\n execCommandShowHelp(commandId: string): boolean;\n exitFullscreen(): void;\n exitPointerLock(): void;\n /**\n * Causes the element to receive the focus and executes the code specified by the onfocus event.\n */\n focus(): void;\n /**\n * Returns a reference to the first object with the specified value of the ID or NAME attribute.\n * @param elementId String that specifies the ID value. Case-insensitive.\n */\n getElementById(elementId: string): HTMLElement | null;\n getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;\n /**\n * Gets a collection of objects based on the value of the NAME or ID attribute.\n * @param elementName Gets a collection of objects based on the value of the NAME or ID attribute.\n */\n getElementsByName(elementName: string): NodeListOf<HTMLElement>;\n /**\n * Retrieves a collection of objects based on the specified element name.\n * @param name Specifies the name of an element.\n */\n getElementsByTagName<K extends keyof ElementListTagNameMap>(tagname: K): ElementListTagNameMap[K];\n getElementsByTagName(tagname: string): NodeListOf<Element>;\n getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;\n getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;\n getElementsByTagNameNS(namespaceURI: string, localName: string): HTMLCollectionOf<Element>;\n /**\n * Returns an object representing the current selection of the document that is loaded into the object displaying a webpage.\n */\n getSelection(): Selection;\n /**\n * Gets a value indicating whether the object currently has focus.\n */\n hasFocus(): boolean;\n importNode<T extends Node>(importedNode: T, deep: boolean): T;\n msElementsFromPoint(x: number, y: number): NodeListOf<Element>;\n msElementsFromRect(left: number, top: number, width: number, height: number): NodeListOf<Element>;\n /**\n * Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.\n * @param url Specifies a MIME type for the document.\n * @param name Specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an anchor element.\n * @param features Contains a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, "fullscreen=yes, toolbar=yes"). The following values are supported.\n * @param replace Specifies whether the existing entry for the document is replaced in the history list.\n */\n open(url?: string, name?: string, features?: string, replace?: boolean): Document;\n /**\n * Returns a Boolean value that indicates whether a specified command can be successfully executed using execCommand, given the current state of the document.\n * @param commandId Specifies a command identifier.\n */\n queryCommandEnabled(commandId: string): boolean;\n /**\n * Returns a Boolean value that indicates whether the specified command is in the indeterminate state.\n * @param commandId String that specifies a command identifier.\n */\n queryCommandIndeterm(commandId: string): boolean;\n /**\n * Returns a Boolean value that indicates the current state of the command.\n * @param commandId String that specifies a command identifier.\n */\n queryCommandState(commandId: string): boolean;\n /**\n * Returns a Boolean value that indicates whether the current command is supported on the current range.\n * @param commandId Specifies a command identifier.\n */\n queryCommandSupported(commandId: string): boolean;\n /**\n * Retrieves the string associated with a command.\n * @param commandId String that contains the identifier of a command. This can be any command identifier given in the list of Command Identifiers.\n */\n queryCommandText(commandId: string): string;\n /**\n * Returns the current value of the document, range, or current selection for the given command.\n * @param commandId String that specifies a command identifier.\n */\n queryCommandValue(commandId: string): string;\n releaseEvents(): void;\n /**\n * Allows updating the print settings for the page.\n */\n updateSettings(): void;\n webkitCancelFullScreen(): void;\n webkitExitFullscreen(): void;\n /**\n * Writes one or more HTML expressions to a document in the specified window.\n * @param content Specifies the text and HTML tags to write.\n */\n write(...content: string[]): void;\n /**\n * Writes one or more HTML expressions, followed by a carriage return, to a document in the specified window.\n * @param content The text and HTML tags to write.\n */\n writeln(...content: string[]): void;\n addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Document: {\n prototype: Document;\n new(): Document;\n};\n\ninterface DocumentFragment extends Node, NodeSelector, ParentNode {\n getElementById(elementId: string): HTMLElement | null;\n}\n\ndeclare var DocumentFragment: {\n prototype: DocumentFragment;\n new(): DocumentFragment;\n};\n\ninterface DocumentType extends Node, ChildNode {\n readonly entities: NamedNodeMap;\n readonly internalSubset: string | null;\n readonly name: string;\n readonly notations: NamedNodeMap;\n readonly publicId: string;\n readonly systemId: string;\n}\n\ndeclare var DocumentType: {\n prototype: DocumentType;\n new(): DocumentType;\n};\n\ninterface DOMError {\n readonly name: string;\n toString(): string;\n}\n\ndeclare var DOMError: {\n prototype: DOMError;\n new(): DOMError;\n};\n\ninterface DOMException {\n readonly code: number;\n readonly message: string;\n readonly name: string;\n toString(): string;\n readonly ABORT_ERR: number;\n readonly DATA_CLONE_ERR: number;\n readonly DOMSTRING_SIZE_ERR: number;\n readonly HIERARCHY_REQUEST_ERR: number;\n readonly INDEX_SIZE_ERR: number;\n readonly INUSE_ATTRIBUTE_ERR: number;\n readonly INVALID_ACCESS_ERR: number;\n readonly INVALID_CHARACTER_ERR: number;\n readonly INVALID_MODIFICATION_ERR: number;\n readonly INVALID_NODE_TYPE_ERR: number;\n readonly INVALID_STATE_ERR: number;\n readonly NAMESPACE_ERR: number;\n readonly NETWORK_ERR: number;\n readonly NO_DATA_ALLOWED_ERR: number;\n readonly NO_MODIFICATION_ALLOWED_ERR: number;\n readonly NOT_FOUND_ERR: number;\n readonly NOT_SUPPORTED_ERR: number;\n readonly PARSE_ERR: number;\n readonly QUOTA_EXCEEDED_ERR: number;\n readonly SECURITY_ERR: number;\n readonly SERIALIZE_ERR: number;\n readonly SYNTAX_ERR: number;\n readonly TIMEOUT_ERR: number;\n readonly TYPE_MISMATCH_ERR: number;\n readonly URL_MISMATCH_ERR: number;\n readonly VALIDATION_ERR: number;\n readonly WRONG_DOCUMENT_ERR: number;\n}\n\ndeclare var DOMException: {\n prototype: DOMException;\n new(): DOMException;\n readonly ABORT_ERR: number;\n readonly DATA_CLONE_ERR: number;\n readonly DOMSTRING_SIZE_ERR: number;\n readonly HIERARCHY_REQUEST_ERR: number;\n readonly INDEX_SIZE_ERR: number;\n readonly INUSE_ATTRIBUTE_ERR: number;\n readonly INVALID_ACCESS_ERR: number;\n readonly INVALID_CHARACTER_ERR: number;\n readonly INVALID_MODIFICATION_ERR: number;\n readonly INVALID_NODE_TYPE_ERR: number;\n readonly INVALID_STATE_ERR: number;\n readonly NAMESPACE_ERR: number;\n readonly NETWORK_ERR: number;\n readonly NO_DATA_ALLOWED_ERR: number;\n readonly NO_MODIFICATION_ALLOWED_ERR: number;\n readonly NOT_FOUND_ERR: number;\n readonly NOT_SUPPORTED_ERR: number;\n readonly PARSE_ERR: number;\n readonly QUOTA_EXCEEDED_ERR: number;\n readonly SECURITY_ERR: number;\n readonly SERIALIZE_ERR: number;\n readonly SYNTAX_ERR: number;\n readonly TIMEOUT_ERR: number;\n readonly TYPE_MISMATCH_ERR: number;\n readonly URL_MISMATCH_ERR: number;\n readonly VALIDATION_ERR: number;\n readonly WRONG_DOCUMENT_ERR: number;\n};\n\ninterface DOMImplementation {\n createDocument(namespaceURI: string | null, qualifiedName: string | null, doctype: DocumentType | null): Document;\n createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType;\n createHTMLDocument(title: string): Document;\n hasFeature(feature: string | null, version: string | null): boolean;\n}\n\ndeclare var DOMImplementation: {\n prototype: DOMImplementation;\n new(): DOMImplementation;\n};\n\ninterface DOMParser {\n parseFromString(source: string, mimeType: string): Document;\n}\n\ndeclare var DOMParser: {\n prototype: DOMParser;\n new(): DOMParser;\n};\n\ninterface DOMSettableTokenList extends DOMTokenList {\n value: string;\n}\n\ndeclare var DOMSettableTokenList: {\n prototype: DOMSettableTokenList;\n new(): DOMSettableTokenList;\n};\n\ninterface DOMStringList {\n readonly length: number;\n contains(str: string): boolean;\n item(index: number): string | null;\n [index: number]: string;\n}\n\ndeclare var DOMStringList: {\n prototype: DOMStringList;\n new(): DOMStringList;\n};\n\ninterface DOMStringMap {\n [name: string]: string | undefined;\n}\n\ndeclare var DOMStringMap: {\n prototype: DOMStringMap;\n new(): DOMStringMap;\n};\n\ninterface DOMTokenList {\n readonly length: number;\n add(...token: string[]): void;\n contains(token: string): boolean;\n item(index: number): string;\n remove(...token: string[]): void;\n toggle(token: string, force?: boolean): boolean;\n toString(): string;\n [index: number]: string;\n}\n\ndeclare var DOMTokenList: {\n prototype: DOMTokenList;\n new(): DOMTokenList;\n};\n\ninterface DragEvent extends MouseEvent {\n readonly dataTransfer: DataTransfer;\n initDragEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget, dataTransferArg: DataTransfer): void;\n msConvertURL(file: File, targetType: string, targetURL?: string): void;\n}\n\ndeclare var DragEvent: {\n prototype: DragEvent;\n new(type: "drag" | "dragend" | "dragenter" | "dragexit" | "dragleave" | "dragover" | "dragstart" | "drop", dragEventInit?: { dataTransfer?: DataTransfer }): DragEvent;\n};\n\ninterface DynamicsCompressorNode extends AudioNode {\n readonly attack: AudioParam;\n readonly knee: AudioParam;\n readonly ratio: AudioParam;\n readonly reduction: number;\n readonly release: AudioParam;\n readonly threshold: AudioParam;\n}\n\ndeclare var DynamicsCompressorNode: {\n prototype: DynamicsCompressorNode;\n new(): DynamicsCompressorNode;\n};\n\ninterface ElementEventMap extends GlobalEventHandlersEventMap {\n "ariarequest": Event;\n "command": Event;\n "gotpointercapture": PointerEvent;\n "lostpointercapture": PointerEvent;\n "MSGestureChange": MSGestureEvent;\n "MSGestureDoubleTap": MSGestureEvent;\n "MSGestureEnd": MSGestureEvent;\n "MSGestureHold": MSGestureEvent;\n "MSGestureStart": MSGestureEvent;\n "MSGestureTap": MSGestureEvent;\n "MSGotPointerCapture": MSPointerEvent;\n "MSInertiaStart": MSGestureEvent;\n "MSLostPointerCapture": MSPointerEvent;\n "MSPointerCancel": MSPointerEvent;\n "MSPointerDown": MSPointerEvent;\n "MSPointerEnter": MSPointerEvent;\n "MSPointerLeave": MSPointerEvent;\n "MSPointerMove": MSPointerEvent;\n "MSPointerOut": MSPointerEvent;\n "MSPointerOver": MSPointerEvent;\n "MSPointerUp": MSPointerEvent;\n "touchcancel": TouchEvent;\n "touchend": TouchEvent;\n "touchmove": TouchEvent;\n "touchstart": TouchEvent;\n "webkitfullscreenchange": Event;\n "webkitfullscreenerror": Event;\n}\n\ninterface Element extends Node, GlobalEventHandlers, ElementTraversal, NodeSelector, ChildNode, ParentNode {\n readonly classList: DOMTokenList;\n className: string;\n readonly clientHeight: number;\n readonly clientLeft: number;\n readonly clientTop: number;\n readonly clientWidth: number;\n id: string;\n innerHTML: string;\n msContentZoomFactor: number;\n readonly msRegionOverflow: string;\n onariarequest: (this: Element, ev: Event) => any;\n oncommand: (this: Element, ev: Event) => any;\n ongotpointercapture: (this: Element, ev: PointerEvent) => any;\n onlostpointercapture: (this: Element, ev: PointerEvent) => any;\n onmsgesturechange: (this: Element, ev: MSGestureEvent) => any;\n onmsgesturedoubletap: (this: Element, ev: MSGestureEvent) => any;\n onmsgestureend: (this: Element, ev: MSGestureEvent) => any;\n onmsgesturehold: (this: Element, ev: MSGestureEvent) => any;\n onmsgesturestart: (this: Element, ev: MSGestureEvent) => any;\n onmsgesturetap: (this: Element, ev: MSGestureEvent) => any;\n onmsgotpointercapture: (this: Element, ev: MSPointerEvent) => any;\n onmsinertiastart: (this: Element, ev: MSGestureEvent) => any;\n onmslostpointercapture: (this: Element, ev: MSPointerEvent) => any;\n onmspointercancel: (this: Element, ev: MSPointerEvent) => any;\n onmspointerdown: (this: Element, ev: MSPointerEvent) => any;\n onmspointerenter: (this: Element, ev: MSPointerEvent) => any;\n onmspointerleave: (this: Element, ev: MSPointerEvent) => any;\n onmspointermove: (this: Element, ev: MSPointerEvent) => any;\n onmspointerout: (this: Element, ev: MSPointerEvent) => any;\n onmspointerover: (this: Element, ev: MSPointerEvent) => any;\n onmspointerup: (this: Element, ev: MSPointerEvent) => any;\n ontouchcancel: (ev: TouchEvent) => any;\n ontouchend: (ev: TouchEvent) => any;\n ontouchmove: (ev: TouchEvent) => any;\n ontouchstart: (ev: TouchEvent) => any;\n onwebkitfullscreenchange: (this: Element, ev: Event) => any;\n onwebkitfullscreenerror: (this: Element, ev: Event) => any;\n outerHTML: string;\n readonly prefix: string | null;\n readonly scrollHeight: number;\n scrollLeft: number;\n scrollTop: number;\n readonly scrollWidth: number;\n readonly tagName: string;\n readonly assignedSlot: HTMLSlotElement | null;\n slot: string;\n readonly shadowRoot: ShadowRoot | null;\n getAttribute(name: string): string | null;\n getAttributeNode(name: string): Attr;\n getAttributeNodeNS(namespaceURI: string, localName: string): Attr;\n getAttributeNS(namespaceURI: string, localName: string): string;\n getBoundingClientRect(): ClientRect;\n getClientRects(): ClientRectList;\n getElementsByTagName<K extends keyof ElementListTagNameMap>(name: K): ElementListTagNameMap[K];\n getElementsByTagName(name: string): NodeListOf<Element>;\n getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;\n getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;\n getElementsByTagNameNS(namespaceURI: string, localName: string): HTMLCollectionOf<Element>;\n hasAttribute(name: string): boolean;\n hasAttributeNS(namespaceURI: string, localName: string): boolean;\n msGetRegionContent(): MSRangeCollection;\n msGetUntransformedBounds(): ClientRect;\n msMatchesSelector(selectors: string): boolean;\n msReleasePointerCapture(pointerId: number): void;\n msSetPointerCapture(pointerId: number): void;\n msZoomTo(args: MsZoomToOptions): void;\n releasePointerCapture(pointerId: number): void;\n removeAttribute(qualifiedName: string): void;\n removeAttributeNode(oldAttr: Attr): Attr;\n removeAttributeNS(namespaceURI: string, localName: string): void;\n requestFullscreen(): void;\n requestPointerLock(): void;\n setAttribute(name: string, value: string): void;\n setAttributeNode(newAttr: Attr): Attr;\n setAttributeNodeNS(newAttr: Attr): Attr;\n setAttributeNS(namespaceURI: string, qualifiedName: string, value: string): void;\n setPointerCapture(pointerId: number): void;\n webkitMatchesSelector(selectors: string): boolean;\n webkitRequestFullscreen(): void;\n webkitRequestFullScreen(): void;\n getElementsByClassName(classNames: string): NodeListOf<Element>;\n matches(selector: string): boolean;\n closest(selector: string): Element | null;\n scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;\n scroll(options?: ScrollToOptions): void;\n scroll(x: number, y: number): void;\n scrollTo(options?: ScrollToOptions): void;\n scrollTo(x: number, y: number): void;\n scrollBy(options?: ScrollToOptions): void;\n scrollBy(x: number, y: number): void;\n insertAdjacentElement(position: InsertPosition, insertedElement: Element): Element | null;\n insertAdjacentHTML(where: InsertPosition, html: string): void;\n insertAdjacentText(where: InsertPosition, text: string): void;\n attachShadow(shadowRootInitDict: ShadowRootInit): ShadowRoot;\n addEventListener<K extends keyof ElementEventMap>(type: K, listener: (this: Element, ev: ElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Element: {\n prototype: Element;\n new(): Element;\n};\n\ninterface ErrorEvent extends Event {\n readonly colno: number;\n readonly error: any;\n readonly filename: string;\n readonly lineno: number;\n readonly message: string;\n initErrorEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, messageArg: string, filenameArg: string, linenoArg: number): void;\n}\n\ndeclare var ErrorEvent: {\n prototype: ErrorEvent;\n new(type: string, errorEventInitDict?: ErrorEventInit): ErrorEvent;\n};\n\ninterface Event {\n readonly bubbles: boolean;\n readonly cancelable: boolean;\n cancelBubble: boolean;\n readonly currentTarget: EventTarget;\n readonly defaultPrevented: boolean;\n readonly eventPhase: number;\n readonly isTrusted: boolean;\n returnValue: boolean;\n readonly srcElement: Element | null;\n readonly target: EventTarget;\n readonly timeStamp: number;\n readonly type: string;\n readonly scoped: boolean;\n initEvent(eventTypeArg: string, canBubbleArg: boolean, cancelableArg: boolean): void;\n preventDefault(): void;\n stopImmediatePropagation(): void;\n stopPropagation(): void;\n deepPath(): EventTarget[];\n readonly AT_TARGET: number;\n readonly BUBBLING_PHASE: number;\n readonly CAPTURING_PHASE: number;\n}\n\ndeclare var Event: {\n prototype: Event;\n new(typeArg: string, eventInitDict?: EventInit): Event;\n readonly AT_TARGET: number;\n readonly BUBBLING_PHASE: number;\n readonly CAPTURING_PHASE: number;\n};\n\ninterface EventTarget {\n addEventListener(type: string, listener?: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;\n dispatchEvent(evt: Event): boolean;\n removeEventListener(type: string, listener?: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\n}\n\ndeclare var EventTarget: {\n prototype: EventTarget;\n new(): EventTarget;\n};\n\ninterface EXT_frag_depth {\n}\n\ndeclare var EXT_frag_depth: {\n prototype: EXT_frag_depth;\n new(): EXT_frag_depth;\n};\n\ninterface EXT_texture_filter_anisotropic {\n readonly MAX_TEXTURE_MAX_ANISOTROPY_EXT: number;\n readonly TEXTURE_MAX_ANISOTROPY_EXT: number;\n}\n\ndeclare var EXT_texture_filter_anisotropic: {\n prototype: EXT_texture_filter_anisotropic;\n new(): EXT_texture_filter_anisotropic;\n readonly MAX_TEXTURE_MAX_ANISOTROPY_EXT: number;\n readonly TEXTURE_MAX_ANISOTROPY_EXT: number;\n};\n\ninterface ExtensionScriptApis {\n extensionIdToShortId(extensionId: string): number;\n fireExtensionApiTelemetry(functionName: string, isSucceeded: boolean, isSupported: boolean): void;\n genericFunction(routerAddress: any, parameters?: string, callbackId?: number): void;\n genericSynchronousFunction(functionId: number, parameters?: string): string;\n getExtensionId(): string;\n registerGenericFunctionCallbackHandler(callbackHandler: any): void;\n registerGenericPersistentCallbackHandler(callbackHandler: any): void;\n}\n\ndeclare var ExtensionScriptApis: {\n prototype: ExtensionScriptApis;\n new(): ExtensionScriptApis;\n};\n\ninterface External {\n}\n\ndeclare var External: {\n prototype: External;\n new(): External;\n};\n\ninterface File extends Blob {\n readonly lastModifiedDate: any;\n readonly name: string;\n readonly webkitRelativePath: string;\n}\n\ndeclare var File: {\n prototype: File;\n new (parts: (ArrayBuffer | ArrayBufferView | Blob | string)[], filename: string, properties?: FilePropertyBag): File;\n};\n\ninterface FileList {\n readonly length: number;\n item(index: number): File;\n [index: number]: File;\n}\n\ndeclare var FileList: {\n prototype: FileList;\n new(): FileList;\n};\n\ninterface FileReader extends EventTarget, MSBaseReader {\n readonly error: DOMError;\n readAsArrayBuffer(blob: Blob): void;\n readAsBinaryString(blob: Blob): void;\n readAsDataURL(blob: Blob): void;\n readAsText(blob: Blob, encoding?: string): void;\n addEventListener<K extends keyof MSBaseReaderEventMap>(type: K, listener: (this: FileReader, ev: MSBaseReaderEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var FileReader: {\n prototype: FileReader;\n new(): FileReader;\n};\n\ninterface FocusEvent extends UIEvent {\n readonly relatedTarget: EventTarget;\n initFocusEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, relatedTargetArg: EventTarget): void;\n}\n\ndeclare var FocusEvent: {\n prototype: FocusEvent;\n new(typeArg: string, eventInitDict?: FocusEventInit): FocusEvent;\n};\n\ninterface FocusNavigationEvent extends Event {\n readonly navigationReason: NavigationReason;\n readonly originHeight: number;\n readonly originLeft: number;\n readonly originTop: number;\n readonly originWidth: number;\n requestFocus(): void;\n}\n\ndeclare var FocusNavigationEvent: {\n prototype: FocusNavigationEvent;\n new(type: string, eventInitDict?: FocusNavigationEventInit): FocusNavigationEvent;\n};\n\ninterface FormData {\n append(name: string, value: string | Blob, fileName?: string): void;\n delete(name: string): void;\n get(name: string): FormDataEntryValue | null;\n getAll(name: string): FormDataEntryValue[];\n has(name: string): boolean;\n set(name: string, value: string | Blob, fileName?: string): void;\n}\n\ndeclare var FormData: {\n prototype: FormData;\n new (form?: HTMLFormElement): FormData;\n};\n\ninterface GainNode extends AudioNode {\n readonly gain: AudioParam;\n}\n\ndeclare var GainNode: {\n prototype: GainNode;\n new(): GainNode;\n};\n\ninterface Gamepad {\n readonly axes: number[];\n readonly buttons: GamepadButton[];\n readonly connected: boolean;\n readonly id: string;\n readonly index: number;\n readonly mapping: string;\n readonly timestamp: number;\n}\n\ndeclare var Gamepad: {\n prototype: Gamepad;\n new(): Gamepad;\n};\n\ninterface GamepadButton {\n readonly pressed: boolean;\n readonly value: number;\n}\n\ndeclare var GamepadButton: {\n prototype: GamepadButton;\n new(): GamepadButton;\n};\n\ninterface GamepadEvent extends Event {\n readonly gamepad: Gamepad;\n}\n\ndeclare var GamepadEvent: {\n prototype: GamepadEvent;\n new(typeArg: string, eventInitDict?: GamepadEventInit): GamepadEvent;\n};\n\ninterface Geolocation {\n clearWatch(watchId: number): void;\n getCurrentPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback, options?: PositionOptions): void;\n watchPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback, options?: PositionOptions): number;\n}\n\ndeclare var Geolocation: {\n prototype: Geolocation;\n new(): Geolocation;\n};\n\ninterface HashChangeEvent extends Event {\n readonly newURL: string | null;\n readonly oldURL: string | null;\n}\n\ndeclare var HashChangeEvent: {\n prototype: HashChangeEvent;\n new(typeArg: string, eventInitDict?: HashChangeEventInit): HashChangeEvent;\n};\n\ninterface Headers {\n append(name: string, value: string): void;\n delete(name: string): void;\n forEach(callback: ForEachCallback): void;\n get(name: string): string | null;\n has(name: string): boolean;\n set(name: string, value: string): void;\n}\n\ndeclare var Headers: {\n prototype: Headers;\n new(init?: any): Headers;\n};\n\ninterface History {\n readonly length: number;\n readonly state: any;\n scrollRestoration: ScrollRestoration;\n back(): void;\n forward(): void;\n go(delta?: number): void;\n pushState(data: any, title: string, url?: string | null): void;\n replaceState(data: any, title: string, url?: string | null): void;\n}\n\ndeclare var History: {\n prototype: History;\n new(): History;\n};\n\ninterface HTMLAllCollection {\n readonly length: number;\n item(nameOrIndex?: string): HTMLCollection | Element | null;\n namedItem(name: string): HTMLCollection | Element | null;\n [index: number]: Element;\n}\n\ndeclare var HTMLAllCollection: {\n prototype: HTMLAllCollection;\n new(): HTMLAllCollection;\n};\n\ninterface HTMLAnchorElement extends HTMLElement {\n /**\n * Sets or retrieves the character set used to encode the object.\n */\n charset: string;\n /**\n * Sets or retrieves the coordinates of the object.\n */\n coords: string;\n download: string;\n /**\n * Contains the anchor portion of the URL including the hash sign (#).\n */\n hash: string;\n /**\n * Contains the hostname and port values of the URL.\n */\n host: string;\n /**\n * Contains the hostname of a URL.\n */\n hostname: string;\n /**\n * Sets or retrieves a destination URL or an anchor point.\n */\n href: string;\n /**\n * Sets or retrieves the language code of the object.\n */\n hreflang: string;\n Methods: string;\n readonly mimeType: string;\n /**\n * Sets or retrieves the shape of the object.\n */\n name: string;\n readonly nameProp: string;\n /**\n * Contains the pathname of the URL.\n */\n pathname: string;\n /**\n * Sets or retrieves the port number associated with a URL.\n */\n port: string;\n /**\n * Contains the protocol of the URL.\n */\n protocol: string;\n readonly protocolLong: string;\n /**\n * Sets or retrieves the relationship between the object and the destination of the link.\n */\n rel: string;\n /**\n * Sets or retrieves the relationship between the object and the destination of the link.\n */\n rev: string;\n /**\n * Sets or retrieves the substring of the href property that follows the question mark.\n */\n search: string;\n /**\n * Sets or retrieves the shape of the object.\n */\n shape: string;\n /**\n * Sets or retrieves the window or frame at which to target content.\n */\n target: string;\n /**\n * Retrieves or sets the text of the object as a string.\n */\n text: string;\n type: string;\n urn: string;\n /**\n * Returns a string representation of an object.\n */\n toString(): string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLAnchorElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLAnchorElement: {\n prototype: HTMLAnchorElement;\n new(): HTMLAnchorElement;\n};\n\ninterface HTMLAppletElement extends HTMLElement {\n align: string;\n /**\n * Sets or retrieves a text alternative to the graphic.\n */\n alt: string;\n /**\n * Gets or sets the optional alternative HTML script to execute if the object fails to load.\n */\n altHtml: string;\n /**\n * Sets or retrieves a character string that can be used to implement your own archive functionality for the object.\n */\n archive: string;\n /**\n * Retrieves a string of the URL where the object tag can be found. This is often the href of the document that the object is in, or the value set by a base element.\n */\n readonly BaseHref: string;\n border: string;\n code: string;\n /**\n * Sets or retrieves the URL of the component.\n */\n codeBase: string;\n /**\n * Sets or retrieves the Internet media type for the code associated with the object.\n */\n codeType: string;\n /**\n * Address of a pointer to the document this page or frame contains. If there is no document, then null will be returned.\n */\n readonly contentDocument: Document;\n /**\n * Sets or retrieves the URL that references the data of the object.\n */\n data: string;\n /**\n * Sets or retrieves a character string that can be used to implement your own declare functionality for the object.\n */\n declare: boolean;\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the height of the object.\n */\n height: string;\n hspace: number;\n /**\n * Sets or retrieves the shape of the object.\n */\n name: string;\n object: string | null;\n /**\n * Sets or retrieves a message to be displayed while an object is loading.\n */\n standby: string;\n /**\n * Returns the content type of the object.\n */\n type: string;\n /**\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\n */\n useMap: string;\n vspace: number;\n width: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLAppletElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLAppletElement: {\n prototype: HTMLAppletElement;\n new(): HTMLAppletElement;\n};\n\ninterface HTMLAreaElement extends HTMLElement {\n /**\n * Sets or retrieves a text alternative to the graphic.\n */\n alt: string;\n /**\n * Sets or retrieves the coordinates of the object.\n */\n coords: string;\n download: string;\n /**\n * Sets or retrieves the subsection of the href property that follows the number sign (#).\n */\n hash: string;\n /**\n * Sets or retrieves the hostname and port number of the location or URL.\n */\n host: string;\n /**\n * Sets or retrieves the host name part of the location or URL.\n */\n hostname: string;\n /**\n * Sets or retrieves a destination URL or an anchor point.\n */\n href: string;\n /**\n * Sets or gets whether clicks in this region cause action.\n */\n noHref: boolean;\n /**\n * Sets or retrieves the file name or path specified by the object.\n */\n pathname: string;\n /**\n * Sets or retrieves the port number associated with a URL.\n */\n port: string;\n /**\n * Sets or retrieves the protocol portion of a URL.\n */\n protocol: string;\n rel: string;\n /**\n * Sets or retrieves the substring of the href property that follows the question mark.\n */\n search: string;\n /**\n * Sets or retrieves the shape of the object.\n */\n shape: string;\n /**\n * Sets or retrieves the window or frame at which to target content.\n */\n target: string;\n /**\n * Returns a string representation of an object.\n */\n toString(): string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLAreaElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLAreaElement: {\n prototype: HTMLAreaElement;\n new(): HTMLAreaElement;\n};\n\ninterface HTMLAreasCollection extends HTMLCollectionBase {\n}\n\ndeclare var HTMLAreasCollection: {\n prototype: HTMLAreasCollection;\n new(): HTMLAreasCollection;\n};\n\ninterface HTMLAudioElement extends HTMLMediaElement {\n addEventListener<K extends keyof HTMLMediaElementEventMap>(type: K, listener: (this: HTMLAudioElement, ev: HTMLMediaElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLAudioElement: {\n prototype: HTMLAudioElement;\n new(): HTMLAudioElement;\n};\n\ninterface HTMLBaseElement extends HTMLElement {\n /**\n * Gets or sets the baseline URL on which relative links are based.\n */\n href: string;\n /**\n * Sets or retrieves the window or frame at which to target content.\n */\n target: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBaseElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLBaseElement: {\n prototype: HTMLBaseElement;\n new(): HTMLBaseElement;\n};\n\ninterface HTMLBaseFontElement extends HTMLElement, DOML2DeprecatedColorProperty {\n /**\n * Sets or retrieves the current typeface family.\n */\n face: string;\n /**\n * Sets or retrieves the font size of the object.\n */\n size: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBaseFontElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLBaseFontElement: {\n prototype: HTMLBaseFontElement;\n new(): HTMLBaseFontElement;\n};\n\ninterface HTMLBodyElementEventMap extends HTMLElementEventMap {\n "afterprint": Event;\n "beforeprint": Event;\n "beforeunload": BeforeUnloadEvent;\n "blur": FocusEvent;\n "error": ErrorEvent;\n "focus": FocusEvent;\n "hashchange": HashChangeEvent;\n "load": Event;\n "message": MessageEvent;\n "offline": Event;\n "online": Event;\n "orientationchange": Event;\n "pagehide": PageTransitionEvent;\n "pageshow": PageTransitionEvent;\n "popstate": PopStateEvent;\n "resize": UIEvent;\n "scroll": UIEvent;\n "storage": StorageEvent;\n "unload": Event;\n}\n\ninterface HTMLBodyElement extends HTMLElement {\n aLink: any;\n background: string;\n bgColor: any;\n bgProperties: string;\n link: any;\n noWrap: boolean;\n onafterprint: (this: HTMLBodyElement, ev: Event) => any;\n onbeforeprint: (this: HTMLBodyElement, ev: Event) => any;\n onbeforeunload: (this: HTMLBodyElement, ev: BeforeUnloadEvent) => any;\n onblur: (this: HTMLBodyElement, ev: FocusEvent) => any;\n onerror: (this: HTMLBodyElement, ev: ErrorEvent) => any;\n onfocus: (this: HTMLBodyElement, ev: FocusEvent) => any;\n onhashchange: (this: HTMLBodyElement, ev: HashChangeEvent) => any;\n onload: (this: HTMLBodyElement, ev: Event) => any;\n onmessage: (this: HTMLBodyElement, ev: MessageEvent) => any;\n onoffline: (this: HTMLBodyElement, ev: Event) => any;\n ononline: (this: HTMLBodyElement, ev: Event) => any;\n onorientationchange: (this: HTMLBodyElement, ev: Event) => any;\n onpagehide: (this: HTMLBodyElement, ev: PageTransitionEvent) => any;\n onpageshow: (this: HTMLBodyElement, ev: PageTransitionEvent) => any;\n onpopstate: (this: HTMLBodyElement, ev: PopStateEvent) => any;\n onresize: (this: HTMLBodyElement, ev: UIEvent) => any;\n onscroll: (this: HTMLBodyElement, ev: UIEvent) => any;\n onstorage: (this: HTMLBodyElement, ev: StorageEvent) => any;\n onunload: (this: HTMLBodyElement, ev: Event) => any;\n text: any;\n vLink: any;\n addEventListener<K extends keyof HTMLBodyElementEventMap>(type: K, listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLBodyElement: {\n prototype: HTMLBodyElement;\n new(): HTMLBodyElement;\n};\n\ninterface HTMLBRElement extends HTMLElement {\n /**\n * Sets or retrieves the side on which floating objects are not to be positioned when any IHTMLBlockElement is inserted into the document.\n */\n clear: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBRElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLBRElement: {\n prototype: HTMLBRElement;\n new(): HTMLBRElement;\n};\n\ninterface HTMLButtonElement extends HTMLElement {\n /**\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\n */\n autofocus: boolean;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Overrides the action attribute (where the data on a form is sent) on the parent form element.\n */\n formAction: string;\n /**\n * Used to override the encoding (formEnctype attribute) specified on the form element.\n */\n formEnctype: string;\n /**\n * Overrides the submit method attribute previously specified on a form element.\n */\n formMethod: string;\n /**\n * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.\n */\n formNoValidate: string;\n /**\n * Overrides the target attribute on a form element.\n */\n formTarget: string;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n status: any;\n /**\n * Gets the classification and default behavior of the button.\n */\n type: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n /**\n * Sets or retrieves the default or selected value of the control.\n */\n value: string;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLButtonElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLButtonElement: {\n prototype: HTMLButtonElement;\n new(): HTMLButtonElement;\n};\n\ninterface HTMLCanvasElement extends HTMLElement {\n /**\n * Gets or sets the height of a canvas element on a document.\n */\n height: number;\n /**\n * Gets or sets the width of a canvas element on a document.\n */\n width: number;\n /**\n * Returns an object that provides methods and properties for drawing and manipulating images and graphics on a canvas element in a document. A context object includes information about colors, line widths, fonts, and other graphic parameters that can be drawn on a canvas.\n * @param contextId The identifier (ID) of the type of canvas to create. Internet Explorer 9 and Internet Explorer 10 support only a 2-D context using canvas.getContext("2d"); IE11 Preview also supports 3-D or WebGL context using canvas.getContext("experimental-webgl");\n */\n getContext(contextId: "2d", contextAttributes?: Canvas2DContextAttributes): CanvasRenderingContext2D | null;\n getContext(contextId: "webgl" | "experimental-webgl", contextAttributes?: WebGLContextAttributes): WebGLRenderingContext | null;\n getContext(contextId: string, contextAttributes?: {}): CanvasRenderingContext2D | WebGLRenderingContext | null;\n /**\n * Returns a blob object encoded as a Portable Network Graphics (PNG) format from a canvas image or drawing.\n */\n msToBlob(): Blob;\n /**\n * Returns the content of the current canvas as an image that you can use as a source for another canvas or an HTML element.\n * @param type The standard MIME type for the image format to return. If you do not specify this parameter, the default value is a PNG format image.\n */\n toDataURL(type?: string, ...args: any[]): string;\n toBlob(callback: (result: Blob | null) => void, type?: string, ...arguments: any[]): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLCanvasElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLCanvasElement: {\n prototype: HTMLCanvasElement;\n new(): HTMLCanvasElement;\n};\n\ninterface HTMLCollectionBase {\n /**\n * Sets or retrieves the number of objects in a collection.\n */\n readonly length: number;\n /**\n * Retrieves an object from various collections.\n */\n item(index: number): Element;\n [index: number]: Element;\n}\n\ninterface HTMLCollection extends HTMLCollectionBase {\n /**\n * Retrieves a select object or an object from an options collection.\n */\n namedItem(name: string): Element | null;\n}\n\ndeclare var HTMLCollection: {\n prototype: HTMLCollection;\n new(): HTMLCollection;\n};\n\ninterface HTMLDataElement extends HTMLElement {\n value: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDataElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDataElement: {\n prototype: HTMLDataElement;\n new(): HTMLDataElement;\n};\n\ninterface HTMLDataListElement extends HTMLElement {\n options: HTMLCollectionOf<HTMLOptionElement>;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDataListElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDataListElement: {\n prototype: HTMLDataListElement;\n new(): HTMLDataListElement;\n};\n\ninterface HTMLDirectoryElement extends HTMLElement {\n compact: boolean;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDirectoryElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDirectoryElement: {\n prototype: HTMLDirectoryElement;\n new(): HTMLDirectoryElement;\n};\n\ninterface HTMLDivElement extends HTMLElement {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n /**\n * Sets or retrieves whether the browser automatically performs wordwrap.\n */\n noWrap: boolean;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDivElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDivElement: {\n prototype: HTMLDivElement;\n new(): HTMLDivElement;\n};\n\ninterface HTMLDListElement extends HTMLElement {\n compact: boolean;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDListElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDListElement: {\n prototype: HTMLDListElement;\n new(): HTMLDListElement;\n};\n\ninterface HTMLDocument extends Document {\n addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: HTMLDocument, ev: DocumentEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLDocument: {\n prototype: HTMLDocument;\n new(): HTMLDocument;\n};\n\ninterface HTMLElementEventMap extends ElementEventMap {\n "abort": UIEvent;\n "activate": UIEvent;\n "beforeactivate": UIEvent;\n "beforecopy": ClipboardEvent;\n "beforecut": ClipboardEvent;\n "beforedeactivate": UIEvent;\n "beforepaste": ClipboardEvent;\n "blur": FocusEvent;\n "canplay": Event;\n "canplaythrough": Event;\n "change": Event;\n "click": MouseEvent;\n "contextmenu": PointerEvent;\n "copy": ClipboardEvent;\n "cuechange": Event;\n "cut": ClipboardEvent;\n "dblclick": MouseEvent;\n "deactivate": UIEvent;\n "drag": DragEvent;\n "dragend": DragEvent;\n "dragenter": DragEvent;\n "dragleave": DragEvent;\n "dragover": DragEvent;\n "dragstart": DragEvent;\n "drop": DragEvent;\n "durationchange": Event;\n "emptied": Event;\n "ended": MediaStreamErrorEvent;\n "error": ErrorEvent;\n "focus": FocusEvent;\n "input": Event;\n "invalid": Event;\n "keydown": KeyboardEvent;\n "keypress": KeyboardEvent;\n "keyup": KeyboardEvent;\n "load": Event;\n "loadeddata": Event;\n "loadedmetadata": Event;\n "loadstart": Event;\n "mousedown": MouseEvent;\n "mouseenter": MouseEvent;\n "mouseleave": MouseEvent;\n "mousemove": MouseEvent;\n "mouseout": MouseEvent;\n "mouseover": MouseEvent;\n "mouseup": MouseEvent;\n "mousewheel": WheelEvent;\n "MSContentZoom": UIEvent;\n "MSManipulationStateChanged": MSManipulationEvent;\n "paste": ClipboardEvent;\n "pause": Event;\n "play": Event;\n "playing": Event;\n "progress": ProgressEvent;\n "ratechange": Event;\n "reset": Event;\n "scroll": UIEvent;\n "seeked": Event;\n "seeking": Event;\n "select": UIEvent;\n "selectstart": Event;\n "stalled": Event;\n "submit": Event;\n "suspend": Event;\n "timeupdate": Event;\n "volumechange": Event;\n "waiting": Event;\n}\n\ninterface HTMLElement extends Element {\n accessKey: string;\n readonly children: HTMLCollection;\n contentEditable: string;\n readonly dataset: DOMStringMap;\n dir: string;\n draggable: boolean;\n hidden: boolean;\n hideFocus: boolean;\n innerText: string;\n readonly isContentEditable: boolean;\n lang: string;\n readonly offsetHeight: number;\n readonly offsetLeft: number;\n readonly offsetParent: Element;\n readonly offsetTop: number;\n readonly offsetWidth: number;\n onabort: (this: HTMLElement, ev: UIEvent) => any;\n onactivate: (this: HTMLElement, ev: UIEvent) => any;\n onbeforeactivate: (this: HTMLElement, ev: UIEvent) => any;\n onbeforecopy: (this: HTMLElement, ev: ClipboardEvent) => any;\n onbeforecut: (this: HTMLElement, ev: ClipboardEvent) => any;\n onbeforedeactivate: (this: HTMLElement, ev: UIEvent) => any;\n onbeforepaste: (this: HTMLElement, ev: ClipboardEvent) => any;\n onblur: (this: HTMLElement, ev: FocusEvent) => any;\n oncanplay: (this: HTMLElement, ev: Event) => any;\n oncanplaythrough: (this: HTMLElement, ev: Event) => any;\n onchange: (this: HTMLElement, ev: Event) => any;\n onclick: (this: HTMLElement, ev: MouseEvent) => any;\n oncontextmenu: (this: HTMLElement, ev: PointerEvent) => any;\n oncopy: (this: HTMLElement, ev: ClipboardEvent) => any;\n oncuechange: (this: HTMLElement, ev: Event) => any;\n oncut: (this: HTMLElement, ev: ClipboardEvent) => any;\n ondblclick: (this: HTMLElement, ev: MouseEvent) => any;\n ondeactivate: (this: HTMLElement, ev: UIEvent) => any;\n ondrag: (this: HTMLElement, ev: DragEvent) => any;\n ondragend: (this: HTMLElement, ev: DragEvent) => any;\n ondragenter: (this: HTMLElement, ev: DragEvent) => any;\n ondragleave: (this: HTMLElement, ev: DragEvent) => any;\n ondragover: (this: HTMLElement, ev: DragEvent) => any;\n ondragstart: (this: HTMLElement, ev: DragEvent) => any;\n ondrop: (this: HTMLElement, ev: DragEvent) => any;\n ondurationchange: (this: HTMLElement, ev: Event) => any;\n onemptied: (this: HTMLElement, ev: Event) => any;\n onended: (this: HTMLElement, ev: MediaStreamErrorEvent) => any;\n onerror: (this: HTMLElement, ev: ErrorEvent) => any;\n onfocus: (this: HTMLElement, ev: FocusEvent) => any;\n oninput: (this: HTMLElement, ev: Event) => any;\n oninvalid: (this: HTMLElement, ev: Event) => any;\n onkeydown: (this: HTMLElement, ev: KeyboardEvent) => any;\n onkeypress: (this: HTMLElement, ev: KeyboardEvent) => any;\n onkeyup: (this: HTMLElement, ev: KeyboardEvent) => any;\n onload: (this: HTMLElement, ev: Event) => any;\n onloadeddata: (this: HTMLElement, ev: Event) => any;\n onloadedmetadata: (this: HTMLElement, ev: Event) => any;\n onloadstart: (this: HTMLElement, ev: Event) => any;\n onmousedown: (this: HTMLElement, ev: MouseEvent) => any;\n onmouseenter: (this: HTMLElement, ev: MouseEvent) => any;\n onmouseleave: (this: HTMLElement, ev: MouseEvent) => any;\n onmousemove: (this: HTMLElement, ev: MouseEvent) => any;\n onmouseout: (this: HTMLElement, ev: MouseEvent) => any;\n onmouseover: (this: HTMLElement, ev: MouseEvent) => any;\n onmouseup: (this: HTMLElement, ev: MouseEvent) => any;\n onmousewheel: (this: HTMLElement, ev: WheelEvent) => any;\n onmscontentzoom: (this: HTMLElement, ev: UIEvent) => any;\n onmsmanipulationstatechanged: (this: HTMLElement, ev: MSManipulationEvent) => any;\n onpaste: (this: HTMLElement, ev: ClipboardEvent) => any;\n onpause: (this: HTMLElement, ev: Event) => any;\n onplay: (this: HTMLElement, ev: Event) => any;\n onplaying: (this: HTMLElement, ev: Event) => any;\n onprogress: (this: HTMLElement, ev: ProgressEvent) => any;\n onratechange: (this: HTMLElement, ev: Event) => any;\n onreset: (this: HTMLElement, ev: Event) => any;\n onscroll: (this: HTMLElement, ev: UIEvent) => any;\n onseeked: (this: HTMLElement, ev: Event) => any;\n onseeking: (this: HTMLElement, ev: Event) => any;\n onselect: (this: HTMLElement, ev: UIEvent) => any;\n onselectstart: (this: HTMLElement, ev: Event) => any;\n onstalled: (this: HTMLElement, ev: Event) => any;\n onsubmit: (this: HTMLElement, ev: Event) => any;\n onsuspend: (this: HTMLElement, ev: Event) => any;\n ontimeupdate: (this: HTMLElement, ev: Event) => any;\n onvolumechange: (this: HTMLElement, ev: Event) => any;\n onwaiting: (this: HTMLElement, ev: Event) => any;\n outerText: string;\n spellcheck: boolean;\n readonly style: CSSStyleDeclaration;\n tabIndex: number;\n title: string;\n blur(): void;\n click(): void;\n dragDrop(): boolean;\n focus(): void;\n msGetInputContext(): MSInputMethodContext;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLElement: {\n prototype: HTMLElement;\n new(): HTMLElement;\n};\n\ninterface HTMLEmbedElement extends HTMLElement, GetSVGDocument {\n /**\n * Sets or retrieves the height of the object.\n */\n height: string;\n hidden: any;\n /**\n * Gets or sets whether the DLNA PlayTo device is available.\n */\n msPlayToDisabled: boolean;\n /**\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\n */\n msPlayToPreferredSourceUri: string;\n /**\n * Gets or sets the primary DLNA PlayTo device.\n */\n msPlayToPrimary: boolean;\n /**\n * Gets the source associated with the media element for use by the PlayToManager.\n */\n readonly msPlayToSource: any;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n /**\n * Retrieves the palette used for the embedded document.\n */\n readonly palette: string;\n /**\n * Retrieves the URL of the plug-in used to view an embedded document.\n */\n readonly pluginspage: string;\n readonly readyState: string;\n /**\n * Sets or retrieves a URL to be loaded by the object.\n */\n src: string;\n /**\n * Sets or retrieves the height and width units of the embed object.\n */\n units: string;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLEmbedElement: {\n prototype: HTMLEmbedElement;\n new(): HTMLEmbedElement;\n};\n\ninterface HTMLFieldSetElement extends HTMLElement {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n name: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFieldSetElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLFieldSetElement: {\n prototype: HTMLFieldSetElement;\n new(): HTMLFieldSetElement;\n};\n\ninterface HTMLFontElement extends HTMLElement, DOML2DeprecatedColorProperty, DOML2DeprecatedSizeProperty {\n /**\n * Sets or retrieves the current typeface family.\n */\n face: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFontElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLFontElement: {\n prototype: HTMLFontElement;\n new(): HTMLFontElement;\n};\n\ninterface HTMLFormControlsCollection extends HTMLCollectionBase {\n namedItem(name: string): HTMLCollection | Element | null;\n}\n\ndeclare var HTMLFormControlsCollection: {\n prototype: HTMLFormControlsCollection;\n new(): HTMLFormControlsCollection;\n};\n\ninterface HTMLFormElement extends HTMLElement {\n /**\n * Sets or retrieves a list of character encodings for input data that must be accepted by the server processing the form.\n */\n acceptCharset: string;\n /**\n * Sets or retrieves the URL to which the form content is sent for processing.\n */\n action: string;\n /**\n * Specifies whether autocomplete is applied to an editable text field.\n */\n autocomplete: string;\n /**\n * Retrieves a collection, in source order, of all controls in a given form.\n */\n readonly elements: HTMLFormControlsCollection;\n /**\n * Sets or retrieves the MIME encoding for the form.\n */\n encoding: string;\n /**\n * Sets or retrieves the encoding type for the form.\n */\n enctype: string;\n /**\n * Sets or retrieves the number of objects in a collection.\n */\n readonly length: number;\n /**\n * Sets or retrieves how to send the form data to the server.\n */\n method: string;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n /**\n * Designates a form that is not validated when submitted.\n */\n noValidate: boolean;\n /**\n * Sets or retrieves the window or frame at which to target content.\n */\n target: string;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Retrieves a form object or an object from an elements collection.\n * @param name Variant of type Number or String that specifies the object or collection to retrieve. If this parameter is a Number, it is the zero-based index of the object. If this parameter is a string, all objects with matching name or id properties are retrieved, and a collection is returned if more than one match is made.\n * @param index Variant of type Number that specifies the zero-based index of the object to retrieve when a collection is returned.\n */\n item(name?: any, index?: any): any;\n /**\n * Retrieves a form object or an object from an elements collection.\n */\n namedItem(name: string): any;\n /**\n * Fires when the user resets a form.\n */\n reset(): void;\n /**\n * Fires when a FORM is about to be submitted.\n */\n submit(): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFormElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n [name: string]: any;\n}\n\ndeclare var HTMLFormElement: {\n prototype: HTMLFormElement;\n new(): HTMLFormElement;\n};\n\ninterface HTMLFrameElementEventMap extends HTMLElementEventMap {\n "load": Event;\n}\n\ninterface HTMLFrameElement extends HTMLElement, GetSVGDocument {\n /**\n * Specifies the properties of a border drawn around an object.\n */\n border: string;\n /**\n * Sets or retrieves the border color of the object.\n */\n borderColor: any;\n /**\n * Retrieves the document object of the page or frame.\n */\n readonly contentDocument: Document;\n /**\n * Retrieves the object of the specified.\n */\n readonly contentWindow: Window;\n /**\n * Sets or retrieves whether to display a border for the frame.\n */\n frameBorder: string;\n /**\n * Sets or retrieves the amount of additional space between the frames.\n */\n frameSpacing: any;\n /**\n * Sets or retrieves the height of the object.\n */\n height: string | number;\n /**\n * Sets or retrieves a URI to a long description of the object.\n */\n longDesc: string;\n /**\n * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.\n */\n marginHeight: string;\n /**\n * Sets or retrieves the left and right margin widths before displaying the text in a frame.\n */\n marginWidth: string;\n /**\n * Sets or retrieves the frame name.\n */\n name: string;\n /**\n * Sets or retrieves whether the user can resize the frame.\n */\n noResize: boolean;\n /**\n * Raised when the object has been completely received from the server.\n */\n onload: (this: HTMLFrameElement, ev: Event) => any;\n /**\n * Sets or retrieves whether the frame can be scrolled.\n */\n scrolling: string;\n /**\n * Sets or retrieves a URL to be loaded by the object.\n */\n src: string;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string | number;\n addEventListener<K extends keyof HTMLFrameElementEventMap>(type: K, listener: (this: HTMLFrameElement, ev: HTMLFrameElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLFrameElement: {\n prototype: HTMLFrameElement;\n new(): HTMLFrameElement;\n};\n\ninterface HTMLFrameSetElementEventMap extends HTMLElementEventMap {\n "afterprint": Event;\n "beforeprint": Event;\n "beforeunload": BeforeUnloadEvent;\n "blur": FocusEvent;\n "error": ErrorEvent;\n "focus": FocusEvent;\n "hashchange": HashChangeEvent;\n "load": Event;\n "message": MessageEvent;\n "offline": Event;\n "online": Event;\n "orientationchange": Event;\n "pagehide": PageTransitionEvent;\n "pageshow": PageTransitionEvent;\n "popstate": PopStateEvent;\n "resize": UIEvent;\n "scroll": UIEvent;\n "storage": StorageEvent;\n "unload": Event;\n}\n\ninterface HTMLFrameSetElement extends HTMLElement {\n border: string;\n /**\n * Sets or retrieves the border color of the object.\n */\n borderColor: any;\n /**\n * Sets or retrieves the frame widths of the object.\n */\n cols: string;\n /**\n * Sets or retrieves whether to display a border for the frame.\n */\n frameBorder: string;\n /**\n * Sets or retrieves the amount of additional space between the frames.\n */\n frameSpacing: any;\n name: string;\n onafterprint: (this: HTMLFrameSetElement, ev: Event) => any;\n onbeforeprint: (this: HTMLFrameSetElement, ev: Event) => any;\n onbeforeunload: (this: HTMLFrameSetElement, ev: BeforeUnloadEvent) => any;\n /**\n * Fires when the object loses the input focus.\n */\n onblur: (this: HTMLFrameSetElement, ev: FocusEvent) => any;\n onerror: (this: HTMLFrameSetElement, ev: ErrorEvent) => any;\n /**\n * Fires when the object receives focus.\n */\n onfocus: (this: HTMLFrameSetElement, ev: FocusEvent) => any;\n onhashchange: (this: HTMLFrameSetElement, ev: HashChangeEvent) => any;\n onload: (this: HTMLFrameSetElement, ev: Event) => any;\n onmessage: (this: HTMLFrameSetElement, ev: MessageEvent) => any;\n onoffline: (this: HTMLFrameSetElement, ev: Event) => any;\n ononline: (this: HTMLFrameSetElement, ev: Event) => any;\n onorientationchange: (this: HTMLFrameSetElement, ev: Event) => any;\n onpagehide: (this: HTMLFrameSetElement, ev: PageTransitionEvent) => any;\n onpageshow: (this: HTMLFrameSetElement, ev: PageTransitionEvent) => any;\n onpopstate: (this: HTMLFrameSetElement, ev: PopStateEvent) => any;\n onresize: (this: HTMLFrameSetElement, ev: UIEvent) => any;\n onscroll: (this: HTMLFrameSetElement, ev: UIEvent) => any;\n onstorage: (this: HTMLFrameSetElement, ev: StorageEvent) => any;\n onunload: (this: HTMLFrameSetElement, ev: Event) => any;\n /**\n * Sets or retrieves the frame heights of the object.\n */\n rows: string;\n addEventListener<K extends keyof HTMLFrameSetElementEventMap>(type: K, listener: (this: HTMLFrameSetElement, ev: HTMLFrameSetElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLFrameSetElement: {\n prototype: HTMLFrameSetElement;\n new(): HTMLFrameSetElement;\n};\n\ninterface HTMLHeadElement extends HTMLElement {\n profile: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHeadElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLHeadElement: {\n prototype: HTMLHeadElement;\n new(): HTMLHeadElement;\n};\n\ninterface HTMLHeadingElement extends HTMLElement {\n /**\n * Sets or retrieves a value that indicates the table alignment.\n */\n align: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHeadingElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLHeadingElement: {\n prototype: HTMLHeadingElement;\n new(): HTMLHeadingElement;\n};\n\ninterface HTMLHRElement extends HTMLElement, DOML2DeprecatedColorProperty, DOML2DeprecatedSizeProperty {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n /**\n * Sets or retrieves whether the horizontal rule is drawn with 3-D shading.\n */\n noShade: boolean;\n /**\n * Sets or retrieves the width of the object.\n */\n width: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHRElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLHRElement: {\n prototype: HTMLHRElement;\n new(): HTMLHRElement;\n};\n\ninterface HTMLHtmlElement extends HTMLElement {\n /**\n * Sets or retrieves the DTD version that governs the current document.\n */\n version: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHtmlElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLHtmlElement: {\n prototype: HTMLHtmlElement;\n new(): HTMLHtmlElement;\n};\n\ninterface HTMLIFrameElementEventMap extends HTMLElementEventMap {\n "load": Event;\n}\n\ninterface HTMLIFrameElement extends HTMLElement, GetSVGDocument {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n allowFullscreen: boolean;\n allowPaymentRequest: boolean;\n /**\n * Specifies the properties of a border drawn around an object.\n */\n border: string;\n /**\n * Retrieves the document object of the page or frame.\n */\n readonly contentDocument: Document;\n /**\n * Retrieves the object of the specified.\n */\n readonly contentWindow: Window;\n /**\n * Sets or retrieves whether to display a border for the frame.\n */\n frameBorder: string;\n /**\n * Sets or retrieves the amount of additional space between the frames.\n */\n frameSpacing: any;\n /**\n * Sets or retrieves the height of the object.\n */\n height: string;\n /**\n * Sets or retrieves the horizontal margin for the object.\n */\n hspace: number;\n /**\n * Sets or retrieves a URI to a long description of the object.\n */\n longDesc: string;\n /**\n * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.\n */\n marginHeight: string;\n /**\n * Sets or retrieves the left and right margin widths before displaying the text in a frame.\n */\n marginWidth: string;\n /**\n * Sets or retrieves the frame name.\n */\n name: string;\n /**\n * Sets or retrieves whether the user can resize the frame.\n */\n noResize: boolean;\n /**\n * Raised when the object has been completely received from the server.\n */\n onload: (this: HTMLIFrameElement, ev: Event) => any;\n readonly sandbox: DOMSettableTokenList;\n /**\n * Sets or retrieves whether the frame can be scrolled.\n */\n scrolling: string;\n /**\n * Sets or retrieves a URL to be loaded by the object.\n */\n src: string;\n /**\n * Sets or retrieves the vertical margin for the object.\n */\n vspace: number;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n addEventListener<K extends keyof HTMLIFrameElementEventMap>(type: K, listener: (this: HTMLIFrameElement, ev: HTMLIFrameElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLIFrameElement: {\n prototype: HTMLIFrameElement;\n new(): HTMLIFrameElement;\n};\n\ninterface HTMLImageElement extends HTMLElement {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n /**\n * Sets or retrieves a text alternative to the graphic.\n */\n alt: string;\n /**\n * Specifies the properties of a border drawn around an object.\n */\n border: string;\n /**\n * Retrieves whether the object is fully loaded.\n */\n readonly complete: boolean;\n crossOrigin: string | null;\n readonly currentSrc: string;\n /**\n * Sets or retrieves the height of the object.\n */\n height: number;\n /**\n * Sets or retrieves the width of the border to draw around the object.\n */\n hspace: number;\n /**\n * Sets or retrieves whether the image is a server-side image map.\n */\n isMap: boolean;\n /**\n * Sets or retrieves a Uniform Resource Identifier (URI) to a long description of the object.\n */\n longDesc: string;\n lowsrc: string;\n /**\n * Gets or sets whether the DLNA PlayTo device is available.\n */\n msPlayToDisabled: boolean;\n msPlayToPreferredSourceUri: string;\n /**\n * Gets or sets the primary DLNA PlayTo device.\n */\n msPlayToPrimary: boolean;\n /**\n * Gets the source associated with the media element for use by the PlayToManager.\n */\n readonly msPlayToSource: any;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n /**\n * The original height of the image resource before sizing.\n */\n readonly naturalHeight: number;\n /**\n * The original width of the image resource before sizing.\n */\n readonly naturalWidth: number;\n sizes: string;\n /**\n * The address or URL of the a media resource that is to be considered.\n */\n src: string;\n srcset: string;\n /**\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\n */\n useMap: string;\n /**\n * Sets or retrieves the vertical margin for the object.\n */\n vspace: number;\n /**\n * Sets or retrieves the width of the object.\n */\n width: number;\n readonly x: number;\n readonly y: number;\n msGetAsCastingSource(): any;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLImageElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLImageElement: {\n prototype: HTMLImageElement;\n new(): HTMLImageElement;\n};\n\ninterface HTMLInputElement extends HTMLElement {\n /**\n * Sets or retrieves a comma-separated list of content types.\n */\n accept: string;\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n /**\n * Sets or retrieves a text alternative to the graphic.\n */\n alt: string;\n /**\n * Specifies whether autocomplete is applied to an editable text field.\n */\n autocomplete: string;\n /**\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\n */\n autofocus: boolean;\n /**\n * Sets or retrieves the width of the border to draw around the object.\n */\n border: string;\n /**\n * Sets or retrieves the state of the check box or radio button.\n */\n checked: boolean;\n /**\n * Retrieves whether the object is fully loaded.\n */\n readonly complete: boolean;\n /**\n * Sets or retrieves the state of the check box or radio button.\n */\n defaultChecked: boolean;\n /**\n * Sets or retrieves the initial contents of the object.\n */\n defaultValue: string;\n disabled: boolean;\n /**\n * Returns a FileList object on a file type input object.\n */\n readonly files: FileList | null;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Overrides the action attribute (where the data on a form is sent) on the parent form element.\n */\n formAction: string;\n /**\n * Used to override the encoding (formEnctype attribute) specified on the form element.\n */\n formEnctype: string;\n /**\n * Overrides the submit method attribute previously specified on a form element.\n */\n formMethod: string;\n /**\n * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.\n */\n formNoValidate: string;\n /**\n * Overrides the target attribute on a form element.\n */\n formTarget: string;\n /**\n * Sets or retrieves the height of the object.\n */\n height: string;\n /**\n * Sets or retrieves the width of the border to draw around the object.\n */\n hspace: number;\n indeterminate: boolean;\n /**\n * Specifies the ID of a pre-defined datalist of options for an input element.\n */\n readonly list: HTMLElement;\n /**\n * Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field.\n */\n max: string;\n /**\n * Sets or retrieves the maximum number of characters that the user can enter in a text control.\n */\n maxLength: number;\n /**\n * Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field.\n */\n min: string;\n /**\n * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.\n */\n multiple: boolean;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n /**\n * Gets or sets a string containing a regular expression that the user\'s input must match.\n */\n pattern: string;\n /**\n * Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field.\n */\n placeholder: string;\n readOnly: boolean;\n /**\n * When present, marks an element that can\'t be submitted without a value.\n */\n required: boolean;\n selectionDirection: string;\n /**\n * Gets or sets the end position or offset of a text selection.\n */\n selectionEnd: number;\n /**\n * Gets or sets the starting position or offset of a text selection.\n */\n selectionStart: number;\n size: number;\n /**\n * The address or URL of the a media resource that is to be considered.\n */\n src: string;\n status: boolean;\n /**\n * Defines an increment or jump between values that you want to allow the user to enter. When used with the max and min attributes, lets you control the range and increment (for example, allow only even numbers) that the user can enter into an input field.\n */\n step: string;\n /**\n * Returns the content type of the object.\n */\n type: string;\n /**\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\n */\n useMap: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n /**\n * Returns the value of the data at the cursor\'s current position.\n */\n value: string;\n valueAsDate: Date;\n /**\n * Returns the input field value as a number.\n */\n valueAsNumber: number;\n /**\n * Sets or retrieves the vertical margin for the object.\n */\n vspace: number;\n webkitdirectory: boolean;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n minLength: number;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Makes the selection equal to the current object.\n */\n select(): void;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n /**\n * Sets the start and end positions of a selection in a text field.\n * @param start The offset into the text field for the start of the selection.\n * @param end The offset into the text field for the end of the selection.\n */\n setSelectionRange(start?: number, end?: number, direction?: string): void;\n /**\n * Decrements a range input control\'s value by the value given by the Step attribute. If the optional parameter is used, it will decrement the input control\'s step value multiplied by the parameter\'s value.\n * @param n Value to decrement the value by.\n */\n stepDown(n?: number): void;\n /**\n * Increments a range input control\'s value by the value given by the Step attribute. If the optional parameter is used, will increment the input control\'s value by that value.\n * @param n Value to increment the value by.\n */\n stepUp(n?: number): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLInputElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLInputElement: {\n prototype: HTMLInputElement;\n new(): HTMLInputElement;\n};\n\ninterface HTMLLabelElement extends HTMLElement {\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the object to which the given label object is assigned.\n */\n htmlFor: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLabelElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLLabelElement: {\n prototype: HTMLLabelElement;\n new(): HTMLLabelElement;\n};\n\ninterface HTMLLegendElement extends HTMLElement {\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n align: string;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLegendElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLLegendElement: {\n prototype: HTMLLegendElement;\n new(): HTMLLegendElement;\n};\n\ninterface HTMLLIElement extends HTMLElement {\n type: string;\n /**\n * Sets or retrieves the value of a list item.\n */\n value: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLIElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLLIElement: {\n prototype: HTMLLIElement;\n new(): HTMLLIElement;\n};\n\ninterface HTMLLinkElement extends HTMLElement, LinkStyle {\n /**\n * Sets or retrieves the character set used to encode the object.\n */\n charset: string;\n disabled: boolean;\n /**\n * Sets or retrieves a destination URL or an anchor point.\n */\n href: string;\n /**\n * Sets or retrieves the language code of the object.\n */\n hreflang: string;\n /**\n * Sets or retrieves the media type.\n */\n media: string;\n /**\n * Sets or retrieves the relationship between the object and the destination of the link.\n */\n rel: string;\n /**\n * Sets or retrieves the relationship between the object and the destination of the link.\n */\n rev: string;\n /**\n * Sets or retrieves the window or frame at which to target content.\n */\n target: string;\n /**\n * Sets or retrieves the MIME type of the object.\n */\n type: string;\n import?: Document;\n integrity: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLinkElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLLinkElement: {\n prototype: HTMLLinkElement;\n new(): HTMLLinkElement;\n};\n\ninterface HTMLMapElement extends HTMLElement {\n /**\n * Retrieves a collection of the area objects defined for the given map object.\n */\n readonly areas: HTMLAreasCollection;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMapElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMapElement: {\n prototype: HTMLMapElement;\n new(): HTMLMapElement;\n};\n\ninterface HTMLMarqueeElementEventMap extends HTMLElementEventMap {\n "bounce": Event;\n "finish": Event;\n "start": Event;\n}\n\ninterface HTMLMarqueeElement extends HTMLElement {\n behavior: string;\n bgColor: any;\n direction: string;\n height: string;\n hspace: number;\n loop: number;\n onbounce: (this: HTMLMarqueeElement, ev: Event) => any;\n onfinish: (this: HTMLMarqueeElement, ev: Event) => any;\n onstart: (this: HTMLMarqueeElement, ev: Event) => any;\n scrollAmount: number;\n scrollDelay: number;\n trueSpeed: boolean;\n vspace: number;\n width: string;\n start(): void;\n stop(): void;\n addEventListener<K extends keyof HTMLMarqueeElementEventMap>(type: K, listener: (this: HTMLMarqueeElement, ev: HTMLMarqueeElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMarqueeElement: {\n prototype: HTMLMarqueeElement;\n new(): HTMLMarqueeElement;\n};\n\ninterface HTMLMediaElementEventMap extends HTMLElementEventMap {\n "encrypted": MediaEncryptedEvent;\n "msneedkey": MSMediaKeyNeededEvent;\n}\n\ninterface HTMLMediaElement extends HTMLElement {\n /**\n * Returns an AudioTrackList object with the audio tracks for a given video element.\n */\n readonly audioTracks: AudioTrackList;\n /**\n * Gets or sets a value that indicates whether to start playing the media automatically.\n */\n autoplay: boolean;\n /**\n * Gets a collection of buffered time ranges.\n */\n readonly buffered: TimeRanges;\n /**\n * Gets or sets a flag that indicates whether the client provides a set of controls for the media (in case the developer does not include controls for the player).\n */\n controls: boolean;\n crossOrigin: string | null;\n /**\n * Gets the address or URL of the current media resource that is selected by IHTMLMediaElement.\n */\n readonly currentSrc: string;\n /**\n * Gets or sets the current playback position, in seconds.\n */\n currentTime: number;\n defaultMuted: boolean;\n /**\n * Gets or sets the default playback rate when the user is not using fast forward or reverse for a video or audio resource.\n */\n defaultPlaybackRate: number;\n /**\n * Returns the duration in seconds of the current media resource. A NaN value is returned if duration is not available, or Infinity if the media resource is streaming.\n */\n readonly duration: number;\n /**\n * Gets information about whether the playback has ended or not.\n */\n readonly ended: boolean;\n /**\n * Returns an object representing the current error state of the audio or video element.\n */\n readonly error: MediaError;\n /**\n * Gets or sets a flag to specify whether playback should restart after it completes.\n */\n loop: boolean;\n readonly mediaKeys: MediaKeys | null;\n /**\n * Specifies the purpose of the audio or video media, such as background audio or alerts.\n */\n msAudioCategory: string;\n /**\n * Specifies the output device id that the audio will be sent to.\n */\n msAudioDeviceType: string;\n readonly msGraphicsTrustStatus: MSGraphicsTrust;\n /**\n * Gets the MSMediaKeys object, which is used for decrypting media data, that is associated with this media element.\n */\n readonly msKeys: MSMediaKeys;\n /**\n * Gets or sets whether the DLNA PlayTo device is available.\n */\n msPlayToDisabled: boolean;\n /**\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\n */\n msPlayToPreferredSourceUri: string;\n /**\n * Gets or sets the primary DLNA PlayTo device.\n */\n msPlayToPrimary: boolean;\n /**\n * Gets the source associated with the media element for use by the PlayToManager.\n */\n readonly msPlayToSource: any;\n /**\n * Specifies whether or not to enable low-latency playback on the media element.\n */\n msRealTime: boolean;\n /**\n * Gets or sets a flag that indicates whether the audio (either audio or the audio track on video media) is muted.\n */\n muted: boolean;\n /**\n * Gets the current network activity for the element.\n */\n readonly networkState: number;\n onencrypted: (this: HTMLMediaElement, ev: MediaEncryptedEvent) => any;\n onmsneedkey: (this: HTMLMediaElement, ev: MSMediaKeyNeededEvent) => any;\n /**\n * Gets a flag that specifies whether playback is paused.\n */\n readonly paused: boolean;\n /**\n * Gets or sets the current rate of speed for the media resource to play. This speed is expressed as a multiple of the normal speed of the media resource.\n */\n playbackRate: number;\n /**\n * Gets TimeRanges for the current media resource that has been played.\n */\n readonly played: TimeRanges;\n /**\n * Gets or sets the current playback position, in seconds.\n */\n preload: string;\n readyState: number;\n /**\n * Returns a TimeRanges object that represents the ranges of the current media resource that can be seeked.\n */\n readonly seekable: TimeRanges;\n /**\n * Gets a flag that indicates whether the the client is currently moving to a new playback position in the media resource.\n */\n readonly seeking: boolean;\n /**\n * The address or URL of the a media resource that is to be considered.\n */\n src: string;\n srcObject: MediaStream | null;\n readonly textTracks: TextTrackList;\n readonly videoTracks: VideoTrackList;\n /**\n * Gets or sets the volume level for audio portions of the media element.\n */\n volume: number;\n addTextTrack(kind: string, label?: string, language?: string): TextTrack;\n /**\n * Returns a string that specifies whether the client can play a given media resource type.\n */\n canPlayType(type: string): string;\n /**\n * Resets the audio or video object and loads a new media resource.\n */\n load(): void;\n /**\n * Clears all effects from the media pipeline.\n */\n msClearEffects(): void;\n msGetAsCastingSource(): any;\n /**\n * Inserts the specified audio effect into media pipeline.\n */\n msInsertAudioEffect(activatableClassId: string, effectRequired: boolean, config?: any): void;\n msSetMediaKeys(mediaKeys: MSMediaKeys): void;\n /**\n * Specifies the media protection manager for a given media pipeline.\n */\n msSetMediaProtectionManager(mediaProtectionManager?: any): void;\n /**\n * Pauses the current playback and sets paused to TRUE. This can be used to test whether the media is playing or paused. You can also use the pause or play events to tell whether the media is playing or not.\n */\n pause(): void;\n /**\n * Loads and starts playback of a media resource.\n */\n play(): Promise<void>;\n setMediaKeys(mediaKeys: MediaKeys | null): Promise<void>;\n readonly HAVE_CURRENT_DATA: number;\n readonly HAVE_ENOUGH_DATA: number;\n readonly HAVE_FUTURE_DATA: number;\n readonly HAVE_METADATA: number;\n readonly HAVE_NOTHING: number;\n readonly NETWORK_EMPTY: number;\n readonly NETWORK_IDLE: number;\n readonly NETWORK_LOADING: number;\n readonly NETWORK_NO_SOURCE: number;\n addEventListener<K extends keyof HTMLMediaElementEventMap>(type: K, listener: (this: HTMLMediaElement, ev: HTMLMediaElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMediaElement: {\n prototype: HTMLMediaElement;\n new(): HTMLMediaElement;\n readonly HAVE_CURRENT_DATA: number;\n readonly HAVE_ENOUGH_DATA: number;\n readonly HAVE_FUTURE_DATA: number;\n readonly HAVE_METADATA: number;\n readonly HAVE_NOTHING: number;\n readonly NETWORK_EMPTY: number;\n readonly NETWORK_IDLE: number;\n readonly NETWORK_LOADING: number;\n readonly NETWORK_NO_SOURCE: number;\n};\n\ninterface HTMLMenuElement extends HTMLElement {\n compact: boolean;\n type: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMenuElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMenuElement: {\n prototype: HTMLMenuElement;\n new(): HTMLMenuElement;\n};\n\ninterface HTMLMetaElement extends HTMLElement {\n /**\n * Sets or retrieves the character set used to encode the object.\n */\n charset: string;\n /**\n * Gets or sets meta-information to associate with httpEquiv or name.\n */\n content: string;\n /**\n * Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header.\n */\n httpEquiv: string;\n /**\n * Sets or retrieves the value specified in the content attribute of the meta object.\n */\n name: string;\n /**\n * Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object.\n */\n scheme: string;\n /**\n * Sets or retrieves the URL property that will be loaded after the specified time has elapsed.\n */\n url: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMetaElement: {\n prototype: HTMLMetaElement;\n new(): HTMLMetaElement;\n};\n\ninterface HTMLMeterElement extends HTMLElement {\n high: number;\n low: number;\n max: number;\n min: number;\n optimum: number;\n value: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMeterElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLMeterElement: {\n prototype: HTMLMeterElement;\n new(): HTMLMeterElement;\n};\n\ninterface HTMLModElement extends HTMLElement {\n /**\n * Sets or retrieves reference information about the object.\n */\n cite: string;\n /**\n * Sets or retrieves the date and time of a modification to the object.\n */\n dateTime: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLModElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLModElement: {\n prototype: HTMLModElement;\n new(): HTMLModElement;\n};\n\ninterface HTMLObjectElement extends HTMLElement, GetSVGDocument {\n align: string;\n /**\n * Sets or retrieves a text alternative to the graphic.\n */\n alt: string;\n /**\n * Gets or sets the optional alternative HTML script to execute if the object fails to load.\n */\n altHtml: string;\n /**\n * Sets or retrieves a character string that can be used to implement your own archive functionality for the object.\n */\n archive: string;\n /**\n * Retrieves a string of the URL where the object tag can be found. This is often the href of the document that the object is in, or the value set by a base element.\n */\n readonly BaseHref: string;\n border: string;\n /**\n * Sets or retrieves the URL of the file containing the compiled Java class.\n */\n code: string;\n /**\n * Sets or retrieves the URL of the component.\n */\n codeBase: string;\n /**\n * Sets or retrieves the Internet media type for the code associated with the object.\n */\n codeType: string;\n /**\n * Retrieves the document object of the page or frame.\n */\n readonly contentDocument: Document;\n /**\n * Sets or retrieves the URL that references the data of the object.\n */\n data: string;\n declare: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the height of the object.\n */\n height: string;\n hspace: number;\n /**\n * Gets or sets whether the DLNA PlayTo device is available.\n */\n msPlayToDisabled: boolean;\n /**\n * Gets or sets the path to the preferred media source. This enables the Play To target device to stream the media content, which can be DRM protected, from a different location, such as a cloud media server.\n */\n msPlayToPreferredSourceUri: string;\n /**\n * Gets or sets the primary DLNA PlayTo device.\n */\n msPlayToPrimary: boolean;\n /**\n * Gets the source associated with the media element for use by the PlayToManager.\n */\n readonly msPlayToSource: any;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n readonly readyState: number;\n /**\n * Sets or retrieves a message to be displayed while an object is loading.\n */\n standby: string;\n /**\n * Sets or retrieves the MIME type of the object.\n */\n type: string;\n /**\n * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.\n */\n useMap: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n vspace: number;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLObjectElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLObjectElement: {\n prototype: HTMLObjectElement;\n new(): HTMLObjectElement;\n};\n\ninterface HTMLOListElement extends HTMLElement {\n compact: boolean;\n /**\n * The starting number.\n */\n start: number;\n type: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOListElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLOListElement: {\n prototype: HTMLOListElement;\n new(): HTMLOListElement;\n};\n\ninterface HTMLOptGroupElement extends HTMLElement {\n /**\n * Sets or retrieves the status of an option.\n */\n defaultSelected: boolean;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the ordinal position of an option in a list box.\n */\n readonly index: number;\n /**\n * Sets or retrieves a value that you can use to implement your own label functionality for the object.\n */\n label: string;\n /**\n * Sets or retrieves whether the option in the list box is the default item.\n */\n selected: boolean;\n /**\n * Sets or retrieves the text string specified by the option tag.\n */\n readonly text: string;\n /**\n * Sets or retrieves the value which is returned to the server when the form control is submitted.\n */\n value: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptGroupElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLOptGroupElement: {\n prototype: HTMLOptGroupElement;\n new(): HTMLOptGroupElement;\n};\n\ninterface HTMLOptionElement extends HTMLElement {\n /**\n * Sets or retrieves the status of an option.\n */\n defaultSelected: boolean;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the ordinal position of an option in a list box.\n */\n readonly index: number;\n /**\n * Sets or retrieves a value that you can use to implement your own label functionality for the object.\n */\n label: string;\n /**\n * Sets or retrieves whether the option in the list box is the default item.\n */\n selected: boolean;\n /**\n * Sets or retrieves the text string specified by the option tag.\n */\n text: string;\n /**\n * Sets or retrieves the value which is returned to the server when the form control is submitted.\n */\n value: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptionElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLOptionElement: {\n prototype: HTMLOptionElement;\n new(): HTMLOptionElement;\n};\n\ninterface HTMLOptionsCollection extends HTMLCollectionOf<HTMLOptionElement> {\n length: number;\n selectedIndex: number;\n add(element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number): void;\n remove(index: number): void;\n}\n\ndeclare var HTMLOptionsCollection: {\n prototype: HTMLOptionsCollection;\n new(): HTMLOptionsCollection;\n};\n\ninterface HTMLOutputElement extends HTMLElement {\n defaultValue: string;\n readonly form: HTMLFormElement;\n readonly htmlFor: DOMSettableTokenList;\n name: string;\n readonly type: string;\n readonly validationMessage: string;\n readonly validity: ValidityState;\n value: string;\n readonly willValidate: boolean;\n checkValidity(): boolean;\n reportValidity(): boolean;\n setCustomValidity(error: string): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOutputElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLOutputElement: {\n prototype: HTMLOutputElement;\n new(): HTMLOutputElement;\n};\n\ninterface HTMLParagraphElement extends HTMLElement {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n clear: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParagraphElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLParagraphElement: {\n prototype: HTMLParagraphElement;\n new(): HTMLParagraphElement;\n};\n\ninterface HTMLParamElement extends HTMLElement {\n /**\n * Sets or retrieves the name of an input parameter for an element.\n */\n name: string;\n /**\n * Sets or retrieves the content type of the resource designated by the value attribute.\n */\n type: string;\n /**\n * Sets or retrieves the value of an input parameter for an element.\n */\n value: string;\n /**\n * Sets or retrieves the data type of the value attribute.\n */\n valueType: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParamElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLParamElement: {\n prototype: HTMLParamElement;\n new(): HTMLParamElement;\n};\n\ninterface HTMLPictureElement extends HTMLElement {\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLPictureElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLPictureElement: {\n prototype: HTMLPictureElement;\n new(): HTMLPictureElement;\n};\n\ninterface HTMLPreElement extends HTMLElement {\n /**\n * Sets or gets a value that you can use to implement your own width functionality for the object.\n */\n width: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLPreElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLPreElement: {\n prototype: HTMLPreElement;\n new(): HTMLPreElement;\n};\n\ninterface HTMLProgressElement extends HTMLElement {\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Defines the maximum, or "done" value for a progress element.\n */\n max: number;\n /**\n * Returns the quotient of value/max when the value attribute is set (determinate progress bar), or -1 when the value attribute is missing (indeterminate progress bar).\n */\n readonly position: number;\n /**\n * Sets or gets the current value of a progress element. The value must be a non-negative number between 0 and the max value.\n */\n value: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLProgressElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLProgressElement: {\n prototype: HTMLProgressElement;\n new(): HTMLProgressElement;\n};\n\ninterface HTMLQuoteElement extends HTMLElement {\n /**\n * Sets or retrieves reference information about the object.\n */\n cite: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLQuoteElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLQuoteElement: {\n prototype: HTMLQuoteElement;\n new(): HTMLQuoteElement;\n};\n\ninterface HTMLScriptElement extends HTMLElement {\n async: boolean;\n /**\n * Sets or retrieves the character set used to encode the object.\n */\n charset: string;\n crossOrigin: string | null;\n /**\n * Sets or retrieves the status of the script.\n */\n defer: boolean;\n /**\n * Sets or retrieves the event for which the script is written.\n */\n event: string;\n /**\n * Sets or retrieves the object that is bound to the event script.\n */\n htmlFor: string;\n /**\n * Retrieves the URL to an external file that contains the source code or data.\n */\n src: string;\n /**\n * Retrieves or sets the text of the object as a string.\n */\n text: string;\n /**\n * Sets or retrieves the MIME type for the associated scripting engine.\n */\n type: string;\n integrity: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLScriptElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLScriptElement: {\n prototype: HTMLScriptElement;\n new(): HTMLScriptElement;\n};\n\ninterface HTMLSelectElement extends HTMLElement {\n /**\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\n */\n autofocus: boolean;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the number of objects in a collection.\n */\n length: number;\n /**\n * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.\n */\n multiple: boolean;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n readonly options: HTMLOptionsCollection;\n /**\n * When present, marks an element that can\'t be submitted without a value.\n */\n required: boolean;\n /**\n * Sets or retrieves the index of the selected option in a select object.\n */\n selectedIndex: number;\n selectedOptions: HTMLCollectionOf<HTMLOptionElement>;\n /**\n * Sets or retrieves the number of rows in the list box.\n */\n size: number;\n /**\n * Retrieves the type of select control based on the value of the MULTIPLE attribute.\n */\n readonly type: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n /**\n * Sets or retrieves the value which is returned to the server when the form control is submitted.\n */\n value: string;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n /**\n * Adds an element to the areas, controlRange, or options collection.\n * @param element Variant of type Number that specifies the index position in the collection where the element is placed. If no value is given, the method places the element at the end of the collection.\n * @param before Variant of type Object that specifies an element to insert before, or null to append the object to the collection.\n */\n add(element: HTMLElement, before?: HTMLElement | number): void;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Retrieves a select object or an object from an options collection.\n * @param name Variant of type Number or String that specifies the object or collection to retrieve. If this parameter is an integer, it is the zero-based index of the object. If this parameter is a string, all objects with matching name or id properties are retrieved, and a collection is returned if more than one match is made.\n * @param index Variant of type Number that specifies the zero-based index of the object to retrieve when a collection is returned.\n */\n item(name?: any, index?: any): any;\n /**\n * Retrieves a select object or an object from an options collection.\n * @param namedItem A String that specifies the name or id property of the object to retrieve. A collection is returned if more than one match is made.\n */\n namedItem(name: string): any;\n /**\n * Removes an element from the collection.\n * @param index Number that specifies the zero-based index of the element to remove from the collection.\n */\n remove(index?: number): void;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSelectElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n [name: string]: any;\n}\n\ndeclare var HTMLSelectElement: {\n prototype: HTMLSelectElement;\n new(): HTMLSelectElement;\n};\n\ninterface HTMLSourceElement extends HTMLElement {\n /**\n * Gets or sets the intended media type of the media source.\n */\n media: string;\n msKeySystem: string;\n sizes: string;\n /**\n * The address or URL of the a media resource that is to be considered.\n */\n src: string;\n srcset: string;\n /**\n * Gets or sets the MIME type of a media resource.\n */\n type: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSourceElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLSourceElement: {\n prototype: HTMLSourceElement;\n new(): HTMLSourceElement;\n};\n\ninterface HTMLSpanElement extends HTMLElement {\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLSpanElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLSpanElement: {\n prototype: HTMLSpanElement;\n new(): HTMLSpanElement;\n};\n\ninterface HTMLStyleElement extends HTMLElement, LinkStyle {\n disabled: boolean;\n /**\n * Sets or retrieves the media type.\n */\n media: string;\n /**\n * Retrieves the CSS language in which the style sheet is written.\n */\n type: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLStyleElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLStyleElement: {\n prototype: HTMLStyleElement;\n new(): HTMLStyleElement;\n};\n\ninterface HTMLTableCaptionElement extends HTMLElement {\n /**\n * Sets or retrieves the alignment of the caption or legend.\n */\n align: string;\n /**\n * Sets or retrieves whether the caption appears at the top or bottom of the table.\n */\n vAlign: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCaptionElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableCaptionElement: {\n prototype: HTMLTableCaptionElement;\n new(): HTMLTableCaptionElement;\n};\n\ninterface HTMLTableCellElement extends HTMLElement, HTMLTableAlignment {\n /**\n * Sets or retrieves abbreviated text for the object.\n */\n abbr: string;\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n /**\n * Sets or retrieves a comma-delimited list of conceptual categories associated with the object.\n */\n axis: string;\n bgColor: any;\n /**\n * Retrieves the position of the object in the cells collection of a row.\n */\n readonly cellIndex: number;\n /**\n * Sets or retrieves the number columns in the table that the object should span.\n */\n colSpan: number;\n /**\n * Sets or retrieves a list of header cells that provide information for the object.\n */\n headers: string;\n /**\n * Sets or retrieves the height of the object.\n */\n height: any;\n /**\n * Sets or retrieves whether the browser automatically performs wordwrap.\n */\n noWrap: boolean;\n /**\n * Sets or retrieves how many rows in a table the cell should span.\n */\n rowSpan: number;\n /**\n * Sets or retrieves the group of cells in a table to which the object\'s information applies.\n */\n scope: string;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableCellElement: {\n prototype: HTMLTableCellElement;\n new(): HTMLTableCellElement;\n};\n\ninterface HTMLTableColElement extends HTMLElement, HTMLTableAlignment {\n /**\n * Sets or retrieves the alignment of the object relative to the display or table.\n */\n align: string;\n /**\n * Sets or retrieves the number of columns in the group.\n */\n span: number;\n /**\n * Sets or retrieves the width of the object.\n */\n width: any;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableColElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableColElement: {\n prototype: HTMLTableColElement;\n new(): HTMLTableColElement;\n};\n\ninterface HTMLTableDataCellElement extends HTMLTableCellElement {\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableDataCellElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableDataCellElement: {\n prototype: HTMLTableDataCellElement;\n new(): HTMLTableDataCellElement;\n};\n\ninterface HTMLTableElement extends HTMLElement {\n /**\n * Sets or retrieves a value that indicates the table alignment.\n */\n align: string;\n bgColor: any;\n /**\n * Sets or retrieves the width of the border to draw around the object.\n */\n border: string;\n /**\n * Sets or retrieves the border color of the object.\n */\n borderColor: any;\n /**\n * Retrieves the caption object of a table.\n */\n caption: HTMLTableCaptionElement;\n /**\n * Sets or retrieves the amount of space between the border of the cell and the content of the cell.\n */\n cellPadding: string;\n /**\n * Sets or retrieves the amount of space between cells in a table.\n */\n cellSpacing: string;\n /**\n * Sets or retrieves the number of columns in the table.\n */\n cols: number;\n /**\n * Sets or retrieves the way the border frame around the table is displayed.\n */\n frame: string;\n /**\n * Sets or retrieves the height of the object.\n */\n height: any;\n /**\n * Sets or retrieves the number of horizontal rows contained in the object.\n */\n rows: HTMLCollectionOf<HTMLTableRowElement>;\n /**\n * Sets or retrieves which dividing lines (inner borders) are displayed.\n */\n rules: string;\n /**\n * Sets or retrieves a description and/or structure of the object.\n */\n summary: string;\n /**\n * Retrieves a collection of all tBody objects in the table. Objects in this collection are in source order.\n */\n tBodies: HTMLCollectionOf<HTMLTableSectionElement>;\n /**\n * Retrieves the tFoot object of the table.\n */\n tFoot: HTMLTableSectionElement;\n /**\n * Retrieves the tHead object of the table.\n */\n tHead: HTMLTableSectionElement;\n /**\n * Sets or retrieves the width of the object.\n */\n width: string;\n /**\n * Creates an empty caption element in the table.\n */\n createCaption(): HTMLTableCaptionElement;\n /**\n * Creates an empty tBody element in the table.\n */\n createTBody(): HTMLTableSectionElement;\n /**\n * Creates an empty tFoot element in the table.\n */\n createTFoot(): HTMLTableSectionElement;\n /**\n * Returns the tHead element object if successful, or null otherwise.\n */\n createTHead(): HTMLTableSectionElement;\n /**\n * Deletes the caption element and its contents from the table.\n */\n deleteCaption(): void;\n /**\n * Removes the specified row (tr) from the element and from the rows collection.\n * @param index Number that specifies the zero-based position in the rows collection of the row to remove.\n */\n deleteRow(index?: number): void;\n /**\n * Deletes the tFoot element and its contents from the table.\n */\n deleteTFoot(): void;\n /**\n * Deletes the tHead element and its contents from the table.\n */\n deleteTHead(): void;\n /**\n * Creates a new row (tr) in the table, and adds the row to the rows collection.\n * @param index Number that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection.\n */\n insertRow(index?: number): HTMLTableRowElement;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableElement: {\n prototype: HTMLTableElement;\n new(): HTMLTableElement;\n};\n\ninterface HTMLTableHeaderCellElement extends HTMLTableCellElement {\n /**\n * Sets or retrieves the group of cells in a table to which the object\'s information applies.\n */\n scope: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableHeaderCellElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableHeaderCellElement: {\n prototype: HTMLTableHeaderCellElement;\n new(): HTMLTableHeaderCellElement;\n};\n\ninterface HTMLTableRowElement extends HTMLElement, HTMLTableAlignment {\n /**\n * Sets or retrieves how the object is aligned with adjacent text.\n */\n align: string;\n bgColor: any;\n /**\n * Retrieves a collection of all cells in the table row.\n */\n cells: HTMLCollectionOf<HTMLTableDataCellElement | HTMLTableHeaderCellElement>;\n /**\n * Sets or retrieves the height of the object.\n */\n height: any;\n /**\n * Retrieves the position of the object in the rows collection for the table.\n */\n readonly rowIndex: number;\n /**\n * Retrieves the position of the object in the collection.\n */\n readonly sectionRowIndex: number;\n /**\n * Removes the specified cell from the table row, as well as from the cells collection.\n * @param index Number that specifies the zero-based position of the cell to remove from the table row. If no value is provided, the last cell in the cells collection is deleted.\n */\n deleteCell(index?: number): void;\n /**\n * Creates a new cell in the table row, and adds the cell to the cells collection.\n * @param index Number that specifies where to insert the cell in the tr. The default value is -1, which appends the new cell to the end of the cells collection.\n */\n insertCell(index?: number): HTMLTableDataCellElement;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableRowElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableRowElement: {\n prototype: HTMLTableRowElement;\n new(): HTMLTableRowElement;\n};\n\ninterface HTMLTableSectionElement extends HTMLElement, HTMLTableAlignment {\n /**\n * Sets or retrieves a value that indicates the table alignment.\n */\n align: string;\n /**\n * Sets or retrieves the number of horizontal rows contained in the object.\n */\n rows: HTMLCollectionOf<HTMLTableRowElement>;\n /**\n * Removes the specified row (tr) from the element and from the rows collection.\n * @param index Number that specifies the zero-based position in the rows collection of the row to remove.\n */\n deleteRow(index?: number): void;\n /**\n * Creates a new row (tr) in the table, and adds the row to the rows collection.\n * @param index Number that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection.\n */\n insertRow(index?: number): HTMLTableRowElement;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableSectionElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTableSectionElement: {\n prototype: HTMLTableSectionElement;\n new(): HTMLTableSectionElement;\n};\n\ninterface HTMLTemplateElement extends HTMLElement {\n readonly content: DocumentFragment;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTemplateElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTemplateElement: {\n prototype: HTMLTemplateElement;\n new(): HTMLTemplateElement;\n};\n\ninterface HTMLTextAreaElement extends HTMLElement {\n /**\n * Provides a way to direct a user to a specific field when a document loads. This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens. This attribute is true when present on an element, and false when missing.\n */\n autofocus: boolean;\n /**\n * Sets or retrieves the width of the object.\n */\n cols: number;\n /**\n * Sets or retrieves the initial contents of the object.\n */\n defaultValue: string;\n disabled: boolean;\n /**\n * Retrieves a reference to the form that the object is embedded in.\n */\n readonly form: HTMLFormElement;\n /**\n * Sets or retrieves the maximum number of characters that the user can enter in a text control.\n */\n maxLength: number;\n /**\n * Sets or retrieves the name of the object.\n */\n name: string;\n /**\n * Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field.\n */\n placeholder: string;\n /**\n * Sets or retrieves the value indicated whether the content of the object is read-only.\n */\n readOnly: boolean;\n /**\n * When present, marks an element that can\'t be submitted without a value.\n */\n required: boolean;\n /**\n * Sets or retrieves the number of horizontal rows contained in the object.\n */\n rows: number;\n /**\n * Gets or sets the end position or offset of a text selection.\n */\n selectionEnd: number;\n /**\n * Gets or sets the starting position or offset of a text selection.\n */\n selectionStart: number;\n /**\n * Sets or retrieves the value indicating whether the control is selected.\n */\n status: any;\n /**\n * Retrieves the type of control.\n */\n readonly type: string;\n /**\n * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.\n */\n readonly validationMessage: string;\n /**\n * Returns a ValidityState object that represents the validity states of an element.\n */\n readonly validity: ValidityState;\n /**\n * Retrieves or sets the text in the entry field of the textArea element.\n */\n value: string;\n /**\n * Returns whether an element will successfully validate based on forms validation rules and constraints.\n */\n readonly willValidate: boolean;\n /**\n * Sets or retrieves how to handle wordwrapping in the object.\n */\n wrap: string;\n minLength: number;\n /**\n * Returns whether a form will validate when it is submitted, without having to submit it.\n */\n checkValidity(): boolean;\n /**\n * Highlights the input area of a form element.\n */\n select(): void;\n /**\n * Sets a custom error message that is displayed when a form is submitted.\n * @param error Sets a custom error message that is displayed when a form is submitted.\n */\n setCustomValidity(error: string): void;\n /**\n * Sets the start and end positions of a selection in a text field.\n * @param start The offset into the text field for the start of the selection.\n * @param end The offset into the text field for the end of the selection.\n */\n setSelectionRange(start: number, end: number): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTextAreaElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTextAreaElement: {\n prototype: HTMLTextAreaElement;\n new(): HTMLTextAreaElement;\n};\n\ninterface HTMLTimeElement extends HTMLElement {\n dateTime: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTimeElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTimeElement: {\n prototype: HTMLTimeElement;\n new(): HTMLTimeElement;\n};\n\ninterface HTMLTitleElement extends HTMLElement {\n /**\n * Retrieves or sets the text of the object as a string.\n */\n text: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTitleElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTitleElement: {\n prototype: HTMLTitleElement;\n new(): HTMLTitleElement;\n};\n\ninterface HTMLTrackElement extends HTMLElement {\n default: boolean;\n kind: string;\n label: string;\n readonly readyState: number;\n src: string;\n srclang: string;\n readonly track: TextTrack;\n readonly ERROR: number;\n readonly LOADED: number;\n readonly LOADING: number;\n readonly NONE: number;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTrackElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLTrackElement: {\n prototype: HTMLTrackElement;\n new(): HTMLTrackElement;\n readonly ERROR: number;\n readonly LOADED: number;\n readonly LOADING: number;\n readonly NONE: number;\n};\n\ninterface HTMLUListElement extends HTMLElement {\n compact: boolean;\n type: string;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLUListElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLUListElement: {\n prototype: HTMLUListElement;\n new(): HTMLUListElement;\n};\n\ninterface HTMLUnknownElement extends HTMLElement {\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLUnknownElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLUnknownElement: {\n prototype: HTMLUnknownElement;\n new(): HTMLUnknownElement;\n};\n\ninterface HTMLVideoElementEventMap extends HTMLMediaElementEventMap {\n "MSVideoFormatChanged": Event;\n "MSVideoFrameStepCompleted": Event;\n "MSVideoOptimalLayoutChanged": Event;\n}\n\ninterface HTMLVideoElement extends HTMLMediaElement {\n /**\n * Gets or sets the height of the video element.\n */\n height: number;\n msHorizontalMirror: boolean;\n readonly msIsLayoutOptimalForPlayback: boolean;\n readonly msIsStereo3D: boolean;\n msStereo3DPackingMode: string;\n msStereo3DRenderMode: string;\n msZoom: boolean;\n onMSVideoFormatChanged: (this: HTMLVideoElement, ev: Event) => any;\n onMSVideoFrameStepCompleted: (this: HTMLVideoElement, ev: Event) => any;\n onMSVideoOptimalLayoutChanged: (this: HTMLVideoElement, ev: Event) => any;\n /**\n * Gets or sets a URL of an image to display, for example, like a movie poster. This can be a still frame from the video, or another image if no video data is available.\n */\n poster: string;\n /**\n * Gets the intrinsic height of a video in CSS pixels, or zero if the dimensions are not known.\n */\n readonly videoHeight: number;\n /**\n * Gets the intrinsic width of a video in CSS pixels, or zero if the dimensions are not known.\n */\n readonly videoWidth: number;\n readonly webkitDisplayingFullscreen: boolean;\n readonly webkitSupportsFullscreen: boolean;\n /**\n * Gets or sets the width of the video element.\n */\n width: number;\n getVideoPlaybackQuality(): VideoPlaybackQuality;\n msFrameStep(forward: boolean): void;\n msInsertVideoEffect(activatableClassId: string, effectRequired: boolean, config?: any): void;\n msSetVideoRectangle(left: number, top: number, right: number, bottom: number): void;\n webkitEnterFullscreen(): void;\n webkitEnterFullScreen(): void;\n webkitExitFullscreen(): void;\n webkitExitFullScreen(): void;\n addEventListener<K extends keyof HTMLVideoElementEventMap>(type: K, listener: (this: HTMLVideoElement, ev: HTMLVideoElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var HTMLVideoElement: {\n prototype: HTMLVideoElement;\n new(): HTMLVideoElement;\n};\n\ninterface IDBCursor {\n readonly direction: IDBCursorDirection;\n key: IDBKeyRange | IDBValidKey;\n readonly primaryKey: any;\n source: IDBObjectStore | IDBIndex;\n advance(count: number): void;\n continue(key?: IDBKeyRange | IDBValidKey): void;\n delete(): IDBRequest;\n update(value: any): IDBRequest;\n readonly NEXT: string;\n readonly NEXT_NO_DUPLICATE: string;\n readonly PREV: string;\n readonly PREV_NO_DUPLICATE: string;\n}\n\ndeclare var IDBCursor: {\n prototype: IDBCursor;\n new(): IDBCursor;\n readonly NEXT: string;\n readonly NEXT_NO_DUPLICATE: string;\n readonly PREV: string;\n readonly PREV_NO_DUPLICATE: string;\n};\n\ninterface IDBCursorWithValue extends IDBCursor {\n readonly value: any;\n}\n\ndeclare var IDBCursorWithValue: {\n prototype: IDBCursorWithValue;\n new(): IDBCursorWithValue;\n};\n\ninterface IDBDatabaseEventMap {\n "abort": Event;\n "error": Event;\n}\n\ninterface IDBDatabase extends EventTarget {\n readonly name: string;\n readonly objectStoreNames: DOMStringList;\n onabort: (this: IDBDatabase, ev: Event) => any;\n onerror: (this: IDBDatabase, ev: Event) => any;\n version: number;\n onversionchange: (ev: IDBVersionChangeEvent) => any;\n close(): void;\n createObjectStore(name: string, optionalParameters?: IDBObjectStoreParameters): IDBObjectStore;\n deleteObjectStore(name: string): void;\n transaction(storeNames: string | string[], mode?: IDBTransactionMode): IDBTransaction;\n addEventListener(type: "versionchange", listener: (ev: IDBVersionChangeEvent) => any, useCapture?: boolean): void;\n addEventListener<K extends keyof IDBDatabaseEventMap>(type: K, listener: (this: IDBDatabase, ev: IDBDatabaseEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var IDBDatabase: {\n prototype: IDBDatabase;\n new(): IDBDatabase;\n};\n\ninterface IDBFactory {\n cmp(first: any, second: any): number;\n deleteDatabase(name: string): IDBOpenDBRequest;\n open(name: string, version?: number): IDBOpenDBRequest;\n}\n\ndeclare var IDBFactory: {\n prototype: IDBFactory;\n new(): IDBFactory;\n};\n\ninterface IDBIndex {\n keyPath: string | string[];\n readonly name: string;\n readonly objectStore: IDBObjectStore;\n readonly unique: boolean;\n multiEntry: boolean;\n count(key?: IDBKeyRange | IDBValidKey): IDBRequest;\n get(key: IDBKeyRange | IDBValidKey): IDBRequest;\n getKey(key: IDBKeyRange | IDBValidKey): IDBRequest;\n openCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest;\n openKeyCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest;\n}\n\ndeclare var IDBIndex: {\n prototype: IDBIndex;\n new(): IDBIndex;\n};\n\ninterface IDBKeyRange {\n readonly lower: any;\n readonly lowerOpen: boolean;\n readonly upper: any;\n readonly upperOpen: boolean;\n}\n\ndeclare var IDBKeyRange: {\n prototype: IDBKeyRange;\n new(): IDBKeyRange;\n bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;\n lowerBound(lower: any, open?: boolean): IDBKeyRange;\n only(value: any): IDBKeyRange;\n upperBound(upper: any, open?: boolean): IDBKeyRange;\n};\n\ninterface IDBObjectStore {\n readonly indexNames: DOMStringList;\n keyPath: string | string[];\n readonly name: string;\n readonly transaction: IDBTransaction;\n autoIncrement: boolean;\n add(value: any, key?: IDBKeyRange | IDBValidKey): IDBRequest;\n clear(): IDBRequest;\n count(key?: IDBKeyRange | IDBValidKey): IDBRequest;\n createIndex(name: string, keyPath: string | string[], optionalParameters?: IDBIndexParameters): IDBIndex;\n delete(key: IDBKeyRange | IDBValidKey): IDBRequest;\n deleteIndex(indexName: string): void;\n get(key: any): IDBRequest;\n index(name: string): IDBIndex;\n openCursor(range?: IDBKeyRange | IDBValidKey, direction?: IDBCursorDirection): IDBRequest;\n put(value: any, key?: IDBKeyRange | IDBValidKey): IDBRequest;\n}\n\ndeclare var IDBObjectStore: {\n prototype: IDBObjectStore;\n new(): IDBObjectStore;\n};\n\ninterface IDBOpenDBRequestEventMap extends IDBRequestEventMap {\n "blocked": Event;\n "upgradeneeded": IDBVersionChangeEvent;\n}\n\ninterface IDBOpenDBRequest extends IDBRequest {\n onblocked: (this: IDBOpenDBRequest, ev: Event) => any;\n onupgradeneeded: (this: IDBOpenDBRequest, ev: IDBVersionChangeEvent) => any;\n addEventListener<K extends keyof IDBOpenDBRequestEventMap>(type: K, listener: (this: IDBOpenDBRequest, ev: IDBOpenDBRequestEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var IDBOpenDBRequest: {\n prototype: IDBOpenDBRequest;\n new(): IDBOpenDBRequest;\n};\n\ninterface IDBRequestEventMap {\n "error": Event;\n "success": Event;\n}\n\ninterface IDBRequest extends EventTarget {\n readonly error: DOMException;\n onerror: (this: IDBRequest, ev: Event) => any;\n onsuccess: (this: IDBRequest, ev: Event) => any;\n readonly readyState: IDBRequestReadyState;\n readonly result: any;\n source: IDBObjectStore | IDBIndex | IDBCursor;\n readonly transaction: IDBTransaction;\n addEventListener<K extends keyof IDBRequestEventMap>(type: K, listener: (this: IDBRequest, ev: IDBRequestEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var IDBRequest: {\n prototype: IDBRequest;\n new(): IDBRequest;\n};\n\ninterface IDBTransactionEventMap {\n "abort": Event;\n "complete": Event;\n "error": Event;\n}\n\ninterface IDBTransaction extends EventTarget {\n readonly db: IDBDatabase;\n readonly error: DOMException;\n readonly mode: IDBTransactionMode;\n onabort: (this: IDBTransaction, ev: Event) => any;\n oncomplete: (this: IDBTransaction, ev: Event) => any;\n onerror: (this: IDBTransaction, ev: Event) => any;\n abort(): void;\n objectStore(name: string): IDBObjectStore;\n readonly READ_ONLY: string;\n readonly READ_WRITE: string;\n readonly VERSION_CHANGE: string;\n addEventListener<K extends keyof IDBTransactionEventMap>(type: K, listener: (this: IDBTransaction, ev: IDBTransactionEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var IDBTransaction: {\n prototype: IDBTransaction;\n new(): IDBTransaction;\n readonly READ_ONLY: string;\n readonly READ_WRITE: string;\n readonly VERSION_CHANGE: string;\n};\n\ninterface IDBVersionChangeEvent extends Event {\n readonly newVersion: number | null;\n readonly oldVersion: number;\n}\n\ndeclare var IDBVersionChangeEvent: {\n prototype: IDBVersionChangeEvent;\n new(): IDBVersionChangeEvent;\n};\n\ninterface IIRFilterNode extends AudioNode {\n getFrequencyResponse(frequencyHz: Float32Array, magResponse: Float32Array, phaseResponse: Float32Array): void;\n}\n\ndeclare var IIRFilterNode: {\n prototype: IIRFilterNode;\n new(): IIRFilterNode;\n};\n\ninterface ImageData {\n data: Uint8ClampedArray;\n readonly height: number;\n readonly width: number;\n}\n\ndeclare var ImageData: {\n prototype: ImageData;\n new(width: number, height: number): ImageData;\n new(array: Uint8ClampedArray, width: number, height: number): ImageData;\n};\n\ninterface IntersectionObserver {\n readonly root: Element | null;\n readonly rootMargin: string;\n readonly thresholds: number[];\n disconnect(): void;\n observe(target: Element): void;\n takeRecords(): IntersectionObserverEntry[];\n unobserve(target: Element): void;\n}\n\ndeclare var IntersectionObserver: {\n prototype: IntersectionObserver;\n new(callback: IntersectionObserverCallback, options?: IntersectionObserverInit): IntersectionObserver;\n};\n\ninterface IntersectionObserverEntry {\n readonly boundingClientRect: ClientRect;\n readonly intersectionRatio: number;\n readonly intersectionRect: ClientRect;\n readonly rootBounds: ClientRect;\n readonly target: Element;\n readonly time: number;\n}\n\ndeclare var IntersectionObserverEntry: {\n prototype: IntersectionObserverEntry;\n new(intersectionObserverEntryInit: IntersectionObserverEntryInit): IntersectionObserverEntry;\n};\n\ninterface KeyboardEvent extends UIEvent {\n readonly altKey: boolean;\n readonly char: string | null;\n readonly charCode: number;\n readonly ctrlKey: boolean;\n readonly key: string;\n readonly keyCode: number;\n readonly locale: string;\n readonly location: number;\n readonly metaKey: boolean;\n readonly repeat: boolean;\n readonly shiftKey: boolean;\n readonly which: number;\n readonly code: string;\n getModifierState(keyArg: string): boolean;\n initKeyboardEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, keyArg: string, locationArg: number, modifiersListArg: string, repeat: boolean, locale: string): void;\n readonly DOM_KEY_LOCATION_JOYSTICK: number;\n readonly DOM_KEY_LOCATION_LEFT: number;\n readonly DOM_KEY_LOCATION_MOBILE: number;\n readonly DOM_KEY_LOCATION_NUMPAD: number;\n readonly DOM_KEY_LOCATION_RIGHT: number;\n readonly DOM_KEY_LOCATION_STANDARD: number;\n}\n\ndeclare var KeyboardEvent: {\n prototype: KeyboardEvent;\n new(typeArg: string, eventInitDict?: KeyboardEventInit): KeyboardEvent;\n readonly DOM_KEY_LOCATION_JOYSTICK: number;\n readonly DOM_KEY_LOCATION_LEFT: number;\n readonly DOM_KEY_LOCATION_MOBILE: number;\n readonly DOM_KEY_LOCATION_NUMPAD: number;\n readonly DOM_KEY_LOCATION_RIGHT: number;\n readonly DOM_KEY_LOCATION_STANDARD: number;\n};\n\ninterface ListeningStateChangedEvent extends Event {\n readonly label: string;\n readonly state: ListeningState;\n}\n\ndeclare var ListeningStateChangedEvent: {\n prototype: ListeningStateChangedEvent;\n new(): ListeningStateChangedEvent;\n};\n\ninterface Location {\n hash: string;\n host: string;\n hostname: string;\n href: string;\n readonly origin: string;\n pathname: string;\n port: string;\n protocol: string;\n search: string;\n assign(url: string): void;\n reload(forcedReload?: boolean): void;\n replace(url: string): void;\n toString(): string;\n}\n\ndeclare var Location: {\n prototype: Location;\n new(): Location;\n};\n\ninterface LongRunningScriptDetectedEvent extends Event {\n readonly executionTime: number;\n stopPageScriptExecution: boolean;\n}\n\ndeclare var LongRunningScriptDetectedEvent: {\n prototype: LongRunningScriptDetectedEvent;\n new(): LongRunningScriptDetectedEvent;\n};\n\ninterface MediaDeviceInfo {\n readonly deviceId: string;\n readonly groupId: string;\n readonly kind: MediaDeviceKind;\n readonly label: string;\n}\n\ndeclare var MediaDeviceInfo: {\n prototype: MediaDeviceInfo;\n new(): MediaDeviceInfo;\n};\n\ninterface MediaDevicesEventMap {\n "devicechange": Event;\n}\n\ninterface MediaDevices extends EventTarget {\n ondevicechange: (this: MediaDevices, ev: Event) => any;\n enumerateDevices(): any;\n getSupportedConstraints(): MediaTrackSupportedConstraints;\n getUserMedia(constraints: MediaStreamConstraints): Promise<MediaStream>;\n addEventListener<K extends keyof MediaDevicesEventMap>(type: K, listener: (this: MediaDevices, ev: MediaDevicesEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MediaDevices: {\n prototype: MediaDevices;\n new(): MediaDevices;\n};\n\ninterface MediaElementAudioSourceNode extends AudioNode {\n}\n\ndeclare var MediaElementAudioSourceNode: {\n prototype: MediaElementAudioSourceNode;\n new(): MediaElementAudioSourceNode;\n};\n\ninterface MediaEncryptedEvent extends Event {\n readonly initData: ArrayBuffer | null;\n readonly initDataType: string;\n}\n\ndeclare var MediaEncryptedEvent: {\n prototype: MediaEncryptedEvent;\n new(type: string, eventInitDict?: MediaEncryptedEventInit): MediaEncryptedEvent;\n};\n\ninterface MediaError {\n readonly code: number;\n readonly msExtendedCode: number;\n readonly MEDIA_ERR_ABORTED: number;\n readonly MEDIA_ERR_DECODE: number;\n readonly MEDIA_ERR_NETWORK: number;\n readonly MEDIA_ERR_SRC_NOT_SUPPORTED: number;\n readonly MS_MEDIA_ERR_ENCRYPTED: number;\n}\n\ndeclare var MediaError: {\n prototype: MediaError;\n new(): MediaError;\n readonly MEDIA_ERR_ABORTED: number;\n readonly MEDIA_ERR_DECODE: number;\n readonly MEDIA_ERR_NETWORK: number;\n readonly MEDIA_ERR_SRC_NOT_SUPPORTED: number;\n readonly MS_MEDIA_ERR_ENCRYPTED: number;\n};\n\ninterface MediaKeyMessageEvent extends Event {\n readonly message: ArrayBuffer;\n readonly messageType: MediaKeyMessageType;\n}\n\ndeclare var MediaKeyMessageEvent: {\n prototype: MediaKeyMessageEvent;\n new(type: string, eventInitDict?: MediaKeyMessageEventInit): MediaKeyMessageEvent;\n};\n\ninterface MediaKeys {\n createSession(sessionType?: MediaKeySessionType): MediaKeySession;\n setServerCertificate(serverCertificate: any): Promise<void>;\n}\n\ndeclare var MediaKeys: {\n prototype: MediaKeys;\n new(): MediaKeys;\n};\n\ninterface MediaKeySession extends EventTarget {\n readonly closed: Promise<void>;\n readonly expiration: number;\n readonly keyStatuses: MediaKeyStatusMap;\n readonly sessionId: string;\n close(): Promise<void>;\n generateRequest(initDataType: string, initData: any): Promise<void>;\n load(sessionId: string): Promise<boolean>;\n remove(): Promise<void>;\n update(response: any): Promise<void>;\n}\n\ndeclare var MediaKeySession: {\n prototype: MediaKeySession;\n new(): MediaKeySession;\n};\n\ninterface MediaKeyStatusMap {\n readonly size: number;\n forEach(callback: ForEachCallback): void;\n get(keyId: any): MediaKeyStatus;\n has(keyId: any): boolean;\n}\n\ndeclare var MediaKeyStatusMap: {\n prototype: MediaKeyStatusMap;\n new(): MediaKeyStatusMap;\n};\n\ninterface MediaKeySystemAccess {\n readonly keySystem: string;\n createMediaKeys(): Promise<MediaKeys>;\n getConfiguration(): MediaKeySystemConfiguration;\n}\n\ndeclare var MediaKeySystemAccess: {\n prototype: MediaKeySystemAccess;\n new(): MediaKeySystemAccess;\n};\n\ninterface MediaList {\n readonly length: number;\n mediaText: string;\n appendMedium(newMedium: string): void;\n deleteMedium(oldMedium: string): void;\n item(index: number): string;\n toString(): string;\n [index: number]: string;\n}\n\ndeclare var MediaList: {\n prototype: MediaList;\n new(): MediaList;\n};\n\ninterface MediaQueryList {\n readonly matches: boolean;\n readonly media: string;\n addListener(listener: MediaQueryListListener): void;\n removeListener(listener: MediaQueryListListener): void;\n}\n\ndeclare var MediaQueryList: {\n prototype: MediaQueryList;\n new(): MediaQueryList;\n};\n\ninterface MediaSource extends EventTarget {\n readonly activeSourceBuffers: SourceBufferList;\n duration: number;\n readonly readyState: string;\n readonly sourceBuffers: SourceBufferList;\n addSourceBuffer(type: string): SourceBuffer;\n endOfStream(error?: number): void;\n removeSourceBuffer(sourceBuffer: SourceBuffer): void;\n}\n\ndeclare var MediaSource: {\n prototype: MediaSource;\n new(): MediaSource;\n isTypeSupported(type: string): boolean;\n};\n\ninterface MediaStreamEventMap {\n "active": Event;\n "addtrack": MediaStreamTrackEvent;\n "inactive": Event;\n "removetrack": MediaStreamTrackEvent;\n}\n\ninterface MediaStream extends EventTarget {\n readonly active: boolean;\n readonly id: string;\n onactive: (this: MediaStream, ev: Event) => any;\n onaddtrack: (this: MediaStream, ev: MediaStreamTrackEvent) => any;\n oninactive: (this: MediaStream, ev: Event) => any;\n onremovetrack: (this: MediaStream, ev: MediaStreamTrackEvent) => any;\n addTrack(track: MediaStreamTrack): void;\n clone(): MediaStream;\n getAudioTracks(): MediaStreamTrack[];\n getTrackById(trackId: string): MediaStreamTrack | null;\n getTracks(): MediaStreamTrack[];\n getVideoTracks(): MediaStreamTrack[];\n removeTrack(track: MediaStreamTrack): void;\n stop(): void;\n addEventListener<K extends keyof MediaStreamEventMap>(type: K, listener: (this: MediaStream, ev: MediaStreamEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MediaStream: {\n prototype: MediaStream;\n new(streamOrTracks?: MediaStream | MediaStreamTrack[]): MediaStream;\n};\n\ninterface MediaStreamAudioSourceNode extends AudioNode {\n}\n\ndeclare var MediaStreamAudioSourceNode: {\n prototype: MediaStreamAudioSourceNode;\n new(): MediaStreamAudioSourceNode;\n};\n\ninterface MediaStreamError {\n readonly constraintName: string | null;\n readonly message: string | null;\n readonly name: string;\n}\n\ndeclare var MediaStreamError: {\n prototype: MediaStreamError;\n new(): MediaStreamError;\n};\n\ninterface MediaStreamErrorEvent extends Event {\n readonly error: MediaStreamError | null;\n}\n\ndeclare var MediaStreamErrorEvent: {\n prototype: MediaStreamErrorEvent;\n new(typeArg: string, eventInitDict?: MediaStreamErrorEventInit): MediaStreamErrorEvent;\n};\n\ninterface MediaStreamEvent extends Event {\n readonly stream: MediaStream | null;\n}\n\ndeclare var MediaStreamEvent: {\n prototype: MediaStreamEvent;\n new(type: string, eventInitDict: MediaStreamEventInit): MediaStreamEvent;\n};\n\ninterface MediaStreamTrackEventMap {\n "ended": MediaStreamErrorEvent;\n "mute": Event;\n "overconstrained": MediaStreamErrorEvent;\n "unmute": Event;\n}\n\ninterface MediaStreamTrack extends EventTarget {\n enabled: boolean;\n readonly id: string;\n readonly kind: string;\n readonly label: string;\n readonly muted: boolean;\n onended: (this: MediaStreamTrack, ev: MediaStreamErrorEvent) => any;\n onmute: (this: MediaStreamTrack, ev: Event) => any;\n onoverconstrained: (this: MediaStreamTrack, ev: MediaStreamErrorEvent) => any;\n onunmute: (this: MediaStreamTrack, ev: Event) => any;\n readonly readonly: boolean;\n readonly readyState: MediaStreamTrackState;\n readonly remote: boolean;\n applyConstraints(constraints: MediaTrackConstraints): Promise<void>;\n clone(): MediaStreamTrack;\n getCapabilities(): MediaTrackCapabilities;\n getConstraints(): MediaTrackConstraints;\n getSettings(): MediaTrackSettings;\n stop(): void;\n addEventListener<K extends keyof MediaStreamTrackEventMap>(type: K, listener: (this: MediaStreamTrack, ev: MediaStreamTrackEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MediaStreamTrack: {\n prototype: MediaStreamTrack;\n new(): MediaStreamTrack;\n};\n\ninterface MediaStreamTrackEvent extends Event {\n readonly track: MediaStreamTrack;\n}\n\ndeclare var MediaStreamTrackEvent: {\n prototype: MediaStreamTrackEvent;\n new(typeArg: string, eventInitDict?: MediaStreamTrackEventInit): MediaStreamTrackEvent;\n};\n\ninterface MessageChannel {\n readonly port1: MessagePort;\n readonly port2: MessagePort;\n}\n\ndeclare var MessageChannel: {\n prototype: MessageChannel;\n new(): MessageChannel;\n};\n\ninterface MessageEvent extends Event {\n readonly data: any;\n readonly origin: string;\n readonly ports: any;\n readonly source: Window;\n initMessageEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, dataArg: any, originArg: string, lastEventIdArg: string, sourceArg: Window): void;\n}\n\ndeclare var MessageEvent: {\n prototype: MessageEvent;\n new(type: string, eventInitDict?: MessageEventInit): MessageEvent;\n};\n\ninterface MessagePortEventMap {\n "message": MessageEvent;\n}\n\ninterface MessagePort extends EventTarget {\n onmessage: (this: MessagePort, ev: MessageEvent) => any;\n close(): void;\n postMessage(message?: any, transfer?: any[]): void;\n start(): void;\n addEventListener<K extends keyof MessagePortEventMap>(type: K, listener: (this: MessagePort, ev: MessagePortEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MessagePort: {\n prototype: MessagePort;\n new(): MessagePort;\n};\n\ninterface MimeType {\n readonly description: string;\n readonly enabledPlugin: Plugin;\n readonly suffixes: string;\n readonly type: string;\n}\n\ndeclare var MimeType: {\n prototype: MimeType;\n new(): MimeType;\n};\n\ninterface MimeTypeArray {\n readonly length: number;\n item(index: number): Plugin;\n namedItem(type: string): Plugin;\n [index: number]: Plugin;\n}\n\ndeclare var MimeTypeArray: {\n prototype: MimeTypeArray;\n new(): MimeTypeArray;\n};\n\ninterface MouseEvent extends UIEvent {\n readonly altKey: boolean;\n readonly button: number;\n readonly buttons: number;\n readonly clientX: number;\n readonly clientY: number;\n readonly ctrlKey: boolean;\n readonly fromElement: Element;\n readonly layerX: number;\n readonly layerY: number;\n readonly metaKey: boolean;\n readonly movementX: number;\n readonly movementY: number;\n readonly offsetX: number;\n readonly offsetY: number;\n readonly pageX: number;\n readonly pageY: number;\n readonly relatedTarget: EventTarget;\n readonly screenX: number;\n readonly screenY: number;\n readonly shiftKey: boolean;\n readonly toElement: Element;\n readonly which: number;\n readonly x: number;\n readonly y: number;\n getModifierState(keyArg: string): boolean;\n initMouseEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget | null): void;\n}\n\ndeclare var MouseEvent: {\n prototype: MouseEvent;\n new(typeArg: string, eventInitDict?: MouseEventInit): MouseEvent;\n};\n\ninterface MSApp {\n clearTemporaryWebDataAsync(): MSAppAsyncOperation;\n createBlobFromRandomAccessStream(type: string, seeker: any): Blob;\n createDataPackage(object: any): any;\n createDataPackageFromSelection(): any;\n createFileFromStorageFile(storageFile: any): File;\n createStreamFromInputStream(type: string, inputStream: any): MSStream;\n execAsyncAtPriority(asynchronousCallback: MSExecAtPriorityFunctionCallback, priority: string, ...args: any[]): void;\n execAtPriority(synchronousCallback: MSExecAtPriorityFunctionCallback, priority: string, ...args: any[]): any;\n getCurrentPriority(): string;\n getHtmlPrintDocumentSourceAsync(htmlDoc: any): Promise<any>;\n getViewId(view: any): any;\n isTaskScheduledAtPriorityOrHigher(priority: string): boolean;\n pageHandlesAllApplicationActivations(enabled: boolean): void;\n suppressSubdownloadCredentialPrompts(suppress: boolean): void;\n terminateApp(exceptionObject: any): void;\n readonly CURRENT: string;\n readonly HIGH: string;\n readonly IDLE: string;\n readonly NORMAL: string;\n}\ndeclare var MSApp: MSApp;\n\ninterface MSAppAsyncOperationEventMap {\n "complete": Event;\n "error": Event;\n}\n\ninterface MSAppAsyncOperation extends EventTarget {\n readonly error: DOMError;\n oncomplete: (this: MSAppAsyncOperation, ev: Event) => any;\n onerror: (this: MSAppAsyncOperation, ev: Event) => any;\n readonly readyState: number;\n readonly result: any;\n start(): void;\n readonly COMPLETED: number;\n readonly ERROR: number;\n readonly STARTED: number;\n addEventListener<K extends keyof MSAppAsyncOperationEventMap>(type: K, listener: (this: MSAppAsyncOperation, ev: MSAppAsyncOperationEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MSAppAsyncOperation: {\n prototype: MSAppAsyncOperation;\n new(): MSAppAsyncOperation;\n readonly COMPLETED: number;\n readonly ERROR: number;\n readonly STARTED: number;\n};\n\ninterface MSAssertion {\n readonly id: string;\n readonly type: MSCredentialType;\n}\n\ndeclare var MSAssertion: {\n prototype: MSAssertion;\n new(): MSAssertion;\n};\n\ninterface MSBlobBuilder {\n append(data: any, endings?: string): void;\n getBlob(contentType?: string): Blob;\n}\n\ndeclare var MSBlobBuilder: {\n prototype: MSBlobBuilder;\n new(): MSBlobBuilder;\n};\n\ninterface MSCredentials {\n getAssertion(challenge: string, filter?: MSCredentialFilter, params?: MSSignatureParameters): Promise<MSAssertion>;\n makeCredential(accountInfo: MSAccountInfo, params: MSCredentialParameters[], challenge?: string): Promise<MSAssertion>;\n}\n\ndeclare var MSCredentials: {\n prototype: MSCredentials;\n new(): MSCredentials;\n};\n\ninterface MSFIDOCredentialAssertion extends MSAssertion {\n readonly algorithm: string | Algorithm;\n readonly attestation: any;\n readonly publicKey: string;\n readonly transportHints: MSTransportType[];\n}\n\ndeclare var MSFIDOCredentialAssertion: {\n prototype: MSFIDOCredentialAssertion;\n new(): MSFIDOCredentialAssertion;\n};\n\ninterface MSFIDOSignature {\n readonly authnrData: string;\n readonly clientData: string;\n readonly signature: string;\n}\n\ndeclare var MSFIDOSignature: {\n prototype: MSFIDOSignature;\n new(): MSFIDOSignature;\n};\n\ninterface MSFIDOSignatureAssertion extends MSAssertion {\n readonly signature: MSFIDOSignature;\n}\n\ndeclare var MSFIDOSignatureAssertion: {\n prototype: MSFIDOSignatureAssertion;\n new(): MSFIDOSignatureAssertion;\n};\n\ninterface MSGesture {\n target: Element;\n addPointer(pointerId: number): void;\n stop(): void;\n}\n\ndeclare var MSGesture: {\n prototype: MSGesture;\n new(): MSGesture;\n};\n\ninterface MSGestureEvent extends UIEvent {\n readonly clientX: number;\n readonly clientY: number;\n readonly expansion: number;\n readonly gestureObject: any;\n readonly hwTimestamp: number;\n readonly offsetX: number;\n readonly offsetY: number;\n readonly rotation: number;\n readonly scale: number;\n readonly screenX: number;\n readonly screenY: number;\n readonly translationX: number;\n readonly translationY: number;\n readonly velocityAngular: number;\n readonly velocityExpansion: number;\n readonly velocityX: number;\n readonly velocityY: number;\n initGestureEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, offsetXArg: number, offsetYArg: number, translationXArg: number, translationYArg: number, scaleArg: number, expansionArg: number, rotationArg: number, velocityXArg: number, velocityYArg: number, velocityExpansionArg: number, velocityAngularArg: number, hwTimestampArg: number): void;\n readonly MSGESTURE_FLAG_BEGIN: number;\n readonly MSGESTURE_FLAG_CANCEL: number;\n readonly MSGESTURE_FLAG_END: number;\n readonly MSGESTURE_FLAG_INERTIA: number;\n readonly MSGESTURE_FLAG_NONE: number;\n}\n\ndeclare var MSGestureEvent: {\n prototype: MSGestureEvent;\n new(): MSGestureEvent;\n readonly MSGESTURE_FLAG_BEGIN: number;\n readonly MSGESTURE_FLAG_CANCEL: number;\n readonly MSGESTURE_FLAG_END: number;\n readonly MSGESTURE_FLAG_INERTIA: number;\n readonly MSGESTURE_FLAG_NONE: number;\n};\n\ninterface MSGraphicsTrust {\n readonly constrictionActive: boolean;\n readonly status: string;\n}\n\ndeclare var MSGraphicsTrust: {\n prototype: MSGraphicsTrust;\n new(): MSGraphicsTrust;\n};\n\ninterface MSHTMLWebViewElement extends HTMLElement {\n readonly canGoBack: boolean;\n readonly canGoForward: boolean;\n readonly containsFullScreenElement: boolean;\n readonly documentTitle: string;\n height: number;\n readonly settings: MSWebViewSettings;\n src: string;\n width: number;\n addWebAllowedObject(name: string, applicationObject: any): void;\n buildLocalStreamUri(contentIdentifier: string, relativePath: string): string;\n capturePreviewToBlobAsync(): MSWebViewAsyncOperation;\n captureSelectedContentToDataPackageAsync(): MSWebViewAsyncOperation;\n getDeferredPermissionRequestById(id: number): DeferredPermissionRequest;\n getDeferredPermissionRequests(): DeferredPermissionRequest[];\n goBack(): void;\n goForward(): void;\n invokeScriptAsync(scriptName: string, ...args: any[]): MSWebViewAsyncOperation;\n navigate(uri: string): void;\n navigateFocus(navigationReason: NavigationReason, origin: FocusNavigationOrigin): void;\n navigateToLocalStreamUri(source: string, streamResolver: any): void;\n navigateToString(contents: string): void;\n navigateWithHttpRequestMessage(requestMessage: any): void;\n refresh(): void;\n stop(): void;\n addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: MSHTMLWebViewElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MSHTMLWebViewElement: {\n prototype: MSHTMLWebViewElement;\n new(): MSHTMLWebViewElement;\n};\n\ninterface MSInputMethodContextEventMap {\n "MSCandidateWindowHide": Event;\n "MSCandidateWindowShow": Event;\n "MSCandidateWindowUpdate": Event;\n}\n\ninterface MSInputMethodContext extends EventTarget {\n readonly compositionEndOffset: number;\n readonly compositionStartOffset: number;\n oncandidatewindowhide: (this: MSInputMethodContext, ev: Event) => any;\n oncandidatewindowshow: (this: MSInputMethodContext, ev: Event) => any;\n oncandidatewindowupdate: (this: MSInputMethodContext, ev: Event) => any;\n readonly target: HTMLElement;\n getCandidateWindowClientRect(): ClientRect;\n getCompositionAlternatives(): string[];\n hasComposition(): boolean;\n isCandidateWindowVisible(): boolean;\n addEventListener<K extends keyof MSInputMethodContextEventMap>(type: K, listener: (this: MSInputMethodContext, ev: MSInputMethodContextEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MSInputMethodContext: {\n prototype: MSInputMethodContext;\n new(): MSInputMethodContext;\n};\n\ninterface MSManipulationEvent extends UIEvent {\n readonly currentState: number;\n readonly inertiaDestinationX: number;\n readonly inertiaDestinationY: number;\n readonly lastState: number;\n initMSManipulationEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, lastState: number, currentState: number): void;\n readonly MS_MANIPULATION_STATE_ACTIVE: number;\n readonly MS_MANIPULATION_STATE_CANCELLED: number;\n readonly MS_MANIPULATION_STATE_COMMITTED: number;\n readonly MS_MANIPULATION_STATE_DRAGGING: number;\n readonly MS_MANIPULATION_STATE_INERTIA: number;\n readonly MS_MANIPULATION_STATE_PRESELECT: number;\n readonly MS_MANIPULATION_STATE_SELECTING: number;\n readonly MS_MANIPULATION_STATE_STOPPED: number;\n}\n\ndeclare var MSManipulationEvent: {\n prototype: MSManipulationEvent;\n new(): MSManipulationEvent;\n readonly MS_MANIPULATION_STATE_ACTIVE: number;\n readonly MS_MANIPULATION_STATE_CANCELLED: number;\n readonly MS_MANIPULATION_STATE_COMMITTED: number;\n readonly MS_MANIPULATION_STATE_DRAGGING: number;\n readonly MS_MANIPULATION_STATE_INERTIA: number;\n readonly MS_MANIPULATION_STATE_PRESELECT: number;\n readonly MS_MANIPULATION_STATE_SELECTING: number;\n readonly MS_MANIPULATION_STATE_STOPPED: number;\n};\n\ninterface MSMediaKeyError {\n readonly code: number;\n readonly systemCode: number;\n readonly MS_MEDIA_KEYERR_CLIENT: number;\n readonly MS_MEDIA_KEYERR_DOMAIN: number;\n readonly MS_MEDIA_KEYERR_HARDWARECHANGE: number;\n readonly MS_MEDIA_KEYERR_OUTPUT: number;\n readonly MS_MEDIA_KEYERR_SERVICE: number;\n readonly MS_MEDIA_KEYERR_UNKNOWN: number;\n}\n\ndeclare var MSMediaKeyError: {\n prototype: MSMediaKeyError;\n new(): MSMediaKeyError;\n readonly MS_MEDIA_KEYERR_CLIENT: number;\n readonly MS_MEDIA_KEYERR_DOMAIN: number;\n readonly MS_MEDIA_KEYERR_HARDWARECHANGE: number;\n readonly MS_MEDIA_KEYERR_OUTPUT: number;\n readonly MS_MEDIA_KEYERR_SERVICE: number;\n readonly MS_MEDIA_KEYERR_UNKNOWN: number;\n};\n\ninterface MSMediaKeyMessageEvent extends Event {\n readonly destinationURL: string | null;\n readonly message: Uint8Array;\n}\n\ndeclare var MSMediaKeyMessageEvent: {\n prototype: MSMediaKeyMessageEvent;\n new(): MSMediaKeyMessageEvent;\n};\n\ninterface MSMediaKeyNeededEvent extends Event {\n readonly initData: Uint8Array | null;\n}\n\ndeclare var MSMediaKeyNeededEvent: {\n prototype: MSMediaKeyNeededEvent;\n new(): MSMediaKeyNeededEvent;\n};\n\ninterface MSMediaKeys {\n readonly keySystem: string;\n createSession(type: string, initData: Uint8Array, cdmData?: Uint8Array): MSMediaKeySession;\n}\n\ndeclare var MSMediaKeys: {\n prototype: MSMediaKeys;\n new(keySystem: string): MSMediaKeys;\n isTypeSupported(keySystem: string, type?: string): boolean;\n isTypeSupportedWithFeatures(keySystem: string, type?: string): string;\n};\n\ninterface MSMediaKeySession extends EventTarget {\n readonly error: MSMediaKeyError | null;\n readonly keySystem: string;\n readonly sessionId: string;\n close(): void;\n update(key: Uint8Array): void;\n}\n\ndeclare var MSMediaKeySession: {\n prototype: MSMediaKeySession;\n new(): MSMediaKeySession;\n};\n\ninterface MSPointerEvent extends MouseEvent {\n readonly currentPoint: any;\n readonly height: number;\n readonly hwTimestamp: number;\n readonly intermediatePoints: any;\n readonly isPrimary: boolean;\n readonly pointerId: number;\n readonly pointerType: any;\n readonly pressure: number;\n readonly rotation: number;\n readonly tiltX: number;\n readonly tiltY: number;\n readonly width: number;\n getCurrentPoint(element: Element): void;\n getIntermediatePoints(element: Element): void;\n initPointerEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget, offsetXArg: number, offsetYArg: number, widthArg: number, heightArg: number, pressure: number, rotation: number, tiltX: number, tiltY: number, pointerIdArg: number, pointerType: any, hwTimestampArg: number, isPrimary: boolean): void;\n}\n\ndeclare var MSPointerEvent: {\n prototype: MSPointerEvent;\n new(typeArg: string, eventInitDict?: PointerEventInit): MSPointerEvent;\n};\n\ninterface MSRangeCollection {\n readonly length: number;\n item(index: number): Range;\n [index: number]: Range;\n}\n\ndeclare var MSRangeCollection: {\n prototype: MSRangeCollection;\n new(): MSRangeCollection;\n};\n\ninterface MSSiteModeEvent extends Event {\n readonly actionURL: string;\n readonly buttonID: number;\n}\n\ndeclare var MSSiteModeEvent: {\n prototype: MSSiteModeEvent;\n new(): MSSiteModeEvent;\n};\n\ninterface MSStream {\n readonly type: string;\n msClose(): void;\n msDetachStream(): any;\n}\n\ndeclare var MSStream: {\n prototype: MSStream;\n new(): MSStream;\n};\n\ninterface MSStreamReader extends EventTarget, MSBaseReader {\n readonly error: DOMError;\n readAsArrayBuffer(stream: MSStream, size?: number): void;\n readAsBinaryString(stream: MSStream, size?: number): void;\n readAsBlob(stream: MSStream, size?: number): void;\n readAsDataURL(stream: MSStream, size?: number): void;\n readAsText(stream: MSStream, encoding?: string, size?: number): void;\n addEventListener<K extends keyof MSBaseReaderEventMap>(type: K, listener: (this: MSStreamReader, ev: MSBaseReaderEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MSStreamReader: {\n prototype: MSStreamReader;\n new(): MSStreamReader;\n};\n\ninterface MSWebViewAsyncOperationEventMap {\n "complete": Event;\n "error": Event;\n}\n\ninterface MSWebViewAsyncOperation extends EventTarget {\n readonly error: DOMError;\n oncomplete: (this: MSWebViewAsyncOperation, ev: Event) => any;\n onerror: (this: MSWebViewAsyncOperation, ev: Event) => any;\n readonly readyState: number;\n readonly result: any;\n readonly target: MSHTMLWebViewElement;\n readonly type: number;\n start(): void;\n readonly COMPLETED: number;\n readonly ERROR: number;\n readonly STARTED: number;\n readonly TYPE_CAPTURE_PREVIEW_TO_RANDOM_ACCESS_STREAM: number;\n readonly TYPE_CREATE_DATA_PACKAGE_FROM_SELECTION: number;\n readonly TYPE_INVOKE_SCRIPT: number;\n addEventListener<K extends keyof MSWebViewAsyncOperationEventMap>(type: K, listener: (this: MSWebViewAsyncOperation, ev: MSWebViewAsyncOperationEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var MSWebViewAsyncOperation: {\n prototype: MSWebViewAsyncOperation;\n new(): MSWebViewAsyncOperation;\n readonly COMPLETED: number;\n readonly ERROR: number;\n readonly STARTED: number;\n readonly TYPE_CAPTURE_PREVIEW_TO_RANDOM_ACCESS_STREAM: number;\n readonly TYPE_CREATE_DATA_PACKAGE_FROM_SELECTION: number;\n readonly TYPE_INVOKE_SCRIPT: number;\n};\n\ninterface MSWebViewSettings {\n isIndexedDBEnabled: boolean;\n isJavaScriptEnabled: boolean;\n}\n\ndeclare var MSWebViewSettings: {\n prototype: MSWebViewSettings;\n new(): MSWebViewSettings;\n};\n\ninterface MutationEvent extends Event {\n readonly attrChange: number;\n readonly attrName: string;\n readonly newValue: string;\n readonly prevValue: string;\n readonly relatedNode: Node;\n initMutationEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, relatedNodeArg: Node, prevValueArg: string, newValueArg: string, attrNameArg: string, attrChangeArg: number): void;\n readonly ADDITION: number;\n readonly MODIFICATION: number;\n readonly REMOVAL: number;\n}\n\ndeclare var MutationEvent: {\n prototype: MutationEvent;\n new(): MutationEvent;\n readonly ADDITION: number;\n readonly MODIFICATION: number;\n readonly REMOVAL: number;\n};\n\ninterface MutationObserver {\n disconnect(): void;\n observe(target: Node, options: MutationObserverInit): void;\n takeRecords(): MutationRecord[];\n}\n\ndeclare var MutationObserver: {\n prototype: MutationObserver;\n new(callback: MutationCallback): MutationObserver;\n};\n\ninterface MutationRecord {\n readonly addedNodes: NodeList;\n readonly attributeName: string | null;\n readonly attributeNamespace: string | null;\n readonly nextSibling: Node | null;\n readonly oldValue: string | null;\n readonly previousSibling: Node | null;\n readonly removedNodes: NodeList;\n readonly target: Node;\n readonly type: string;\n}\n\ndeclare var MutationRecord: {\n prototype: MutationRecord;\n new(): MutationRecord;\n};\n\ninterface NamedNodeMap {\n readonly length: number;\n getNamedItem(name: string): Attr;\n getNamedItemNS(namespaceURI: string | null, localName: string | null): Attr;\n item(index: number): Attr;\n removeNamedItem(name: string): Attr;\n removeNamedItemNS(namespaceURI: string | null, localName: string | null): Attr;\n setNamedItem(arg: Attr): Attr;\n setNamedItemNS(arg: Attr): Attr;\n [index: number]: Attr;\n}\n\ndeclare var NamedNodeMap: {\n prototype: NamedNodeMap;\n new(): NamedNodeMap;\n};\n\ninterface NavigationCompletedEvent extends NavigationEvent {\n readonly isSuccess: boolean;\n readonly webErrorStatus: number;\n}\n\ndeclare var NavigationCompletedEvent: {\n prototype: NavigationCompletedEvent;\n new(): NavigationCompletedEvent;\n};\n\ninterface NavigationEvent extends Event {\n readonly uri: string;\n}\n\ndeclare var NavigationEvent: {\n prototype: NavigationEvent;\n new(): NavigationEvent;\n};\n\ninterface NavigationEventWithReferrer extends NavigationEvent {\n readonly referer: string;\n}\n\ndeclare var NavigationEventWithReferrer: {\n prototype: NavigationEventWithReferrer;\n new(): NavigationEventWithReferrer;\n};\n\ninterface Navigator extends Object, NavigatorID, NavigatorOnLine, NavigatorContentUtils, NavigatorStorageUtils, NavigatorGeolocation, MSNavigatorDoNotTrack, MSFileSaver, NavigatorBeacon, NavigatorConcurrentHardware, NavigatorUserMedia {\n readonly authentication: WebAuthentication;\n readonly cookieEnabled: boolean;\n gamepadInputEmulation: GamepadInputEmulationType;\n readonly language: string;\n readonly maxTouchPoints: number;\n readonly mimeTypes: MimeTypeArray;\n readonly msManipulationViewsEnabled: boolean;\n readonly msMaxTouchPoints: number;\n readonly msPointerEnabled: boolean;\n readonly plugins: PluginArray;\n readonly pointerEnabled: boolean;\n readonly serviceWorker: ServiceWorkerContainer;\n readonly webdriver: boolean;\n readonly hardwareConcurrency: number;\n readonly languages: string[];\n getGamepads(): Gamepad[];\n javaEnabled(): boolean;\n msLaunchUri(uri: string, successCallback?: MSLaunchUriCallback, noHandlerCallback?: MSLaunchUriCallback): void;\n requestMediaKeySystemAccess(keySystem: string, supportedConfigurations: MediaKeySystemConfiguration[]): Promise<MediaKeySystemAccess>;\n vibrate(pattern: number | number[]): boolean;\n}\n\ndeclare var Navigator: {\n prototype: Navigator;\n new(): Navigator;\n};\n\ninterface Node extends EventTarget {\n readonly attributes: NamedNodeMap;\n readonly baseURI: string | null;\n readonly childNodes: NodeList;\n readonly firstChild: Node | null;\n readonly lastChild: Node | null;\n readonly localName: string | null;\n readonly namespaceURI: string | null;\n readonly nextSibling: Node | null;\n readonly nodeName: string;\n readonly nodeType: number;\n nodeValue: string | null;\n readonly ownerDocument: Document;\n readonly parentElement: HTMLElement | null;\n readonly parentNode: Node | null;\n readonly previousSibling: Node | null;\n textContent: string | null;\n appendChild<T extends Node>(newChild: T): T;\n cloneNode(deep?: boolean): Node;\n compareDocumentPosition(other: Node): number;\n contains(child: Node): boolean;\n hasAttributes(): boolean;\n hasChildNodes(): boolean;\n insertBefore<T extends Node>(newChild: T, refChild: Node | null): T;\n isDefaultNamespace(namespaceURI: string | null): boolean;\n isEqualNode(arg: Node): boolean;\n isSameNode(other: Node): boolean;\n lookupNamespaceURI(prefix: string | null): string | null;\n lookupPrefix(namespaceURI: string | null): string | null;\n normalize(): void;\n removeChild<T extends Node>(oldChild: T): T;\n replaceChild<T extends Node>(newChild: Node, oldChild: T): T;\n readonly ATTRIBUTE_NODE: number;\n readonly CDATA_SECTION_NODE: number;\n readonly COMMENT_NODE: number;\n readonly DOCUMENT_FRAGMENT_NODE: number;\n readonly DOCUMENT_NODE: number;\n readonly DOCUMENT_POSITION_CONTAINED_BY: number;\n readonly DOCUMENT_POSITION_CONTAINS: number;\n readonly DOCUMENT_POSITION_DISCONNECTED: number;\n readonly DOCUMENT_POSITION_FOLLOWING: number;\n readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;\n readonly DOCUMENT_POSITION_PRECEDING: number;\n readonly DOCUMENT_TYPE_NODE: number;\n readonly ELEMENT_NODE: number;\n readonly ENTITY_NODE: number;\n readonly ENTITY_REFERENCE_NODE: number;\n readonly NOTATION_NODE: number;\n readonly PROCESSING_INSTRUCTION_NODE: number;\n readonly TEXT_NODE: number;\n}\n\ndeclare var Node: {\n prototype: Node;\n new(): Node;\n readonly ATTRIBUTE_NODE: number;\n readonly CDATA_SECTION_NODE: number;\n readonly COMMENT_NODE: number;\n readonly DOCUMENT_FRAGMENT_NODE: number;\n readonly DOCUMENT_NODE: number;\n readonly DOCUMENT_POSITION_CONTAINED_BY: number;\n readonly DOCUMENT_POSITION_CONTAINS: number;\n readonly DOCUMENT_POSITION_DISCONNECTED: number;\n readonly DOCUMENT_POSITION_FOLLOWING: number;\n readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;\n readonly DOCUMENT_POSITION_PRECEDING: number;\n readonly DOCUMENT_TYPE_NODE: number;\n readonly ELEMENT_NODE: number;\n readonly ENTITY_NODE: number;\n readonly ENTITY_REFERENCE_NODE: number;\n readonly NOTATION_NODE: number;\n readonly PROCESSING_INSTRUCTION_NODE: number;\n readonly TEXT_NODE: number;\n};\n\ninterface NodeFilter {\n acceptNode(n: Node): number;\n}\n\ndeclare var NodeFilter: {\n readonly FILTER_ACCEPT: number;\n readonly FILTER_REJECT: number;\n readonly FILTER_SKIP: number;\n readonly SHOW_ALL: number;\n readonly SHOW_ATTRIBUTE: number;\n readonly SHOW_CDATA_SECTION: number;\n readonly SHOW_COMMENT: number;\n readonly SHOW_DOCUMENT: number;\n readonly SHOW_DOCUMENT_FRAGMENT: number;\n readonly SHOW_DOCUMENT_TYPE: number;\n readonly SHOW_ELEMENT: number;\n readonly SHOW_ENTITY: number;\n readonly SHOW_ENTITY_REFERENCE: number;\n readonly SHOW_NOTATION: number;\n readonly SHOW_PROCESSING_INSTRUCTION: number;\n readonly SHOW_TEXT: number;\n};\n\ninterface NodeIterator {\n readonly expandEntityReferences: boolean;\n readonly filter: NodeFilter;\n readonly root: Node;\n readonly whatToShow: number;\n detach(): void;\n nextNode(): Node;\n previousNode(): Node;\n}\n\ndeclare var NodeIterator: {\n prototype: NodeIterator;\n new(): NodeIterator;\n};\n\ninterface NodeList {\n readonly length: number;\n item(index: number): Node;\n [index: number]: Node;\n}\n\ndeclare var NodeList: {\n prototype: NodeList;\n new(): NodeList;\n};\n\ninterface NotificationEventMap {\n "click": Event;\n "close": Event;\n "error": Event;\n "show": Event;\n}\n\ninterface Notification extends EventTarget {\n readonly body: string;\n readonly dir: NotificationDirection;\n readonly icon: string;\n readonly lang: string;\n onclick: (this: Notification, ev: Event) => any;\n onclose: (this: Notification, ev: Event) => any;\n onerror: (this: Notification, ev: Event) => any;\n onshow: (this: Notification, ev: Event) => any;\n readonly permission: NotificationPermission;\n readonly tag: string;\n readonly title: string;\n close(): void;\n addEventListener<K extends keyof NotificationEventMap>(type: K, listener: (this: Notification, ev: NotificationEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Notification: {\n prototype: Notification;\n new(title: string, options?: NotificationOptions): Notification;\n requestPermission(callback?: NotificationPermissionCallback): Promise<NotificationPermission>;\n};\n\ninterface OES_element_index_uint {\n}\n\ndeclare var OES_element_index_uint: {\n prototype: OES_element_index_uint;\n new(): OES_element_index_uint;\n};\n\ninterface OES_standard_derivatives {\n readonly FRAGMENT_SHADER_DERIVATIVE_HINT_OES: number;\n}\n\ndeclare var OES_standard_derivatives: {\n prototype: OES_standard_derivatives;\n new(): OES_standard_derivatives;\n readonly FRAGMENT_SHADER_DERIVATIVE_HINT_OES: number;\n};\n\ninterface OES_texture_float {\n}\n\ndeclare var OES_texture_float: {\n prototype: OES_texture_float;\n new(): OES_texture_float;\n};\n\ninterface OES_texture_float_linear {\n}\n\ndeclare var OES_texture_float_linear: {\n prototype: OES_texture_float_linear;\n new(): OES_texture_float_linear;\n};\n\ninterface OES_texture_half_float {\n readonly HALF_FLOAT_OES: number;\n}\n\ndeclare var OES_texture_half_float: {\n prototype: OES_texture_half_float;\n new(): OES_texture_half_float;\n readonly HALF_FLOAT_OES: number;\n};\n\ninterface OES_texture_half_float_linear {\n}\n\ndeclare var OES_texture_half_float_linear: {\n prototype: OES_texture_half_float_linear;\n new(): OES_texture_half_float_linear;\n};\n\ninterface OfflineAudioCompletionEvent extends Event {\n readonly renderedBuffer: AudioBuffer;\n}\n\ndeclare var OfflineAudioCompletionEvent: {\n prototype: OfflineAudioCompletionEvent;\n new(): OfflineAudioCompletionEvent;\n};\n\ninterface OfflineAudioContextEventMap extends AudioContextEventMap {\n "complete": OfflineAudioCompletionEvent;\n}\n\ninterface OfflineAudioContext extends AudioContextBase {\n readonly length: number;\n oncomplete: (this: OfflineAudioContext, ev: OfflineAudioCompletionEvent) => any;\n startRendering(): Promise<AudioBuffer>;\n suspend(suspendTime: number): Promise<void>;\n addEventListener<K extends keyof OfflineAudioContextEventMap>(type: K, listener: (this: OfflineAudioContext, ev: OfflineAudioContextEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var OfflineAudioContext: {\n prototype: OfflineAudioContext;\n new(numberOfChannels: number, length: number, sampleRate: number): OfflineAudioContext;\n};\n\ninterface OscillatorNodeEventMap {\n "ended": MediaStreamErrorEvent;\n}\n\ninterface OscillatorNode extends AudioNode {\n readonly detune: AudioParam;\n readonly frequency: AudioParam;\n onended: (this: OscillatorNode, ev: MediaStreamErrorEvent) => any;\n type: OscillatorType;\n setPeriodicWave(periodicWave: PeriodicWave): void;\n start(when?: number): void;\n stop(when?: number): void;\n addEventListener<K extends keyof OscillatorNodeEventMap>(type: K, listener: (this: OscillatorNode, ev: OscillatorNodeEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var OscillatorNode: {\n prototype: OscillatorNode;\n new(): OscillatorNode;\n};\n\ninterface OverflowEvent extends UIEvent {\n readonly horizontalOverflow: boolean;\n readonly orient: number;\n readonly verticalOverflow: boolean;\n readonly BOTH: number;\n readonly HORIZONTAL: number;\n readonly VERTICAL: number;\n}\n\ndeclare var OverflowEvent: {\n prototype: OverflowEvent;\n new(): OverflowEvent;\n readonly BOTH: number;\n readonly HORIZONTAL: number;\n readonly VERTICAL: number;\n};\n\ninterface PageTransitionEvent extends Event {\n readonly persisted: boolean;\n}\n\ndeclare var PageTransitionEvent: {\n prototype: PageTransitionEvent;\n new(): PageTransitionEvent;\n};\n\ninterface PannerNode extends AudioNode {\n coneInnerAngle: number;\n coneOuterAngle: number;\n coneOuterGain: number;\n distanceModel: DistanceModelType;\n maxDistance: number;\n panningModel: PanningModelType;\n refDistance: number;\n rolloffFactor: number;\n setOrientation(x: number, y: number, z: number): void;\n setPosition(x: number, y: number, z: number): void;\n setVelocity(x: number, y: number, z: number): void;\n}\n\ndeclare var PannerNode: {\n prototype: PannerNode;\n new(): PannerNode;\n};\n\ninterface Path2D extends Object, CanvasPathMethods {\n}\n\ndeclare var Path2D: {\n prototype: Path2D;\n new(path?: Path2D): Path2D;\n};\n\ninterface PaymentAddress {\n readonly addressLine: string[];\n readonly city: string;\n readonly country: string;\n readonly dependentLocality: string;\n readonly languageCode: string;\n readonly organization: string;\n readonly phone: string;\n readonly postalCode: string;\n readonly recipient: string;\n readonly region: string;\n readonly sortingCode: string;\n toJSON(): any;\n}\n\ndeclare var PaymentAddress: {\n prototype: PaymentAddress;\n new(): PaymentAddress;\n};\n\ninterface PaymentRequestEventMap {\n "shippingaddresschange": Event;\n "shippingoptionchange": Event;\n}\n\ninterface PaymentRequest extends EventTarget {\n onshippingaddresschange: (this: PaymentRequest, ev: Event) => any;\n onshippingoptionchange: (this: PaymentRequest, ev: Event) => any;\n readonly shippingAddress: PaymentAddress | null;\n readonly shippingOption: string | null;\n readonly shippingType: PaymentShippingType | null;\n abort(): Promise<void>;\n show(): Promise<PaymentResponse>;\n addEventListener<K extends keyof PaymentRequestEventMap>(type: K, listener: (this: PaymentRequest, ev: PaymentRequestEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var PaymentRequest: {\n prototype: PaymentRequest;\n new(methodData: PaymentMethodData[], details: PaymentDetails, options?: PaymentOptions): PaymentRequest;\n};\n\ninterface PaymentRequestUpdateEvent extends Event {\n updateWith(d: Promise<PaymentDetails>): void;\n}\n\ndeclare var PaymentRequestUpdateEvent: {\n prototype: PaymentRequestUpdateEvent;\n new(type: string, eventInitDict?: PaymentRequestUpdateEventInit): PaymentRequestUpdateEvent;\n};\n\ninterface PaymentResponse {\n readonly details: any;\n readonly methodName: string;\n readonly payerEmail: string | null;\n readonly payerName: string | null;\n readonly payerPhone: string | null;\n readonly shippingAddress: PaymentAddress | null;\n readonly shippingOption: string | null;\n complete(result?: PaymentComplete): Promise<void>;\n toJSON(): any;\n}\n\ndeclare var PaymentResponse: {\n prototype: PaymentResponse;\n new(): PaymentResponse;\n};\n\ninterface Performance {\n readonly navigation: PerformanceNavigation;\n readonly timing: PerformanceTiming;\n clearMarks(markName?: string): void;\n clearMeasures(measureName?: string): void;\n clearResourceTimings(): void;\n getEntries(): any;\n getEntriesByName(name: string, entryType?: string): any;\n getEntriesByType(entryType: string): any;\n getMarks(markName?: string): any;\n getMeasures(measureName?: string): any;\n mark(markName: string): void;\n measure(measureName: string, startMarkName?: string, endMarkName?: string): void;\n now(): number;\n setResourceTimingBufferSize(maxSize: number): void;\n toJSON(): any;\n}\n\ndeclare var Performance: {\n prototype: Performance;\n new(): Performance;\n};\n\ninterface PerformanceEntry {\n readonly duration: number;\n readonly entryType: string;\n readonly name: string;\n readonly startTime: number;\n}\n\ndeclare var PerformanceEntry: {\n prototype: PerformanceEntry;\n new(): PerformanceEntry;\n};\n\ninterface PerformanceMark extends PerformanceEntry {\n}\n\ndeclare var PerformanceMark: {\n prototype: PerformanceMark;\n new(): PerformanceMark;\n};\n\ninterface PerformanceMeasure extends PerformanceEntry {\n}\n\ndeclare var PerformanceMeasure: {\n prototype: PerformanceMeasure;\n new(): PerformanceMeasure;\n};\n\ninterface PerformanceNavigation {\n readonly redirectCount: number;\n readonly type: number;\n toJSON(): any;\n readonly TYPE_BACK_FORWARD: number;\n readonly TYPE_NAVIGATE: number;\n readonly TYPE_RELOAD: number;\n readonly TYPE_RESERVED: number;\n}\n\ndeclare var PerformanceNavigation: {\n prototype: PerformanceNavigation;\n new(): PerformanceNavigation;\n readonly TYPE_BACK_FORWARD: number;\n readonly TYPE_NAVIGATE: number;\n readonly TYPE_RELOAD: number;\n readonly TYPE_RESERVED: number;\n};\n\ninterface PerformanceNavigationTiming extends PerformanceEntry {\n readonly connectEnd: number;\n readonly connectStart: number;\n readonly domainLookupEnd: number;\n readonly domainLookupStart: number;\n readonly domComplete: number;\n readonly domContentLoadedEventEnd: number;\n readonly domContentLoadedEventStart: number;\n readonly domInteractive: number;\n readonly domLoading: number;\n readonly fetchStart: number;\n readonly loadEventEnd: number;\n readonly loadEventStart: number;\n readonly navigationStart: number;\n readonly redirectCount: number;\n readonly redirectEnd: number;\n readonly redirectStart: number;\n readonly requestStart: number;\n readonly responseEnd: number;\n readonly responseStart: number;\n readonly type: NavigationType;\n readonly unloadEventEnd: number;\n readonly unloadEventStart: number;\n}\n\ndeclare var PerformanceNavigationTiming: {\n prototype: PerformanceNavigationTiming;\n new(): PerformanceNavigationTiming;\n};\n\ninterface PerformanceResourceTiming extends PerformanceEntry {\n readonly connectEnd: number;\n readonly connectStart: number;\n readonly domainLookupEnd: number;\n readonly domainLookupStart: number;\n readonly fetchStart: number;\n readonly initiatorType: string;\n readonly redirectEnd: number;\n readonly redirectStart: number;\n readonly requestStart: number;\n readonly responseEnd: number;\n readonly responseStart: number;\n}\n\ndeclare var PerformanceResourceTiming: {\n prototype: PerformanceResourceTiming;\n new(): PerformanceResourceTiming;\n};\n\ninterface PerformanceTiming {\n readonly connectEnd: number;\n readonly connectStart: number;\n readonly domainLookupEnd: number;\n readonly domainLookupStart: number;\n readonly domComplete: number;\n readonly domContentLoadedEventEnd: number;\n readonly domContentLoadedEventStart: number;\n readonly domInteractive: number;\n readonly domLoading: number;\n readonly fetchStart: number;\n readonly loadEventEnd: number;\n readonly loadEventStart: number;\n readonly msFirstPaint: number;\n readonly navigationStart: number;\n readonly redirectEnd: number;\n readonly redirectStart: number;\n readonly requestStart: number;\n readonly responseEnd: number;\n readonly responseStart: number;\n readonly unloadEventEnd: number;\n readonly unloadEventStart: number;\n readonly secureConnectionStart: number;\n toJSON(): any;\n}\n\ndeclare var PerformanceTiming: {\n prototype: PerformanceTiming;\n new(): PerformanceTiming;\n};\n\ninterface PerfWidgetExternal {\n readonly activeNetworkRequestCount: number;\n readonly averageFrameTime: number;\n readonly averagePaintTime: number;\n readonly extraInformationEnabled: boolean;\n readonly independentRenderingEnabled: boolean;\n readonly irDisablingContentString: string;\n readonly irStatusAvailable: boolean;\n readonly maxCpuSpeed: number;\n readonly paintRequestsPerSecond: number;\n readonly performanceCounter: number;\n readonly performanceCounterFrequency: number;\n addEventListener(eventType: string, callback: Function): void;\n getMemoryUsage(): number;\n getProcessCpuUsage(): number;\n getRecentCpuUsage(last: number | null): any;\n getRecentFrames(last: number | null): any;\n getRecentMemoryUsage(last: number | null): any;\n getRecentPaintRequests(last: number | null): any;\n removeEventListener(eventType: string, callback: Function): void;\n repositionWindow(x: number, y: number): void;\n resizeWindow(width: number, height: number): void;\n}\n\ndeclare var PerfWidgetExternal: {\n prototype: PerfWidgetExternal;\n new(): PerfWidgetExternal;\n};\n\ninterface PeriodicWave {\n}\n\ndeclare var PeriodicWave: {\n prototype: PeriodicWave;\n new(): PeriodicWave;\n};\n\ninterface PermissionRequest extends DeferredPermissionRequest {\n readonly state: MSWebViewPermissionState;\n defer(): void;\n}\n\ndeclare var PermissionRequest: {\n prototype: PermissionRequest;\n new(): PermissionRequest;\n};\n\ninterface PermissionRequestedEvent extends Event {\n readonly permissionRequest: PermissionRequest;\n}\n\ndeclare var PermissionRequestedEvent: {\n prototype: PermissionRequestedEvent;\n new(): PermissionRequestedEvent;\n};\n\ninterface Plugin {\n readonly description: string;\n readonly filename: string;\n readonly length: number;\n readonly name: string;\n readonly version: string;\n item(index: number): MimeType;\n namedItem(type: string): MimeType;\n [index: number]: MimeType;\n}\n\ndeclare var Plugin: {\n prototype: Plugin;\n new(): Plugin;\n};\n\ninterface PluginArray {\n readonly length: number;\n item(index: number): Plugin;\n namedItem(name: string): Plugin;\n refresh(reload?: boolean): void;\n [index: number]: Plugin;\n}\n\ndeclare var PluginArray: {\n prototype: PluginArray;\n new(): PluginArray;\n};\n\ninterface PointerEvent extends MouseEvent {\n readonly currentPoint: any;\n readonly height: number;\n readonly hwTimestamp: number;\n readonly intermediatePoints: any;\n readonly isPrimary: boolean;\n readonly pointerId: number;\n readonly pointerType: any;\n readonly pressure: number;\n readonly rotation: number;\n readonly tiltX: number;\n readonly tiltY: number;\n readonly width: number;\n getCurrentPoint(element: Element): void;\n getIntermediatePoints(element: Element): void;\n initPointerEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget, offsetXArg: number, offsetYArg: number, widthArg: number, heightArg: number, pressure: number, rotation: number, tiltX: number, tiltY: number, pointerIdArg: number, pointerType: any, hwTimestampArg: number, isPrimary: boolean): void;\n}\n\ndeclare var PointerEvent: {\n prototype: PointerEvent;\n new(typeArg: string, eventInitDict?: PointerEventInit): PointerEvent;\n};\n\ninterface PopStateEvent extends Event {\n readonly state: any;\n initPopStateEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, stateArg: any): void;\n}\n\ndeclare var PopStateEvent: {\n prototype: PopStateEvent;\n new(typeArg: string, eventInitDict?: PopStateEventInit): PopStateEvent;\n};\n\ninterface Position {\n readonly coords: Coordinates;\n readonly timestamp: number;\n}\n\ndeclare var Position: {\n prototype: Position;\n new(): Position;\n};\n\ninterface PositionError {\n readonly code: number;\n readonly message: string;\n toString(): string;\n readonly PERMISSION_DENIED: number;\n readonly POSITION_UNAVAILABLE: number;\n readonly TIMEOUT: number;\n}\n\ndeclare var PositionError: {\n prototype: PositionError;\n new(): PositionError;\n readonly PERMISSION_DENIED: number;\n readonly POSITION_UNAVAILABLE: number;\n readonly TIMEOUT: number;\n};\n\ninterface ProcessingInstruction extends CharacterData {\n readonly target: string;\n}\n\ndeclare var ProcessingInstruction: {\n prototype: ProcessingInstruction;\n new(): ProcessingInstruction;\n};\n\ninterface ProgressEvent extends Event {\n readonly lengthComputable: boolean;\n readonly loaded: number;\n readonly total: number;\n initProgressEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, lengthComputableArg: boolean, loadedArg: number, totalArg: number): void;\n}\n\ndeclare var ProgressEvent: {\n prototype: ProgressEvent;\n new(type: string, eventInitDict?: ProgressEventInit): ProgressEvent;\n};\n\ninterface PushManager {\n getSubscription(): Promise<PushSubscription>;\n permissionState(options?: PushSubscriptionOptionsInit): Promise<PushPermissionState>;\n subscribe(options?: PushSubscriptionOptionsInit): Promise<PushSubscription>;\n}\n\ndeclare var PushManager: {\n prototype: PushManager;\n new(): PushManager;\n};\n\ninterface PushSubscription {\n readonly endpoint: USVString;\n readonly options: PushSubscriptionOptions;\n getKey(name: PushEncryptionKeyName): ArrayBuffer | null;\n toJSON(): any;\n unsubscribe(): Promise<boolean>;\n}\n\ndeclare var PushSubscription: {\n prototype: PushSubscription;\n new(): PushSubscription;\n};\n\ninterface PushSubscriptionOptions {\n readonly applicationServerKey: ArrayBuffer | null;\n readonly userVisibleOnly: boolean;\n}\n\ndeclare var PushSubscriptionOptions: {\n prototype: PushSubscriptionOptions;\n new(): PushSubscriptionOptions;\n};\n\ninterface Range {\n readonly collapsed: boolean;\n readonly commonAncestorContainer: Node;\n readonly endContainer: Node;\n readonly endOffset: number;\n readonly startContainer: Node;\n readonly startOffset: number;\n cloneContents(): DocumentFragment;\n cloneRange(): Range;\n collapse(toStart: boolean): void;\n compareBoundaryPoints(how: number, sourceRange: Range): number;\n createContextualFragment(fragment: string): DocumentFragment;\n deleteContents(): void;\n detach(): void;\n expand(Unit: ExpandGranularity): boolean;\n extractContents(): DocumentFragment;\n getBoundingClientRect(): ClientRect;\n getClientRects(): ClientRectList;\n insertNode(newNode: Node): void;\n selectNode(refNode: Node): void;\n selectNodeContents(refNode: Node): void;\n setEnd(refNode: Node, offset: number): void;\n setEndAfter(refNode: Node): void;\n setEndBefore(refNode: Node): void;\n setStart(refNode: Node, offset: number): void;\n setStartAfter(refNode: Node): void;\n setStartBefore(refNode: Node): void;\n surroundContents(newParent: Node): void;\n toString(): string;\n readonly END_TO_END: number;\n readonly END_TO_START: number;\n readonly START_TO_END: number;\n readonly START_TO_START: number;\n}\n\ndeclare var Range: {\n prototype: Range;\n new(): Range;\n readonly END_TO_END: number;\n readonly END_TO_START: number;\n readonly START_TO_END: number;\n readonly START_TO_START: number;\n};\n\ninterface ReadableStream {\n readonly locked: boolean;\n cancel(): Promise<void>;\n getReader(): ReadableStreamReader;\n}\n\ndeclare var ReadableStream: {\n prototype: ReadableStream;\n new(): ReadableStream;\n};\n\ninterface ReadableStreamReader {\n cancel(): Promise<void>;\n read(): Promise<any>;\n releaseLock(): void;\n}\n\ndeclare var ReadableStreamReader: {\n prototype: ReadableStreamReader;\n new(): ReadableStreamReader;\n};\n\ninterface Request extends Object, Body {\n readonly cache: RequestCache;\n readonly credentials: RequestCredentials;\n readonly destination: RequestDestination;\n readonly headers: Headers;\n readonly integrity: string;\n readonly keepalive: boolean;\n readonly method: string;\n readonly mode: RequestMode;\n readonly redirect: RequestRedirect;\n readonly referrer: string;\n readonly referrerPolicy: ReferrerPolicy;\n readonly type: RequestType;\n readonly url: string;\n clone(): Request;\n}\n\ndeclare var Request: {\n prototype: Request;\n new(input: Request | string, init?: RequestInit): Request;\n};\n\ninterface Response extends Object, Body {\n readonly body: ReadableStream | null;\n readonly headers: Headers;\n readonly ok: boolean;\n readonly status: number;\n readonly statusText: string;\n readonly type: ResponseType;\n readonly url: string;\n clone(): Response;\n}\n\ndeclare var Response: {\n prototype: Response;\n new(body?: any, init?: ResponseInit): Response;\n error: () => Response;\n redirect: (url: string, status?: number) => Response;\n};\n\ninterface RTCDtlsTransportEventMap {\n "dtlsstatechange": RTCDtlsTransportStateChangedEvent;\n "error": Event;\n}\n\ninterface RTCDtlsTransport extends RTCStatsProvider {\n ondtlsstatechange: ((this: RTCDtlsTransport, ev: RTCDtlsTransportStateChangedEvent) => any) | null;\n onerror: ((this: RTCDtlsTransport, ev: Event) => any) | null;\n readonly state: RTCDtlsTransportState;\n readonly transport: RTCIceTransport;\n getLocalParameters(): RTCDtlsParameters;\n getRemoteCertificates(): ArrayBuffer[];\n getRemoteParameters(): RTCDtlsParameters | null;\n start(remoteParameters: RTCDtlsParameters): void;\n stop(): void;\n addEventListener<K extends keyof RTCDtlsTransportEventMap>(type: K, listener: (this: RTCDtlsTransport, ev: RTCDtlsTransportEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCDtlsTransport: {\n prototype: RTCDtlsTransport;\n new(transport: RTCIceTransport): RTCDtlsTransport;\n};\n\ninterface RTCDtlsTransportStateChangedEvent extends Event {\n readonly state: RTCDtlsTransportState;\n}\n\ndeclare var RTCDtlsTransportStateChangedEvent: {\n prototype: RTCDtlsTransportStateChangedEvent;\n new(): RTCDtlsTransportStateChangedEvent;\n};\n\ninterface RTCDtmfSenderEventMap {\n "tonechange": RTCDTMFToneChangeEvent;\n}\n\ninterface RTCDtmfSender extends EventTarget {\n readonly canInsertDTMF: boolean;\n readonly duration: number;\n readonly interToneGap: number;\n ontonechange: (this: RTCDtmfSender, ev: RTCDTMFToneChangeEvent) => any;\n readonly sender: RTCRtpSender;\n readonly toneBuffer: string;\n insertDTMF(tones: string, duration?: number, interToneGap?: number): void;\n addEventListener<K extends keyof RTCDtmfSenderEventMap>(type: K, listener: (this: RTCDtmfSender, ev: RTCDtmfSenderEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCDtmfSender: {\n prototype: RTCDtmfSender;\n new(sender: RTCRtpSender): RTCDtmfSender;\n};\n\ninterface RTCDTMFToneChangeEvent extends Event {\n readonly tone: string;\n}\n\ndeclare var RTCDTMFToneChangeEvent: {\n prototype: RTCDTMFToneChangeEvent;\n new(typeArg: string, eventInitDict: RTCDTMFToneChangeEventInit): RTCDTMFToneChangeEvent;\n};\n\ninterface RTCIceCandidate {\n candidate: string | null;\n sdpMid: string | null;\n sdpMLineIndex: number | null;\n toJSON(): any;\n}\n\ndeclare var RTCIceCandidate: {\n prototype: RTCIceCandidate;\n new(candidateInitDict?: RTCIceCandidateInit): RTCIceCandidate;\n};\n\ninterface RTCIceCandidatePairChangedEvent extends Event {\n readonly pair: RTCIceCandidatePair;\n}\n\ndeclare var RTCIceCandidatePairChangedEvent: {\n prototype: RTCIceCandidatePairChangedEvent;\n new(): RTCIceCandidatePairChangedEvent;\n};\n\ninterface RTCIceGathererEventMap {\n "error": Event;\n "localcandidate": RTCIceGathererEvent;\n}\n\ninterface RTCIceGatherer extends RTCStatsProvider {\n readonly component: RTCIceComponent;\n onerror: ((this: RTCIceGatherer, ev: Event) => any) | null;\n onlocalcandidate: ((this: RTCIceGatherer, ev: RTCIceGathererEvent) => any) | null;\n createAssociatedGatherer(): RTCIceGatherer;\n getLocalCandidates(): RTCIceCandidateDictionary[];\n getLocalParameters(): RTCIceParameters;\n addEventListener<K extends keyof RTCIceGathererEventMap>(type: K, listener: (this: RTCIceGatherer, ev: RTCIceGathererEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCIceGatherer: {\n prototype: RTCIceGatherer;\n new(options: RTCIceGatherOptions): RTCIceGatherer;\n};\n\ninterface RTCIceGathererEvent extends Event {\n readonly candidate: RTCIceCandidateDictionary | RTCIceCandidateComplete;\n}\n\ndeclare var RTCIceGathererEvent: {\n prototype: RTCIceGathererEvent;\n new(): RTCIceGathererEvent;\n};\n\ninterface RTCIceTransportEventMap {\n "candidatepairchange": RTCIceCandidatePairChangedEvent;\n "icestatechange": RTCIceTransportStateChangedEvent;\n}\n\ninterface RTCIceTransport extends RTCStatsProvider {\n readonly component: RTCIceComponent;\n readonly iceGatherer: RTCIceGatherer | null;\n oncandidatepairchange: ((this: RTCIceTransport, ev: RTCIceCandidatePairChangedEvent) => any) | null;\n onicestatechange: ((this: RTCIceTransport, ev: RTCIceTransportStateChangedEvent) => any) | null;\n readonly role: RTCIceRole;\n readonly state: RTCIceTransportState;\n addRemoteCandidate(remoteCandidate: RTCIceCandidateDictionary | RTCIceCandidateComplete): void;\n createAssociatedTransport(): RTCIceTransport;\n getNominatedCandidatePair(): RTCIceCandidatePair | null;\n getRemoteCandidates(): RTCIceCandidateDictionary[];\n getRemoteParameters(): RTCIceParameters | null;\n setRemoteCandidates(remoteCandidates: RTCIceCandidateDictionary[]): void;\n start(gatherer: RTCIceGatherer, remoteParameters: RTCIceParameters, role?: RTCIceRole): void;\n stop(): void;\n addEventListener<K extends keyof RTCIceTransportEventMap>(type: K, listener: (this: RTCIceTransport, ev: RTCIceTransportEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCIceTransport: {\n prototype: RTCIceTransport;\n new(): RTCIceTransport;\n};\n\ninterface RTCIceTransportStateChangedEvent extends Event {\n readonly state: RTCIceTransportState;\n}\n\ndeclare var RTCIceTransportStateChangedEvent: {\n prototype: RTCIceTransportStateChangedEvent;\n new(): RTCIceTransportStateChangedEvent;\n};\n\ninterface RTCPeerConnectionEventMap {\n "addstream": MediaStreamEvent;\n "icecandidate": RTCPeerConnectionIceEvent;\n "iceconnectionstatechange": Event;\n "icegatheringstatechange": Event;\n "negotiationneeded": Event;\n "removestream": MediaStreamEvent;\n "signalingstatechange": Event;\n}\n\ninterface RTCPeerConnection extends EventTarget {\n readonly canTrickleIceCandidates: boolean | null;\n readonly iceConnectionState: RTCIceConnectionState;\n readonly iceGatheringState: RTCIceGatheringState;\n readonly localDescription: RTCSessionDescription | null;\n onaddstream: (this: RTCPeerConnection, ev: MediaStreamEvent) => any;\n onicecandidate: (this: RTCPeerConnection, ev: RTCPeerConnectionIceEvent) => any;\n oniceconnectionstatechange: (this: RTCPeerConnection, ev: Event) => any;\n onicegatheringstatechange: (this: RTCPeerConnection, ev: Event) => any;\n onnegotiationneeded: (this: RTCPeerConnection, ev: Event) => any;\n onremovestream: (this: RTCPeerConnection, ev: MediaStreamEvent) => any;\n onsignalingstatechange: (this: RTCPeerConnection, ev: Event) => any;\n readonly remoteDescription: RTCSessionDescription | null;\n readonly signalingState: RTCSignalingState;\n addIceCandidate(candidate: RTCIceCandidate, successCallback?: VoidFunction, failureCallback?: RTCPeerConnectionErrorCallback): Promise<void>;\n addStream(stream: MediaStream): void;\n close(): void;\n createAnswer(successCallback?: RTCSessionDescriptionCallback, failureCallback?: RTCPeerConnectionErrorCallback): Promise<RTCSessionDescription>;\n createOffer(successCallback?: RTCSessionDescriptionCallback, failureCallback?: RTCPeerConnectionErrorCallback, options?: RTCOfferOptions): Promise<RTCSessionDescription>;\n getConfiguration(): RTCConfiguration;\n getLocalStreams(): MediaStream[];\n getRemoteStreams(): MediaStream[];\n getStats(selector: MediaStreamTrack | null, successCallback?: RTCStatsCallback, failureCallback?: RTCPeerConnectionErrorCallback): Promise<RTCStatsReport>;\n getStreamById(streamId: string): MediaStream | null;\n removeStream(stream: MediaStream): void;\n setLocalDescription(description: RTCSessionDescription, successCallback?: VoidFunction, failureCallback?: RTCPeerConnectionErrorCallback): Promise<void>;\n setRemoteDescription(description: RTCSessionDescription, successCallback?: VoidFunction, failureCallback?: RTCPeerConnectionErrorCallback): Promise<void>;\n addEventListener<K extends keyof RTCPeerConnectionEventMap>(type: K, listener: (this: RTCPeerConnection, ev: RTCPeerConnectionEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCPeerConnection: {\n prototype: RTCPeerConnection;\n new(configuration: RTCConfiguration): RTCPeerConnection;\n};\n\ninterface RTCPeerConnectionIceEvent extends Event {\n readonly candidate: RTCIceCandidate;\n}\n\ndeclare var RTCPeerConnectionIceEvent: {\n prototype: RTCPeerConnectionIceEvent;\n new(type: string, eventInitDict: RTCPeerConnectionIceEventInit): RTCPeerConnectionIceEvent;\n};\n\ninterface RTCRtpReceiverEventMap {\n "error": Event;\n}\n\ninterface RTCRtpReceiver extends RTCStatsProvider {\n onerror: ((this: RTCRtpReceiver, ev: Event) => any) | null;\n readonly rtcpTransport: RTCDtlsTransport;\n readonly track: MediaStreamTrack | null;\n readonly transport: RTCDtlsTransport | RTCSrtpSdesTransport;\n getContributingSources(): RTCRtpContributingSource[];\n receive(parameters: RTCRtpParameters): void;\n requestSendCSRC(csrc: number): void;\n setTransport(transport: RTCDtlsTransport | RTCSrtpSdesTransport, rtcpTransport?: RTCDtlsTransport): void;\n stop(): void;\n addEventListener<K extends keyof RTCRtpReceiverEventMap>(type: K, listener: (this: RTCRtpReceiver, ev: RTCRtpReceiverEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCRtpReceiver: {\n prototype: RTCRtpReceiver;\n new(transport: RTCDtlsTransport | RTCSrtpSdesTransport, kind: string, rtcpTransport?: RTCDtlsTransport): RTCRtpReceiver;\n getCapabilities(kind?: string): RTCRtpCapabilities;\n};\n\ninterface RTCRtpSenderEventMap {\n "error": Event;\n "ssrcconflict": RTCSsrcConflictEvent;\n}\n\ninterface RTCRtpSender extends RTCStatsProvider {\n onerror: ((this: RTCRtpSender, ev: Event) => any) | null;\n onssrcconflict: ((this: RTCRtpSender, ev: RTCSsrcConflictEvent) => any) | null;\n readonly rtcpTransport: RTCDtlsTransport;\n readonly track: MediaStreamTrack;\n readonly transport: RTCDtlsTransport | RTCSrtpSdesTransport;\n send(parameters: RTCRtpParameters): void;\n setTrack(track: MediaStreamTrack): void;\n setTransport(transport: RTCDtlsTransport | RTCSrtpSdesTransport, rtcpTransport?: RTCDtlsTransport): void;\n stop(): void;\n addEventListener<K extends keyof RTCRtpSenderEventMap>(type: K, listener: (this: RTCRtpSender, ev: RTCRtpSenderEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCRtpSender: {\n prototype: RTCRtpSender;\n new(track: MediaStreamTrack, transport: RTCDtlsTransport | RTCSrtpSdesTransport, rtcpTransport?: RTCDtlsTransport): RTCRtpSender;\n getCapabilities(kind?: string): RTCRtpCapabilities;\n};\n\ninterface RTCSessionDescription {\n sdp: string | null;\n type: RTCSdpType | null;\n toJSON(): any;\n}\n\ndeclare var RTCSessionDescription: {\n prototype: RTCSessionDescription;\n new(descriptionInitDict?: RTCSessionDescriptionInit): RTCSessionDescription;\n};\n\ninterface RTCSrtpSdesTransportEventMap {\n "error": Event;\n}\n\ninterface RTCSrtpSdesTransport extends EventTarget {\n onerror: ((this: RTCSrtpSdesTransport, ev: Event) => any) | null;\n readonly transport: RTCIceTransport;\n addEventListener<K extends keyof RTCSrtpSdesTransportEventMap>(type: K, listener: (this: RTCSrtpSdesTransport, ev: RTCSrtpSdesTransportEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var RTCSrtpSdesTransport: {\n prototype: RTCSrtpSdesTransport;\n new(transport: RTCIceTransport, encryptParameters: RTCSrtpSdesParameters, decryptParameters: RTCSrtpSdesParameters): RTCSrtpSdesTransport;\n getLocalParameters(): RTCSrtpSdesParameters[];\n};\n\ninterface RTCSsrcConflictEvent extends Event {\n readonly ssrc: number;\n}\n\ndeclare var RTCSsrcConflictEvent: {\n prototype: RTCSsrcConflictEvent;\n new(): RTCSsrcConflictEvent;\n};\n\ninterface RTCStatsProvider extends EventTarget {\n getStats(): Promise<RTCStatsReport>;\n msGetStats(): Promise<RTCStatsReport>;\n}\n\ndeclare var RTCStatsProvider: {\n prototype: RTCStatsProvider;\n new(): RTCStatsProvider;\n};\n\ninterface ScopedCredential {\n readonly id: ArrayBuffer;\n readonly type: ScopedCredentialType;\n}\n\ndeclare var ScopedCredential: {\n prototype: ScopedCredential;\n new(): ScopedCredential;\n};\n\ninterface ScopedCredentialInfo {\n readonly credential: ScopedCredential;\n readonly publicKey: CryptoKey;\n}\n\ndeclare var ScopedCredentialInfo: {\n prototype: ScopedCredentialInfo;\n new(): ScopedCredentialInfo;\n};\n\ninterface ScreenEventMap {\n "MSOrientationChange": Event;\n}\n\ninterface Screen extends EventTarget {\n readonly availHeight: number;\n readonly availWidth: number;\n bufferDepth: number;\n readonly colorDepth: number;\n readonly deviceXDPI: number;\n readonly deviceYDPI: number;\n readonly fontSmoothingEnabled: boolean;\n readonly height: number;\n readonly logicalXDPI: number;\n readonly logicalYDPI: number;\n readonly msOrientation: string;\n onmsorientationchange: (this: Screen, ev: Event) => any;\n readonly pixelDepth: number;\n readonly systemXDPI: number;\n readonly systemYDPI: number;\n readonly width: number;\n msLockOrientation(orientations: string | string[]): boolean;\n msUnlockOrientation(): void;\n addEventListener<K extends keyof ScreenEventMap>(type: K, listener: (this: Screen, ev: ScreenEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Screen: {\n prototype: Screen;\n new(): Screen;\n};\n\ninterface ScriptNotifyEvent extends Event {\n readonly callingUri: string;\n readonly value: string;\n}\n\ndeclare var ScriptNotifyEvent: {\n prototype: ScriptNotifyEvent;\n new(): ScriptNotifyEvent;\n};\n\ninterface ScriptProcessorNodeEventMap {\n "audioprocess": AudioProcessingEvent;\n}\n\ninterface ScriptProcessorNode extends AudioNode {\n readonly bufferSize: number;\n onaudioprocess: (this: ScriptProcessorNode, ev: AudioProcessingEvent) => any;\n addEventListener<K extends keyof ScriptProcessorNodeEventMap>(type: K, listener: (this: ScriptProcessorNode, ev: ScriptProcessorNodeEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var ScriptProcessorNode: {\n prototype: ScriptProcessorNode;\n new(): ScriptProcessorNode;\n};\n\ninterface Selection {\n readonly anchorNode: Node;\n readonly anchorOffset: number;\n readonly baseNode: Node;\n readonly baseOffset: number;\n readonly extentNode: Node;\n readonly extentOffset: number;\n readonly focusNode: Node;\n readonly focusOffset: number;\n readonly isCollapsed: boolean;\n readonly rangeCount: number;\n readonly type: string;\n addRange(range: Range): void;\n collapse(parentNode: Node, offset: number): void;\n collapseToEnd(): void;\n collapseToStart(): void;\n containsNode(node: Node, partlyContained: boolean): boolean;\n deleteFromDocument(): void;\n empty(): void;\n extend(newNode: Node, offset: number): void;\n getRangeAt(index: number): Range;\n removeAllRanges(): void;\n removeRange(range: Range): void;\n selectAllChildren(parentNode: Node): void;\n setBaseAndExtent(baseNode: Node, baseOffset: number, extentNode: Node, extentOffset: number): void;\n setPosition(parentNode: Node, offset: number): void;\n toString(): string;\n}\n\ndeclare var Selection: {\n prototype: Selection;\n new(): Selection;\n};\n\ninterface ServiceWorkerEventMap extends AbstractWorkerEventMap {\n "statechange": Event;\n}\n\ninterface ServiceWorker extends EventTarget, AbstractWorker {\n onstatechange: (this: ServiceWorker, ev: Event) => any;\n readonly scriptURL: USVString;\n readonly state: ServiceWorkerState;\n postMessage(message: any, transfer?: any[]): void;\n addEventListener<K extends keyof ServiceWorkerEventMap>(type: K, listener: (this: ServiceWorker, ev: ServiceWorkerEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var ServiceWorker: {\n prototype: ServiceWorker;\n new(): ServiceWorker;\n};\n\ninterface ServiceWorkerContainerEventMap {\n "controllerchange": Event;\n "message": ServiceWorkerMessageEvent;\n}\n\ninterface ServiceWorkerContainer extends EventTarget {\n readonly controller: ServiceWorker | null;\n oncontrollerchange: (this: ServiceWorkerContainer, ev: Event) => any;\n onmessage: (this: ServiceWorkerContainer, ev: ServiceWorkerMessageEvent) => any;\n readonly ready: Promise<ServiceWorkerRegistration>;\n getRegistration(clientURL?: USVString): Promise<any>;\n getRegistrations(): any;\n register(scriptURL: USVString, options?: RegistrationOptions): Promise<ServiceWorkerRegistration>;\n addEventListener<K extends keyof ServiceWorkerContainerEventMap>(type: K, listener: (this: ServiceWorkerContainer, ev: ServiceWorkerContainerEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var ServiceWorkerContainer: {\n prototype: ServiceWorkerContainer;\n new(): ServiceWorkerContainer;\n};\n\ninterface ServiceWorkerMessageEvent extends Event {\n readonly data: any;\n readonly lastEventId: string;\n readonly origin: string;\n readonly ports: MessagePort[] | null;\n readonly source: ServiceWorker | MessagePort | null;\n}\n\ndeclare var ServiceWorkerMessageEvent: {\n prototype: ServiceWorkerMessageEvent;\n new(type: string, eventInitDict?: ServiceWorkerMessageEventInit): ServiceWorkerMessageEvent;\n};\n\ninterface ServiceWorkerRegistrationEventMap {\n "updatefound": Event;\n}\n\ninterface ServiceWorkerRegistration extends EventTarget {\n readonly active: ServiceWorker | null;\n readonly installing: ServiceWorker | null;\n onupdatefound: (this: ServiceWorkerRegistration, ev: Event) => any;\n readonly pushManager: PushManager;\n readonly scope: USVString;\n readonly sync: SyncManager;\n readonly waiting: ServiceWorker | null;\n getNotifications(filter?: GetNotificationOptions): any;\n showNotification(title: string, options?: NotificationOptions): Promise<void>;\n unregister(): Promise<boolean>;\n update(): Promise<void>;\n addEventListener<K extends keyof ServiceWorkerRegistrationEventMap>(type: K, listener: (this: ServiceWorkerRegistration, ev: ServiceWorkerRegistrationEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var ServiceWorkerRegistration: {\n prototype: ServiceWorkerRegistration;\n new(): ServiceWorkerRegistration;\n};\n\ninterface SourceBuffer extends EventTarget {\n appendWindowEnd: number;\n appendWindowStart: number;\n readonly audioTracks: AudioTrackList;\n readonly buffered: TimeRanges;\n mode: AppendMode;\n timestampOffset: number;\n readonly updating: boolean;\n readonly videoTracks: VideoTrackList;\n abort(): void;\n appendBuffer(data: ArrayBuffer | ArrayBufferView): void;\n appendStream(stream: MSStream, maxSize?: number): void;\n remove(start: number, end: number): void;\n}\n\ndeclare var SourceBuffer: {\n prototype: SourceBuffer;\n new(): SourceBuffer;\n};\n\ninterface SourceBufferList extends EventTarget {\n readonly length: number;\n item(index: number): SourceBuffer;\n [index: number]: SourceBuffer;\n}\n\ndeclare var SourceBufferList: {\n prototype: SourceBufferList;\n new(): SourceBufferList;\n};\n\ninterface SpeechSynthesisEventMap {\n "voiceschanged": Event;\n}\n\ninterface SpeechSynthesis extends EventTarget {\n onvoiceschanged: (this: SpeechSynthesis, ev: Event) => any;\n readonly paused: boolean;\n readonly pending: boolean;\n readonly speaking: boolean;\n cancel(): void;\n getVoices(): SpeechSynthesisVoice[];\n pause(): void;\n resume(): void;\n speak(utterance: SpeechSynthesisUtterance): void;\n addEventListener<K extends keyof SpeechSynthesisEventMap>(type: K, listener: (this: SpeechSynthesis, ev: SpeechSynthesisEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SpeechSynthesis: {\n prototype: SpeechSynthesis;\n new(): SpeechSynthesis;\n};\n\ninterface SpeechSynthesisEvent extends Event {\n readonly charIndex: number;\n readonly elapsedTime: number;\n readonly name: string;\n readonly utterance: SpeechSynthesisUtterance | null;\n}\n\ndeclare var SpeechSynthesisEvent: {\n prototype: SpeechSynthesisEvent;\n new(type: string, eventInitDict?: SpeechSynthesisEventInit): SpeechSynthesisEvent;\n};\n\ninterface SpeechSynthesisUtteranceEventMap {\n "boundary": Event;\n "end": Event;\n "error": Event;\n "mark": Event;\n "pause": Event;\n "resume": Event;\n "start": Event;\n}\n\ninterface SpeechSynthesisUtterance extends EventTarget {\n lang: string;\n onboundary: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onend: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onerror: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onmark: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onpause: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onresume: (this: SpeechSynthesisUtterance, ev: Event) => any;\n onstart: (this: SpeechSynthesisUtterance, ev: Event) => any;\n pitch: number;\n rate: number;\n text: string;\n voice: SpeechSynthesisVoice;\n volume: number;\n addEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(type: K, listener: (this: SpeechSynthesisUtterance, ev: SpeechSynthesisUtteranceEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SpeechSynthesisUtterance: {\n prototype: SpeechSynthesisUtterance;\n new(text?: string): SpeechSynthesisUtterance;\n};\n\ninterface SpeechSynthesisVoice {\n readonly default: boolean;\n readonly lang: string;\n readonly localService: boolean;\n readonly name: string;\n readonly voiceURI: string;\n}\n\ndeclare var SpeechSynthesisVoice: {\n prototype: SpeechSynthesisVoice;\n new(): SpeechSynthesisVoice;\n};\n\ninterface StereoPannerNode extends AudioNode {\n readonly pan: AudioParam;\n}\n\ndeclare var StereoPannerNode: {\n prototype: StereoPannerNode;\n new(): StereoPannerNode;\n};\n\ninterface Storage {\n readonly length: number;\n clear(): void;\n getItem(key: string): string | null;\n key(index: number): string | null;\n removeItem(key: string): void;\n setItem(key: string, data: string): void;\n [key: string]: any;\n [index: number]: string;\n}\n\ndeclare var Storage: {\n prototype: Storage;\n new(): Storage;\n};\n\ninterface StorageEvent extends Event {\n readonly url: string;\n key?: string;\n oldValue?: string;\n newValue?: string;\n storageArea?: Storage;\n}\n\ndeclare var StorageEvent: {\n prototype: StorageEvent;\n new (type: string, eventInitDict?: StorageEventInit): StorageEvent;\n};\n\ninterface StyleMedia {\n readonly type: string;\n matchMedium(mediaquery: string): boolean;\n}\n\ndeclare var StyleMedia: {\n prototype: StyleMedia;\n new(): StyleMedia;\n};\n\ninterface StyleSheet {\n disabled: boolean;\n readonly href: string;\n readonly media: MediaList;\n readonly ownerNode: Node;\n readonly parentStyleSheet: StyleSheet;\n readonly title: string;\n readonly type: string;\n}\n\ndeclare var StyleSheet: {\n prototype: StyleSheet;\n new(): StyleSheet;\n};\n\ninterface StyleSheetList {\n readonly length: number;\n item(index?: number): StyleSheet;\n [index: number]: StyleSheet;\n}\n\ndeclare var StyleSheetList: {\n prototype: StyleSheetList;\n new(): StyleSheetList;\n};\n\ninterface StyleSheetPageList {\n readonly length: number;\n item(index: number): CSSPageRule;\n [index: number]: CSSPageRule;\n}\n\ndeclare var StyleSheetPageList: {\n prototype: StyleSheetPageList;\n new(): StyleSheetPageList;\n};\n\ninterface SubtleCrypto {\n decrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: BufferSource): PromiseLike<ArrayBuffer>;\n deriveBits(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, length: number): PromiseLike<ArrayBuffer>;\n deriveKey(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: string | AesDerivedKeyParams | HmacImportParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n digest(algorithm: AlgorithmIdentifier, data: BufferSource): PromiseLike<ArrayBuffer>;\n encrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: BufferSource): PromiseLike<ArrayBuffer>;\n exportKey(format: "jwk", key: CryptoKey): PromiseLike<JsonWebKey>;\n exportKey(format: "raw" | "pkcs8" | "spki", key: CryptoKey): PromiseLike<ArrayBuffer>;\n exportKey(format: string, key: CryptoKey): PromiseLike<JsonWebKey | ArrayBuffer>;\n generateKey(algorithm: string, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKeyPair | CryptoKey>;\n generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams | DhKeyGenParams, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKeyPair>;\n generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n importKey(format: "jwk", keyData: JsonWebKey, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n importKey(format: "raw" | "pkcs8" | "spki", keyData: BufferSource, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n importKey(format: string, keyData: JsonWebKey | BufferSource, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n sign(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, data: BufferSource): PromiseLike<ArrayBuffer>;\n unwrapKey(format: string, wrappedKey: BufferSource, unwrappingKey: CryptoKey, unwrapAlgorithm: AlgorithmIdentifier, unwrappedKeyAlgorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;\n verify(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, signature: BufferSource, data: BufferSource): PromiseLike<boolean>;\n wrapKey(format: string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier): PromiseLike<ArrayBuffer>;\n}\n\ndeclare var SubtleCrypto: {\n prototype: SubtleCrypto;\n new(): SubtleCrypto;\n};\n\ninterface SVGAElement extends SVGGraphicsElement, SVGURIReference {\n readonly target: SVGAnimatedString;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGAElement: {\n prototype: SVGAElement;\n new(): SVGAElement;\n};\n\ninterface SVGAngle {\n readonly unitType: number;\n value: number;\n valueAsString: string;\n valueInSpecifiedUnits: number;\n convertToSpecifiedUnits(unitType: number): void;\n newValueSpecifiedUnits(unitType: number, valueInSpecifiedUnits: number): void;\n readonly SVG_ANGLETYPE_DEG: number;\n readonly SVG_ANGLETYPE_GRAD: number;\n readonly SVG_ANGLETYPE_RAD: number;\n readonly SVG_ANGLETYPE_UNKNOWN: number;\n readonly SVG_ANGLETYPE_UNSPECIFIED: number;\n}\n\ndeclare var SVGAngle: {\n prototype: SVGAngle;\n new(): SVGAngle;\n readonly SVG_ANGLETYPE_DEG: number;\n readonly SVG_ANGLETYPE_GRAD: number;\n readonly SVG_ANGLETYPE_RAD: number;\n readonly SVG_ANGLETYPE_UNKNOWN: number;\n readonly SVG_ANGLETYPE_UNSPECIFIED: number;\n};\n\ninterface SVGAnimatedAngle {\n readonly animVal: SVGAngle;\n readonly baseVal: SVGAngle;\n}\n\ndeclare var SVGAnimatedAngle: {\n prototype: SVGAnimatedAngle;\n new(): SVGAnimatedAngle;\n};\n\ninterface SVGAnimatedBoolean {\n readonly animVal: boolean;\n baseVal: boolean;\n}\n\ndeclare var SVGAnimatedBoolean: {\n prototype: SVGAnimatedBoolean;\n new(): SVGAnimatedBoolean;\n};\n\ninterface SVGAnimatedEnumeration {\n readonly animVal: number;\n baseVal: number;\n}\n\ndeclare var SVGAnimatedEnumeration: {\n prototype: SVGAnimatedEnumeration;\n new(): SVGAnimatedEnumeration;\n};\n\ninterface SVGAnimatedInteger {\n readonly animVal: number;\n baseVal: number;\n}\n\ndeclare var SVGAnimatedInteger: {\n prototype: SVGAnimatedInteger;\n new(): SVGAnimatedInteger;\n};\n\ninterface SVGAnimatedLength {\n readonly animVal: SVGLength;\n readonly baseVal: SVGLength;\n}\n\ndeclare var SVGAnimatedLength: {\n prototype: SVGAnimatedLength;\n new(): SVGAnimatedLength;\n};\n\ninterface SVGAnimatedLengthList {\n readonly animVal: SVGLengthList;\n readonly baseVal: SVGLengthList;\n}\n\ndeclare var SVGAnimatedLengthList: {\n prototype: SVGAnimatedLengthList;\n new(): SVGAnimatedLengthList;\n};\n\ninterface SVGAnimatedNumber {\n readonly animVal: number;\n baseVal: number;\n}\n\ndeclare var SVGAnimatedNumber: {\n prototype: SVGAnimatedNumber;\n new(): SVGAnimatedNumber;\n};\n\ninterface SVGAnimatedNumberList {\n readonly animVal: SVGNumberList;\n readonly baseVal: SVGNumberList;\n}\n\ndeclare var SVGAnimatedNumberList: {\n prototype: SVGAnimatedNumberList;\n new(): SVGAnimatedNumberList;\n};\n\ninterface SVGAnimatedPreserveAspectRatio {\n readonly animVal: SVGPreserveAspectRatio;\n readonly baseVal: SVGPreserveAspectRatio;\n}\n\ndeclare var SVGAnimatedPreserveAspectRatio: {\n prototype: SVGAnimatedPreserveAspectRatio;\n new(): SVGAnimatedPreserveAspectRatio;\n};\n\ninterface SVGAnimatedRect {\n readonly animVal: SVGRect;\n readonly baseVal: SVGRect;\n}\n\ndeclare var SVGAnimatedRect: {\n prototype: SVGAnimatedRect;\n new(): SVGAnimatedRect;\n};\n\ninterface SVGAnimatedString {\n readonly animVal: string;\n baseVal: string;\n}\n\ndeclare var SVGAnimatedString: {\n prototype: SVGAnimatedString;\n new(): SVGAnimatedString;\n};\n\ninterface SVGAnimatedTransformList {\n readonly animVal: SVGTransformList;\n readonly baseVal: SVGTransformList;\n}\n\ndeclare var SVGAnimatedTransformList: {\n prototype: SVGAnimatedTransformList;\n new(): SVGAnimatedTransformList;\n};\n\ninterface SVGCircleElement extends SVGGraphicsElement {\n readonly cx: SVGAnimatedLength;\n readonly cy: SVGAnimatedLength;\n readonly r: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGCircleElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGCircleElement: {\n prototype: SVGCircleElement;\n new(): SVGCircleElement;\n};\n\ninterface SVGClipPathElement extends SVGGraphicsElement, SVGUnitTypes {\n readonly clipPathUnits: SVGAnimatedEnumeration;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGClipPathElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGClipPathElement: {\n prototype: SVGClipPathElement;\n new(): SVGClipPathElement;\n};\n\ninterface SVGComponentTransferFunctionElement extends SVGElement {\n readonly amplitude: SVGAnimatedNumber;\n readonly exponent: SVGAnimatedNumber;\n readonly intercept: SVGAnimatedNumber;\n readonly offset: SVGAnimatedNumber;\n readonly slope: SVGAnimatedNumber;\n readonly tableValues: SVGAnimatedNumberList;\n readonly type: SVGAnimatedEnumeration;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_GAMMA: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_LINEAR: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_TABLE: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGComponentTransferFunctionElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGComponentTransferFunctionElement: {\n prototype: SVGComponentTransferFunctionElement;\n new(): SVGComponentTransferFunctionElement;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_GAMMA: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_LINEAR: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_TABLE: number;\n readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: number;\n};\n\ninterface SVGDefsElement extends SVGGraphicsElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGDefsElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGDefsElement: {\n prototype: SVGDefsElement;\n new(): SVGDefsElement;\n};\n\ninterface SVGDescElement extends SVGElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGDescElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGDescElement: {\n prototype: SVGDescElement;\n new(): SVGDescElement;\n};\n\ninterface SVGElementEventMap extends ElementEventMap {\n "click": MouseEvent;\n "dblclick": MouseEvent;\n "focusin": FocusEvent;\n "focusout": FocusEvent;\n "load": Event;\n "mousedown": MouseEvent;\n "mousemove": MouseEvent;\n "mouseout": MouseEvent;\n "mouseover": MouseEvent;\n "mouseup": MouseEvent;\n}\n\ninterface SVGElement extends Element {\n className: any;\n onclick: (this: SVGElement, ev: MouseEvent) => any;\n ondblclick: (this: SVGElement, ev: MouseEvent) => any;\n onfocusin: (this: SVGElement, ev: FocusEvent) => any;\n onfocusout: (this: SVGElement, ev: FocusEvent) => any;\n onload: (this: SVGElement, ev: Event) => any;\n onmousedown: (this: SVGElement, ev: MouseEvent) => any;\n onmousemove: (this: SVGElement, ev: MouseEvent) => any;\n onmouseout: (this: SVGElement, ev: MouseEvent) => any;\n onmouseover: (this: SVGElement, ev: MouseEvent) => any;\n onmouseup: (this: SVGElement, ev: MouseEvent) => any;\n readonly ownerSVGElement: SVGSVGElement;\n readonly style: CSSStyleDeclaration;\n readonly viewportElement: SVGElement;\n xmlbase: string;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGElement: {\n prototype: SVGElement;\n new(): SVGElement;\n};\n\ninterface SVGElementInstance extends EventTarget {\n readonly childNodes: SVGElementInstanceList;\n readonly correspondingElement: SVGElement;\n readonly correspondingUseElement: SVGUseElement;\n readonly firstChild: SVGElementInstance;\n readonly lastChild: SVGElementInstance;\n readonly nextSibling: SVGElementInstance;\n readonly parentNode: SVGElementInstance;\n readonly previousSibling: SVGElementInstance;\n}\n\ndeclare var SVGElementInstance: {\n prototype: SVGElementInstance;\n new(): SVGElementInstance;\n};\n\ninterface SVGElementInstanceList {\n readonly length: number;\n item(index: number): SVGElementInstance;\n}\n\ndeclare var SVGElementInstanceList: {\n prototype: SVGElementInstanceList;\n new(): SVGElementInstanceList;\n};\n\ninterface SVGEllipseElement extends SVGGraphicsElement {\n readonly cx: SVGAnimatedLength;\n readonly cy: SVGAnimatedLength;\n readonly rx: SVGAnimatedLength;\n readonly ry: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGEllipseElement: {\n prototype: SVGEllipseElement;\n new(): SVGEllipseElement;\n};\n\ninterface SVGFEBlendElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly in2: SVGAnimatedString;\n readonly mode: SVGAnimatedEnumeration;\n readonly SVG_FEBLEND_MODE_COLOR: number;\n readonly SVG_FEBLEND_MODE_COLOR_BURN: number;\n readonly SVG_FEBLEND_MODE_COLOR_DODGE: number;\n readonly SVG_FEBLEND_MODE_DARKEN: number;\n readonly SVG_FEBLEND_MODE_DIFFERENCE: number;\n readonly SVG_FEBLEND_MODE_EXCLUSION: number;\n readonly SVG_FEBLEND_MODE_HARD_LIGHT: number;\n readonly SVG_FEBLEND_MODE_HUE: number;\n readonly SVG_FEBLEND_MODE_LIGHTEN: number;\n readonly SVG_FEBLEND_MODE_LUMINOSITY: number;\n readonly SVG_FEBLEND_MODE_MULTIPLY: number;\n readonly SVG_FEBLEND_MODE_NORMAL: number;\n readonly SVG_FEBLEND_MODE_OVERLAY: number;\n readonly SVG_FEBLEND_MODE_SATURATION: number;\n readonly SVG_FEBLEND_MODE_SCREEN: number;\n readonly SVG_FEBLEND_MODE_SOFT_LIGHT: number;\n readonly SVG_FEBLEND_MODE_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEBlendElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEBlendElement: {\n prototype: SVGFEBlendElement;\n new(): SVGFEBlendElement;\n readonly SVG_FEBLEND_MODE_COLOR: number;\n readonly SVG_FEBLEND_MODE_COLOR_BURN: number;\n readonly SVG_FEBLEND_MODE_COLOR_DODGE: number;\n readonly SVG_FEBLEND_MODE_DARKEN: number;\n readonly SVG_FEBLEND_MODE_DIFFERENCE: number;\n readonly SVG_FEBLEND_MODE_EXCLUSION: number;\n readonly SVG_FEBLEND_MODE_HARD_LIGHT: number;\n readonly SVG_FEBLEND_MODE_HUE: number;\n readonly SVG_FEBLEND_MODE_LIGHTEN: number;\n readonly SVG_FEBLEND_MODE_LUMINOSITY: number;\n readonly SVG_FEBLEND_MODE_MULTIPLY: number;\n readonly SVG_FEBLEND_MODE_NORMAL: number;\n readonly SVG_FEBLEND_MODE_OVERLAY: number;\n readonly SVG_FEBLEND_MODE_SATURATION: number;\n readonly SVG_FEBLEND_MODE_SCREEN: number;\n readonly SVG_FEBLEND_MODE_SOFT_LIGHT: number;\n readonly SVG_FEBLEND_MODE_UNKNOWN: number;\n};\n\ninterface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly type: SVGAnimatedEnumeration;\n readonly values: SVGAnimatedNumberList;\n readonly SVG_FECOLORMATRIX_TYPE_HUEROTATE: number;\n readonly SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA: number;\n readonly SVG_FECOLORMATRIX_TYPE_MATRIX: number;\n readonly SVG_FECOLORMATRIX_TYPE_SATURATE: number;\n readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEColorMatrixElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEColorMatrixElement: {\n prototype: SVGFEColorMatrixElement;\n new(): SVGFEColorMatrixElement;\n readonly SVG_FECOLORMATRIX_TYPE_HUEROTATE: number;\n readonly SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA: number;\n readonly SVG_FECOLORMATRIX_TYPE_MATRIX: number;\n readonly SVG_FECOLORMATRIX_TYPE_SATURATE: number;\n readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: number;\n};\n\ninterface SVGFEComponentTransferElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEComponentTransferElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEComponentTransferElement: {\n prototype: SVGFEComponentTransferElement;\n new(): SVGFEComponentTransferElement;\n};\n\ninterface SVGFECompositeElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly in2: SVGAnimatedString;\n readonly k1: SVGAnimatedNumber;\n readonly k2: SVGAnimatedNumber;\n readonly k3: SVGAnimatedNumber;\n readonly k4: SVGAnimatedNumber;\n readonly operator: SVGAnimatedEnumeration;\n readonly SVG_FECOMPOSITE_OPERATOR_ARITHMETIC: number;\n readonly SVG_FECOMPOSITE_OPERATOR_ATOP: number;\n readonly SVG_FECOMPOSITE_OPERATOR_IN: number;\n readonly SVG_FECOMPOSITE_OPERATOR_OUT: number;\n readonly SVG_FECOMPOSITE_OPERATOR_OVER: number;\n readonly SVG_FECOMPOSITE_OPERATOR_UNKNOWN: number;\n readonly SVG_FECOMPOSITE_OPERATOR_XOR: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFECompositeElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFECompositeElement: {\n prototype: SVGFECompositeElement;\n new(): SVGFECompositeElement;\n readonly SVG_FECOMPOSITE_OPERATOR_ARITHMETIC: number;\n readonly SVG_FECOMPOSITE_OPERATOR_ATOP: number;\n readonly SVG_FECOMPOSITE_OPERATOR_IN: number;\n readonly SVG_FECOMPOSITE_OPERATOR_OUT: number;\n readonly SVG_FECOMPOSITE_OPERATOR_OVER: number;\n readonly SVG_FECOMPOSITE_OPERATOR_UNKNOWN: number;\n readonly SVG_FECOMPOSITE_OPERATOR_XOR: number;\n};\n\ninterface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly bias: SVGAnimatedNumber;\n readonly divisor: SVGAnimatedNumber;\n readonly edgeMode: SVGAnimatedEnumeration;\n readonly in1: SVGAnimatedString;\n readonly kernelMatrix: SVGAnimatedNumberList;\n readonly kernelUnitLengthX: SVGAnimatedNumber;\n readonly kernelUnitLengthY: SVGAnimatedNumber;\n readonly orderX: SVGAnimatedInteger;\n readonly orderY: SVGAnimatedInteger;\n readonly preserveAlpha: SVGAnimatedBoolean;\n readonly targetX: SVGAnimatedInteger;\n readonly targetY: SVGAnimatedInteger;\n readonly SVG_EDGEMODE_DUPLICATE: number;\n readonly SVG_EDGEMODE_NONE: number;\n readonly SVG_EDGEMODE_UNKNOWN: number;\n readonly SVG_EDGEMODE_WRAP: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEConvolveMatrixElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEConvolveMatrixElement: {\n prototype: SVGFEConvolveMatrixElement;\n new(): SVGFEConvolveMatrixElement;\n readonly SVG_EDGEMODE_DUPLICATE: number;\n readonly SVG_EDGEMODE_NONE: number;\n readonly SVG_EDGEMODE_UNKNOWN: number;\n readonly SVG_EDGEMODE_WRAP: number;\n};\n\ninterface SVGFEDiffuseLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly diffuseConstant: SVGAnimatedNumber;\n readonly in1: SVGAnimatedString;\n readonly kernelUnitLengthX: SVGAnimatedNumber;\n readonly kernelUnitLengthY: SVGAnimatedNumber;\n readonly surfaceScale: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDiffuseLightingElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEDiffuseLightingElement: {\n prototype: SVGFEDiffuseLightingElement;\n new(): SVGFEDiffuseLightingElement;\n};\n\ninterface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly in2: SVGAnimatedString;\n readonly scale: SVGAnimatedNumber;\n readonly xChannelSelector: SVGAnimatedEnumeration;\n readonly yChannelSelector: SVGAnimatedEnumeration;\n readonly SVG_CHANNEL_A: number;\n readonly SVG_CHANNEL_B: number;\n readonly SVG_CHANNEL_G: number;\n readonly SVG_CHANNEL_R: number;\n readonly SVG_CHANNEL_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDisplacementMapElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEDisplacementMapElement: {\n prototype: SVGFEDisplacementMapElement;\n new(): SVGFEDisplacementMapElement;\n readonly SVG_CHANNEL_A: number;\n readonly SVG_CHANNEL_B: number;\n readonly SVG_CHANNEL_G: number;\n readonly SVG_CHANNEL_R: number;\n readonly SVG_CHANNEL_UNKNOWN: number;\n};\n\ninterface SVGFEDistantLightElement extends SVGElement {\n readonly azimuth: SVGAnimatedNumber;\n readonly elevation: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDistantLightElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEDistantLightElement: {\n prototype: SVGFEDistantLightElement;\n new(): SVGFEDistantLightElement;\n};\n\ninterface SVGFEFloodElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFloodElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEFloodElement: {\n prototype: SVGFEFloodElement;\n new(): SVGFEFloodElement;\n};\n\ninterface SVGFEFuncAElement extends SVGComponentTransferFunctionElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncAElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEFuncAElement: {\n prototype: SVGFEFuncAElement;\n new(): SVGFEFuncAElement;\n};\n\ninterface SVGFEFuncBElement extends SVGComponentTransferFunctionElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncBElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEFuncBElement: {\n prototype: SVGFEFuncBElement;\n new(): SVGFEFuncBElement;\n};\n\ninterface SVGFEFuncGElement extends SVGComponentTransferFunctionElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncGElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEFuncGElement: {\n prototype: SVGFEFuncGElement;\n new(): SVGFEFuncGElement;\n};\n\ninterface SVGFEFuncRElement extends SVGComponentTransferFunctionElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFuncRElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEFuncRElement: {\n prototype: SVGFEFuncRElement;\n new(): SVGFEFuncRElement;\n};\n\ninterface SVGFEGaussianBlurElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly stdDeviationX: SVGAnimatedNumber;\n readonly stdDeviationY: SVGAnimatedNumber;\n setStdDeviation(stdDeviationX: number, stdDeviationY: number): void;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEGaussianBlurElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEGaussianBlurElement: {\n prototype: SVGFEGaussianBlurElement;\n new(): SVGFEGaussianBlurElement;\n};\n\ninterface SVGFEImageElement extends SVGElement, SVGFilterPrimitiveStandardAttributes, SVGURIReference {\n readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEImageElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEImageElement: {\n prototype: SVGFEImageElement;\n new(): SVGFEImageElement;\n};\n\ninterface SVGFEMergeElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMergeElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEMergeElement: {\n prototype: SVGFEMergeElement;\n new(): SVGFEMergeElement;\n};\n\ninterface SVGFEMergeNodeElement extends SVGElement {\n readonly in1: SVGAnimatedString;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMergeNodeElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEMergeNodeElement: {\n prototype: SVGFEMergeNodeElement;\n new(): SVGFEMergeNodeElement;\n};\n\ninterface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly operator: SVGAnimatedEnumeration;\n readonly radiusX: SVGAnimatedNumber;\n readonly radiusY: SVGAnimatedNumber;\n readonly SVG_MORPHOLOGY_OPERATOR_DILATE: number;\n readonly SVG_MORPHOLOGY_OPERATOR_ERODE: number;\n readonly SVG_MORPHOLOGY_OPERATOR_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMorphologyElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEMorphologyElement: {\n prototype: SVGFEMorphologyElement;\n new(): SVGFEMorphologyElement;\n readonly SVG_MORPHOLOGY_OPERATOR_DILATE: number;\n readonly SVG_MORPHOLOGY_OPERATOR_ERODE: number;\n readonly SVG_MORPHOLOGY_OPERATOR_UNKNOWN: number;\n};\n\ninterface SVGFEOffsetElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly dx: SVGAnimatedNumber;\n readonly dy: SVGAnimatedNumber;\n readonly in1: SVGAnimatedString;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEOffsetElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEOffsetElement: {\n prototype: SVGFEOffsetElement;\n new(): SVGFEOffsetElement;\n};\n\ninterface SVGFEPointLightElement extends SVGElement {\n readonly x: SVGAnimatedNumber;\n readonly y: SVGAnimatedNumber;\n readonly z: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEPointLightElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFEPointLightElement: {\n prototype: SVGFEPointLightElement;\n new(): SVGFEPointLightElement;\n};\n\ninterface SVGFESpecularLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n readonly kernelUnitLengthX: SVGAnimatedNumber;\n readonly kernelUnitLengthY: SVGAnimatedNumber;\n readonly specularConstant: SVGAnimatedNumber;\n readonly specularExponent: SVGAnimatedNumber;\n readonly surfaceScale: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpecularLightingElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFESpecularLightingElement: {\n prototype: SVGFESpecularLightingElement;\n new(): SVGFESpecularLightingElement;\n};\n\ninterface SVGFESpotLightElement extends SVGElement {\n readonly limitingConeAngle: SVGAnimatedNumber;\n readonly pointsAtX: SVGAnimatedNumber;\n readonly pointsAtY: SVGAnimatedNumber;\n readonly pointsAtZ: SVGAnimatedNumber;\n readonly specularExponent: SVGAnimatedNumber;\n readonly x: SVGAnimatedNumber;\n readonly y: SVGAnimatedNumber;\n readonly z: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpotLightElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFESpotLightElement: {\n prototype: SVGFESpotLightElement;\n new(): SVGFESpotLightElement;\n};\n\ninterface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly in1: SVGAnimatedString;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFETileElement: {\n prototype: SVGFETileElement;\n new(): SVGFETileElement;\n};\n\ninterface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {\n readonly baseFrequencyX: SVGAnimatedNumber;\n readonly baseFrequencyY: SVGAnimatedNumber;\n readonly numOctaves: SVGAnimatedInteger;\n readonly seed: SVGAnimatedNumber;\n readonly stitchTiles: SVGAnimatedEnumeration;\n readonly type: SVGAnimatedEnumeration;\n readonly SVG_STITCHTYPE_NOSTITCH: number;\n readonly SVG_STITCHTYPE_STITCH: number;\n readonly SVG_STITCHTYPE_UNKNOWN: number;\n readonly SVG_TURBULENCE_TYPE_FRACTALNOISE: number;\n readonly SVG_TURBULENCE_TYPE_TURBULENCE: number;\n readonly SVG_TURBULENCE_TYPE_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETurbulenceElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFETurbulenceElement: {\n prototype: SVGFETurbulenceElement;\n new(): SVGFETurbulenceElement;\n readonly SVG_STITCHTYPE_NOSTITCH: number;\n readonly SVG_STITCHTYPE_STITCH: number;\n readonly SVG_STITCHTYPE_UNKNOWN: number;\n readonly SVG_TURBULENCE_TYPE_FRACTALNOISE: number;\n readonly SVG_TURBULENCE_TYPE_TURBULENCE: number;\n readonly SVG_TURBULENCE_TYPE_UNKNOWN: number;\n};\n\ninterface SVGFilterElement extends SVGElement, SVGUnitTypes, SVGURIReference {\n readonly filterResX: SVGAnimatedInteger;\n readonly filterResY: SVGAnimatedInteger;\n readonly filterUnits: SVGAnimatedEnumeration;\n readonly height: SVGAnimatedLength;\n readonly primitiveUnits: SVGAnimatedEnumeration;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n setFilterRes(filterResX: number, filterResY: number): void;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFilterElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGFilterElement: {\n prototype: SVGFilterElement;\n new(): SVGFilterElement;\n};\n\ninterface SVGForeignObjectElement extends SVGGraphicsElement {\n readonly height: SVGAnimatedLength;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGForeignObjectElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGForeignObjectElement: {\n prototype: SVGForeignObjectElement;\n new(): SVGForeignObjectElement;\n};\n\ninterface SVGGElement extends SVGGraphicsElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGGElement: {\n prototype: SVGGElement;\n new(): SVGGElement;\n};\n\ninterface SVGGradientElement extends SVGElement, SVGUnitTypes, SVGURIReference {\n readonly gradientTransform: SVGAnimatedTransformList;\n readonly gradientUnits: SVGAnimatedEnumeration;\n readonly spreadMethod: SVGAnimatedEnumeration;\n readonly SVG_SPREADMETHOD_PAD: number;\n readonly SVG_SPREADMETHOD_REFLECT: number;\n readonly SVG_SPREADMETHOD_REPEAT: number;\n readonly SVG_SPREADMETHOD_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGradientElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGGradientElement: {\n prototype: SVGGradientElement;\n new(): SVGGradientElement;\n readonly SVG_SPREADMETHOD_PAD: number;\n readonly SVG_SPREADMETHOD_REFLECT: number;\n readonly SVG_SPREADMETHOD_REPEAT: number;\n readonly SVG_SPREADMETHOD_UNKNOWN: number;\n};\n\ninterface SVGGraphicsElement extends SVGElement, SVGTests {\n readonly farthestViewportElement: SVGElement;\n readonly nearestViewportElement: SVGElement;\n readonly transform: SVGAnimatedTransformList;\n getBBox(): SVGRect;\n getCTM(): SVGMatrix;\n getScreenCTM(): SVGMatrix;\n getTransformToElement(element: SVGElement): SVGMatrix;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGGraphicsElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGGraphicsElement: {\n prototype: SVGGraphicsElement;\n new(): SVGGraphicsElement;\n};\n\ninterface SVGImageElement extends SVGGraphicsElement, SVGURIReference {\n readonly height: SVGAnimatedLength;\n readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGImageElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGImageElement: {\n prototype: SVGImageElement;\n new(): SVGImageElement;\n};\n\ninterface SVGLength {\n readonly unitType: number;\n value: number;\n valueAsString: string;\n valueInSpecifiedUnits: number;\n convertToSpecifiedUnits(unitType: number): void;\n newValueSpecifiedUnits(unitType: number, valueInSpecifiedUnits: number): void;\n readonly SVG_LENGTHTYPE_CM: number;\n readonly SVG_LENGTHTYPE_EMS: number;\n readonly SVG_LENGTHTYPE_EXS: number;\n readonly SVG_LENGTHTYPE_IN: number;\n readonly SVG_LENGTHTYPE_MM: number;\n readonly SVG_LENGTHTYPE_NUMBER: number;\n readonly SVG_LENGTHTYPE_PC: number;\n readonly SVG_LENGTHTYPE_PERCENTAGE: number;\n readonly SVG_LENGTHTYPE_PT: number;\n readonly SVG_LENGTHTYPE_PX: number;\n readonly SVG_LENGTHTYPE_UNKNOWN: number;\n}\n\ndeclare var SVGLength: {\n prototype: SVGLength;\n new(): SVGLength;\n readonly SVG_LENGTHTYPE_CM: number;\n readonly SVG_LENGTHTYPE_EMS: number;\n readonly SVG_LENGTHTYPE_EXS: number;\n readonly SVG_LENGTHTYPE_IN: number;\n readonly SVG_LENGTHTYPE_MM: number;\n readonly SVG_LENGTHTYPE_NUMBER: number;\n readonly SVG_LENGTHTYPE_PC: number;\n readonly SVG_LENGTHTYPE_PERCENTAGE: number;\n readonly SVG_LENGTHTYPE_PT: number;\n readonly SVG_LENGTHTYPE_PX: number;\n readonly SVG_LENGTHTYPE_UNKNOWN: number;\n};\n\ninterface SVGLengthList {\n readonly numberOfItems: number;\n appendItem(newItem: SVGLength): SVGLength;\n clear(): void;\n getItem(index: number): SVGLength;\n initialize(newItem: SVGLength): SVGLength;\n insertItemBefore(newItem: SVGLength, index: number): SVGLength;\n removeItem(index: number): SVGLength;\n replaceItem(newItem: SVGLength, index: number): SVGLength;\n}\n\ndeclare var SVGLengthList: {\n prototype: SVGLengthList;\n new(): SVGLengthList;\n};\n\ninterface SVGLinearGradientElement extends SVGGradientElement {\n readonly x1: SVGAnimatedLength;\n readonly x2: SVGAnimatedLength;\n readonly y1: SVGAnimatedLength;\n readonly y2: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLinearGradientElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGLinearGradientElement: {\n prototype: SVGLinearGradientElement;\n new(): SVGLinearGradientElement;\n};\n\ninterface SVGLineElement extends SVGGraphicsElement {\n readonly x1: SVGAnimatedLength;\n readonly x2: SVGAnimatedLength;\n readonly y1: SVGAnimatedLength;\n readonly y2: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLineElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGLineElement: {\n prototype: SVGLineElement;\n new(): SVGLineElement;\n};\n\ninterface SVGMarkerElement extends SVGElement, SVGFitToViewBox {\n readonly markerHeight: SVGAnimatedLength;\n readonly markerUnits: SVGAnimatedEnumeration;\n readonly markerWidth: SVGAnimatedLength;\n readonly orientAngle: SVGAnimatedAngle;\n readonly orientType: SVGAnimatedEnumeration;\n readonly refX: SVGAnimatedLength;\n readonly refY: SVGAnimatedLength;\n setOrientToAngle(angle: SVGAngle): void;\n setOrientToAuto(): void;\n readonly SVG_MARKER_ORIENT_ANGLE: number;\n readonly SVG_MARKER_ORIENT_AUTO: number;\n readonly SVG_MARKER_ORIENT_UNKNOWN: number;\n readonly SVG_MARKERUNITS_STROKEWIDTH: number;\n readonly SVG_MARKERUNITS_UNKNOWN: number;\n readonly SVG_MARKERUNITS_USERSPACEONUSE: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMarkerElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGMarkerElement: {\n prototype: SVGMarkerElement;\n new(): SVGMarkerElement;\n readonly SVG_MARKER_ORIENT_ANGLE: number;\n readonly SVG_MARKER_ORIENT_AUTO: number;\n readonly SVG_MARKER_ORIENT_UNKNOWN: number;\n readonly SVG_MARKERUNITS_STROKEWIDTH: number;\n readonly SVG_MARKERUNITS_UNKNOWN: number;\n readonly SVG_MARKERUNITS_USERSPACEONUSE: number;\n};\n\ninterface SVGMaskElement extends SVGElement, SVGTests, SVGUnitTypes {\n readonly height: SVGAnimatedLength;\n readonly maskContentUnits: SVGAnimatedEnumeration;\n readonly maskUnits: SVGAnimatedEnumeration;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMaskElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGMaskElement: {\n prototype: SVGMaskElement;\n new(): SVGMaskElement;\n};\n\ninterface SVGMatrix {\n a: number;\n b: number;\n c: number;\n d: number;\n e: number;\n f: number;\n flipX(): SVGMatrix;\n flipY(): SVGMatrix;\n inverse(): SVGMatrix;\n multiply(secondMatrix: SVGMatrix): SVGMatrix;\n rotate(angle: number): SVGMatrix;\n rotateFromVector(x: number, y: number): SVGMatrix;\n scale(scaleFactor: number): SVGMatrix;\n scaleNonUniform(scaleFactorX: number, scaleFactorY: number): SVGMatrix;\n skewX(angle: number): SVGMatrix;\n skewY(angle: number): SVGMatrix;\n translate(x: number, y: number): SVGMatrix;\n}\n\ndeclare var SVGMatrix: {\n prototype: SVGMatrix;\n new(): SVGMatrix;\n};\n\ninterface SVGMetadataElement extends SVGElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMetadataElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGMetadataElement: {\n prototype: SVGMetadataElement;\n new(): SVGMetadataElement;\n};\n\ninterface SVGNumber {\n value: number;\n}\n\ndeclare var SVGNumber: {\n prototype: SVGNumber;\n new(): SVGNumber;\n};\n\ninterface SVGNumberList {\n readonly numberOfItems: number;\n appendItem(newItem: SVGNumber): SVGNumber;\n clear(): void;\n getItem(index: number): SVGNumber;\n initialize(newItem: SVGNumber): SVGNumber;\n insertItemBefore(newItem: SVGNumber, index: number): SVGNumber;\n removeItem(index: number): SVGNumber;\n replaceItem(newItem: SVGNumber, index: number): SVGNumber;\n}\n\ndeclare var SVGNumberList: {\n prototype: SVGNumberList;\n new(): SVGNumberList;\n};\n\ninterface SVGPathElement extends SVGGraphicsElement {\n readonly pathSegList: SVGPathSegList;\n createSVGPathSegArcAbs(x: number, y: number, r1: number, r2: number, angle: number, largeArcFlag: boolean, sweepFlag: boolean): SVGPathSegArcAbs;\n createSVGPathSegArcRel(x: number, y: number, r1: number, r2: number, angle: number, largeArcFlag: boolean, sweepFlag: boolean): SVGPathSegArcRel;\n createSVGPathSegClosePath(): SVGPathSegClosePath;\n createSVGPathSegCurvetoCubicAbs(x: number, y: number, x1: number, y1: number, x2: number, y2: number): SVGPathSegCurvetoCubicAbs;\n createSVGPathSegCurvetoCubicRel(x: number, y: number, x1: number, y1: number, x2: number, y2: number): SVGPathSegCurvetoCubicRel;\n createSVGPathSegCurvetoCubicSmoothAbs(x: number, y: number, x2: number, y2: number): SVGPathSegCurvetoCubicSmoothAbs;\n createSVGPathSegCurvetoCubicSmoothRel(x: number, y: number, x2: number, y2: number): SVGPathSegCurvetoCubicSmoothRel;\n createSVGPathSegCurvetoQuadraticAbs(x: number, y: number, x1: number, y1: number): SVGPathSegCurvetoQuadraticAbs;\n createSVGPathSegCurvetoQuadraticRel(x: number, y: number, x1: number, y1: number): SVGPathSegCurvetoQuadraticRel;\n createSVGPathSegCurvetoQuadraticSmoothAbs(x: number, y: number): SVGPathSegCurvetoQuadraticSmoothAbs;\n createSVGPathSegCurvetoQuadraticSmoothRel(x: number, y: number): SVGPathSegCurvetoQuadraticSmoothRel;\n createSVGPathSegLinetoAbs(x: number, y: number): SVGPathSegLinetoAbs;\n createSVGPathSegLinetoHorizontalAbs(x: number): SVGPathSegLinetoHorizontalAbs;\n createSVGPathSegLinetoHorizontalRel(x: number): SVGPathSegLinetoHorizontalRel;\n createSVGPathSegLinetoRel(x: number, y: number): SVGPathSegLinetoRel;\n createSVGPathSegLinetoVerticalAbs(y: number): SVGPathSegLinetoVerticalAbs;\n createSVGPathSegLinetoVerticalRel(y: number): SVGPathSegLinetoVerticalRel;\n createSVGPathSegMovetoAbs(x: number, y: number): SVGPathSegMovetoAbs;\n createSVGPathSegMovetoRel(x: number, y: number): SVGPathSegMovetoRel;\n getPathSegAtLength(distance: number): number;\n getPointAtLength(distance: number): SVGPoint;\n getTotalLength(): number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPathElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGPathElement: {\n prototype: SVGPathElement;\n new(): SVGPathElement;\n};\n\ninterface SVGPathSeg {\n readonly pathSegType: number;\n readonly pathSegTypeAsLetter: string;\n readonly PATHSEG_ARC_ABS: number;\n readonly PATHSEG_ARC_REL: number;\n readonly PATHSEG_CLOSEPATH: number;\n readonly PATHSEG_CURVETO_CUBIC_ABS: number;\n readonly PATHSEG_CURVETO_CUBIC_REL: number;\n readonly PATHSEG_CURVETO_CUBIC_SMOOTH_ABS: number;\n readonly PATHSEG_CURVETO_CUBIC_SMOOTH_REL: number;\n readonly PATHSEG_CURVETO_QUADRATIC_ABS: number;\n readonly PATHSEG_CURVETO_QUADRATIC_REL: number;\n readonly PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS: number;\n readonly PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL: number;\n readonly PATHSEG_LINETO_ABS: number;\n readonly PATHSEG_LINETO_HORIZONTAL_ABS: number;\n readonly PATHSEG_LINETO_HORIZONTAL_REL: number;\n readonly PATHSEG_LINETO_REL: number;\n readonly PATHSEG_LINETO_VERTICAL_ABS: number;\n readonly PATHSEG_LINETO_VERTICAL_REL: number;\n readonly PATHSEG_MOVETO_ABS: number;\n readonly PATHSEG_MOVETO_REL: number;\n readonly PATHSEG_UNKNOWN: number;\n}\n\ndeclare var SVGPathSeg: {\n prototype: SVGPathSeg;\n new(): SVGPathSeg;\n readonly PATHSEG_ARC_ABS: number;\n readonly PATHSEG_ARC_REL: number;\n readonly PATHSEG_CLOSEPATH: number;\n readonly PATHSEG_CURVETO_CUBIC_ABS: number;\n readonly PATHSEG_CURVETO_CUBIC_REL: number;\n readonly PATHSEG_CURVETO_CUBIC_SMOOTH_ABS: number;\n readonly PATHSEG_CURVETO_CUBIC_SMOOTH_REL: number;\n readonly PATHSEG_CURVETO_QUADRATIC_ABS: number;\n readonly PATHSEG_CURVETO_QUADRATIC_REL: number;\n readonly PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS: number;\n readonly PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL: number;\n readonly PATHSEG_LINETO_ABS: number;\n readonly PATHSEG_LINETO_HORIZONTAL_ABS: number;\n readonly PATHSEG_LINETO_HORIZONTAL_REL: number;\n readonly PATHSEG_LINETO_REL: number;\n readonly PATHSEG_LINETO_VERTICAL_ABS: number;\n readonly PATHSEG_LINETO_VERTICAL_REL: number;\n readonly PATHSEG_MOVETO_ABS: number;\n readonly PATHSEG_MOVETO_REL: number;\n readonly PATHSEG_UNKNOWN: number;\n};\n\ninterface SVGPathSegArcAbs extends SVGPathSeg {\n angle: number;\n largeArcFlag: boolean;\n r1: number;\n r2: number;\n sweepFlag: boolean;\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegArcAbs: {\n prototype: SVGPathSegArcAbs;\n new(): SVGPathSegArcAbs;\n};\n\ninterface SVGPathSegArcRel extends SVGPathSeg {\n angle: number;\n largeArcFlag: boolean;\n r1: number;\n r2: number;\n sweepFlag: boolean;\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegArcRel: {\n prototype: SVGPathSegArcRel;\n new(): SVGPathSegArcRel;\n};\n\ninterface SVGPathSegClosePath extends SVGPathSeg {\n}\n\ndeclare var SVGPathSegClosePath: {\n prototype: SVGPathSegClosePath;\n new(): SVGPathSegClosePath;\n};\n\ninterface SVGPathSegCurvetoCubicAbs extends SVGPathSeg {\n x: number;\n x1: number;\n x2: number;\n y: number;\n y1: number;\n y2: number;\n}\n\ndeclare var SVGPathSegCurvetoCubicAbs: {\n prototype: SVGPathSegCurvetoCubicAbs;\n new(): SVGPathSegCurvetoCubicAbs;\n};\n\ninterface SVGPathSegCurvetoCubicRel extends SVGPathSeg {\n x: number;\n x1: number;\n x2: number;\n y: number;\n y1: number;\n y2: number;\n}\n\ndeclare var SVGPathSegCurvetoCubicRel: {\n prototype: SVGPathSegCurvetoCubicRel;\n new(): SVGPathSegCurvetoCubicRel;\n};\n\ninterface SVGPathSegCurvetoCubicSmoothAbs extends SVGPathSeg {\n x: number;\n x2: number;\n y: number;\n y2: number;\n}\n\ndeclare var SVGPathSegCurvetoCubicSmoothAbs: {\n prototype: SVGPathSegCurvetoCubicSmoothAbs;\n new(): SVGPathSegCurvetoCubicSmoothAbs;\n};\n\ninterface SVGPathSegCurvetoCubicSmoothRel extends SVGPathSeg {\n x: number;\n x2: number;\n y: number;\n y2: number;\n}\n\ndeclare var SVGPathSegCurvetoCubicSmoothRel: {\n prototype: SVGPathSegCurvetoCubicSmoothRel;\n new(): SVGPathSegCurvetoCubicSmoothRel;\n};\n\ninterface SVGPathSegCurvetoQuadraticAbs extends SVGPathSeg {\n x: number;\n x1: number;\n y: number;\n y1: number;\n}\n\ndeclare var SVGPathSegCurvetoQuadraticAbs: {\n prototype: SVGPathSegCurvetoQuadraticAbs;\n new(): SVGPathSegCurvetoQuadraticAbs;\n};\n\ninterface SVGPathSegCurvetoQuadraticRel extends SVGPathSeg {\n x: number;\n x1: number;\n y: number;\n y1: number;\n}\n\ndeclare var SVGPathSegCurvetoQuadraticRel: {\n prototype: SVGPathSegCurvetoQuadraticRel;\n new(): SVGPathSegCurvetoQuadraticRel;\n};\n\ninterface SVGPathSegCurvetoQuadraticSmoothAbs extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegCurvetoQuadraticSmoothAbs: {\n prototype: SVGPathSegCurvetoQuadraticSmoothAbs;\n new(): SVGPathSegCurvetoQuadraticSmoothAbs;\n};\n\ninterface SVGPathSegCurvetoQuadraticSmoothRel extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegCurvetoQuadraticSmoothRel: {\n prototype: SVGPathSegCurvetoQuadraticSmoothRel;\n new(): SVGPathSegCurvetoQuadraticSmoothRel;\n};\n\ninterface SVGPathSegLinetoAbs extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegLinetoAbs: {\n prototype: SVGPathSegLinetoAbs;\n new(): SVGPathSegLinetoAbs;\n};\n\ninterface SVGPathSegLinetoHorizontalAbs extends SVGPathSeg {\n x: number;\n}\n\ndeclare var SVGPathSegLinetoHorizontalAbs: {\n prototype: SVGPathSegLinetoHorizontalAbs;\n new(): SVGPathSegLinetoHorizontalAbs;\n};\n\ninterface SVGPathSegLinetoHorizontalRel extends SVGPathSeg {\n x: number;\n}\n\ndeclare var SVGPathSegLinetoHorizontalRel: {\n prototype: SVGPathSegLinetoHorizontalRel;\n new(): SVGPathSegLinetoHorizontalRel;\n};\n\ninterface SVGPathSegLinetoRel extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegLinetoRel: {\n prototype: SVGPathSegLinetoRel;\n new(): SVGPathSegLinetoRel;\n};\n\ninterface SVGPathSegLinetoVerticalAbs extends SVGPathSeg {\n y: number;\n}\n\ndeclare var SVGPathSegLinetoVerticalAbs: {\n prototype: SVGPathSegLinetoVerticalAbs;\n new(): SVGPathSegLinetoVerticalAbs;\n};\n\ninterface SVGPathSegLinetoVerticalRel extends SVGPathSeg {\n y: number;\n}\n\ndeclare var SVGPathSegLinetoVerticalRel: {\n prototype: SVGPathSegLinetoVerticalRel;\n new(): SVGPathSegLinetoVerticalRel;\n};\n\ninterface SVGPathSegList {\n readonly numberOfItems: number;\n appendItem(newItem: SVGPathSeg): SVGPathSeg;\n clear(): void;\n getItem(index: number): SVGPathSeg;\n initialize(newItem: SVGPathSeg): SVGPathSeg;\n insertItemBefore(newItem: SVGPathSeg, index: number): SVGPathSeg;\n removeItem(index: number): SVGPathSeg;\n replaceItem(newItem: SVGPathSeg, index: number): SVGPathSeg;\n}\n\ndeclare var SVGPathSegList: {\n prototype: SVGPathSegList;\n new(): SVGPathSegList;\n};\n\ninterface SVGPathSegMovetoAbs extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegMovetoAbs: {\n prototype: SVGPathSegMovetoAbs;\n new(): SVGPathSegMovetoAbs;\n};\n\ninterface SVGPathSegMovetoRel extends SVGPathSeg {\n x: number;\n y: number;\n}\n\ndeclare var SVGPathSegMovetoRel: {\n prototype: SVGPathSegMovetoRel;\n new(): SVGPathSegMovetoRel;\n};\n\ninterface SVGPatternElement extends SVGElement, SVGTests, SVGUnitTypes, SVGFitToViewBox, SVGURIReference {\n readonly height: SVGAnimatedLength;\n readonly patternContentUnits: SVGAnimatedEnumeration;\n readonly patternTransform: SVGAnimatedTransformList;\n readonly patternUnits: SVGAnimatedEnumeration;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPatternElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGPatternElement: {\n prototype: SVGPatternElement;\n new(): SVGPatternElement;\n};\n\ninterface SVGPoint {\n x: number;\n y: number;\n matrixTransform(matrix: SVGMatrix): SVGPoint;\n}\n\ndeclare var SVGPoint: {\n prototype: SVGPoint;\n new(): SVGPoint;\n};\n\ninterface SVGPointList {\n readonly numberOfItems: number;\n appendItem(newItem: SVGPoint): SVGPoint;\n clear(): void;\n getItem(index: number): SVGPoint;\n initialize(newItem: SVGPoint): SVGPoint;\n insertItemBefore(newItem: SVGPoint, index: number): SVGPoint;\n removeItem(index: number): SVGPoint;\n replaceItem(newItem: SVGPoint, index: number): SVGPoint;\n}\n\ndeclare var SVGPointList: {\n prototype: SVGPointList;\n new(): SVGPointList;\n};\n\ninterface SVGPolygonElement extends SVGGraphicsElement, SVGAnimatedPoints {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPolygonElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGPolygonElement: {\n prototype: SVGPolygonElement;\n new(): SVGPolygonElement;\n};\n\ninterface SVGPolylineElement extends SVGGraphicsElement, SVGAnimatedPoints {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGPolylineElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGPolylineElement: {\n prototype: SVGPolylineElement;\n new(): SVGPolylineElement;\n};\n\ninterface SVGPreserveAspectRatio {\n align: number;\n meetOrSlice: number;\n readonly SVG_MEETORSLICE_MEET: number;\n readonly SVG_MEETORSLICE_SLICE: number;\n readonly SVG_MEETORSLICE_UNKNOWN: number;\n readonly SVG_PRESERVEASPECTRATIO_NONE: number;\n readonly SVG_PRESERVEASPECTRATIO_UNKNOWN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMIN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMIN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMIN: number;\n}\n\ndeclare var SVGPreserveAspectRatio: {\n prototype: SVGPreserveAspectRatio;\n new(): SVGPreserveAspectRatio;\n readonly SVG_MEETORSLICE_MEET: number;\n readonly SVG_MEETORSLICE_SLICE: number;\n readonly SVG_MEETORSLICE_UNKNOWN: number;\n readonly SVG_PRESERVEASPECTRATIO_NONE: number;\n readonly SVG_PRESERVEASPECTRATIO_UNKNOWN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMAXYMIN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMIDYMIN: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMAX: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMID: number;\n readonly SVG_PRESERVEASPECTRATIO_XMINYMIN: number;\n};\n\ninterface SVGRadialGradientElement extends SVGGradientElement {\n readonly cx: SVGAnimatedLength;\n readonly cy: SVGAnimatedLength;\n readonly fx: SVGAnimatedLength;\n readonly fy: SVGAnimatedLength;\n readonly r: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRadialGradientElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGRadialGradientElement: {\n prototype: SVGRadialGradientElement;\n new(): SVGRadialGradientElement;\n};\n\ninterface SVGRect {\n height: number;\n width: number;\n x: number;\n y: number;\n}\n\ndeclare var SVGRect: {\n prototype: SVGRect;\n new(): SVGRect;\n};\n\ninterface SVGRectElement extends SVGGraphicsElement {\n readonly height: SVGAnimatedLength;\n readonly rx: SVGAnimatedLength;\n readonly ry: SVGAnimatedLength;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRectElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGRectElement: {\n prototype: SVGRectElement;\n new(): SVGRectElement;\n};\n\ninterface SVGScriptElement extends SVGElement, SVGURIReference {\n type: string;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGScriptElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGScriptElement: {\n prototype: SVGScriptElement;\n new(): SVGScriptElement;\n};\n\ninterface SVGStopElement extends SVGElement {\n readonly offset: SVGAnimatedNumber;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGStopElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGStopElement: {\n prototype: SVGStopElement;\n new(): SVGStopElement;\n};\n\ninterface SVGStringList {\n readonly numberOfItems: number;\n appendItem(newItem: string): string;\n clear(): void;\n getItem(index: number): string;\n initialize(newItem: string): string;\n insertItemBefore(newItem: string, index: number): string;\n removeItem(index: number): string;\n replaceItem(newItem: string, index: number): string;\n}\n\ndeclare var SVGStringList: {\n prototype: SVGStringList;\n new(): SVGStringList;\n};\n\ninterface SVGStyleElement extends SVGElement {\n disabled: boolean;\n media: string;\n title: string;\n type: string;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGStyleElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGStyleElement: {\n prototype: SVGStyleElement;\n new(): SVGStyleElement;\n};\n\ninterface SVGSVGElementEventMap extends SVGElementEventMap {\n "SVGAbort": Event;\n "SVGError": Event;\n "resize": UIEvent;\n "scroll": UIEvent;\n "SVGUnload": Event;\n "SVGZoom": SVGZoomEvent;\n}\n\ninterface SVGSVGElement extends SVGGraphicsElement, DocumentEvent, SVGFitToViewBox, SVGZoomAndPan {\n contentScriptType: string;\n contentStyleType: string;\n currentScale: number;\n readonly currentTranslate: SVGPoint;\n readonly height: SVGAnimatedLength;\n onabort: (this: SVGSVGElement, ev: Event) => any;\n onerror: (this: SVGSVGElement, ev: Event) => any;\n onresize: (this: SVGSVGElement, ev: UIEvent) => any;\n onscroll: (this: SVGSVGElement, ev: UIEvent) => any;\n onunload: (this: SVGSVGElement, ev: Event) => any;\n onzoom: (this: SVGSVGElement, ev: SVGZoomEvent) => any;\n readonly pixelUnitToMillimeterX: number;\n readonly pixelUnitToMillimeterY: number;\n readonly screenPixelToMillimeterX: number;\n readonly screenPixelToMillimeterY: number;\n readonly viewport: SVGRect;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n checkEnclosure(element: SVGElement, rect: SVGRect): boolean;\n checkIntersection(element: SVGElement, rect: SVGRect): boolean;\n createSVGAngle(): SVGAngle;\n createSVGLength(): SVGLength;\n createSVGMatrix(): SVGMatrix;\n createSVGNumber(): SVGNumber;\n createSVGPoint(): SVGPoint;\n createSVGRect(): SVGRect;\n createSVGTransform(): SVGTransform;\n createSVGTransformFromMatrix(matrix: SVGMatrix): SVGTransform;\n deselectAll(): void;\n forceRedraw(): void;\n getComputedStyle(elt: Element, pseudoElt?: string): CSSStyleDeclaration;\n getCurrentTime(): number;\n getElementById(elementId: string): Element;\n getEnclosureList(rect: SVGRect, referenceElement: SVGElement): NodeListOf<SVGCircleElement | SVGEllipseElement | SVGImageElement | SVGLineElement | SVGPathElement | SVGPolygonElement | SVGPolylineElement | SVGRectElement | SVGTextElement | SVGUseElement>;\n getIntersectionList(rect: SVGRect, referenceElement: SVGElement): NodeListOf<SVGCircleElement | SVGEllipseElement | SVGImageElement | SVGLineElement | SVGPathElement | SVGPolygonElement | SVGPolylineElement | SVGRectElement | SVGTextElement | SVGUseElement>;\n pauseAnimations(): void;\n setCurrentTime(seconds: number): void;\n suspendRedraw(maxWaitMilliseconds: number): number;\n unpauseAnimations(): void;\n unsuspendRedraw(suspendHandleID: number): void;\n unsuspendRedrawAll(): void;\n addEventListener<K extends keyof SVGSVGElementEventMap>(type: K, listener: (this: SVGSVGElement, ev: SVGSVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGSVGElement: {\n prototype: SVGSVGElement;\n new(): SVGSVGElement;\n};\n\ninterface SVGSwitchElement extends SVGGraphicsElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGSwitchElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGSwitchElement: {\n prototype: SVGSwitchElement;\n new(): SVGSwitchElement;\n};\n\ninterface SVGSymbolElement extends SVGElement, SVGFitToViewBox {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGSymbolElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGSymbolElement: {\n prototype: SVGSymbolElement;\n new(): SVGSymbolElement;\n};\n\ninterface SVGTextContentElement extends SVGGraphicsElement {\n readonly lengthAdjust: SVGAnimatedEnumeration;\n readonly textLength: SVGAnimatedLength;\n getCharNumAtPosition(point: SVGPoint): number;\n getComputedTextLength(): number;\n getEndPositionOfChar(charnum: number): SVGPoint;\n getExtentOfChar(charnum: number): SVGRect;\n getNumberOfChars(): number;\n getRotationOfChar(charnum: number): number;\n getStartPositionOfChar(charnum: number): SVGPoint;\n getSubStringLength(charnum: number, nchars: number): number;\n selectSubString(charnum: number, nchars: number): void;\n readonly LENGTHADJUST_SPACING: number;\n readonly LENGTHADJUST_SPACINGANDGLYPHS: number;\n readonly LENGTHADJUST_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextContentElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTextContentElement: {\n prototype: SVGTextContentElement;\n new(): SVGTextContentElement;\n readonly LENGTHADJUST_SPACING: number;\n readonly LENGTHADJUST_SPACINGANDGLYPHS: number;\n readonly LENGTHADJUST_UNKNOWN: number;\n};\n\ninterface SVGTextElement extends SVGTextPositioningElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTextElement: {\n prototype: SVGTextElement;\n new(): SVGTextElement;\n};\n\ninterface SVGTextPathElement extends SVGTextContentElement, SVGURIReference {\n readonly method: SVGAnimatedEnumeration;\n readonly spacing: SVGAnimatedEnumeration;\n readonly startOffset: SVGAnimatedLength;\n readonly TEXTPATH_METHODTYPE_ALIGN: number;\n readonly TEXTPATH_METHODTYPE_STRETCH: number;\n readonly TEXTPATH_METHODTYPE_UNKNOWN: number;\n readonly TEXTPATH_SPACINGTYPE_AUTO: number;\n readonly TEXTPATH_SPACINGTYPE_EXACT: number;\n readonly TEXTPATH_SPACINGTYPE_UNKNOWN: number;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextPathElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTextPathElement: {\n prototype: SVGTextPathElement;\n new(): SVGTextPathElement;\n readonly TEXTPATH_METHODTYPE_ALIGN: number;\n readonly TEXTPATH_METHODTYPE_STRETCH: number;\n readonly TEXTPATH_METHODTYPE_UNKNOWN: number;\n readonly TEXTPATH_SPACINGTYPE_AUTO: number;\n readonly TEXTPATH_SPACINGTYPE_EXACT: number;\n readonly TEXTPATH_SPACINGTYPE_UNKNOWN: number;\n};\n\ninterface SVGTextPositioningElement extends SVGTextContentElement {\n readonly dx: SVGAnimatedLengthList;\n readonly dy: SVGAnimatedLengthList;\n readonly rotate: SVGAnimatedNumberList;\n readonly x: SVGAnimatedLengthList;\n readonly y: SVGAnimatedLengthList;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTextPositioningElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTextPositioningElement: {\n prototype: SVGTextPositioningElement;\n new(): SVGTextPositioningElement;\n};\n\ninterface SVGTitleElement extends SVGElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTitleElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTitleElement: {\n prototype: SVGTitleElement;\n new(): SVGTitleElement;\n};\n\ninterface SVGTransform {\n readonly angle: number;\n readonly matrix: SVGMatrix;\n readonly type: number;\n setMatrix(matrix: SVGMatrix): void;\n setRotate(angle: number, cx: number, cy: number): void;\n setScale(sx: number, sy: number): void;\n setSkewX(angle: number): void;\n setSkewY(angle: number): void;\n setTranslate(tx: number, ty: number): void;\n readonly SVG_TRANSFORM_MATRIX: number;\n readonly SVG_TRANSFORM_ROTATE: number;\n readonly SVG_TRANSFORM_SCALE: number;\n readonly SVG_TRANSFORM_SKEWX: number;\n readonly SVG_TRANSFORM_SKEWY: number;\n readonly SVG_TRANSFORM_TRANSLATE: number;\n readonly SVG_TRANSFORM_UNKNOWN: number;\n}\n\ndeclare var SVGTransform: {\n prototype: SVGTransform;\n new(): SVGTransform;\n readonly SVG_TRANSFORM_MATRIX: number;\n readonly SVG_TRANSFORM_ROTATE: number;\n readonly SVG_TRANSFORM_SCALE: number;\n readonly SVG_TRANSFORM_SKEWX: number;\n readonly SVG_TRANSFORM_SKEWY: number;\n readonly SVG_TRANSFORM_TRANSLATE: number;\n readonly SVG_TRANSFORM_UNKNOWN: number;\n};\n\ninterface SVGTransformList {\n readonly numberOfItems: number;\n appendItem(newItem: SVGTransform): SVGTransform;\n clear(): void;\n consolidate(): SVGTransform;\n createSVGTransformFromMatrix(matrix: SVGMatrix): SVGTransform;\n getItem(index: number): SVGTransform;\n initialize(newItem: SVGTransform): SVGTransform;\n insertItemBefore(newItem: SVGTransform, index: number): SVGTransform;\n removeItem(index: number): SVGTransform;\n replaceItem(newItem: SVGTransform, index: number): SVGTransform;\n}\n\ndeclare var SVGTransformList: {\n prototype: SVGTransformList;\n new(): SVGTransformList;\n};\n\ninterface SVGTSpanElement extends SVGTextPositioningElement {\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGTSpanElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGTSpanElement: {\n prototype: SVGTSpanElement;\n new(): SVGTSpanElement;\n};\n\ninterface SVGUnitTypes {\n readonly SVG_UNIT_TYPE_OBJECTBOUNDINGBOX: number;\n readonly SVG_UNIT_TYPE_UNKNOWN: number;\n readonly SVG_UNIT_TYPE_USERSPACEONUSE: number;\n}\ndeclare var SVGUnitTypes: SVGUnitTypes;\n\ninterface SVGUseElement extends SVGGraphicsElement, SVGURIReference {\n readonly animatedInstanceRoot: SVGElementInstance;\n readonly height: SVGAnimatedLength;\n readonly instanceRoot: SVGElementInstance;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGUseElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGUseElement: {\n prototype: SVGUseElement;\n new(): SVGUseElement;\n};\n\ninterface SVGViewElement extends SVGElement, SVGZoomAndPan, SVGFitToViewBox {\n readonly viewTarget: SVGStringList;\n addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGViewElement, ev: SVGElementEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var SVGViewElement: {\n prototype: SVGViewElement;\n new(): SVGViewElement;\n};\n\ninterface SVGZoomAndPan {\n readonly zoomAndPan: number;\n}\n\ndeclare var SVGZoomAndPan: {\n readonly SVG_ZOOMANDPAN_DISABLE: number;\n readonly SVG_ZOOMANDPAN_MAGNIFY: number;\n readonly SVG_ZOOMANDPAN_UNKNOWN: number;\n};\n\ninterface SVGZoomEvent extends UIEvent {\n readonly newScale: number;\n readonly newTranslate: SVGPoint;\n readonly previousScale: number;\n readonly previousTranslate: SVGPoint;\n readonly zoomRectScreen: SVGRect;\n}\n\ndeclare var SVGZoomEvent: {\n prototype: SVGZoomEvent;\n new(): SVGZoomEvent;\n};\n\ninterface SyncManager {\n getTags(): any;\n register(tag: string): Promise<void>;\n}\n\ndeclare var SyncManager: {\n prototype: SyncManager;\n new(): SyncManager;\n};\n\ninterface Text extends CharacterData {\n readonly wholeText: string;\n readonly assignedSlot: HTMLSlotElement | null;\n splitText(offset: number): Text;\n}\n\ndeclare var Text: {\n prototype: Text;\n new(data?: string): Text;\n};\n\ninterface TextEvent extends UIEvent {\n readonly data: string;\n readonly inputMethod: number;\n readonly locale: string;\n initTextEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, dataArg: string, inputMethod: number, locale: string): void;\n readonly DOM_INPUT_METHOD_DROP: number;\n readonly DOM_INPUT_METHOD_HANDWRITING: number;\n readonly DOM_INPUT_METHOD_IME: number;\n readonly DOM_INPUT_METHOD_KEYBOARD: number;\n readonly DOM_INPUT_METHOD_MULTIMODAL: number;\n readonly DOM_INPUT_METHOD_OPTION: number;\n readonly DOM_INPUT_METHOD_PASTE: number;\n readonly DOM_INPUT_METHOD_SCRIPT: number;\n readonly DOM_INPUT_METHOD_UNKNOWN: number;\n readonly DOM_INPUT_METHOD_VOICE: number;\n}\n\ndeclare var TextEvent: {\n prototype: TextEvent;\n new(): TextEvent;\n readonly DOM_INPUT_METHOD_DROP: number;\n readonly DOM_INPUT_METHOD_HANDWRITING: number;\n readonly DOM_INPUT_METHOD_IME: number;\n readonly DOM_INPUT_METHOD_KEYBOARD: number;\n readonly DOM_INPUT_METHOD_MULTIMODAL: number;\n readonly DOM_INPUT_METHOD_OPTION: number;\n readonly DOM_INPUT_METHOD_PASTE: number;\n readonly DOM_INPUT_METHOD_SCRIPT: number;\n readonly DOM_INPUT_METHOD_UNKNOWN: number;\n readonly DOM_INPUT_METHOD_VOICE: number;\n};\n\ninterface TextMetrics {\n readonly width: number;\n}\n\ndeclare var TextMetrics: {\n prototype: TextMetrics;\n new(): TextMetrics;\n};\n\ninterface TextTrackEventMap {\n "cuechange": Event;\n "error": Event;\n "load": Event;\n}\n\ninterface TextTrack extends EventTarget {\n readonly activeCues: TextTrackCueList;\n readonly cues: TextTrackCueList;\n readonly inBandMetadataTrackDispatchType: string;\n readonly kind: string;\n readonly label: string;\n readonly language: string;\n mode: any;\n oncuechange: (this: TextTrack, ev: Event) => any;\n onerror: (this: TextTrack, ev: Event) => any;\n onload: (this: TextTrack, ev: Event) => any;\n readonly readyState: number;\n addCue(cue: TextTrackCue): void;\n removeCue(cue: TextTrackCue): void;\n readonly DISABLED: number;\n readonly ERROR: number;\n readonly HIDDEN: number;\n readonly LOADED: number;\n readonly LOADING: number;\n readonly NONE: number;\n readonly SHOWING: number;\n addEventListener<K extends keyof TextTrackEventMap>(type: K, listener: (this: TextTrack, ev: TextTrackEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var TextTrack: {\n prototype: TextTrack;\n new(): TextTrack;\n readonly DISABLED: number;\n readonly ERROR: number;\n readonly HIDDEN: number;\n readonly LOADED: number;\n readonly LOADING: number;\n readonly NONE: number;\n readonly SHOWING: number;\n};\n\ninterface TextTrackCueEventMap {\n "enter": Event;\n "exit": Event;\n}\n\ninterface TextTrackCue extends EventTarget {\n endTime: number;\n id: string;\n onenter: (this: TextTrackCue, ev: Event) => any;\n onexit: (this: TextTrackCue, ev: Event) => any;\n pauseOnExit: boolean;\n startTime: number;\n text: string;\n readonly track: TextTrack;\n getCueAsHTML(): DocumentFragment;\n addEventListener<K extends keyof TextTrackCueEventMap>(type: K, listener: (this: TextTrackCue, ev: TextTrackCueEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var TextTrackCue: {\n prototype: TextTrackCue;\n new(startTime: number, endTime: number, text: string): TextTrackCue;\n};\n\ninterface TextTrackCueList {\n readonly length: number;\n getCueById(id: string): TextTrackCue;\n item(index: number): TextTrackCue;\n [index: number]: TextTrackCue;\n}\n\ndeclare var TextTrackCueList: {\n prototype: TextTrackCueList;\n new(): TextTrackCueList;\n};\n\ninterface TextTrackListEventMap {\n "addtrack": TrackEvent;\n}\n\ninterface TextTrackList extends EventTarget {\n readonly length: number;\n onaddtrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;\n item(index: number): TextTrack;\n addEventListener<K extends keyof TextTrackListEventMap>(type: K, listener: (this: TextTrackList, ev: TextTrackListEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n [index: number]: TextTrack;\n}\n\ndeclare var TextTrackList: {\n prototype: TextTrackList;\n new(): TextTrackList;\n};\n\ninterface TimeRanges {\n readonly length: number;\n end(index: number): number;\n start(index: number): number;\n}\n\ndeclare var TimeRanges: {\n prototype: TimeRanges;\n new(): TimeRanges;\n};\n\ninterface Touch {\n readonly clientX: number;\n readonly clientY: number;\n readonly identifier: number;\n readonly pageX: number;\n readonly pageY: number;\n readonly screenX: number;\n readonly screenY: number;\n readonly target: EventTarget;\n}\n\ndeclare var Touch: {\n prototype: Touch;\n new(): Touch;\n};\n\ninterface TouchEvent extends UIEvent {\n readonly altKey: boolean;\n readonly changedTouches: TouchList;\n readonly charCode: number;\n readonly ctrlKey: boolean;\n readonly keyCode: number;\n readonly metaKey: boolean;\n readonly shiftKey: boolean;\n readonly targetTouches: TouchList;\n readonly touches: TouchList;\n readonly which: number;\n}\n\ndeclare var TouchEvent: {\n prototype: TouchEvent;\n new(type: string, touchEventInit?: TouchEventInit): TouchEvent;\n};\n\ninterface TouchList {\n readonly length: number;\n item(index: number): Touch | null;\n [index: number]: Touch;\n}\n\ndeclare var TouchList: {\n prototype: TouchList;\n new(): TouchList;\n};\n\ninterface TrackEvent extends Event {\n readonly track: VideoTrack | AudioTrack | TextTrack | null;\n}\n\ndeclare var TrackEvent: {\n prototype: TrackEvent;\n new(typeArg: string, eventInitDict?: TrackEventInit): TrackEvent;\n};\n\ninterface TransitionEvent extends Event {\n readonly elapsedTime: number;\n readonly propertyName: string;\n initTransitionEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, propertyNameArg: string, elapsedTimeArg: number): void;\n}\n\ndeclare var TransitionEvent: {\n prototype: TransitionEvent;\n new(typeArg: string, eventInitDict?: TransitionEventInit): TransitionEvent;\n};\n\ninterface TreeWalker {\n currentNode: Node;\n readonly expandEntityReferences: boolean;\n readonly filter: NodeFilter;\n readonly root: Node;\n readonly whatToShow: number;\n firstChild(): Node;\n lastChild(): Node;\n nextNode(): Node;\n nextSibling(): Node;\n parentNode(): Node;\n previousNode(): Node;\n previousSibling(): Node;\n}\n\ndeclare var TreeWalker: {\n prototype: TreeWalker;\n new(): TreeWalker;\n};\n\ninterface UIEvent extends Event {\n readonly detail: number;\n readonly view: Window;\n initUIEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number): void;\n}\n\ndeclare var UIEvent: {\n prototype: UIEvent;\n new(typeArg: string, eventInitDict?: UIEventInit): UIEvent;\n};\n\ninterface UnviewableContentIdentifiedEvent extends NavigationEventWithReferrer {\n readonly mediaType: string;\n}\n\ndeclare var UnviewableContentIdentifiedEvent: {\n prototype: UnviewableContentIdentifiedEvent;\n new(): UnviewableContentIdentifiedEvent;\n};\n\ninterface URL {\n hash: string;\n host: string;\n hostname: string;\n href: string;\n readonly origin: string;\n password: string;\n pathname: string;\n port: string;\n protocol: string;\n search: string;\n username: string;\n readonly searchParams: URLSearchParams;\n toString(): string;\n}\n\ndeclare var URL: {\n prototype: URL;\n new(url: string, base?: string): URL;\n createObjectURL(object: any, options?: ObjectURLOptions): string;\n revokeObjectURL(url: string): void;\n};\n\ninterface ValidityState {\n readonly badInput: boolean;\n readonly customError: boolean;\n readonly patternMismatch: boolean;\n readonly rangeOverflow: boolean;\n readonly rangeUnderflow: boolean;\n readonly stepMismatch: boolean;\n readonly tooLong: boolean;\n readonly typeMismatch: boolean;\n readonly valid: boolean;\n readonly valueMissing: boolean;\n}\n\ndeclare var ValidityState: {\n prototype: ValidityState;\n new(): ValidityState;\n};\n\ninterface VideoPlaybackQuality {\n readonly corruptedVideoFrames: number;\n readonly creationTime: number;\n readonly droppedVideoFrames: number;\n readonly totalFrameDelay: number;\n readonly totalVideoFrames: number;\n}\n\ndeclare var VideoPlaybackQuality: {\n prototype: VideoPlaybackQuality;\n new(): VideoPlaybackQuality;\n};\n\ninterface VideoTrack {\n readonly id: string;\n kind: string;\n readonly label: string;\n language: string;\n selected: boolean;\n readonly sourceBuffer: SourceBuffer;\n}\n\ndeclare var VideoTrack: {\n prototype: VideoTrack;\n new(): VideoTrack;\n};\n\ninterface VideoTrackListEventMap {\n "addtrack": TrackEvent;\n "change": Event;\n "removetrack": TrackEvent;\n}\n\ninterface VideoTrackList extends EventTarget {\n readonly length: number;\n onaddtrack: (this: VideoTrackList, ev: TrackEvent) => any;\n onchange: (this: VideoTrackList, ev: Event) => any;\n onremovetrack: (this: VideoTrackList, ev: TrackEvent) => any;\n readonly selectedIndex: number;\n getTrackById(id: string): VideoTrack | null;\n item(index: number): VideoTrack;\n addEventListener<K extends keyof VideoTrackListEventMap>(type: K, listener: (this: VideoTrackList, ev: VideoTrackListEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n [index: number]: VideoTrack;\n}\n\ndeclare var VideoTrackList: {\n prototype: VideoTrackList;\n new(): VideoTrackList;\n};\n\ninterface WaveShaperNode extends AudioNode {\n curve: Float32Array | null;\n oversample: OverSampleType;\n}\n\ndeclare var WaveShaperNode: {\n prototype: WaveShaperNode;\n new(): WaveShaperNode;\n};\n\ninterface WebAuthentication {\n getAssertion(assertionChallenge: any, options?: AssertionOptions): Promise<WebAuthnAssertion>;\n makeCredential(accountInformation: Account, cryptoParameters: ScopedCredentialParameters[], attestationChallenge: any, options?: ScopedCredentialOptions): Promise<ScopedCredentialInfo>;\n}\n\ndeclare var WebAuthentication: {\n prototype: WebAuthentication;\n new(): WebAuthentication;\n};\n\ninterface WebAuthnAssertion {\n readonly authenticatorData: ArrayBuffer;\n readonly clientData: ArrayBuffer;\n readonly credential: ScopedCredential;\n readonly signature: ArrayBuffer;\n}\n\ndeclare var WebAuthnAssertion: {\n prototype: WebAuthnAssertion;\n new(): WebAuthnAssertion;\n};\n\ninterface WEBGL_compressed_texture_s3tc {\n readonly COMPRESSED_RGB_S3TC_DXT1_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT1_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT3_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT5_EXT: number;\n}\n\ndeclare var WEBGL_compressed_texture_s3tc: {\n prototype: WEBGL_compressed_texture_s3tc;\n new(): WEBGL_compressed_texture_s3tc;\n readonly COMPRESSED_RGB_S3TC_DXT1_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT1_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT3_EXT: number;\n readonly COMPRESSED_RGBA_S3TC_DXT5_EXT: number;\n};\n\ninterface WEBGL_debug_renderer_info {\n readonly UNMASKED_RENDERER_WEBGL: number;\n readonly UNMASKED_VENDOR_WEBGL: number;\n}\n\ndeclare var WEBGL_debug_renderer_info: {\n prototype: WEBGL_debug_renderer_info;\n new(): WEBGL_debug_renderer_info;\n readonly UNMASKED_RENDERER_WEBGL: number;\n readonly UNMASKED_VENDOR_WEBGL: number;\n};\n\ninterface WEBGL_depth_texture {\n readonly UNSIGNED_INT_24_8_WEBGL: number;\n}\n\ndeclare var WEBGL_depth_texture: {\n prototype: WEBGL_depth_texture;\n new(): WEBGL_depth_texture;\n readonly UNSIGNED_INT_24_8_WEBGL: number;\n};\n\ninterface WebGLActiveInfo {\n readonly name: string;\n readonly size: number;\n readonly type: number;\n}\n\ndeclare var WebGLActiveInfo: {\n prototype: WebGLActiveInfo;\n new(): WebGLActiveInfo;\n};\n\ninterface WebGLBuffer extends WebGLObject {\n}\n\ndeclare var WebGLBuffer: {\n prototype: WebGLBuffer;\n new(): WebGLBuffer;\n};\n\ninterface WebGLContextEvent extends Event {\n readonly statusMessage: string;\n}\n\ndeclare var WebGLContextEvent: {\n prototype: WebGLContextEvent;\n new(typeArg: string, eventInitDict?: WebGLContextEventInit): WebGLContextEvent;\n};\n\ninterface WebGLFramebuffer extends WebGLObject {\n}\n\ndeclare var WebGLFramebuffer: {\n prototype: WebGLFramebuffer;\n new(): WebGLFramebuffer;\n};\n\ninterface WebGLObject {\n}\n\ndeclare var WebGLObject: {\n prototype: WebGLObject;\n new(): WebGLObject;\n};\n\ninterface WebGLProgram extends WebGLObject {\n}\n\ndeclare var WebGLProgram: {\n prototype: WebGLProgram;\n new(): WebGLProgram;\n};\n\ninterface WebGLRenderbuffer extends WebGLObject {\n}\n\ndeclare var WebGLRenderbuffer: {\n prototype: WebGLRenderbuffer;\n new(): WebGLRenderbuffer;\n};\n\ninterface WebGLRenderingContext {\n readonly canvas: HTMLCanvasElement;\n readonly drawingBufferHeight: number;\n readonly drawingBufferWidth: number;\n activeTexture(texture: number): void;\n attachShader(program: WebGLProgram | null, shader: WebGLShader | null): void;\n bindAttribLocation(program: WebGLProgram | null, index: number, name: string): void;\n bindBuffer(target: number, buffer: WebGLBuffer | null): void;\n bindFramebuffer(target: number, framebuffer: WebGLFramebuffer | null): void;\n bindRenderbuffer(target: number, renderbuffer: WebGLRenderbuffer | null): void;\n bindTexture(target: number, texture: WebGLTexture | null): void;\n blendColor(red: number, green: number, blue: number, alpha: number): void;\n blendEquation(mode: number): void;\n blendEquationSeparate(modeRGB: number, modeAlpha: number): void;\n blendFunc(sfactor: number, dfactor: number): void;\n blendFuncSeparate(srcRGB: number, dstRGB: number, srcAlpha: number, dstAlpha: number): void;\n bufferData(target: number, size: number | ArrayBufferView | ArrayBuffer, usage: number): void;\n bufferSubData(target: number, offset: number, data: ArrayBufferView | ArrayBuffer): void;\n checkFramebufferStatus(target: number): number;\n clear(mask: number): void;\n clearColor(red: number, green: number, blue: number, alpha: number): void;\n clearDepth(depth: number): void;\n clearStencil(s: number): void;\n colorMask(red: boolean, green: boolean, blue: boolean, alpha: boolean): void;\n compileShader(shader: WebGLShader | null): void;\n compressedTexImage2D(target: number, level: number, internalformat: number, width: number, height: number, border: number, data: ArrayBufferView): void;\n compressedTexSubImage2D(target: number, level: number, xoffset: number, yoffset: number, width: number, height: number, format: number, data: ArrayBufferView): void;\n copyTexImage2D(target: number, level: number, internalformat: number, x: number, y: number, width: number, height: number, border: number): void;\n copyTexSubImage2D(target: number, level: number, xoffset: number, yoffset: number, x: number, y: number, width: number, height: number): void;\n createBuffer(): WebGLBuffer | null;\n createFramebuffer(): WebGLFramebuffer | null;\n createProgram(): WebGLProgram | null;\n createRenderbuffer(): WebGLRenderbuffer | null;\n createShader(type: number): WebGLShader | null;\n createTexture(): WebGLTexture | null;\n cullFace(mode: number): void;\n deleteBuffer(buffer: WebGLBuffer | null): void;\n deleteFramebuffer(framebuffer: WebGLFramebuffer | null): void;\n deleteProgram(program: WebGLProgram | null): void;\n deleteRenderbuffer(renderbuffer: WebGLRenderbuffer | null): void;\n deleteShader(shader: WebGLShader | null): void;\n deleteTexture(texture: WebGLTexture | null): void;\n depthFunc(func: number): void;\n depthMask(flag: boolean): void;\n depthRange(zNear: number, zFar: number): void;\n detachShader(program: WebGLProgram | null, shader: WebGLShader | null): void;\n disable(cap: number): void;\n disableVertexAttribArray(index: number): void;\n drawArrays(mode: number, first: number, count: number): void;\n drawElements(mode: number, count: number, type: number, offset: number): void;\n enable(cap: number): void;\n enableVertexAttribArray(index: number): void;\n finish(): void;\n flush(): void;\n framebufferRenderbuffer(target: number, attachment: number, renderbuffertarget: number, renderbuffer: WebGLRenderbuffer | null): void;\n framebufferTexture2D(target: number, attachment: number, textarget: number, texture: WebGLTexture | null, level: number): void;\n frontFace(mode: number): void;\n generateMipmap(target: number): void;\n getActiveAttrib(program: WebGLProgram | null, index: number): WebGLActiveInfo | null;\n getActiveUniform(program: WebGLProgram | null, index: number): WebGLActiveInfo | null;\n getAttachedShaders(program: WebGLProgram | null): WebGLShader[] | null;\n getAttribLocation(program: WebGLProgram | null, name: string): number;\n getBufferParameter(target: number, pname: number): any;\n getContextAttributes(): WebGLContextAttributes;\n getError(): number;\n getExtension(name: string): any;\n getFramebufferAttachmentParameter(target: number, attachment: number, pname: number): any;\n getParameter(pname: number): any;\n getProgramInfoLog(program: WebGLProgram | null): string | null;\n getProgramParameter(program: WebGLProgram | null, pname: number): any;\n getRenderbufferParameter(target: number, pname: number): any;\n getShaderInfoLog(shader: WebGLShader | null): string | null;\n getShaderParameter(shader: WebGLShader | null, pname: number): any;\n getShaderPrecisionFormat(shadertype: number, precisiontype: number): WebGLShaderPrecisionFormat | null;\n getShaderSource(shader: WebGLShader | null): string | null;\n getSupportedExtensions(): string[] | null;\n getTexParameter(target: number, pname: number): any;\n getUniform(program: WebGLProgram | null, location: WebGLUniformLocation | null): any;\n getUniformLocation(program: WebGLProgram | null, name: string): WebGLUniformLocation | null;\n getVertexAttrib(index: number, pname: number): any;\n getVertexAttribOffset(index: number, pname: number): number;\n hint(target: number, mode: number): void;\n isBuffer(buffer: WebGLBuffer | null): boolean;\n isContextLost(): boolean;\n isEnabled(cap: number): boolean;\n isFramebuffer(framebuffer: WebGLFramebuffer | null): boolean;\n isProgram(program: WebGLProgram | null): boolean;\n isRenderbuffer(renderbuffer: WebGLRenderbuffer | null): boolean;\n isShader(shader: WebGLShader | null): boolean;\n isTexture(texture: WebGLTexture | null): boolean;\n lineWidth(width: number): void;\n linkProgram(program: WebGLProgram | null): void;\n pixelStorei(pname: number, param: number | boolean): void;\n polygonOffset(factor: number, units: number): void;\n readPixels(x: number, y: number, width: number, height: number, format: number, type: number, pixels: ArrayBufferView | null): void;\n renderbufferStorage(target: number, internalformat: number, width: number, height: number): void;\n sampleCoverage(value: number, invert: boolean): void;\n scissor(x: number, y: number, width: number, height: number): void;\n shaderSource(shader: WebGLShader | null, source: string): void;\n stencilFunc(func: number, ref: number, mask: number): void;\n stencilFuncSeparate(face: number, func: number, ref: number, mask: number): void;\n stencilMask(mask: number): void;\n stencilMaskSeparate(face: number, mask: number): void;\n stencilOp(fail: number, zfail: number, zpass: number): void;\n stencilOpSeparate(face: number, fail: number, zfail: number, zpass: number): void;\n texImage2D(target: number, level: number, internalformat: number, width: number, height: number, border: number, format: number, type: number, pixels: ArrayBufferView | null): void;\n texImage2D(target: number, level: number, internalformat: number, format: number, type: number, pixels: ImageBitmap | ImageData | HTMLVideoElement | HTMLImageElement | HTMLCanvasElement): void;\n texParameterf(target: number, pname: number, param: number): void;\n texParameteri(target: number, pname: number, param: number): void;\n texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, width: number, height: number, format: number, type: number, pixels: ArrayBufferView | null): void;\n texSubImage2D(target: number, level: number, xoffset: number, yoffset: number, format: number, type: number, pixels: ImageBitmap | ImageData | HTMLVideoElement | HTMLImageElement | HTMLCanvasElement): void;\n uniform1f(location: WebGLUniformLocation | null, x: number): void;\n uniform1fv(location: WebGLUniformLocation, v: Float32Array | number[]): void;\n uniform1i(location: WebGLUniformLocation | null, x: number): void;\n uniform1iv(location: WebGLUniformLocation, v: Int32Array | number[]): void;\n uniform2f(location: WebGLUniformLocation | null, x: number, y: number): void;\n uniform2fv(location: WebGLUniformLocation, v: Float32Array | number[]): void;\n uniform2i(location: WebGLUniformLocation | null, x: number, y: number): void;\n uniform2iv(location: WebGLUniformLocation, v: Int32Array | number[]): void;\n uniform3f(location: WebGLUniformLocation | null, x: number, y: number, z: number): void;\n uniform3fv(location: WebGLUniformLocation, v: Float32Array | number[]): void;\n uniform3i(location: WebGLUniformLocation | null, x: number, y: number, z: number): void;\n uniform3iv(location: WebGLUniformLocation, v: Int32Array | number[]): void;\n uniform4f(location: WebGLUniformLocation | null, x: number, y: number, z: number, w: number): void;\n uniform4fv(location: WebGLUniformLocation, v: Float32Array | number[]): void;\n uniform4i(location: WebGLUniformLocation | null, x: number, y: number, z: number, w: number): void;\n uniform4iv(location: WebGLUniformLocation, v: Int32Array | number[]): void;\n uniformMatrix2fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | number[]): void;\n uniformMatrix3fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | number[]): void;\n uniformMatrix4fv(location: WebGLUniformLocation, transpose: boolean, value: Float32Array | number[]): void;\n useProgram(program: WebGLProgram | null): void;\n validateProgram(program: WebGLProgram | null): void;\n vertexAttrib1f(indx: number, x: number): void;\n vertexAttrib1fv(indx: number, values: Float32Array | number[]): void;\n vertexAttrib2f(indx: number, x: number, y: number): void;\n vertexAttrib2fv(indx: number, values: Float32Array | number[]): void;\n vertexAttrib3f(indx: number, x: number, y: number, z: number): void;\n vertexAttrib3fv(indx: number, values: Float32Array | number[]): void;\n vertexAttrib4f(indx: number, x: number, y: number, z: number, w: number): void;\n vertexAttrib4fv(indx: number, values: Float32Array | number[]): void;\n vertexAttribPointer(indx: number, size: number, type: number, normalized: boolean, stride: number, offset: number): void;\n viewport(x: number, y: number, width: number, height: number): void;\n readonly ACTIVE_ATTRIBUTES: number;\n readonly ACTIVE_TEXTURE: number;\n readonly ACTIVE_UNIFORMS: number;\n readonly ALIASED_LINE_WIDTH_RANGE: number;\n readonly ALIASED_POINT_SIZE_RANGE: number;\n readonly ALPHA: number;\n readonly ALPHA_BITS: number;\n readonly ALWAYS: number;\n readonly ARRAY_BUFFER: number;\n readonly ARRAY_BUFFER_BINDING: number;\n readonly ATTACHED_SHADERS: number;\n readonly BACK: number;\n readonly BLEND: number;\n readonly BLEND_COLOR: number;\n readonly BLEND_DST_ALPHA: number;\n readonly BLEND_DST_RGB: number;\n readonly BLEND_EQUATION: number;\n readonly BLEND_EQUATION_ALPHA: number;\n readonly BLEND_EQUATION_RGB: number;\n readonly BLEND_SRC_ALPHA: number;\n readonly BLEND_SRC_RGB: number;\n readonly BLUE_BITS: number;\n readonly BOOL: number;\n readonly BOOL_VEC2: number;\n readonly BOOL_VEC3: number;\n readonly BOOL_VEC4: number;\n readonly BROWSER_DEFAULT_WEBGL: number;\n readonly BUFFER_SIZE: number;\n readonly BUFFER_USAGE: number;\n readonly BYTE: number;\n readonly CCW: number;\n readonly CLAMP_TO_EDGE: number;\n readonly COLOR_ATTACHMENT0: number;\n readonly COLOR_BUFFER_BIT: number;\n readonly COLOR_CLEAR_VALUE: number;\n readonly COLOR_WRITEMASK: number;\n readonly COMPILE_STATUS: number;\n readonly COMPRESSED_TEXTURE_FORMATS: number;\n readonly CONSTANT_ALPHA: number;\n readonly CONSTANT_COLOR: number;\n readonly CONTEXT_LOST_WEBGL: number;\n readonly CULL_FACE: number;\n readonly CULL_FACE_MODE: number;\n readonly CURRENT_PROGRAM: number;\n readonly CURRENT_VERTEX_ATTRIB: number;\n readonly CW: number;\n readonly DECR: number;\n readonly DECR_WRAP: number;\n readonly DELETE_STATUS: number;\n readonly DEPTH_ATTACHMENT: number;\n readonly DEPTH_BITS: number;\n readonly DEPTH_BUFFER_BIT: number;\n readonly DEPTH_CLEAR_VALUE: number;\n readonly DEPTH_COMPONENT: number;\n readonly DEPTH_COMPONENT16: number;\n readonly DEPTH_FUNC: number;\n readonly DEPTH_RANGE: number;\n readonly DEPTH_STENCIL: number;\n readonly DEPTH_STENCIL_ATTACHMENT: number;\n readonly DEPTH_TEST: number;\n readonly DEPTH_WRITEMASK: number;\n readonly DITHER: number;\n readonly DONT_CARE: number;\n readonly DST_ALPHA: number;\n readonly DST_COLOR: number;\n readonly DYNAMIC_DRAW: number;\n readonly ELEMENT_ARRAY_BUFFER: number;\n readonly ELEMENT_ARRAY_BUFFER_BINDING: number;\n readonly EQUAL: number;\n readonly FASTEST: number;\n readonly FLOAT: number;\n readonly FLOAT_MAT2: number;\n readonly FLOAT_MAT3: number;\n readonly FLOAT_MAT4: number;\n readonly FLOAT_VEC2: number;\n readonly FLOAT_VEC3: number;\n readonly FLOAT_VEC4: number;\n readonly FRAGMENT_SHADER: number;\n readonly FRAMEBUFFER: number;\n readonly FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: number;\n readonly FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: number;\n readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: number;\n readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: number;\n readonly FRAMEBUFFER_BINDING: number;\n readonly FRAMEBUFFER_COMPLETE: number;\n readonly FRAMEBUFFER_INCOMPLETE_ATTACHMENT: number;\n readonly FRAMEBUFFER_INCOMPLETE_DIMENSIONS: number;\n readonly FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: number;\n readonly FRAMEBUFFER_UNSUPPORTED: number;\n readonly FRONT: number;\n readonly FRONT_AND_BACK: number;\n readonly FRONT_FACE: number;\n readonly FUNC_ADD: number;\n readonly FUNC_REVERSE_SUBTRACT: number;\n readonly FUNC_SUBTRACT: number;\n readonly GENERATE_MIPMAP_HINT: number;\n readonly GEQUAL: number;\n readonly GREATER: number;\n readonly GREEN_BITS: number;\n readonly HIGH_FLOAT: number;\n readonly HIGH_INT: number;\n readonly IMPLEMENTATION_COLOR_READ_FORMAT: number;\n readonly IMPLEMENTATION_COLOR_READ_TYPE: number;\n readonly INCR: number;\n readonly INCR_WRAP: number;\n readonly INT: number;\n readonly INT_VEC2: number;\n readonly INT_VEC3: number;\n readonly INT_VEC4: number;\n readonly INVALID_ENUM: number;\n readonly INVALID_FRAMEBUFFER_OPERATION: number;\n readonly INVALID_OPERATION: number;\n readonly INVALID_VALUE: number;\n readonly INVERT: number;\n readonly KEEP: number;\n readonly LEQUAL: number;\n readonly LESS: number;\n readonly LINE_LOOP: number;\n readonly LINE_STRIP: number;\n readonly LINE_WIDTH: number;\n readonly LINEAR: number;\n readonly LINEAR_MIPMAP_LINEAR: number;\n readonly LINEAR_MIPMAP_NEAREST: number;\n readonly LINES: number;\n readonly LINK_STATUS: number;\n readonly LOW_FLOAT: number;\n readonly LOW_INT: number;\n readonly LUMINANCE: number;\n readonly LUMINANCE_ALPHA: number;\n readonly MAX_COMBINED_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_CUBE_MAP_TEXTURE_SIZE: number;\n readonly MAX_FRAGMENT_UNIFORM_VECTORS: number;\n readonly MAX_RENDERBUFFER_SIZE: number;\n readonly MAX_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_TEXTURE_SIZE: number;\n readonly MAX_VARYING_VECTORS: number;\n readonly MAX_VERTEX_ATTRIBS: number;\n readonly MAX_VERTEX_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_VERTEX_UNIFORM_VECTORS: number;\n readonly MAX_VIEWPORT_DIMS: number;\n readonly MEDIUM_FLOAT: number;\n readonly MEDIUM_INT: number;\n readonly MIRRORED_REPEAT: number;\n readonly NEAREST: number;\n readonly NEAREST_MIPMAP_LINEAR: number;\n readonly NEAREST_MIPMAP_NEAREST: number;\n readonly NEVER: number;\n readonly NICEST: number;\n readonly NO_ERROR: number;\n readonly NONE: number;\n readonly NOTEQUAL: number;\n readonly ONE: number;\n readonly ONE_MINUS_CONSTANT_ALPHA: number;\n readonly ONE_MINUS_CONSTANT_COLOR: number;\n readonly ONE_MINUS_DST_ALPHA: number;\n readonly ONE_MINUS_DST_COLOR: number;\n readonly ONE_MINUS_SRC_ALPHA: number;\n readonly ONE_MINUS_SRC_COLOR: number;\n readonly OUT_OF_MEMORY: number;\n readonly PACK_ALIGNMENT: number;\n readonly POINTS: number;\n readonly POLYGON_OFFSET_FACTOR: number;\n readonly POLYGON_OFFSET_FILL: number;\n readonly POLYGON_OFFSET_UNITS: number;\n readonly RED_BITS: number;\n readonly RENDERBUFFER: number;\n readonly RENDERBUFFER_ALPHA_SIZE: number;\n readonly RENDERBUFFER_BINDING: number;\n readonly RENDERBUFFER_BLUE_SIZE: number;\n readonly RENDERBUFFER_DEPTH_SIZE: number;\n readonly RENDERBUFFER_GREEN_SIZE: number;\n readonly RENDERBUFFER_HEIGHT: number;\n readonly RENDERBUFFER_INTERNAL_FORMAT: number;\n readonly RENDERBUFFER_RED_SIZE: number;\n readonly RENDERBUFFER_STENCIL_SIZE: number;\n readonly RENDERBUFFER_WIDTH: number;\n readonly RENDERER: number;\n readonly REPEAT: number;\n readonly REPLACE: number;\n readonly RGB: number;\n readonly RGB5_A1: number;\n readonly RGB565: number;\n readonly RGBA: number;\n readonly RGBA4: number;\n readonly SAMPLE_ALPHA_TO_COVERAGE: number;\n readonly SAMPLE_BUFFERS: number;\n readonly SAMPLE_COVERAGE: number;\n readonly SAMPLE_COVERAGE_INVERT: number;\n readonly SAMPLE_COVERAGE_VALUE: number;\n readonly SAMPLER_2D: number;\n readonly SAMPLER_CUBE: number;\n readonly SAMPLES: number;\n readonly SCISSOR_BOX: number;\n readonly SCISSOR_TEST: number;\n readonly SHADER_TYPE: number;\n readonly SHADING_LANGUAGE_VERSION: number;\n readonly SHORT: number;\n readonly SRC_ALPHA: number;\n readonly SRC_ALPHA_SATURATE: number;\n readonly SRC_COLOR: number;\n readonly STATIC_DRAW: number;\n readonly STENCIL_ATTACHMENT: number;\n readonly STENCIL_BACK_FAIL: number;\n readonly STENCIL_BACK_FUNC: number;\n readonly STENCIL_BACK_PASS_DEPTH_FAIL: number;\n readonly STENCIL_BACK_PASS_DEPTH_PASS: number;\n readonly STENCIL_BACK_REF: number;\n readonly STENCIL_BACK_VALUE_MASK: number;\n readonly STENCIL_BACK_WRITEMASK: number;\n readonly STENCIL_BITS: number;\n readonly STENCIL_BUFFER_BIT: number;\n readonly STENCIL_CLEAR_VALUE: number;\n readonly STENCIL_FAIL: number;\n readonly STENCIL_FUNC: number;\n readonly STENCIL_INDEX: number;\n readonly STENCIL_INDEX8: number;\n readonly STENCIL_PASS_DEPTH_FAIL: number;\n readonly STENCIL_PASS_DEPTH_PASS: number;\n readonly STENCIL_REF: number;\n readonly STENCIL_TEST: number;\n readonly STENCIL_VALUE_MASK: number;\n readonly STENCIL_WRITEMASK: number;\n readonly STREAM_DRAW: number;\n readonly SUBPIXEL_BITS: number;\n readonly TEXTURE: number;\n readonly TEXTURE_2D: number;\n readonly TEXTURE_BINDING_2D: number;\n readonly TEXTURE_BINDING_CUBE_MAP: number;\n readonly TEXTURE_CUBE_MAP: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_X: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_Y: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_Z: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_X: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_Y: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_Z: number;\n readonly TEXTURE_MAG_FILTER: number;\n readonly TEXTURE_MIN_FILTER: number;\n readonly TEXTURE_WRAP_S: number;\n readonly TEXTURE_WRAP_T: number;\n readonly TEXTURE0: number;\n readonly TEXTURE1: number;\n readonly TEXTURE10: number;\n readonly TEXTURE11: number;\n readonly TEXTURE12: number;\n readonly TEXTURE13: number;\n readonly TEXTURE14: number;\n readonly TEXTURE15: number;\n readonly TEXTURE16: number;\n readonly TEXTURE17: number;\n readonly TEXTURE18: number;\n readonly TEXTURE19: number;\n readonly TEXTURE2: number;\n readonly TEXTURE20: number;\n readonly TEXTURE21: number;\n readonly TEXTURE22: number;\n readonly TEXTURE23: number;\n readonly TEXTURE24: number;\n readonly TEXTURE25: number;\n readonly TEXTURE26: number;\n readonly TEXTURE27: number;\n readonly TEXTURE28: number;\n readonly TEXTURE29: number;\n readonly TEXTURE3: number;\n readonly TEXTURE30: number;\n readonly TEXTURE31: number;\n readonly TEXTURE4: number;\n readonly TEXTURE5: number;\n readonly TEXTURE6: number;\n readonly TEXTURE7: number;\n readonly TEXTURE8: number;\n readonly TEXTURE9: number;\n readonly TRIANGLE_FAN: number;\n readonly TRIANGLE_STRIP: number;\n readonly TRIANGLES: number;\n readonly UNPACK_ALIGNMENT: number;\n readonly UNPACK_COLORSPACE_CONVERSION_WEBGL: number;\n readonly UNPACK_FLIP_Y_WEBGL: number;\n readonly UNPACK_PREMULTIPLY_ALPHA_WEBGL: number;\n readonly UNSIGNED_BYTE: number;\n readonly UNSIGNED_INT: number;\n readonly UNSIGNED_SHORT: number;\n readonly UNSIGNED_SHORT_4_4_4_4: number;\n readonly UNSIGNED_SHORT_5_5_5_1: number;\n readonly UNSIGNED_SHORT_5_6_5: number;\n readonly VALIDATE_STATUS: number;\n readonly VENDOR: number;\n readonly VERSION: number;\n readonly VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: number;\n readonly VERTEX_ATTRIB_ARRAY_ENABLED: number;\n readonly VERTEX_ATTRIB_ARRAY_NORMALIZED: number;\n readonly VERTEX_ATTRIB_ARRAY_POINTER: number;\n readonly VERTEX_ATTRIB_ARRAY_SIZE: number;\n readonly VERTEX_ATTRIB_ARRAY_STRIDE: number;\n readonly VERTEX_ATTRIB_ARRAY_TYPE: number;\n readonly VERTEX_SHADER: number;\n readonly VIEWPORT: number;\n readonly ZERO: number;\n}\n\ndeclare var WebGLRenderingContext: {\n prototype: WebGLRenderingContext;\n new(): WebGLRenderingContext;\n readonly ACTIVE_ATTRIBUTES: number;\n readonly ACTIVE_TEXTURE: number;\n readonly ACTIVE_UNIFORMS: number;\n readonly ALIASED_LINE_WIDTH_RANGE: number;\n readonly ALIASED_POINT_SIZE_RANGE: number;\n readonly ALPHA: number;\n readonly ALPHA_BITS: number;\n readonly ALWAYS: number;\n readonly ARRAY_BUFFER: number;\n readonly ARRAY_BUFFER_BINDING: number;\n readonly ATTACHED_SHADERS: number;\n readonly BACK: number;\n readonly BLEND: number;\n readonly BLEND_COLOR: number;\n readonly BLEND_DST_ALPHA: number;\n readonly BLEND_DST_RGB: number;\n readonly BLEND_EQUATION: number;\n readonly BLEND_EQUATION_ALPHA: number;\n readonly BLEND_EQUATION_RGB: number;\n readonly BLEND_SRC_ALPHA: number;\n readonly BLEND_SRC_RGB: number;\n readonly BLUE_BITS: number;\n readonly BOOL: number;\n readonly BOOL_VEC2: number;\n readonly BOOL_VEC3: number;\n readonly BOOL_VEC4: number;\n readonly BROWSER_DEFAULT_WEBGL: number;\n readonly BUFFER_SIZE: number;\n readonly BUFFER_USAGE: number;\n readonly BYTE: number;\n readonly CCW: number;\n readonly CLAMP_TO_EDGE: number;\n readonly COLOR_ATTACHMENT0: number;\n readonly COLOR_BUFFER_BIT: number;\n readonly COLOR_CLEAR_VALUE: number;\n readonly COLOR_WRITEMASK: number;\n readonly COMPILE_STATUS: number;\n readonly COMPRESSED_TEXTURE_FORMATS: number;\n readonly CONSTANT_ALPHA: number;\n readonly CONSTANT_COLOR: number;\n readonly CONTEXT_LOST_WEBGL: number;\n readonly CULL_FACE: number;\n readonly CULL_FACE_MODE: number;\n readonly CURRENT_PROGRAM: number;\n readonly CURRENT_VERTEX_ATTRIB: number;\n readonly CW: number;\n readonly DECR: number;\n readonly DECR_WRAP: number;\n readonly DELETE_STATUS: number;\n readonly DEPTH_ATTACHMENT: number;\n readonly DEPTH_BITS: number;\n readonly DEPTH_BUFFER_BIT: number;\n readonly DEPTH_CLEAR_VALUE: number;\n readonly DEPTH_COMPONENT: number;\n readonly DEPTH_COMPONENT16: number;\n readonly DEPTH_FUNC: number;\n readonly DEPTH_RANGE: number;\n readonly DEPTH_STENCIL: number;\n readonly DEPTH_STENCIL_ATTACHMENT: number;\n readonly DEPTH_TEST: number;\n readonly DEPTH_WRITEMASK: number;\n readonly DITHER: number;\n readonly DONT_CARE: number;\n readonly DST_ALPHA: number;\n readonly DST_COLOR: number;\n readonly DYNAMIC_DRAW: number;\n readonly ELEMENT_ARRAY_BUFFER: number;\n readonly ELEMENT_ARRAY_BUFFER_BINDING: number;\n readonly EQUAL: number;\n readonly FASTEST: number;\n readonly FLOAT: number;\n readonly FLOAT_MAT2: number;\n readonly FLOAT_MAT3: number;\n readonly FLOAT_MAT4: number;\n readonly FLOAT_VEC2: number;\n readonly FLOAT_VEC3: number;\n readonly FLOAT_VEC4: number;\n readonly FRAGMENT_SHADER: number;\n readonly FRAMEBUFFER: number;\n readonly FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: number;\n readonly FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: number;\n readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: number;\n readonly FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: number;\n readonly FRAMEBUFFER_BINDING: number;\n readonly FRAMEBUFFER_COMPLETE: number;\n readonly FRAMEBUFFER_INCOMPLETE_ATTACHMENT: number;\n readonly FRAMEBUFFER_INCOMPLETE_DIMENSIONS: number;\n readonly FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: number;\n readonly FRAMEBUFFER_UNSUPPORTED: number;\n readonly FRONT: number;\n readonly FRONT_AND_BACK: number;\n readonly FRONT_FACE: number;\n readonly FUNC_ADD: number;\n readonly FUNC_REVERSE_SUBTRACT: number;\n readonly FUNC_SUBTRACT: number;\n readonly GENERATE_MIPMAP_HINT: number;\n readonly GEQUAL: number;\n readonly GREATER: number;\n readonly GREEN_BITS: number;\n readonly HIGH_FLOAT: number;\n readonly HIGH_INT: number;\n readonly IMPLEMENTATION_COLOR_READ_FORMAT: number;\n readonly IMPLEMENTATION_COLOR_READ_TYPE: number;\n readonly INCR: number;\n readonly INCR_WRAP: number;\n readonly INT: number;\n readonly INT_VEC2: number;\n readonly INT_VEC3: number;\n readonly INT_VEC4: number;\n readonly INVALID_ENUM: number;\n readonly INVALID_FRAMEBUFFER_OPERATION: number;\n readonly INVALID_OPERATION: number;\n readonly INVALID_VALUE: number;\n readonly INVERT: number;\n readonly KEEP: number;\n readonly LEQUAL: number;\n readonly LESS: number;\n readonly LINE_LOOP: number;\n readonly LINE_STRIP: number;\n readonly LINE_WIDTH: number;\n readonly LINEAR: number;\n readonly LINEAR_MIPMAP_LINEAR: number;\n readonly LINEAR_MIPMAP_NEAREST: number;\n readonly LINES: number;\n readonly LINK_STATUS: number;\n readonly LOW_FLOAT: number;\n readonly LOW_INT: number;\n readonly LUMINANCE: number;\n readonly LUMINANCE_ALPHA: number;\n readonly MAX_COMBINED_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_CUBE_MAP_TEXTURE_SIZE: number;\n readonly MAX_FRAGMENT_UNIFORM_VECTORS: number;\n readonly MAX_RENDERBUFFER_SIZE: number;\n readonly MAX_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_TEXTURE_SIZE: number;\n readonly MAX_VARYING_VECTORS: number;\n readonly MAX_VERTEX_ATTRIBS: number;\n readonly MAX_VERTEX_TEXTURE_IMAGE_UNITS: number;\n readonly MAX_VERTEX_UNIFORM_VECTORS: number;\n readonly MAX_VIEWPORT_DIMS: number;\n readonly MEDIUM_FLOAT: number;\n readonly MEDIUM_INT: number;\n readonly MIRRORED_REPEAT: number;\n readonly NEAREST: number;\n readonly NEAREST_MIPMAP_LINEAR: number;\n readonly NEAREST_MIPMAP_NEAREST: number;\n readonly NEVER: number;\n readonly NICEST: number;\n readonly NO_ERROR: number;\n readonly NONE: number;\n readonly NOTEQUAL: number;\n readonly ONE: number;\n readonly ONE_MINUS_CONSTANT_ALPHA: number;\n readonly ONE_MINUS_CONSTANT_COLOR: number;\n readonly ONE_MINUS_DST_ALPHA: number;\n readonly ONE_MINUS_DST_COLOR: number;\n readonly ONE_MINUS_SRC_ALPHA: number;\n readonly ONE_MINUS_SRC_COLOR: number;\n readonly OUT_OF_MEMORY: number;\n readonly PACK_ALIGNMENT: number;\n readonly POINTS: number;\n readonly POLYGON_OFFSET_FACTOR: number;\n readonly POLYGON_OFFSET_FILL: number;\n readonly POLYGON_OFFSET_UNITS: number;\n readonly RED_BITS: number;\n readonly RENDERBUFFER: number;\n readonly RENDERBUFFER_ALPHA_SIZE: number;\n readonly RENDERBUFFER_BINDING: number;\n readonly RENDERBUFFER_BLUE_SIZE: number;\n readonly RENDERBUFFER_DEPTH_SIZE: number;\n readonly RENDERBUFFER_GREEN_SIZE: number;\n readonly RENDERBUFFER_HEIGHT: number;\n readonly RENDERBUFFER_INTERNAL_FORMAT: number;\n readonly RENDERBUFFER_RED_SIZE: number;\n readonly RENDERBUFFER_STENCIL_SIZE: number;\n readonly RENDERBUFFER_WIDTH: number;\n readonly RENDERER: number;\n readonly REPEAT: number;\n readonly REPLACE: number;\n readonly RGB: number;\n readonly RGB5_A1: number;\n readonly RGB565: number;\n readonly RGBA: number;\n readonly RGBA4: number;\n readonly SAMPLE_ALPHA_TO_COVERAGE: number;\n readonly SAMPLE_BUFFERS: number;\n readonly SAMPLE_COVERAGE: number;\n readonly SAMPLE_COVERAGE_INVERT: number;\n readonly SAMPLE_COVERAGE_VALUE: number;\n readonly SAMPLER_2D: number;\n readonly SAMPLER_CUBE: number;\n readonly SAMPLES: number;\n readonly SCISSOR_BOX: number;\n readonly SCISSOR_TEST: number;\n readonly SHADER_TYPE: number;\n readonly SHADING_LANGUAGE_VERSION: number;\n readonly SHORT: number;\n readonly SRC_ALPHA: number;\n readonly SRC_ALPHA_SATURATE: number;\n readonly SRC_COLOR: number;\n readonly STATIC_DRAW: number;\n readonly STENCIL_ATTACHMENT: number;\n readonly STENCIL_BACK_FAIL: number;\n readonly STENCIL_BACK_FUNC: number;\n readonly STENCIL_BACK_PASS_DEPTH_FAIL: number;\n readonly STENCIL_BACK_PASS_DEPTH_PASS: number;\n readonly STENCIL_BACK_REF: number;\n readonly STENCIL_BACK_VALUE_MASK: number;\n readonly STENCIL_BACK_WRITEMASK: number;\n readonly STENCIL_BITS: number;\n readonly STENCIL_BUFFER_BIT: number;\n readonly STENCIL_CLEAR_VALUE: number;\n readonly STENCIL_FAIL: number;\n readonly STENCIL_FUNC: number;\n readonly STENCIL_INDEX: number;\n readonly STENCIL_INDEX8: number;\n readonly STENCIL_PASS_DEPTH_FAIL: number;\n readonly STENCIL_PASS_DEPTH_PASS: number;\n readonly STENCIL_REF: number;\n readonly STENCIL_TEST: number;\n readonly STENCIL_VALUE_MASK: number;\n readonly STENCIL_WRITEMASK: number;\n readonly STREAM_DRAW: number;\n readonly SUBPIXEL_BITS: number;\n readonly TEXTURE: number;\n readonly TEXTURE_2D: number;\n readonly TEXTURE_BINDING_2D: number;\n readonly TEXTURE_BINDING_CUBE_MAP: number;\n readonly TEXTURE_CUBE_MAP: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_X: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_Y: number;\n readonly TEXTURE_CUBE_MAP_NEGATIVE_Z: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_X: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_Y: number;\n readonly TEXTURE_CUBE_MAP_POSITIVE_Z: number;\n readonly TEXTURE_MAG_FILTER: number;\n readonly TEXTURE_MIN_FILTER: number;\n readonly TEXTURE_WRAP_S: number;\n readonly TEXTURE_WRAP_T: number;\n readonly TEXTURE0: number;\n readonly TEXTURE1: number;\n readonly TEXTURE10: number;\n readonly TEXTURE11: number;\n readonly TEXTURE12: number;\n readonly TEXTURE13: number;\n readonly TEXTURE14: number;\n readonly TEXTURE15: number;\n readonly TEXTURE16: number;\n readonly TEXTURE17: number;\n readonly TEXTURE18: number;\n readonly TEXTURE19: number;\n readonly TEXTURE2: number;\n readonly TEXTURE20: number;\n readonly TEXTURE21: number;\n readonly TEXTURE22: number;\n readonly TEXTURE23: number;\n readonly TEXTURE24: number;\n readonly TEXTURE25: number;\n readonly TEXTURE26: number;\n readonly TEXTURE27: number;\n readonly TEXTURE28: number;\n readonly TEXTURE29: number;\n readonly TEXTURE3: number;\n readonly TEXTURE30: number;\n readonly TEXTURE31: number;\n readonly TEXTURE4: number;\n readonly TEXTURE5: number;\n readonly TEXTURE6: number;\n readonly TEXTURE7: number;\n readonly TEXTURE8: number;\n readonly TEXTURE9: number;\n readonly TRIANGLE_FAN: number;\n readonly TRIANGLE_STRIP: number;\n readonly TRIANGLES: number;\n readonly UNPACK_ALIGNMENT: number;\n readonly UNPACK_COLORSPACE_CONVERSION_WEBGL: number;\n readonly UNPACK_FLIP_Y_WEBGL: number;\n readonly UNPACK_PREMULTIPLY_ALPHA_WEBGL: number;\n readonly UNSIGNED_BYTE: number;\n readonly UNSIGNED_INT: number;\n readonly UNSIGNED_SHORT: number;\n readonly UNSIGNED_SHORT_4_4_4_4: number;\n readonly UNSIGNED_SHORT_5_5_5_1: number;\n readonly UNSIGNED_SHORT_5_6_5: number;\n readonly VALIDATE_STATUS: number;\n readonly VENDOR: number;\n readonly VERSION: number;\n readonly VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: number;\n readonly VERTEX_ATTRIB_ARRAY_ENABLED: number;\n readonly VERTEX_ATTRIB_ARRAY_NORMALIZED: number;\n readonly VERTEX_ATTRIB_ARRAY_POINTER: number;\n readonly VERTEX_ATTRIB_ARRAY_SIZE: number;\n readonly VERTEX_ATTRIB_ARRAY_STRIDE: number;\n readonly VERTEX_ATTRIB_ARRAY_TYPE: number;\n readonly VERTEX_SHADER: number;\n readonly VIEWPORT: number;\n readonly ZERO: number;\n};\n\ninterface WebGLShader extends WebGLObject {\n}\n\ndeclare var WebGLShader: {\n prototype: WebGLShader;\n new(): WebGLShader;\n};\n\ninterface WebGLShaderPrecisionFormat {\n readonly precision: number;\n readonly rangeMax: number;\n readonly rangeMin: number;\n}\n\ndeclare var WebGLShaderPrecisionFormat: {\n prototype: WebGLShaderPrecisionFormat;\n new(): WebGLShaderPrecisionFormat;\n};\n\ninterface WebGLTexture extends WebGLObject {\n}\n\ndeclare var WebGLTexture: {\n prototype: WebGLTexture;\n new(): WebGLTexture;\n};\n\ninterface WebGLUniformLocation {\n}\n\ndeclare var WebGLUniformLocation: {\n prototype: WebGLUniformLocation;\n new(): WebGLUniformLocation;\n};\n\ninterface WebKitCSSMatrix {\n a: number;\n b: number;\n c: number;\n d: number;\n e: number;\n f: number;\n m11: number;\n m12: number;\n m13: number;\n m14: number;\n m21: number;\n m22: number;\n m23: number;\n m24: number;\n m31: number;\n m32: number;\n m33: number;\n m34: number;\n m41: number;\n m42: number;\n m43: number;\n m44: number;\n inverse(): WebKitCSSMatrix;\n multiply(secondMatrix: WebKitCSSMatrix): WebKitCSSMatrix;\n rotate(angleX: number, angleY?: number, angleZ?: number): WebKitCSSMatrix;\n rotateAxisAngle(x: number, y: number, z: number, angle: number): WebKitCSSMatrix;\n scale(scaleX: number, scaleY?: number, scaleZ?: number): WebKitCSSMatrix;\n setMatrixValue(value: string): void;\n skewX(angle: number): WebKitCSSMatrix;\n skewY(angle: number): WebKitCSSMatrix;\n toString(): string;\n translate(x: number, y: number, z?: number): WebKitCSSMatrix;\n}\n\ndeclare var WebKitCSSMatrix: {\n prototype: WebKitCSSMatrix;\n new(text?: string): WebKitCSSMatrix;\n};\n\ninterface WebKitDirectoryEntry extends WebKitEntry {\n createReader(): WebKitDirectoryReader;\n}\n\ndeclare var WebKitDirectoryEntry: {\n prototype: WebKitDirectoryEntry;\n new(): WebKitDirectoryEntry;\n};\n\ninterface WebKitDirectoryReader {\n readEntries(successCallback: WebKitEntriesCallback, errorCallback?: WebKitErrorCallback): void;\n}\n\ndeclare var WebKitDirectoryReader: {\n prototype: WebKitDirectoryReader;\n new(): WebKitDirectoryReader;\n};\n\ninterface WebKitEntry {\n readonly filesystem: WebKitFileSystem;\n readonly fullPath: string;\n readonly isDirectory: boolean;\n readonly isFile: boolean;\n readonly name: string;\n}\n\ndeclare var WebKitEntry: {\n prototype: WebKitEntry;\n new(): WebKitEntry;\n};\n\ninterface WebKitFileEntry extends WebKitEntry {\n file(successCallback: WebKitFileCallback, errorCallback?: WebKitErrorCallback): void;\n}\n\ndeclare var WebKitFileEntry: {\n prototype: WebKitFileEntry;\n new(): WebKitFileEntry;\n};\n\ninterface WebKitFileSystem {\n readonly name: string;\n readonly root: WebKitDirectoryEntry;\n}\n\ndeclare var WebKitFileSystem: {\n prototype: WebKitFileSystem;\n new(): WebKitFileSystem;\n};\n\ninterface WebKitPoint {\n x: number;\n y: number;\n}\n\ndeclare var WebKitPoint: {\n prototype: WebKitPoint;\n new(x?: number, y?: number): WebKitPoint;\n};\n\ninterface webkitRTCPeerConnection extends RTCPeerConnection {\n addEventListener<K extends keyof RTCPeerConnectionEventMap>(type: K, listener: (this: webkitRTCPeerConnection, ev: RTCPeerConnectionEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var webkitRTCPeerConnection: {\n prototype: webkitRTCPeerConnection;\n new(configuration: RTCConfiguration): webkitRTCPeerConnection;\n};\n\ninterface WebSocketEventMap {\n "close": CloseEvent;\n "error": Event;\n "message": MessageEvent;\n "open": Event;\n}\n\ninterface WebSocket extends EventTarget {\n binaryType: string;\n readonly bufferedAmount: number;\n readonly extensions: string;\n onclose: (this: WebSocket, ev: CloseEvent) => any;\n onerror: (this: WebSocket, ev: Event) => any;\n onmessage: (this: WebSocket, ev: MessageEvent) => any;\n onopen: (this: WebSocket, ev: Event) => any;\n readonly protocol: string;\n readonly readyState: number;\n readonly url: string;\n close(code?: number, reason?: string): void;\n send(data: any): void;\n readonly CLOSED: number;\n readonly CLOSING: number;\n readonly CONNECTING: number;\n readonly OPEN: number;\n addEventListener<K extends keyof WebSocketEventMap>(type: K, listener: (this: WebSocket, ev: WebSocketEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var WebSocket: {\n prototype: WebSocket;\n new(url: string, protocols?: string | string[]): WebSocket;\n readonly CLOSED: number;\n readonly CLOSING: number;\n readonly CONNECTING: number;\n readonly OPEN: number;\n};\n\ninterface WheelEvent extends MouseEvent {\n readonly deltaMode: number;\n readonly deltaX: number;\n readonly deltaY: number;\n readonly deltaZ: number;\n readonly wheelDelta: number;\n readonly wheelDeltaX: number;\n readonly wheelDeltaY: number;\n getCurrentPoint(element: Element): void;\n initWheelEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, buttonArg: number, relatedTargetArg: EventTarget, modifiersListArg: string, deltaXArg: number, deltaYArg: number, deltaZArg: number, deltaMode: number): void;\n readonly DOM_DELTA_LINE: number;\n readonly DOM_DELTA_PAGE: number;\n readonly DOM_DELTA_PIXEL: number;\n}\n\ndeclare var WheelEvent: {\n prototype: WheelEvent;\n new(typeArg: string, eventInitDict?: WheelEventInit): WheelEvent;\n readonly DOM_DELTA_LINE: number;\n readonly DOM_DELTA_PAGE: number;\n readonly DOM_DELTA_PIXEL: number;\n};\n\ninterface WindowEventMap extends GlobalEventHandlersEventMap {\n "abort": UIEvent;\n "afterprint": Event;\n "beforeprint": Event;\n "beforeunload": BeforeUnloadEvent;\n "blur": FocusEvent;\n "canplay": Event;\n "canplaythrough": Event;\n "change": Event;\n "click": MouseEvent;\n "compassneedscalibration": Event;\n "contextmenu": PointerEvent;\n "dblclick": MouseEvent;\n "devicelight": DeviceLightEvent;\n "devicemotion": DeviceMotionEvent;\n "deviceorientation": DeviceOrientationEvent;\n "drag": DragEvent;\n "dragend": DragEvent;\n "dragenter": DragEvent;\n "dragleave": DragEvent;\n "dragover": DragEvent;\n "dragstart": DragEvent;\n "drop": DragEvent;\n "durationchange": Event;\n "emptied": Event;\n "ended": MediaStreamErrorEvent;\n "error": ErrorEvent;\n "focus": FocusEvent;\n "hashchange": HashChangeEvent;\n "input": Event;\n "invalid": Event;\n "keydown": KeyboardEvent;\n "keypress": KeyboardEvent;\n "keyup": KeyboardEvent;\n "load": Event;\n "loadeddata": Event;\n "loadedmetadata": Event;\n "loadstart": Event;\n "message": MessageEvent;\n "mousedown": MouseEvent;\n "mouseenter": MouseEvent;\n "mouseleave": MouseEvent;\n "mousemove": MouseEvent;\n "mouseout": MouseEvent;\n "mouseover": MouseEvent;\n "mouseup": MouseEvent;\n "mousewheel": WheelEvent;\n "MSGestureChange": MSGestureEvent;\n "MSGestureDoubleTap": MSGestureEvent;\n "MSGestureEnd": MSGestureEvent;\n "MSGestureHold": MSGestureEvent;\n "MSGestureStart": MSGestureEvent;\n "MSGestureTap": MSGestureEvent;\n "MSInertiaStart": MSGestureEvent;\n "MSPointerCancel": MSPointerEvent;\n "MSPointerDown": MSPointerEvent;\n "MSPointerEnter": MSPointerEvent;\n "MSPointerLeave": MSPointerEvent;\n "MSPointerMove": MSPointerEvent;\n "MSPointerOut": MSPointerEvent;\n "MSPointerOver": MSPointerEvent;\n "MSPointerUp": MSPointerEvent;\n "offline": Event;\n "online": Event;\n "orientationchange": Event;\n "pagehide": PageTransitionEvent;\n "pageshow": PageTransitionEvent;\n "pause": Event;\n "play": Event;\n "playing": Event;\n "popstate": PopStateEvent;\n "progress": ProgressEvent;\n "ratechange": Event;\n "readystatechange": ProgressEvent;\n "reset": Event;\n "resize": UIEvent;\n "scroll": UIEvent;\n "seeked": Event;\n "seeking": Event;\n "select": UIEvent;\n "stalled": Event;\n "storage": StorageEvent;\n "submit": Event;\n "suspend": Event;\n "timeupdate": Event;\n "touchcancel": TouchEvent;\n "touchend": TouchEvent;\n "touchmove": TouchEvent;\n "touchstart": TouchEvent;\n "unload": Event;\n "volumechange": Event;\n "waiting": Event;\n}\n\ninterface Window extends EventTarget, WindowTimers, WindowSessionStorage, WindowLocalStorage, WindowConsole, GlobalEventHandlers, IDBEnvironment, WindowBase64, GlobalFetch {\n readonly applicationCache: ApplicationCache;\n readonly caches: CacheStorage;\n readonly clientInformation: Navigator;\n readonly closed: boolean;\n readonly crypto: Crypto;\n defaultStatus: string;\n readonly devicePixelRatio: number;\n readonly document: Document;\n readonly doNotTrack: string;\n event: Event | undefined;\n readonly external: External;\n readonly frameElement: Element;\n readonly frames: Window;\n readonly history: History;\n readonly innerHeight: number;\n readonly innerWidth: number;\n readonly isSecureContext: boolean;\n readonly length: number;\n readonly location: Location;\n readonly locationbar: BarProp;\n readonly menubar: BarProp;\n readonly msContentScript: ExtensionScriptApis;\n readonly msCredentials: MSCredentials;\n name: string;\n readonly navigator: Navigator;\n offscreenBuffering: string | boolean;\n onabort: (this: Window, ev: UIEvent) => any;\n onafterprint: (this: Window, ev: Event) => any;\n onbeforeprint: (this: Window, ev: Event) => any;\n onbeforeunload: (this: Window, ev: BeforeUnloadEvent) => any;\n onblur: (this: Window, ev: FocusEvent) => any;\n oncanplay: (this: Window, ev: Event) => any;\n oncanplaythrough: (this: Window, ev: Event) => any;\n onchange: (this: Window, ev: Event) => any;\n onclick: (this: Window, ev: MouseEvent) => any;\n oncompassneedscalibration: (this: Window, ev: Event) => any;\n oncontextmenu: (this: Window, ev: PointerEvent) => any;\n ondblclick: (this: Window, ev: MouseEvent) => any;\n ondevicelight: (this: Window, ev: DeviceLightEvent) => any;\n ondevicemotion: (this: Window, ev: DeviceMotionEvent) => any;\n ondeviceorientation: (this: Window, ev: DeviceOrientationEvent) => any;\n ondrag: (this: Window, ev: DragEvent) => any;\n ondragend: (this: Window, ev: DragEvent) => any;\n ondragenter: (this: Window, ev: DragEvent) => any;\n ondragleave: (this: Window, ev: DragEvent) => any;\n ondragover: (this: Window, ev: DragEvent) => any;\n ondragstart: (this: Window, ev: DragEvent) => any;\n ondrop: (this: Window, ev: DragEvent) => any;\n ondurationchange: (this: Window, ev: Event) => any;\n onemptied: (this: Window, ev: Event) => any;\n onended: (this: Window, ev: MediaStreamErrorEvent) => any;\n onerror: ErrorEventHandler;\n onfocus: (this: Window, ev: FocusEvent) => any;\n onhashchange: (this: Window, ev: HashChangeEvent) => any;\n oninput: (this: Window, ev: Event) => any;\n oninvalid: (this: Window, ev: Event) => any;\n onkeydown: (this: Window, ev: KeyboardEvent) => any;\n onkeypress: (this: Window, ev: KeyboardEvent) => any;\n onkeyup: (this: Window, ev: KeyboardEvent) => any;\n onload: (this: Window, ev: Event) => any;\n onloadeddata: (this: Window, ev: Event) => any;\n onloadedmetadata: (this: Window, ev: Event) => any;\n onloadstart: (this: Window, ev: Event) => any;\n onmessage: (this: Window, ev: MessageEvent) => any;\n onmousedown: (this: Window, ev: MouseEvent) => any;\n onmouseenter: (this: Window, ev: MouseEvent) => any;\n onmouseleave: (this: Window, ev: MouseEvent) => any;\n onmousemove: (this: Window, ev: MouseEvent) => any;\n onmouseout: (this: Window, ev: MouseEvent) => any;\n onmouseover: (this: Window, ev: MouseEvent) => any;\n onmouseup: (this: Window, ev: MouseEvent) => any;\n onmousewheel: (this: Window, ev: WheelEvent) => any;\n onmsgesturechange: (this: Window, ev: MSGestureEvent) => any;\n onmsgesturedoubletap: (this: Window, ev: MSGestureEvent) => any;\n onmsgestureend: (this: Window, ev: MSGestureEvent) => any;\n onmsgesturehold: (this: Window, ev: MSGestureEvent) => any;\n onmsgesturestart: (this: Window, ev: MSGestureEvent) => any;\n onmsgesturetap: (this: Window, ev: MSGestureEvent) => any;\n onmsinertiastart: (this: Window, ev: MSGestureEvent) => any;\n onmspointercancel: (this: Window, ev: MSPointerEvent) => any;\n onmspointerdown: (this: Window, ev: MSPointerEvent) => any;\n onmspointerenter: (this: Window, ev: MSPointerEvent) => any;\n onmspointerleave: (this: Window, ev: MSPointerEvent) => any;\n onmspointermove: (this: Window, ev: MSPointerEvent) => any;\n onmspointerout: (this: Window, ev: MSPointerEvent) => any;\n onmspointerover: (this: Window, ev: MSPointerEvent) => any;\n onmspointerup: (this: Window, ev: MSPointerEvent) => any;\n onoffline: (this: Window, ev: Event) => any;\n ononline: (this: Window, ev: Event) => any;\n onorientationchange: (this: Window, ev: Event) => any;\n onpagehide: (this: Window, ev: PageTransitionEvent) => any;\n onpageshow: (this: Window, ev: PageTransitionEvent) => any;\n onpause: (this: Window, ev: Event) => any;\n onplay: (this: Window, ev: Event) => any;\n onplaying: (this: Window, ev: Event) => any;\n onpopstate: (this: Window, ev: PopStateEvent) => any;\n onprogress: (this: Window, ev: ProgressEvent) => any;\n onratechange: (this: Window, ev: Event) => any;\n onreadystatechange: (this: Window, ev: ProgressEvent) => any;\n onreset: (this: Window, ev: Event) => any;\n onresize: (this: Window, ev: UIEvent) => any;\n onscroll: (this: Window, ev: UIEvent) => any;\n onseeked: (this: Window, ev: Event) => any;\n onseeking: (this: Window, ev: Event) => any;\n onselect: (this: Window, ev: UIEvent) => any;\n onstalled: (this: Window, ev: Event) => any;\n onstorage: (this: Window, ev: StorageEvent) => any;\n onsubmit: (this: Window, ev: Event) => any;\n onsuspend: (this: Window, ev: Event) => any;\n ontimeupdate: (this: Window, ev: Event) => any;\n ontouchcancel: (ev: TouchEvent) => any;\n ontouchend: (ev: TouchEvent) => any;\n ontouchmove: (ev: TouchEvent) => any;\n ontouchstart: (ev: TouchEvent) => any;\n onunload: (this: Window, ev: Event) => any;\n onvolumechange: (this: Window, ev: Event) => any;\n onwaiting: (this: Window, ev: Event) => any;\n opener: any;\n orientation: string | number;\n readonly outerHeight: number;\n readonly outerWidth: number;\n readonly pageXOffset: number;\n readonly pageYOffset: number;\n readonly parent: Window;\n readonly performance: Performance;\n readonly personalbar: BarProp;\n readonly screen: Screen;\n readonly screenLeft: number;\n readonly screenTop: number;\n readonly screenX: number;\n readonly screenY: number;\n readonly scrollbars: BarProp;\n readonly scrollX: number;\n readonly scrollY: number;\n readonly self: Window;\n readonly speechSynthesis: SpeechSynthesis;\n status: string;\n readonly statusbar: BarProp;\n readonly styleMedia: StyleMedia;\n readonly toolbar: BarProp;\n readonly top: Window;\n readonly window: Window;\n URL: typeof URL;\n URLSearchParams: typeof URLSearchParams;\n Blob: typeof Blob;\n customElements: CustomElementRegistry;\n alert(message?: any): void;\n blur(): void;\n cancelAnimationFrame(handle: number): void;\n captureEvents(): void;\n close(): void;\n confirm(message?: string): boolean;\n departFocus(navigationReason: NavigationReason, origin: FocusNavigationOrigin): void;\n focus(): void;\n getComputedStyle(elt: Element, pseudoElt?: string): CSSStyleDeclaration;\n getMatchedCSSRules(elt: Element, pseudoElt?: string): CSSRuleList;\n getSelection(): Selection;\n matchMedia(mediaQuery: string): MediaQueryList;\n moveBy(x?: number, y?: number): void;\n moveTo(x?: number, y?: number): void;\n msWriteProfilerMark(profilerMarkName: string): void;\n open(url?: string, target?: string, features?: string, replace?: boolean): Window;\n postMessage(message: any, targetOrigin: string, transfer?: any[]): void;\n print(): void;\n prompt(message?: string, _default?: string): string | null;\n releaseEvents(): void;\n requestAnimationFrame(callback: FrameRequestCallback): number;\n resizeBy(x?: number, y?: number): void;\n resizeTo(x?: number, y?: number): void;\n scroll(x?: number, y?: number): void;\n scrollBy(x?: number, y?: number): void;\n scrollTo(x?: number, y?: number): void;\n stop(): void;\n webkitCancelAnimationFrame(handle: number): void;\n webkitConvertPointFromNodeToPage(node: Node, pt: WebKitPoint): WebKitPoint;\n webkitConvertPointFromPageToNode(node: Node, pt: WebKitPoint): WebKitPoint;\n webkitRequestAnimationFrame(callback: FrameRequestCallback): number;\n createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise<ImageBitmap>;\n createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;\n scroll(options?: ScrollToOptions): void;\n scrollTo(options?: ScrollToOptions): void;\n scrollBy(options?: ScrollToOptions): void;\n addEventListener<K extends keyof WindowEventMap>(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Window: {\n prototype: Window;\n new(): Window;\n};\n\ninterface WorkerEventMap extends AbstractWorkerEventMap {\n "message": MessageEvent;\n}\n\ninterface Worker extends EventTarget, AbstractWorker {\n onmessage: (this: Worker, ev: MessageEvent) => any;\n postMessage(message: any, transfer?: any[]): void;\n terminate(): void;\n addEventListener<K extends keyof WorkerEventMap>(type: K, listener: (this: Worker, ev: WorkerEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var Worker: {\n prototype: Worker;\n new(stringUrl: string): Worker;\n};\n\ninterface XMLDocument extends Document {\n addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: XMLDocument, ev: DocumentEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var XMLDocument: {\n prototype: XMLDocument;\n new(): XMLDocument;\n};\n\ninterface XMLHttpRequestEventMap extends XMLHttpRequestEventTargetEventMap {\n "readystatechange": Event;\n}\n\ninterface XMLHttpRequest extends EventTarget, XMLHttpRequestEventTarget {\n onreadystatechange: (this: XMLHttpRequest, ev: Event) => any;\n readonly readyState: number;\n readonly response: any;\n readonly responseText: string;\n responseType: XMLHttpRequestResponseType;\n readonly responseURL: string;\n readonly responseXML: Document | null;\n readonly status: number;\n readonly statusText: string;\n timeout: number;\n readonly upload: XMLHttpRequestUpload;\n withCredentials: boolean;\n msCaching?: string;\n abort(): void;\n getAllResponseHeaders(): string;\n getResponseHeader(header: string): string | null;\n msCachingEnabled(): boolean;\n open(method: string, url: string, async?: boolean, user?: string, password?: string): void;\n overrideMimeType(mime: string): void;\n send(data?: Document): void;\n send(data?: string): void;\n send(data?: any): void;\n setRequestHeader(header: string, value: string): void;\n readonly DONE: number;\n readonly HEADERS_RECEIVED: number;\n readonly LOADING: number;\n readonly OPENED: number;\n readonly UNSENT: number;\n addEventListener<K extends keyof XMLHttpRequestEventMap>(type: K, listener: (this: XMLHttpRequest, ev: XMLHttpRequestEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var XMLHttpRequest: {\n prototype: XMLHttpRequest;\n new(): XMLHttpRequest;\n readonly DONE: number;\n readonly HEADERS_RECEIVED: number;\n readonly LOADING: number;\n readonly OPENED: number;\n readonly UNSENT: number;\n};\n\ninterface XMLHttpRequestUpload extends EventTarget, XMLHttpRequestEventTarget {\n addEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestUpload, ev: XMLHttpRequestEventTargetEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ndeclare var XMLHttpRequestUpload: {\n prototype: XMLHttpRequestUpload;\n new(): XMLHttpRequestUpload;\n};\n\ninterface XMLSerializer {\n serializeToString(target: Node): string;\n}\n\ndeclare var XMLSerializer: {\n prototype: XMLSerializer;\n new(): XMLSerializer;\n};\n\ninterface XPathEvaluator {\n createExpression(expression: string, resolver: XPathNSResolver): XPathExpression;\n createNSResolver(nodeResolver?: Node): XPathNSResolver;\n evaluate(expression: string, contextNode: Node, resolver: XPathNSResolver | null, type: number, result: XPathResult | null): XPathResult;\n}\n\ndeclare var XPathEvaluator: {\n prototype: XPathEvaluator;\n new(): XPathEvaluator;\n};\n\ninterface XPathExpression {\n evaluate(contextNode: Node, type: number, result: XPathResult | null): XPathResult;\n}\n\ndeclare var XPathExpression: {\n prototype: XPathExpression;\n new(): XPathExpression;\n};\n\ninterface XPathNSResolver {\n lookupNamespaceURI(prefix: string): string;\n}\n\ndeclare var XPathNSResolver: {\n prototype: XPathNSResolver;\n new(): XPathNSResolver;\n};\n\ninterface XPathResult {\n readonly booleanValue: boolean;\n readonly invalidIteratorState: boolean;\n readonly numberValue: number;\n readonly resultType: number;\n readonly singleNodeValue: Node;\n readonly snapshotLength: number;\n readonly stringValue: string;\n iterateNext(): Node;\n snapshotItem(index: number): Node;\n readonly ANY_TYPE: number;\n readonly ANY_UNORDERED_NODE_TYPE: number;\n readonly BOOLEAN_TYPE: number;\n readonly FIRST_ORDERED_NODE_TYPE: number;\n readonly NUMBER_TYPE: number;\n readonly ORDERED_NODE_ITERATOR_TYPE: number;\n readonly ORDERED_NODE_SNAPSHOT_TYPE: number;\n readonly STRING_TYPE: number;\n readonly UNORDERED_NODE_ITERATOR_TYPE: number;\n readonly UNORDERED_NODE_SNAPSHOT_TYPE: number;\n}\n\ndeclare var XPathResult: {\n prototype: XPathResult;\n new(): XPathResult;\n readonly ANY_TYPE: number;\n readonly ANY_UNORDERED_NODE_TYPE: number;\n readonly BOOLEAN_TYPE: number;\n readonly FIRST_ORDERED_NODE_TYPE: number;\n readonly NUMBER_TYPE: number;\n readonly ORDERED_NODE_ITERATOR_TYPE: number;\n readonly ORDERED_NODE_SNAPSHOT_TYPE: number;\n readonly STRING_TYPE: number;\n readonly UNORDERED_NODE_ITERATOR_TYPE: number;\n readonly UNORDERED_NODE_SNAPSHOT_TYPE: number;\n};\n\ninterface XSLTProcessor {\n clearParameters(): void;\n getParameter(namespaceURI: string, localName: string): any;\n importStylesheet(style: Node): void;\n removeParameter(namespaceURI: string, localName: string): void;\n reset(): void;\n setParameter(namespaceURI: string, localName: string, value: any): void;\n transformToDocument(source: Node): Document;\n transformToFragment(source: Node, document: Document): DocumentFragment;\n}\n\ndeclare var XSLTProcessor: {\n prototype: XSLTProcessor;\n new(): XSLTProcessor;\n};\n\ninterface AbstractWorkerEventMap {\n "error": ErrorEvent;\n}\n\ninterface AbstractWorker {\n onerror: (this: AbstractWorker, ev: ErrorEvent) => any;\n addEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: AbstractWorker, ev: AbstractWorkerEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ninterface Body {\n readonly bodyUsed: boolean;\n arrayBuffer(): Promise<ArrayBuffer>;\n blob(): Promise<Blob>;\n json(): Promise<any>;\n text(): Promise<string>;\n formData(): Promise<FormData>;\n}\n\ninterface CanvasPathMethods {\n arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, anticlockwise?: boolean): void;\n arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void;\n bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;\n closePath(): void;\n ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, anticlockwise?: boolean): void;\n lineTo(x: number, y: number): void;\n moveTo(x: number, y: number): void;\n quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;\n rect(x: number, y: number, w: number, h: number): void;\n}\n\ninterface ChildNode {\n remove(): void;\n}\n\ninterface DocumentEvent {\n createEvent(eventInterface: "AnimationEvent"): AnimationEvent;\n createEvent(eventInterface: "AudioProcessingEvent"): AudioProcessingEvent;\n createEvent(eventInterface: "BeforeUnloadEvent"): BeforeUnloadEvent;\n createEvent(eventInterface: "ClipboardEvent"): ClipboardEvent;\n createEvent(eventInterface: "CloseEvent"): CloseEvent;\n createEvent(eventInterface: "CompositionEvent"): CompositionEvent;\n createEvent(eventInterface: "CustomEvent"): CustomEvent;\n createEvent(eventInterface: "DeviceLightEvent"): DeviceLightEvent;\n createEvent(eventInterface: "DeviceMotionEvent"): DeviceMotionEvent;\n createEvent(eventInterface: "DeviceOrientationEvent"): DeviceOrientationEvent;\n createEvent(eventInterface: "DragEvent"): DragEvent;\n createEvent(eventInterface: "ErrorEvent"): ErrorEvent;\n createEvent(eventInterface: "Event"): Event;\n createEvent(eventInterface: "Events"): Event;\n createEvent(eventInterface: "FocusEvent"): FocusEvent;\n createEvent(eventInterface: "FocusNavigationEvent"): FocusNavigationEvent;\n createEvent(eventInterface: "GamepadEvent"): GamepadEvent;\n createEvent(eventInterface: "HashChangeEvent"): HashChangeEvent;\n createEvent(eventInterface: "IDBVersionChangeEvent"): IDBVersionChangeEvent;\n createEvent(eventInterface: "KeyboardEvent"): KeyboardEvent;\n createEvent(eventInterface: "ListeningStateChangedEvent"): ListeningStateChangedEvent;\n createEvent(eventInterface: "LongRunningScriptDetectedEvent"): LongRunningScriptDetectedEvent;\n createEvent(eventInterface: "MSGestureEvent"): MSGestureEvent;\n createEvent(eventInterface: "MSManipulationEvent"): MSManipulationEvent;\n createEvent(eventInterface: "MSMediaKeyMessageEvent"): MSMediaKeyMessageEvent;\n createEvent(eventInterface: "MSMediaKeyNeededEvent"): MSMediaKeyNeededEvent;\n createEvent(eventInterface: "MSPointerEvent"): MSPointerEvent;\n createEvent(eventInterface: "MSSiteModeEvent"): MSSiteModeEvent;\n createEvent(eventInterface: "MediaEncryptedEvent"): MediaEncryptedEvent;\n createEvent(eventInterface: "MediaKeyMessageEvent"): MediaKeyMessageEvent;\n createEvent(eventInterface: "MediaStreamErrorEvent"): MediaStreamErrorEvent;\n createEvent(eventInterface: "MediaStreamEvent"): MediaStreamEvent;\n createEvent(eventInterface: "MediaStreamTrackEvent"): MediaStreamTrackEvent;\n createEvent(eventInterface: "MessageEvent"): MessageEvent;\n createEvent(eventInterface: "MouseEvent"): MouseEvent;\n createEvent(eventInterface: "MouseEvents"): MouseEvent;\n createEvent(eventInterface: "MutationEvent"): MutationEvent;\n createEvent(eventInterface: "MutationEvents"): MutationEvent;\n createEvent(eventInterface: "NavigationCompletedEvent"): NavigationCompletedEvent;\n createEvent(eventInterface: "NavigationEvent"): NavigationEvent;\n createEvent(eventInterface: "NavigationEventWithReferrer"): NavigationEventWithReferrer;\n createEvent(eventInterface: "OfflineAudioCompletionEvent"): OfflineAudioCompletionEvent;\n createEvent(eventInterface: "OverflowEvent"): OverflowEvent;\n createEvent(eventInterface: "PageTransitionEvent"): PageTransitionEvent;\n createEvent(eventInterface: "PaymentRequestUpdateEvent"): PaymentRequestUpdateEvent;\n createEvent(eventInterface: "PermissionRequestedEvent"): PermissionRequestedEvent;\n createEvent(eventInterface: "PointerEvent"): PointerEvent;\n createEvent(eventInterface: "PopStateEvent"): PopStateEvent;\n createEvent(eventInterface: "ProgressEvent"): ProgressEvent;\n createEvent(eventInterface: "RTCDTMFToneChangeEvent"): RTCDTMFToneChangeEvent;\n createEvent(eventInterface: "RTCDtlsTransportStateChangedEvent"): RTCDtlsTransportStateChangedEvent;\n createEvent(eventInterface: "RTCIceCandidatePairChangedEvent"): RTCIceCandidatePairChangedEvent;\n createEvent(eventInterface: "RTCIceGathererEvent"): RTCIceGathererEvent;\n createEvent(eventInterface: "RTCIceTransportStateChangedEvent"): RTCIceTransportStateChangedEvent;\n createEvent(eventInterface: "RTCPeerConnectionIceEvent"): RTCPeerConnectionIceEvent;\n createEvent(eventInterface: "RTCSsrcConflictEvent"): RTCSsrcConflictEvent;\n createEvent(eventInterface: "SVGZoomEvent"): SVGZoomEvent;\n createEvent(eventInterface: "SVGZoomEvents"): SVGZoomEvent;\n createEvent(eventInterface: "ScriptNotifyEvent"): ScriptNotifyEvent;\n createEvent(eventInterface: "ServiceWorkerMessageEvent"): ServiceWorkerMessageEvent;\n createEvent(eventInterface: "SpeechSynthesisEvent"): SpeechSynthesisEvent;\n createEvent(eventInterface: "StorageEvent"): StorageEvent;\n createEvent(eventInterface: "TextEvent"): TextEvent;\n createEvent(eventInterface: "TouchEvent"): TouchEvent;\n createEvent(eventInterface: "TrackEvent"): TrackEvent;\n createEvent(eventInterface: "TransitionEvent"): TransitionEvent;\n createEvent(eventInterface: "UIEvent"): UIEvent;\n createEvent(eventInterface: "UIEvents"): UIEvent;\n createEvent(eventInterface: "UnviewableContentIdentifiedEvent"): UnviewableContentIdentifiedEvent;\n createEvent(eventInterface: "WebGLContextEvent"): WebGLContextEvent;\n createEvent(eventInterface: "WheelEvent"): WheelEvent;\n createEvent(eventInterface: string): Event;\n}\n\ninterface DOML2DeprecatedColorProperty {\n color: string;\n}\n\ninterface DOML2DeprecatedSizeProperty {\n size: number;\n}\n\ninterface ElementTraversal {\n readonly childElementCount: number;\n readonly firstElementChild: Element | null;\n readonly lastElementChild: Element | null;\n readonly nextElementSibling: Element | null;\n readonly previousElementSibling: Element | null;\n}\n\ninterface GetSVGDocument {\n getSVGDocument(): Document;\n}\n\ninterface GlobalEventHandlersEventMap {\n "pointercancel": PointerEvent;\n "pointerdown": PointerEvent;\n "pointerenter": PointerEvent;\n "pointerleave": PointerEvent;\n "pointermove": PointerEvent;\n "pointerout": PointerEvent;\n "pointerover": PointerEvent;\n "pointerup": PointerEvent;\n "wheel": WheelEvent;\n}\n\ninterface GlobalEventHandlers {\n onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;\n addEventListener<K extends keyof GlobalEventHandlersEventMap>(type: K, listener: (this: GlobalEventHandlers, ev: GlobalEventHandlersEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ninterface GlobalFetch {\n fetch(input: RequestInfo, init?: RequestInit): Promise<Response>;\n}\n\ninterface HTMLTableAlignment {\n /**\n * Sets or retrieves a value that you can use to implement your own ch functionality for the object.\n */\n ch: string;\n /**\n * Sets or retrieves a value that you can use to implement your own chOff functionality for the object.\n */\n chOff: string;\n /**\n * Sets or retrieves how text and other content are vertically aligned within the object that contains them.\n */\n vAlign: string;\n}\n\ninterface IDBEnvironment {\n readonly indexedDB: IDBFactory;\n}\n\ninterface LinkStyle {\n readonly sheet: StyleSheet;\n}\n\ninterface MSBaseReaderEventMap {\n "abort": Event;\n "error": ErrorEvent;\n "load": Event;\n "loadend": ProgressEvent;\n "loadstart": Event;\n "progress": ProgressEvent;\n}\n\ninterface MSBaseReader {\n onabort: (this: MSBaseReader, ev: Event) => any;\n onerror: (this: MSBaseReader, ev: ErrorEvent) => any;\n onload: (this: MSBaseReader, ev: Event) => any;\n onloadend: (this: MSBaseReader, ev: ProgressEvent) => any;\n onloadstart: (this: MSBaseReader, ev: Event) => any;\n onprogress: (this: MSBaseReader, ev: ProgressEvent) => any;\n readonly readyState: number;\n readonly result: any;\n abort(): void;\n readonly DONE: number;\n readonly EMPTY: number;\n readonly LOADING: number;\n addEventListener<K extends keyof MSBaseReaderEventMap>(type: K, listener: (this: MSBaseReader, ev: MSBaseReaderEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ninterface MSFileSaver {\n msSaveBlob(blob: any, defaultName?: string): boolean;\n msSaveOrOpenBlob(blob: any, defaultName?: string): boolean;\n}\n\ninterface MSNavigatorDoNotTrack {\n confirmSiteSpecificTrackingException(args: ConfirmSiteSpecificExceptionsInformation): boolean;\n confirmWebWideTrackingException(args: ExceptionInformation): boolean;\n removeSiteSpecificTrackingException(args: ExceptionInformation): void;\n removeWebWideTrackingException(args: ExceptionInformation): void;\n storeSiteSpecificTrackingException(args: StoreSiteSpecificExceptionsInformation): void;\n storeWebWideTrackingException(args: StoreExceptionsInformation): void;\n}\n\ninterface NavigatorBeacon {\n sendBeacon(url: USVString, data?: BodyInit): boolean;\n}\n\ninterface NavigatorConcurrentHardware {\n readonly hardwareConcurrency: number;\n}\n\ninterface NavigatorContentUtils {\n}\n\ninterface NavigatorGeolocation {\n readonly geolocation: Geolocation;\n}\n\ninterface NavigatorID {\n readonly appCodeName: string;\n readonly appName: string;\n readonly appVersion: string;\n readonly platform: string;\n readonly product: string;\n readonly productSub: string;\n readonly userAgent: string;\n readonly vendor: string;\n readonly vendorSub: string;\n}\n\ninterface NavigatorOnLine {\n readonly onLine: boolean;\n}\n\ninterface NavigatorStorageUtils {\n}\n\ninterface NavigatorUserMedia {\n readonly mediaDevices: MediaDevices;\n getUserMedia(constraints: MediaStreamConstraints, successCallback: NavigatorUserMediaSuccessCallback, errorCallback: NavigatorUserMediaErrorCallback): void;\n}\n\ninterface NodeSelector {\n querySelector<K extends keyof ElementTagNameMap>(selectors: K): ElementTagNameMap[K] | null;\n querySelector(selectors: string): Element | null;\n querySelectorAll<K extends keyof ElementListTagNameMap>(selectors: K): ElementListTagNameMap[K];\n querySelectorAll(selectors: string): NodeListOf<Element>;\n}\n\ninterface RandomSource {\n getRandomValues(array: ArrayBufferView): ArrayBufferView;\n}\n\ninterface SVGAnimatedPoints {\n readonly animatedPoints: SVGPointList;\n readonly points: SVGPointList;\n}\n\ninterface SVGFilterPrimitiveStandardAttributes {\n readonly height: SVGAnimatedLength;\n readonly result: SVGAnimatedString;\n readonly width: SVGAnimatedLength;\n readonly x: SVGAnimatedLength;\n readonly y: SVGAnimatedLength;\n}\n\ninterface SVGFitToViewBox {\n readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;\n readonly viewBox: SVGAnimatedRect;\n}\n\ninterface SVGTests {\n readonly requiredExtensions: SVGStringList;\n readonly requiredFeatures: SVGStringList;\n readonly systemLanguage: SVGStringList;\n hasExtension(extension: string): boolean;\n}\n\ninterface SVGURIReference {\n readonly href: SVGAnimatedString;\n}\n\ninterface WindowBase64 {\n atob(encodedString: string): string;\n btoa(rawString: string): string;\n}\n\ninterface WindowConsole {\n readonly console: Console;\n}\n\ninterface WindowLocalStorage {\n readonly localStorage: Storage;\n}\n\ninterface WindowSessionStorage {\n readonly sessionStorage: Storage;\n}\n\ninterface WindowTimers extends Object, WindowTimersExtension {\n clearInterval(handle: number): void;\n clearTimeout(handle: number): void;\n setInterval(handler: (...args: any[]) => void, timeout: number): number;\n setInterval(handler: any, timeout?: any, ...args: any[]): number;\n setTimeout(handler: (...args: any[]) => void, timeout: number): number;\n setTimeout(handler: any, timeout?: any, ...args: any[]): number;\n}\n\ninterface WindowTimersExtension {\n clearImmediate(handle: number): void;\n setImmediate(handler: (...args: any[]) => void): number;\n setImmediate(handler: any, ...args: any[]): number;\n}\n\ninterface XMLHttpRequestEventTargetEventMap {\n "abort": Event;\n "error": ErrorEvent;\n "load": Event;\n "loadend": ProgressEvent;\n "loadstart": Event;\n "progress": ProgressEvent;\n "timeout": ProgressEvent;\n}\n\ninterface XMLHttpRequestEventTarget {\n onabort: (this: XMLHttpRequestEventTarget, ev: Event) => any;\n onerror: (this: XMLHttpRequestEventTarget, ev: ErrorEvent) => any;\n onload: (this: XMLHttpRequestEventTarget, ev: Event) => any;\n onloadend: (this: XMLHttpRequestEventTarget, ev: ProgressEvent) => any;\n onloadstart: (this: XMLHttpRequestEventTarget, ev: Event) => any;\n onprogress: (this: XMLHttpRequestEventTarget, ev: ProgressEvent) => any;\n ontimeout: (this: XMLHttpRequestEventTarget, ev: ProgressEvent) => any;\n addEventListener<K extends keyof XMLHttpRequestEventTargetEventMap>(type: K, listener: (this: XMLHttpRequestEventTarget, ev: XMLHttpRequestEventTargetEventMap[K]) => any, useCapture?: boolean): void;\n addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\n}\n\ninterface ErrorEventInit {\n message?: string;\n filename?: string;\n lineno?: number;\n conlno?: number;\n error?: any;\n}\n\ninterface StorageEventInit extends EventInit {\n key?: string;\n oldValue?: string;\n newValue?: string;\n url: string;\n storageArea?: Storage;\n}\n\ninterface Canvas2DContextAttributes {\n alpha?: boolean;\n willReadFrequently?: boolean;\n storage?: boolean;\n [attribute: string]: boolean | string | undefined;\n}\n\ninterface ImageBitmapOptions {\n imageOrientation?: "none" | "flipY";\n premultiplyAlpha?: "none" | "premultiply" | "default";\n colorSpaceConversion?: "none" | "default";\n resizeWidth?: number;\n resizeHeight?: number;\n resizeQuality?: "pixelated" | "low" | "medium" | "high";\n}\n\ninterface ImageBitmap {\n readonly width: number;\n readonly height: number;\n close(): void;\n}\n\ninterface URLSearchParams {\n /**\n * Appends a specified key/value pair as a new search parameter.\n */\n append(name: string, value: string): void;\n /**\n * Deletes the given search parameter, and its associated value, from the list of all search parameters.\n */\n delete(name: string): void;\n /**\n * Returns the first value associated to the given search parameter.\n */\n get(name: string): string | null;\n /**\n * Returns all the values association with a given search parameter.\n */\n getAll(name: string): string[];\n /**\n * Returns a Boolean indicating if such a search parameter exists.\n */\n has(name: string): boolean;\n /**\n * Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.\n */\n set(name: string, value: string): void;\n}\n\ndeclare var URLSearchParams: {\n prototype: URLSearchParams;\n /**\n * Constructor returning a URLSearchParams object.\n */\n new (init?: string | URLSearchParams): URLSearchParams;\n};\n\ninterface NodeListOf<TNode extends Node> extends NodeList {\n length: number;\n item(index: number): TNode;\n [index: number]: TNode;\n}\n\ninterface HTMLCollectionOf<T extends Element> extends HTMLCollection {\n item(index: number): T;\n namedItem(name: string): T;\n [index: number]: T;\n}\n\ninterface BlobPropertyBag {\n type?: string;\n endings?: string;\n}\n\ninterface FilePropertyBag {\n type?: string;\n lastModified?: number;\n}\n\ninterface EventListenerObject {\n handleEvent(evt: Event): void;\n}\n\ninterface ProgressEventInit extends EventInit {\n lengthComputable?: boolean;\n loaded?: number;\n total?: number;\n}\n\ninterface ScrollOptions {\n behavior?: ScrollBehavior;\n}\n\ninterface ScrollToOptions extends ScrollOptions {\n left?: number;\n top?: number;\n}\n\ninterface ScrollIntoViewOptions extends ScrollOptions {\n block?: ScrollLogicalPosition;\n inline?: ScrollLogicalPosition;\n}\n\ninterface ClipboardEventInit extends EventInit {\n data?: string;\n dataType?: string;\n}\n\ninterface IDBArrayKey extends Array<IDBValidKey> {\n}\n\ninterface RsaKeyGenParams extends Algorithm {\n modulusLength: number;\n publicExponent: Uint8Array;\n}\n\ninterface RsaHashedKeyGenParams extends RsaKeyGenParams {\n hash: AlgorithmIdentifier;\n}\n\ninterface RsaKeyAlgorithm extends KeyAlgorithm {\n modulusLength: number;\n publicExponent: Uint8Array;\n}\n\ninterface RsaHashedKeyAlgorithm extends RsaKeyAlgorithm {\n hash: AlgorithmIdentifier;\n}\n\ninterface RsaHashedImportParams {\n hash: AlgorithmIdentifier;\n}\n\ninterface RsaPssParams {\n saltLength: number;\n}\n\ninterface RsaOaepParams extends Algorithm {\n label?: BufferSource;\n}\n\ninterface EcdsaParams extends Algorithm {\n hash: AlgorithmIdentifier;\n}\n\ninterface EcKeyGenParams extends Algorithm {\n namedCurve: string;\n}\n\ninterface EcKeyAlgorithm extends KeyAlgorithm {\n typedCurve: string;\n}\n\ninterface EcKeyImportParams {\n namedCurve: string;\n}\n\ninterface EcdhKeyDeriveParams extends Algorithm {\n public: CryptoKey;\n}\n\ninterface AesCtrParams extends Algorithm {\n counter: BufferSource;\n length: number;\n}\n\ninterface AesKeyAlgorithm extends KeyAlgorithm {\n length: number;\n}\n\ninterface AesKeyGenParams extends Algorithm {\n length: number;\n}\n\ninterface AesDerivedKeyParams extends Algorithm {\n length: number;\n}\n\ninterface AesCbcParams extends Algorithm {\n iv: BufferSource;\n}\n\ninterface AesCmacParams extends Algorithm {\n length: number;\n}\n\ninterface AesGcmParams extends Algorithm {\n iv: BufferSource;\n additionalData?: BufferSource;\n tagLength?: number;\n}\n\ninterface AesCfbParams extends Algorithm {\n iv: BufferSource;\n}\n\ninterface HmacImportParams extends Algorithm {\n hash?: AlgorithmIdentifier;\n length?: number;\n}\n\ninterface HmacKeyAlgorithm extends KeyAlgorithm {\n hash: AlgorithmIdentifier;\n length: number;\n}\n\ninterface HmacKeyGenParams extends Algorithm {\n hash: AlgorithmIdentifier;\n length?: number;\n}\n\ninterface DhKeyGenParams extends Algorithm {\n prime: Uint8Array;\n generator: Uint8Array;\n}\n\ninterface DhKeyAlgorithm extends KeyAlgorithm {\n prime: Uint8Array;\n generator: Uint8Array;\n}\n\ninterface DhKeyDeriveParams extends Algorithm {\n public: CryptoKey;\n}\n\ninterface DhImportKeyParams extends Algorithm {\n prime: Uint8Array;\n generator: Uint8Array;\n}\n\ninterface ConcatParams extends Algorithm {\n hash?: AlgorithmIdentifier;\n algorithmId: Uint8Array;\n partyUInfo: Uint8Array;\n partyVInfo: Uint8Array;\n publicInfo?: Uint8Array;\n privateInfo?: Uint8Array;\n}\n\ninterface HkdfCtrParams extends Algorithm {\n hash: AlgorithmIdentifier;\n label: BufferSource;\n context: BufferSource;\n}\n\ninterface Pbkdf2Params extends Algorithm {\n salt: BufferSource;\n iterations: number;\n hash: AlgorithmIdentifier;\n}\n\ninterface RsaOtherPrimesInfo {\n r: string;\n d: string;\n t: string;\n}\n\ninterface JsonWebKey {\n kty: string;\n use?: string;\n key_ops?: string[];\n alg?: string;\n kid?: string;\n x5u?: string;\n x5c?: string;\n x5t?: string;\n ext?: boolean;\n crv?: string;\n x?: string;\n y?: string;\n d?: string;\n n?: string;\n e?: string;\n p?: string;\n q?: string;\n dp?: string;\n dq?: string;\n qi?: string;\n oth?: RsaOtherPrimesInfo[];\n k?: string;\n}\n\ninterface ParentNode {\n readonly children: HTMLCollection;\n readonly firstElementChild: Element | null;\n readonly lastElementChild: Element | null;\n readonly childElementCount: number;\n}\n\ninterface DocumentOrShadowRoot {\n readonly activeElement: Element | null;\n readonly stylesheets: StyleSheetList;\n getSelection(): Selection | null;\n elementFromPoint(x: number, y: number): Element | null;\n elementsFromPoint(x: number, y: number): Element[];\n}\n\ninterface ShadowRoot extends DocumentOrShadowRoot, DocumentFragment {\n readonly host: Element;\n innerHTML: string;\n}\n\ninterface ShadowRootInit {\n mode: "open" | "closed";\n delegatesFocus?: boolean;\n}\n\ninterface HTMLSlotElement extends HTMLElement {\n name: string;\n assignedNodes(options?: AssignedNodesOptions): Node[];\n}\n\ninterface AssignedNodesOptions {\n flatten?: boolean;\n}\n\ninterface ElementDefinitionOptions {\n extends: string;\n}\n\ninterface CustomElementRegistry {\n define(name: string, constructor: Function, options?: ElementDefinitionOptions): void;\n get(name: string): any;\n whenDefined(name: string): PromiseLike<void>;\n}\n\ninterface PromiseRejectionEvent extends Event {\n readonly promise: PromiseLike<any>;\n readonly reason: any;\n}\n\ninterface PromiseRejectionEventInit extends EventInit {\n promise: PromiseLike<any>;\n reason?: any;\n}\n\ninterface EventListenerOptions {\n capture?: boolean;\n}\n\ninterface AddEventListenerOptions extends EventListenerOptions {\n passive?: boolean;\n once?: boolean;\n}\n\ninterface TouchEventInit extends EventModifierInit {\n touches?: Touch[];\n targetTouches?: Touch[];\n changedTouches?: Touch[];\n}\n\ndeclare type EventListenerOrEventListenerObject = EventListener | EventListenerObject;\n\ninterface DecodeErrorCallback {\n (error: DOMException): void;\n}\ninterface DecodeSuccessCallback {\n (decodedData: AudioBuffer): void;\n}\ninterface ErrorEventHandler {\n (message: string, filename?: string, lineno?: number, colno?: number, error?: Error): void;\n}\ninterface ForEachCallback {\n (keyId: any, status: MediaKeyStatus): void;\n}\ninterface FrameRequestCallback {\n (time: number): void;\n}\ninterface FunctionStringCallback {\n (data: string): void;\n}\ninterface IntersectionObserverCallback {\n (entries: IntersectionObserverEntry[], observer: IntersectionObserver): void;\n}\ninterface MediaQueryListListener {\n (mql: MediaQueryList): void;\n}\ninterface MSExecAtPriorityFunctionCallback {\n (...args: any[]): any;\n}\ninterface MSLaunchUriCallback {\n (): void;\n}\ninterface MSUnsafeFunctionCallback {\n (): any;\n}\ninterface MutationCallback {\n (mutations: MutationRecord[], observer: MutationObserver): void;\n}\ninterface NavigatorUserMediaErrorCallback {\n (error: MediaStreamError): void;\n}\ninterface NavigatorUserMediaSuccessCallback {\n (stream: MediaStream): void;\n}\ninterface NotificationPermissionCallback {\n (permission: NotificationPermission): void;\n}\ninterface PositionCallback {\n (position: Position): void;\n}\ninterface PositionErrorCallback {\n (error: PositionError): void;\n}\ninterface RTCPeerConnectionErrorCallback {\n (error: DOMError): void;\n}\ninterface RTCSessionDescriptionCallback {\n (sdp: RTCSessionDescription): void;\n}\ninterface RTCStatsCallback {\n (report: RTCStatsReport): void;\n}\ninterface VoidFunction {\n (): void;\n}\ninterface HTMLElementTagNameMap {\n "a": HTMLAnchorElement;\n "applet": HTMLAppletElement;\n "area": HTMLAreaElement;\n "audio": HTMLAudioElement;\n "base": HTMLBaseElement;\n "basefont": HTMLBaseFontElement;\n "blockquote": HTMLQuoteElement;\n "body": HTMLBodyElement;\n "br": HTMLBRElement;\n "button": HTMLButtonElement;\n "canvas": HTMLCanvasElement;\n "caption": HTMLTableCaptionElement;\n "col": HTMLTableColElement;\n "colgroup": HTMLTableColElement;\n "data": HTMLDataElement;\n "datalist": HTMLDataListElement;\n "del": HTMLModElement;\n "dir": HTMLDirectoryElement;\n "div": HTMLDivElement;\n "dl": HTMLDListElement;\n "embed": HTMLEmbedElement;\n "fieldset": HTMLFieldSetElement;\n "font": HTMLFontElement;\n "form": HTMLFormElement;\n "frame": HTMLFrameElement;\n "frameset": HTMLFrameSetElement;\n "h1": HTMLHeadingElement;\n "h2": HTMLHeadingElement;\n "h3": HTMLHeadingElement;\n "h4": HTMLHeadingElement;\n "h5": HTMLHeadingElement;\n "h6": HTMLHeadingElement;\n "head": HTMLHeadElement;\n "hr": HTMLHRElement;\n "html": HTMLHtmlElement;\n "iframe": HTMLIFrameElement;\n "img": HTMLImageElement;\n "input": HTMLInputElement;\n "ins": HTMLModElement;\n "isindex": HTMLUnknownElement;\n "label": HTMLLabelElement;\n "legend": HTMLLegendElement;\n "li": HTMLLIElement;\n "link": HTMLLinkElement;\n "listing": HTMLPreElement;\n "map": HTMLMapElement;\n "marquee": HTMLMarqueeElement;\n "menu": HTMLMenuElement;\n "meta": HTMLMetaElement;\n "meter": HTMLMeterElement;\n "nextid": HTMLUnknownElement;\n "object": HTMLObjectElement;\n "ol": HTMLOListElement;\n "optgroup": HTMLOptGroupElement;\n "option": HTMLOptionElement;\n "output": HTMLOutputElement;\n "p": HTMLParagraphElement;\n "param": HTMLParamElement;\n "picture": HTMLPictureElement;\n "pre": HTMLPreElement;\n "progress": HTMLProgressElement;\n "q": HTMLQuoteElement;\n "script": HTMLScriptElement;\n "select": HTMLSelectElement;\n "source": HTMLSourceElement;\n "span": HTMLSpanElement;\n "style": HTMLStyleElement;\n "table": HTMLTableElement;\n "tbody": HTMLTableSectionElement;\n "td": HTMLTableDataCellElement;\n "template": HTMLTemplateElement;\n "textarea": HTMLTextAreaElement;\n "tfoot": HTMLTableSectionElement;\n "th": HTMLTableHeaderCellElement;\n "thead": HTMLTableSectionElement;\n "time": HTMLTimeElement;\n "title": HTMLTitleElement;\n "tr": HTMLTableRowElement;\n "track": HTMLTrackElement;\n "ul": HTMLUListElement;\n "video": HTMLVideoElement;\n "x-ms-webview": MSHTMLWebViewElement;\n "xmp": HTMLPreElement;\n}\n\ninterface ElementTagNameMap extends HTMLElementTagNameMap {\n "abbr": HTMLElement;\n "acronym": HTMLElement;\n "address": HTMLElement;\n "article": HTMLElement;\n "aside": HTMLElement;\n "b": HTMLElement;\n "bdo": HTMLElement;\n "big": HTMLElement;\n "center": HTMLElement;\n "circle": SVGCircleElement;\n "cite": HTMLElement;\n "clippath": SVGClipPathElement;\n "code": HTMLElement;\n "dd": HTMLElement;\n "defs": SVGDefsElement;\n "desc": SVGDescElement;\n "dfn": HTMLElement;\n "dt": HTMLElement;\n "ellipse": SVGEllipseElement;\n "em": HTMLElement;\n "feblend": SVGFEBlendElement;\n "fecolormatrix": SVGFEColorMatrixElement;\n "fecomponenttransfer": SVGFEComponentTransferElement;\n "fecomposite": SVGFECompositeElement;\n "feconvolvematrix": SVGFEConvolveMatrixElement;\n "fediffuselighting": SVGFEDiffuseLightingElement;\n "fedisplacementmap": SVGFEDisplacementMapElement;\n "fedistantlight": SVGFEDistantLightElement;\n "feflood": SVGFEFloodElement;\n "fefunca": SVGFEFuncAElement;\n "fefuncb": SVGFEFuncBElement;\n "fefuncg": SVGFEFuncGElement;\n "fefuncr": SVGFEFuncRElement;\n "fegaussianblur": SVGFEGaussianBlurElement;\n "feimage": SVGFEImageElement;\n "femerge": SVGFEMergeElement;\n "femergenode": SVGFEMergeNodeElement;\n "femorphology": SVGFEMorphologyElement;\n "feoffset": SVGFEOffsetElement;\n "fepointlight": SVGFEPointLightElement;\n "fespecularlighting": SVGFESpecularLightingElement;\n "fespotlight": SVGFESpotLightElement;\n "fetile": SVGFETileElement;\n "feturbulence": SVGFETurbulenceElement;\n "figcaption": HTMLElement;\n "figure": HTMLElement;\n "filter": SVGFilterElement;\n "footer": HTMLElement;\n "foreignobject": SVGForeignObjectElement;\n "g": SVGGElement;\n "header": HTMLElement;\n "hgroup": HTMLElement;\n "i": HTMLElement;\n "image": SVGImageElement;\n "kbd": HTMLElement;\n "keygen": HTMLElement;\n "line": SVGLineElement;\n "lineargradient": SVGLinearGradientElement;\n "mark": HTMLElement;\n "marker": SVGMarkerElement;\n "mask": SVGMaskElement;\n "metadata": SVGMetadataElement;\n "nav": HTMLElement;\n "nobr": HTMLElement;\n "noframes": HTMLElement;\n "noscript": HTMLElement;\n "path": SVGPathElement;\n "pattern": SVGPatternElement;\n "plaintext": HTMLElement;\n "polygon": SVGPolygonElement;\n "polyline": SVGPolylineElement;\n "radialgradient": SVGRadialGradientElement;\n "rect": SVGRectElement;\n "rt": HTMLElement;\n "ruby": HTMLElement;\n "s": HTMLElement;\n "samp": HTMLElement;\n "section": HTMLElement;\n "small": HTMLElement;\n "stop": SVGStopElement;\n "strike": HTMLElement;\n "strong": HTMLElement;\n "sub": HTMLElement;\n "sup": HTMLElement;\n "svg": SVGSVGElement;\n "switch": SVGSwitchElement;\n "symbol": SVGSymbolElement;\n "text": SVGTextElement;\n "textpath": SVGTextPathElement;\n "tspan": SVGTSpanElement;\n "tt": HTMLElement;\n "u": HTMLElement;\n "use": SVGUseElement;\n "var": HTMLElement;\n "view": SVGViewElement;\n "wbr": HTMLElement;\n}\n\ntype ElementListTagNameMap = {\n [key in keyof ElementTagNameMap]: NodeListOf<ElementTagNameMap[key]>\n};\n\ndeclare var Audio: { new(src?: string): HTMLAudioElement; };\ndeclare var Image: { new(width?: number, height?: number): HTMLImageElement; };\ndeclare var Option: { new(text?: string, value?: string, defaultSelected?: boolean, selected?: boolean): HTMLOptionElement; };\ndeclare var applicationCache: ApplicationCache;\ndeclare var caches: CacheStorage;\ndeclare var clientInformation: Navigator;\ndeclare var closed: boolean;\ndeclare var crypto: Crypto;\ndeclare var defaultStatus: string;\ndeclare var devicePixelRatio: number;\ndeclare var document: Document;\ndeclare var doNotTrack: string;\ndeclare var event: Event | undefined;\ndeclare var external: External;\ndeclare var frameElement: Element;\ndeclare var frames: Window;\ndeclare var history: History;\ndeclare var innerHeight: number;\ndeclare var innerWidth: number;\ndeclare var isSecureContext: boolean;\ndeclare var length: number;\ndeclare var location: Location;\ndeclare var locationbar: BarProp;\ndeclare var menubar: BarProp;\ndeclare var msContentScript: ExtensionScriptApis;\ndeclare var msCredentials: MSCredentials;\ndeclare const name: never;\ndeclare var navigator: Navigator;\ndeclare var offscreenBuffering: string | boolean;\ndeclare var onabort: (this: Window, ev: UIEvent) => any;\ndeclare var onafterprint: (this: Window, ev: Event) => any;\ndeclare var onbeforeprint: (this: Window, ev: Event) => any;\ndeclare var onbeforeunload: (this: Window, ev: BeforeUnloadEvent) => any;\ndeclare var onblur: (this: Window, ev: FocusEvent) => any;\ndeclare var oncanplay: (this: Window, ev: Event) => any;\ndeclare var oncanplaythrough: (this: Window, ev: Event) => any;\ndeclare var onchange: (this: Window, ev: Event) => any;\ndeclare var onclick: (this: Window, ev: MouseEvent) => any;\ndeclare var oncompassneedscalibration: (this: Window, ev: Event) => any;\ndeclare var oncontextmenu: (this: Window, ev: PointerEvent) => any;\ndeclare var ondblclick: (this: Window, ev: MouseEvent) => any;\ndeclare var ondevicelight: (this: Window, ev: DeviceLightEvent) => any;\ndeclare var ondevicemotion: (this: Window, ev: DeviceMotionEvent) => any;\ndeclare var ondeviceorientation: (this: Window, ev: DeviceOrientationEvent) => any;\ndeclare var ondrag: (this: Window, ev: DragEvent) => any;\ndeclare var ondragend: (this: Window, ev: DragEvent) => any;\ndeclare var ondragenter: (this: Window, ev: DragEvent) => any;\ndeclare var ondragleave: (this: Window, ev: DragEvent) => any;\ndeclare var ondragover: (this: Window, ev: DragEvent) => any;\ndeclare var ondragstart: (this: Window, ev: DragEvent) => any;\ndeclare var ondrop: (this: Window, ev: DragEvent) => any;\ndeclare var ondurationchange: (this: Window, ev: Event) => any;\ndeclare var onemptied: (this: Window, ev: Event) => any;\ndeclare var onended: (this: Window, ev: MediaStreamErrorEvent) => any;\ndeclare var onerror: ErrorEventHandler;\ndeclare var onfocus: (this: Window, ev: FocusEvent) => any;\ndeclare var onhashchange: (this: Window, ev: HashChangeEvent) => any;\ndeclare var oninput: (this: Window, ev: Event) => any;\ndeclare var oninvalid: (this: Window, ev: Event) => any;\ndeclare var onkeydown: (this: Window, ev: KeyboardEvent) => any;\ndeclare var onkeypress: (this: Window, ev: KeyboardEvent) => any;\ndeclare var onkeyup: (this: Window, ev: KeyboardEvent) => any;\ndeclare var onload: (this: Window, ev: Event) => any;\ndeclare var onloadeddata: (this: Window, ev: Event) => any;\ndeclare var onloadedmetadata: (this: Window, ev: Event) => any;\ndeclare var onloadstart: (this: Window, ev: Event) => any;\ndeclare var onmessage: (this: Window, ev: MessageEvent) => any;\ndeclare var onmousedown: (this: Window, ev: MouseEvent) => any;\ndeclare var onmouseenter: (this: Window, ev: MouseEvent) => any;\ndeclare var onmouseleave: (this: Window, ev: MouseEvent) => any;\ndeclare var onmousemove: (this: Window, ev: MouseEvent) => any;\ndeclare var onmouseout: (this: Window, ev: MouseEvent) => any;\ndeclare var onmouseover: (this: Window, ev: MouseEvent) => any;\ndeclare var onmouseup: (this: Window, ev: MouseEvent) => any;\ndeclare var onmousewheel: (this: Window, ev: WheelEvent) => any;\ndeclare var onmsgesturechange: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsgesturedoubletap: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsgestureend: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsgesturehold: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsgesturestart: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsgesturetap: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmsinertiastart: (this: Window, ev: MSGestureEvent) => any;\ndeclare var onmspointercancel: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerdown: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerenter: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerleave: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointermove: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerout: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerover: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onmspointerup: (this: Window, ev: MSPointerEvent) => any;\ndeclare var onoffline: (this: Window, ev: Event) => any;\ndeclare var ononline: (this: Window, ev: Event) => any;\ndeclare var onorientationchange: (this: Window, ev: Event) => any;\ndeclare var onpagehide: (this: Window, ev: PageTransitionEvent) => any;\ndeclare var onpageshow: (this: Window, ev: PageTransitionEvent) => any;\ndeclare var onpause: (this: Window, ev: Event) => any;\ndeclare var onplay: (this: Window, ev: Event) => any;\ndeclare var onplaying: (this: Window, ev: Event) => any;\ndeclare var onpopstate: (this: Window, ev: PopStateEvent) => any;\ndeclare var onprogress: (this: Window, ev: ProgressEvent) => any;\ndeclare var onratechange: (this: Window, ev: Event) => any;\ndeclare var onreadystatechange: (this: Window, ev: ProgressEvent) => any;\ndeclare var onreset: (this: Window, ev: Event) => any;\ndeclare var onresize: (this: Window, ev: UIEvent) => any;\ndeclare var onscroll: (this: Window, ev: UIEvent) => any;\ndeclare var onseeked: (this: Window, ev: Event) => any;\ndeclare var onseeking: (this: Window, ev: Event) => any;\ndeclare var onselect: (this: Window, ev: UIEvent) => any;\ndeclare var onstalled: (this: Window, ev: Event) => any;\ndeclare var onstorage: (this: Window, ev: StorageEvent) => any;\ndeclare var onsubmit: (this: Window, ev: Event) => any;\ndeclare var onsuspend: (this: Window, ev: Event) => any;\ndeclare var ontimeupdate: (this: Window, ev: Event) => any;\ndeclare var ontouchcancel: (ev: TouchEvent) => any;\ndeclare var ontouchend: (ev: TouchEvent) => any;\ndeclare var ontouchmove: (ev: TouchEvent) => any;\ndeclare var ontouchstart: (ev: TouchEvent) => any;\ndeclare var onunload: (this: Window, ev: Event) => any;\ndeclare var onvolumechange: (this: Window, ev: Event) => any;\ndeclare var onwaiting: (this: Window, ev: Event) => any;\ndeclare var opener: any;\ndeclare var orientation: string | number;\ndeclare var outerHeight: number;\ndeclare var outerWidth: number;\ndeclare var pageXOffset: number;\ndeclare var pageYOffset: number;\ndeclare var parent: Window;\ndeclare var performance: Performance;\ndeclare var personalbar: BarProp;\ndeclare var screen: Screen;\ndeclare var screenLeft: number;\ndeclare var screenTop: number;\ndeclare var screenX: number;\ndeclare var screenY: number;\ndeclare var scrollbars: BarProp;\ndeclare var scrollX: number;\ndeclare var scrollY: number;\ndeclare var self: Window;\ndeclare var speechSynthesis: SpeechSynthesis;\ndeclare var status: string;\ndeclare var statusbar: BarProp;\ndeclare var styleMedia: StyleMedia;\ndeclare var toolbar: BarProp;\ndeclare var top: Window;\ndeclare var window: Window;\ndeclare var customElements: CustomElementRegistry;\ndeclare function alert(message?: any): void;\ndeclare function blur(): void;\ndeclare function cancelAnimationFrame(handle: number): void;\ndeclare function captureEvents(): void;\ndeclare function close(): void;\ndeclare function confirm(message?: string): boolean;\ndeclare function departFocus(navigationReason: NavigationReason, origin: FocusNavigationOrigin): void;\ndeclare function focus(): void;\ndeclare function getComputedStyle(elt: Element, pseudoElt?: string): CSSStyleDeclaration;\ndeclare function getMatchedCSSRules(elt: Element, pseudoElt?: string): CSSRuleList;\ndeclare function getSelection(): Selection;\ndeclare function matchMedia(mediaQuery: string): MediaQueryList;\ndeclare function moveBy(x?: number, y?: number): void;\ndeclare function moveTo(x?: number, y?: number): void;\ndeclare function msWriteProfilerMark(profilerMarkName: string): void;\ndeclare function open(url?: string, target?: string, features?: string, replace?: boolean): Window;\ndeclare function postMessage(message: any, targetOrigin: string, transfer?: any[]): void;\ndeclare function print(): void;\ndeclare function prompt(message?: string, _default?: string): string | null;\ndeclare function releaseEvents(): void;\ndeclare function requestAnimationFrame(callback: FrameRequestCallback): number;\ndeclare function resizeBy(x?: number, y?: number): void;\ndeclare function resizeTo(x?: number, y?: number): void;\ndeclare function scroll(x?: number, y?: number): void;\ndeclare function scrollBy(x?: number, y?: number): void;\ndeclare function scrollTo(x?: number, y?: number): void;\ndeclare function stop(): void;\ndeclare function webkitCancelAnimationFrame(handle: number): void;\ndeclare function webkitConvertPointFromNodeToPage(node: Node, pt: WebKitPoint): WebKitPoint;\ndeclare function webkitConvertPointFromPageToNode(node: Node, pt: WebKitPoint): WebKitPoint;\ndeclare function webkitRequestAnimationFrame(callback: FrameRequestCallback): number;\ndeclare function createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, options?: ImageBitmapOptions): Promise<ImageBitmap>;\ndeclare function createImageBitmap(image: HTMLImageElement | SVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap | ImageData | Blob, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;\ndeclare function scroll(options?: ScrollToOptions): void;\ndeclare function scrollTo(options?: ScrollToOptions): void;\ndeclare function scrollBy(options?: ScrollToOptions): void;\ndeclare function toString(): string;\ndeclare function dispatchEvent(evt: Event): boolean;\ndeclare function removeEventListener(type: string, listener?: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;\ndeclare function clearInterval(handle: number): void;\ndeclare function clearTimeout(handle: number): void;\ndeclare function setInterval(handler: (...args: any[]) => void, timeout: number): number;\ndeclare function setInterval(handler: any, timeout?: any, ...args: any[]): number;\ndeclare function setTimeout(handler: (...args: any[]) => void, timeout: number): number;\ndeclare function setTimeout(handler: any, timeout?: any, ...args: any[]): number;\ndeclare function clearImmediate(handle: number): void;\ndeclare function setImmediate(handler: (...args: any[]) => void): number;\ndeclare function setImmediate(handler: any, ...args: any[]): number;\ndeclare var sessionStorage: Storage;\ndeclare var localStorage: Storage;\ndeclare var console: Console;\ndeclare var onpointercancel: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerdown: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerenter: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerleave: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointermove: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerout: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerover: (this: Window, ev: PointerEvent) => any;\ndeclare var onpointerup: (this: Window, ev: PointerEvent) => any;\ndeclare var onwheel: (this: Window, ev: WheelEvent) => any;\ndeclare var indexedDB: IDBFactory;\ndeclare function atob(encodedString: string): string;\ndeclare function btoa(rawString: string): string;\ndeclare function fetch(input: RequestInfo, init?: RequestInit): Promise<Response>;\ndeclare function addEventListener<K extends keyof WindowEventMap>(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, useCapture?: boolean): void;\ndeclare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;\ntype AAGUID = string;\ntype AlgorithmIdentifier = string | Algorithm;\ntype BodyInit = any;\ntype ByteString = string;\ntype ConstrainBoolean = boolean | ConstrainBooleanParameters;\ntype ConstrainDOMString = string | string[] | ConstrainDOMStringParameters;\ntype ConstrainDouble = number | ConstrainDoubleRange;\ntype ConstrainLong = number | ConstrainLongRange;\ntype CryptoOperationData = ArrayBufferView;\ntype GLbitfield = number;\ntype GLboolean = boolean;\ntype GLbyte = number;\ntype GLclampf = number;\ntype GLenum = number;\ntype GLfloat = number;\ntype GLint = number;\ntype GLintptr = number;\ntype GLshort = number;\ntype GLsizei = number;\ntype GLsizeiptr = number;\ntype GLubyte = number;\ntype GLuint = number;\ntype GLushort = number;\ntype HeadersInit = any;\ntype IDBKeyPath = string;\ntype KeyFormat = string;\ntype KeyType = string;\ntype KeyUsage = string;\ntype MSInboundPayload = MSVideoRecvPayload | MSAudioRecvPayload;\ntype MSLocalClientEvent = MSLocalClientEventBase | MSAudioLocalClientEvent;\ntype MSOutboundPayload = MSVideoSendPayload | MSAudioSendPayload;\ntype RTCIceGatherCandidate = RTCIceCandidateDictionary | RTCIceCandidateComplete;\ntype RTCTransport = RTCDtlsTransport | RTCSrtpSdesTransport;\ntype RequestInfo = Request | string;\ntype USVString = string;\ntype payloadtype = number;\ntype ScrollBehavior = "auto" | "instant" | "smooth";\ntype ScrollLogicalPosition = "start" | "center" | "end" | "nearest";\ntype IDBValidKey = number | string | Date | IDBArrayKey;\ntype BufferSource = ArrayBuffer | ArrayBufferView;\ntype MouseWheelEvent = WheelEvent;\ntype ScrollRestoration = "auto" | "manual";\ntype FormDataEntryValue = string | File;\ntype InsertPosition = "beforebegin" | "afterbegin" | "beforeend" | "afterend";\ntype AppendMode = "segments" | "sequence";\ntype AudioContextState = "suspended" | "running" | "closed";\ntype BiquadFilterType = "lowpass" | "highpass" | "bandpass" | "lowshelf" | "highshelf" | "peaking" | "notch" | "allpass";\ntype CanvasFillRule = "nonzero" | "evenodd";\ntype ChannelCountMode = "max" | "clamped-max" | "explicit";\ntype ChannelInterpretation = "speakers" | "discrete";\ntype DistanceModelType = "linear" | "inverse" | "exponential";\ntype ExpandGranularity = "character" | "word" | "sentence" | "textedit";\ntype GamepadInputEmulationType = "mouse" | "keyboard" | "gamepad";\ntype IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";\ntype IDBRequestReadyState = "pending" | "done";\ntype IDBTransactionMode = "readonly" | "readwrite" | "versionchange";\ntype ListeningState = "inactive" | "active" | "disambiguation";\ntype MediaDeviceKind = "audioinput" | "audiooutput" | "videoinput";\ntype MediaKeyMessageType = "license-request" | "license-renewal" | "license-release" | "individualization-request";\ntype MediaKeySessionType = "temporary" | "persistent-license" | "persistent-release-message";\ntype MediaKeysRequirement = "required" | "optional" | "not-allowed";\ntype MediaKeyStatus = "usable" | "expired" | "output-downscaled" | "output-not-allowed" | "status-pending" | "internal-error";\ntype MediaStreamTrackState = "live" | "ended";\ntype MSCredentialType = "FIDO_2_0";\ntype MSIceAddrType = "os" | "stun" | "turn" | "peer-derived";\ntype MSIceType = "failed" | "direct" | "relay";\ntype MSStatsType = "description" | "localclientevent" | "inbound-network" | "outbound-network" | "inbound-payload" | "outbound-payload" | "transportdiagnostics";\ntype MSTransportType = "Embedded" | "USB" | "NFC" | "BT";\ntype MSWebViewPermissionState = "unknown" | "defer" | "allow" | "deny";\ntype MSWebViewPermissionType = "geolocation" | "unlimitedIndexedDBQuota" | "media" | "pointerlock" | "webnotifications";\ntype NavigationReason = "up" | "down" | "left" | "right";\ntype NavigationType = "navigate" | "reload" | "back_forward" | "prerender";\ntype NotificationDirection = "auto" | "ltr" | "rtl";\ntype NotificationPermission = "default" | "denied" | "granted";\ntype OscillatorType = "sine" | "square" | "sawtooth" | "triangle" | "custom";\ntype OverSampleType = "none" | "2x" | "4x";\ntype PanningModelType = "equalpower";\ntype PaymentComplete = "success" | "fail" | "";\ntype PaymentShippingType = "shipping" | "delivery" | "pickup";\ntype PushEncryptionKeyName = "p256dh" | "auth";\ntype PushPermissionState = "granted" | "denied" | "prompt";\ntype ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin-only" | "origin-when-cross-origin" | "unsafe-url";\ntype RequestCache = "default" | "no-store" | "reload" | "no-cache" | "force-cache";\ntype RequestCredentials = "omit" | "same-origin" | "include";\ntype RequestDestination = "" | "document" | "sharedworker" | "subresource" | "unknown" | "worker";\ntype RequestMode = "navigate" | "same-origin" | "no-cors" | "cors";\ntype RequestRedirect = "follow" | "error" | "manual";\ntype RequestType = "" | "audio" | "font" | "image" | "script" | "style" | "track" | "video";\ntype ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";\ntype RTCBundlePolicy = "balanced" | "max-compat" | "max-bundle";\ntype RTCDegradationPreference = "maintain-framerate" | "maintain-resolution" | "balanced";\ntype RTCDtlsRole = "auto" | "client" | "server";\ntype RTCDtlsTransportState = "new" | "connecting" | "connected" | "closed";\ntype RTCIceCandidateType = "host" | "srflx" | "prflx" | "relay";\ntype RTCIceComponent = "RTP" | "RTCP";\ntype RTCIceConnectionState = "new" | "checking" | "connected" | "completed" | "failed" | "disconnected" | "closed";\ntype RTCIceGathererState = "new" | "gathering" | "complete";\ntype RTCIceGatheringState = "new" | "gathering" | "complete";\ntype RTCIceGatherPolicy = "all" | "nohost" | "relay";\ntype RTCIceProtocol = "udp" | "tcp";\ntype RTCIceRole = "controlling" | "controlled";\ntype RTCIceTcpCandidateType = "active" | "passive" | "so";\ntype RTCIceTransportPolicy = "none" | "relay" | "all";\ntype RTCIceTransportState = "new" | "checking" | "connected" | "completed" | "disconnected" | "closed";\ntype RTCSdpType = "offer" | "pranswer" | "answer";\ntype RTCSignalingState = "stable" | "have-local-offer" | "have-remote-offer" | "have-local-pranswer" | "have-remote-pranswer" | "closed";\ntype RTCStatsIceCandidatePairState = "frozen" | "waiting" | "inprogress" | "failed" | "succeeded" | "cancelled";\ntype RTCStatsIceCandidateType = "host" | "serverreflexive" | "peerreflexive" | "relayed";\ntype RTCStatsType = "inboundrtp" | "outboundrtp" | "session" | "datachannel" | "track" | "transport" | "candidatepair" | "localcandidate" | "remotecandidate";\ntype ScopedCredentialType = "ScopedCred";\ntype ServiceWorkerState = "installing" | "installed" | "activating" | "activated" | "redundant";\ntype Transport = "usb" | "nfc" | "ble";\ntype VideoFacingModeEnum = "user" | "environment" | "left" | "right";\ntype VisibilityState = "hidden" | "visible" | "prerender" | "unloaded";\ntype XMLHttpRequestResponseType = "" | "arraybuffer" | "blob" | "document" | "json" | "text";\n\n\n/////////////////////////////\n/// WorkerGlobalScope APIs\n/////////////////////////////\n// These are only available in a Web Worker\ndeclare function importScripts(...urls: string[]): void;\n\n\n\n\n/////////////////////////////\n/// Windows Script Host APIS\n/////////////////////////////\n\n\ninterface ActiveXObject {\n new (s: string): any;\n}\ndeclare var ActiveXObject: ActiveXObject;\n\ninterface ITextWriter {\n Write(s: string): void;\n WriteLine(s: string): void;\n Close(): void;\n}\n\ninterface TextStreamBase {\n /**\n * The column number of the current character position in an input stream.\n */\n Column: number;\n\n /**\n * The current line number in an input stream.\n */\n Line: number;\n\n /**\n * Closes a text stream.\n * It is not necessary to close standard streams; they close automatically when the process ends. If\n * you close a standard stream, be aware that any other pointers to that standard stream become invalid.\n */\n Close(): void;\n}\n\ninterface TextStreamWriter extends TextStreamBase {\n /**\n * Sends a string to an output stream.\n */\n Write(s: string): void;\n\n /**\n * Sends a specified number of blank lines (newline characters) to an output stream.\n */\n WriteBlankLines(intLines: number): void;\n\n /**\n * Sends a string followed by a newline character to an output stream.\n */\n WriteLine(s: string): void;\n}\n\ninterface TextStreamReader extends TextStreamBase {\n /**\n * Returns a specified number of characters from an input stream, starting at the current pointer position.\n * Does not return until the ENTER key is pressed.\n * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n */\n Read(characters: number): string;\n\n /**\n * Returns all characters from an input stream.\n * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n */\n ReadAll(): string;\n\n /**\n * Returns an entire line from an input stream.\n * Although this method extracts the newline character, it does not add it to the returned string.\n * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n */\n ReadLine(): string;\n\n /**\n * Skips a specified number of characters when reading from an input text stream.\n * Can only be used on a stream in reading mode; causes an error in writing or appending mode.\n * @param characters Positive number of characters to skip forward. (Backward skipping is not supported.)\n */\n Skip(characters: number): void;\n\n /**\n * Skips the next line when reading from an input text stream.\n * Can only be used on a stream in reading mode, not writing or appending mode.\n */\n SkipLine(): void;\n\n /**\n * Indicates whether the stream pointer position is at the end of a line.\n */\n AtEndOfLine: boolean;\n\n /**\n * Indicates whether the stream pointer position is at the end of a stream.\n */\n AtEndOfStream: boolean;\n}\n\ndeclare var WScript: {\n /**\n * Outputs text to either a message box (under WScript.exe) or the command console window followed by\n * a newline (under CScript.exe).\n */\n Echo(s: any): void;\n\n /**\n * Exposes the write-only error output stream for the current script.\n * Can be accessed only while using CScript.exe.\n */\n StdErr: TextStreamWriter;\n\n /**\n * Exposes the write-only output stream for the current script.\n * Can be accessed only while using CScript.exe.\n */\n StdOut: TextStreamWriter;\n Arguments: { length: number; Item(n: number): string; };\n\n /**\n * The full path of the currently running script.\n */\n ScriptFullName: string;\n\n /**\n * Forces the script to stop immediately, with an optional exit code.\n */\n Quit(exitCode?: number): number;\n\n /**\n * The Windows Script Host build version number.\n */\n BuildVersion: number;\n\n /**\n * Fully qualified path of the host executable.\n */\n FullName: string;\n\n /**\n * Gets/sets the script mode - interactive(true) or batch(false).\n */\n Interactive: boolean;\n\n /**\n * The name of the host executable (WScript.exe or CScript.exe).\n */\n Name: string;\n\n /**\n * Path of the directory containing the host executable.\n */\n Path: string;\n\n /**\n * The filename of the currently running script.\n */\n ScriptName: string;\n\n /**\n * Exposes the read-only input stream for the current script.\n * Can be accessed only while using CScript.exe.\n */\n StdIn: TextStreamReader;\n\n /**\n * Windows Script Host version\n */\n Version: string;\n\n /**\n * Connects a COM object\'s event sources to functions named with a given prefix, in the form prefix_event.\n */\n ConnectObject(objEventSource: any, strPrefix: string): void;\n\n /**\n * Creates a COM object.\n * @param strProgiID\n * @param strPrefix Function names in the form prefix_event will be bound to this object\'s COM events.\n */\n CreateObject(strProgID: string, strPrefix?: string): any;\n\n /**\n * Disconnects a COM object from its event sources.\n */\n DisconnectObject(obj: any): void;\n\n /**\n * Retrieves an existing object with the specified ProgID from memory, or creates a new one from a file.\n * @param strPathname Fully qualified path to the file containing the object persisted to disk.\n * For objects in memory, pass a zero-length string.\n * @param strProgID\n * @param strPrefix Function names in the form prefix_event will be bound to this object\'s COM events.\n */\n GetObject(strPathname: string, strProgID?: string, strPrefix?: string): any;\n\n /**\n * Suspends script execution for a specified length of time, then continues execution.\n * @param intTime Interval (in milliseconds) to suspend script execution.\n */\n Sleep(intTime: number): void;\n};\n\n/**\n * Allows enumerating over a COM collection, which may not have indexed item access.\n */\ninterface Enumerator<T> {\n /**\n * Returns true if the current item is the last one in the collection, or the collection is empty,\n * or the current item is undefined.\n */\n atEnd(): boolean;\n\n /**\n * Returns the current item in the collection\n */\n item(): T;\n\n /**\n * Resets the current item in the collection to the first item. If there are no items in the collection,\n * the current item is set to undefined.\n */\n moveFirst(): void;\n\n /**\n * Moves the current item to the next item in the collection. If the enumerator is at the end of\n * the collection or the collection is empty, the current item is set to undefined.\n */\n moveNext(): void;\n}\n\ninterface EnumeratorConstructor {\n new <T>(collection: any): Enumerator<T>;\n new (collection: any): Enumerator<any>;\n}\n\ndeclare var Enumerator: EnumeratorConstructor;\n\n/**\n * Enables reading from a COM safe array, which might have an alternate lower bound, or multiple dimensions.\n */\ninterface VBArray<T> {\n /**\n * Returns the number of dimensions (1-based).\n */\n dimensions(): number;\n\n /**\n * Takes an index for each dimension in the array, and returns the item at the corresponding location.\n */\n getItem(dimension1Index: number, ...dimensionNIndexes: number[]): T;\n\n /**\n * Returns the smallest available index for a given dimension.\n * @param dimension 1-based dimension (defaults to 1)\n */\n lbound(dimension?: number): number;\n\n /**\n * Returns the largest available index for a given dimension.\n * @param dimension 1-based dimension (defaults to 1)\n */\n ubound(dimension?: number): number;\n\n /**\n * Returns a Javascript array with all the elements in the VBArray. If there are multiple dimensions,\n * each successive dimension is appended to the end of the array.\n * Example: [[1,2,3],[4,5,6]] becomes [1,2,3,4,5,6]\n */\n toArray(): T[];\n}\n\ninterface VBArrayConstructor {\n new <T>(safeArray: any): VBArray<T>;\n new (safeArray: any): VBArray<any>;\n}\n\ndeclare var VBArray: VBArrayConstructor;\n\n/**\n * Automation date (VT_DATE)\n */\ninterface VarDate { }\n\ninterface DateConstructor {\n new (vd: VarDate): Date;\n}\n\ninterface Date {\n getVarDate: () => VarDate;\n}\n\n\n/// <reference path="lib.dom.d.ts" />\n\ninterface DOMTokenList {\n [Symbol.iterator](): IterableIterator<string>;\n}\n\ninterface FormData {\n /**\n * Returns an array of key, value pairs for every entry in the list\n */\n entries(): IterableIterator<[string, string | File]>;\n /**\n * Returns a list of keys in the list\n */\n keys(): IterableIterator<string>;\n /**\n * Returns a list of values in the list\n */\n values(): IterableIterator<string | File>;\n\n [Symbol.iterator](): IterableIterator<string | File>;\n}\n\ninterface Headers {\n [Symbol.iterator](): IterableIterator<[string, string]>;\n /**\n * Returns an iterator allowing to go through all key/value pairs contained in this object.\n */\n entries(): IterableIterator<[string, string]>;\n /**\n * Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.\n */\n keys(): IterableIterator<string>;\n /**\n * Returns an iterator allowing to go through all values of the key/value pairs contained in this object.\n */\n values(): IterableIterator<string>;\n}\n\ninterface NodeList {\n /**\n * Returns an array of key, value pairs for every entry in the list\n */\n entries(): IterableIterator<[number, Node]>;\n /**\n * Performs the specified action for each node in an list.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: Node, index: number, listObj: NodeList) => void, thisArg?: any): void;\n /**\n * Returns an list of keys in the list\n */\n keys(): IterableIterator<number>;\n\n /**\n * Returns an list of values in the list\n */\n values(): IterableIterator<Node>;\n\n\n [Symbol.iterator](): IterableIterator<Node>;\n}\n\ninterface NodeListOf<TNode extends Node> {\n\n /**\n * Returns an array of key, value pairs for every entry in the list\n */\n entries(): IterableIterator<[number, TNode]>;\n\n /**\n * Performs the specified action for each node in an list.\n * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.\n * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\n */\n forEach(callbackfn: (value: TNode, index: number, listObj: NodeListOf<TNode>) => void, thisArg?: any): void;\n /**\n * Returns an list of keys in the list\n */\n keys(): IterableIterator<number>;\n /**\n * Returns an list of values in the list\n */\n values(): IterableIterator<TNode>;\n\n [Symbol.iterator](): IterableIterator<TNode>;\n}\n\ninterface URLSearchParams {\n /**\n * Returns an array of key, value pairs for every entry in the search params\n */\n entries(): IterableIterator<[string, string]>;\n /**\n * Returns a list of keys in the search params\n */\n keys(): IterableIterator<string>;\n /**\n * Returns a list of values in the search params\n */\n values(): IterableIterator<string>;\n /**\n * iterate over key/value pairs\n */\n [Symbol.iterator](): IterableIterator<[string, string]>;\n}\n' |
| | | }}),define("vs/language/typescript/src/worker",["require","exports","../lib/typescriptServices","../lib/lib-ts","../lib/lib-es6-ts"],function(e,n,t,r,a){"use strict";function i(e,n){return new d(e,n)}Object.defineProperty(n,"__esModule",{value:!0});var o=monaco.Promise,s={NAME:"defaultLib:lib.d.ts",CONTENTS:r.contents},l={NAME:"defaultLib:lib.es6.d.ts",CONTENTS:a.contents},d=function(){function e(e,n){this._extraLibs=Object.create(null),this._languageService=t.createLanguageService(this),this._ctx=e,this._compilerOptions=n.compilerOptions,this._extraLibs=n.extraLibs}return e.prototype.getCompilationSettings=function(){return this._compilerOptions},e.prototype.getScriptFileNames=function(){var e=this._ctx.getMirrorModels().map(function(e){return e.uri.toString()});return e.concat(Object.keys(this._extraLibs))},e.prototype._getModel=function(e){for(var n=this._ctx.getMirrorModels(),t=0;t<n.length;t++)if(n[t].uri.toString()===e)return n[t];return null},e.prototype.getScriptVersion=function(e){var n=this._getModel(e);return n?n.version.toString():this.isDefaultLibFileName(e)||e in this._extraLibs?"1":void 0},e.prototype.getScriptSnapshot=function(e){var n,t=this._getModel(e);if(t)n=t.getValue();else if(e in this._extraLibs)n=this._extraLibs[e];else if(e===s.NAME)n=s.CONTENTS;else{if(e!==l.NAME)return;n=l.CONTENTS}return{getText:function(e,t){return n.substring(e,t)},getLength:function(){return n.length},getChangeRange:function(){}}},e.prototype.getScriptKind=function(e){var n=e.substr(e.lastIndexOf(".")+1);switch(n){case"ts":return t.ScriptKind.TS;case"tsx":return t.ScriptKind.TSX;case"js":return t.ScriptKind.JS;case"jsx":return t.ScriptKind.JSX;default:return this.getCompilationSettings().allowJs?t.ScriptKind.JS:t.ScriptKind.TS}},e.prototype.getCurrentDirectory=function(){return""},e.prototype.getDefaultLibFileName=function(e){return e.target<=t.ScriptTarget.ES5?s.NAME:l.NAME},e.prototype.isDefaultLibFileName=function(e){return e===this.getDefaultLibFileName(this._compilerOptions)},e.prototype.getSyntacticDiagnostics=function(e){var n=this._languageService.getSyntacticDiagnostics(e);return n.forEach(function(e){return e.file=void 0}),o.as(n)},e.prototype.getSemanticDiagnostics=function(e){var n=this._languageService.getSemanticDiagnostics(e);return n.forEach(function(e){return e.file=void 0}),o.as(n)},e.prototype.getCompilerOptionsDiagnostics=function(e){var n=this._languageService.getCompilerOptionsDiagnostics();return n.forEach(function(e){return e.file=void 0}),o.as(n)},e.prototype.getCompletionsAtPosition=function(e,n){return o.as(this._languageService.getCompletionsAtPosition(e,n))},e.prototype.getCompletionEntryDetails=function(e,n,t){return o.as(this._languageService.getCompletionEntryDetails(e,n,t))},e.prototype.getSignatureHelpItems=function(e,n){return o.as(this._languageService.getSignatureHelpItems(e,n))},e.prototype.getQuickInfoAtPosition=function(e,n){return o.as(this._languageService.getQuickInfoAtPosition(e,n))},e.prototype.getOccurrencesAtPosition=function(e,n){return o.as(this._languageService.getOccurrencesAtPosition(e,n))},e.prototype.getDefinitionAtPosition=function(e,n){return o.as(this._languageService.getDefinitionAtPosition(e,n))},e.prototype.getReferencesAtPosition=function(e,n){return o.as(this._languageService.getReferencesAtPosition(e,n))},e.prototype.getNavigationBarItems=function(e){return o.as(this._languageService.getNavigationBarItems(e))},e.prototype.getFormattingEditsForDocument=function(e,n){return o.as(this._languageService.getFormattingEditsForDocument(e,n))},e.prototype.getFormattingEditsForRange=function(e,n,t,r){return o.as(this._languageService.getFormattingEditsForRange(e,n,t,r))},e.prototype.getFormattingEditsAfterKeystroke=function(e,n,t,r){return o.as(this._languageService.getFormattingEditsAfterKeystroke(e,n,t,r))},e.prototype.getEmitOutput=function(e){return o.as(this._languageService.getEmitOutput(e))},e}();n.TypeScriptWorker=d,n.create=i}); |
New file |
| | |
| | | /*!----------------------------------------------------------- |
| | | * Copyright (c) Microsoft Corporation. All rights reserved. |
| | | * Version: 0.10.1(ebbf400719be21761361804bf63fb3916e64a845) |
| | | * Released under the MIT license |
| | | * https://github.com/Microsoft/vscode/blob/master/LICENSE.txt |
| | | *-----------------------------------------------------------*/ |
| | | "use strict";var _amdLoaderGlobal=this,AMDLoader;!function(e){e.global=_amdLoaderGlobal;var t=function(){function t(e){this.isWindows=e.isWindows,this.isNode=e.isNode,this.isElectronRenderer=e.isElectronRenderer,this.isWebWorker=e.isWebWorker}return t.detect=function(){return new t({isWindows:this._isWindows(),isNode:"undefined"!=typeof module&&!!module.exports,isElectronRenderer:"undefined"!=typeof process&&void 0!==process.versions&&void 0!==process.versions.electron&&"renderer"===process.type,isWebWorker:"function"==typeof e.global.importScripts})},t._isWindows=function(){return!!("undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.indexOf("Windows")>=0)||"undefined"!=typeof process&&"win32"===process.platform},t}();e.Environment=t}(AMDLoader||(AMDLoader={}));var AMDLoader;!function(e){var t;!function(e){e[e.LoaderAvailable=1]="LoaderAvailable",e[e.BeginLoadingScript=10]="BeginLoadingScript",e[e.EndLoadingScriptOK=11]="EndLoadingScriptOK",e[e.EndLoadingScriptError=12]="EndLoadingScriptError",e[e.BeginInvokeFactory=21]="BeginInvokeFactory",e[e.EndInvokeFactory=22]="EndInvokeFactory",e[e.NodeBeginEvaluatingScript=31]="NodeBeginEvaluatingScript",e[e.NodeEndEvaluatingScript=32]="NodeEndEvaluatingScript",e[e.NodeBeginNativeRequire=33]="NodeBeginNativeRequire",e[e.NodeEndNativeRequire=34]="NodeEndNativeRequire"}(t=e.LoaderEventType||(e.LoaderEventType={}));var r=function(){return function(e,t,r){this.type=e,this.detail=t,this.timestamp=r}}();e.LoaderEvent=r;var n=function(){function n(e){this._events=[new r(t.LoaderAvailable,"",e)]}return n.prototype.record=function(t,n){this._events.push(new r(t,n,e.Utilities.getHighPerformanceTimestamp()))},n.prototype.getEvents=function(){return this._events},n}();e.LoaderEventRecorder=n;var o=function(){function e(){}return e.prototype.record=function(e,t){},e.prototype.getEvents=function(){return[]},e}();o.INSTANCE=new o,e.NullLoaderEventRecorder=o}(AMDLoader||(AMDLoader={}));var AMDLoader;!function(e){var t=function(){function t(){}return t.fileUriToFilePath=function(e,t){if(t=decodeURI(t),e){if(/^file:\/\/\//.test(t))return t.substr(8);if(/^file:\/\//.test(t))return t.substr(5)}else if(/^file:\/\//.test(t))return t.substr(7);return t},t.startsWith=function(e,t){return e.length>=t.length&&e.substr(0,t.length)===t},t.endsWith=function(e,t){return e.length>=t.length&&e.substr(e.length-t.length)===t},t.containsQueryString=function(e){return/^[^\#]*\?/gi.test(e)},t.isAbsolutePath=function(e){return/^((http:\/\/)|(https:\/\/)|(file:\/\/)|(\/))/.test(e)},t.forEachProperty=function(e,t){if(e){var r=void 0;for(r in e)e.hasOwnProperty(r)&&t(r,e[r])}},t.isEmpty=function(e){var r=!0;return t.forEachProperty(e,function(){r=!1}),r},t.recursiveClone=function(e){if(!e||"object"!=typeof e)return e;var r=Array.isArray(e)?[]:{};return t.forEachProperty(e,function(e,n){r[e]=n&&"object"==typeof n?t.recursiveClone(n):n}),r},t.generateAnonymousModule=function(){return"===anonymous"+t.NEXT_ANONYMOUS_ID+++"==="},t.isAnonymousModule=function(e){return/^===anonymous/.test(e)},t.getHighPerformanceTimestamp=function(){return this.PERFORMANCE_NOW_PROBED||(this.PERFORMANCE_NOW_PROBED=!0,this.HAS_PERFORMANCE_NOW=e.global.performance&&"function"==typeof e.global.performance.now),this.HAS_PERFORMANCE_NOW?e.global.performance.now():Date.now()},t}();t.NEXT_ANONYMOUS_ID=1,t.PERFORMANCE_NOW_PROBED=!1,t.HAS_PERFORMANCE_NOW=!1,e.Utilities=t}(AMDLoader||(AMDLoader={}));var AMDLoader;!function(e){var t=function(){function t(){}return t.validateConfigurationOptions=function(t,r){return"string"!=typeof(r=r||{}).baseUrl&&(r.baseUrl=""),"boolean"!=typeof r.isBuild&&(r.isBuild=!1),"object"!=typeof r.paths&&(r.paths={}),"object"!=typeof r.config&&(r.config={}),void 0===r.catchError&&(r.catchError=t),"string"!=typeof r.urlArgs&&(r.urlArgs=""),"function"!=typeof r.onError&&(r.onError=function(e){return"load"===e.errorCode?(console.error('Loading "'+e.moduleId+'" failed'),console.error("Detail: ",e.detail),e.detail&&e.detail.stack&&console.error(e.detail.stack),console.error("Here are the modules that depend on it:"),void console.error(e.neededBy)):"factory"===e.errorCode?(console.error('The factory method of "'+e.moduleId+'" has thrown an exception'),console.error(e.detail),void(e.detail&&e.detail.stack&&console.error(e.detail.stack))):void 0}),"object"==typeof r.ignoreDuplicateModules&&Array.isArray(r.ignoreDuplicateModules)||(r.ignoreDuplicateModules=[]),r.baseUrl.length>0&&(e.Utilities.endsWith(r.baseUrl,"/")||(r.baseUrl+="/")),Array.isArray(r.nodeModules)||(r.nodeModules=[]),("number"!=typeof r.nodeCachedDataWriteDelay||r.nodeCachedDataWriteDelay<0)&&(r.nodeCachedDataWriteDelay=7e3),"function"!=typeof r.onNodeCachedData&&(r.onNodeCachedData=function(e,t){e&&("cachedDataRejected"===e.errorCode?console.warn("Rejected cached data from file: "+e.path):"unlink"===e.errorCode||"writeFile"===e.errorCode?(console.error("Problems writing cached data file: "+e.path),console.error(e.detail)):console.error(e))}),r},t.mergeConfigurationOptions=function(r,n,o){void 0===n&&(n=null),void 0===o&&(o=null);var i=e.Utilities.recursiveClone(o||{});return e.Utilities.forEachProperty(n,function(t,r){"ignoreDuplicateModules"===t&&void 0!==i.ignoreDuplicateModules?i.ignoreDuplicateModules=i.ignoreDuplicateModules.concat(r):"paths"===t&&void 0!==i.paths?e.Utilities.forEachProperty(r,function(e,t){return i.paths[e]=t}):"config"===t&&void 0!==i.config?e.Utilities.forEachProperty(r,function(e,t){return i.config[e]=t}):i[t]=e.Utilities.recursiveClone(r)}),t.validateConfigurationOptions(r,i)},t}();e.ConfigurationOptionsUtil=t;var r=function(){function r(e,r){if(this._env=e,this.options=t.mergeConfigurationOptions(this._env.isWebWorker,r),this._createIgnoreDuplicateModulesMap(),this._createNodeModulesMap(),this._createSortedPathsRules(),""===this.options.baseUrl){if(this._env.isNode&&this.options.nodeRequire&&this.options.nodeRequire.main&&this.options.nodeRequire.main.filename){var n=this.options.nodeRequire.main.filename,o=Math.max(n.lastIndexOf("/"),n.lastIndexOf("\\"));this.options.baseUrl=n.substring(0,o+1)}if(this._env.isNode&&this.options.nodeMain){var n=this.options.nodeMain,o=Math.max(n.lastIndexOf("/"),n.lastIndexOf("\\"));this.options.baseUrl=n.substring(0,o+1)}}}return r.prototype._createIgnoreDuplicateModulesMap=function(){this.ignoreDuplicateModulesMap={};for(var e=0;e<this.options.ignoreDuplicateModules.length;e++)this.ignoreDuplicateModulesMap[this.options.ignoreDuplicateModules[e]]=!0},r.prototype._createNodeModulesMap=function(){this.nodeModulesMap=Object.create(null);for(var e=0,t=this.options.nodeModules;e<t.length;e++){var r=t[e];this.nodeModulesMap[r]=!0}},r.prototype._createSortedPathsRules=function(){var t=this;this.sortedPathsRules=[],e.Utilities.forEachProperty(this.options.paths,function(e,r){Array.isArray(r)?t.sortedPathsRules.push({from:e,to:r}):t.sortedPathsRules.push({from:e,to:[r]})}),this.sortedPathsRules.sort(function(e,t){return t.from.length-e.from.length})},r.prototype.cloneAndMerge=function(e){return new r(this._env,t.mergeConfigurationOptions(this._env.isWebWorker,e,this.options))},r.prototype.getOptionsLiteral=function(){return this.options},r.prototype._applyPaths=function(t){for(var r,n=0,o=this.sortedPathsRules.length;n<o;n++)if(r=this.sortedPathsRules[n],e.Utilities.startsWith(t,r.from)){for(var i=[],s=0,a=r.to.length;s<a;s++)i.push(r.to[s]+t.substr(r.from.length));return i}return[t]},r.prototype._addUrlArgsToUrl=function(t){return e.Utilities.containsQueryString(t)?t+"&"+this.options.urlArgs:t+"?"+this.options.urlArgs},r.prototype._addUrlArgsIfNecessaryToUrl=function(e){return this.options.urlArgs?this._addUrlArgsToUrl(e):e},r.prototype._addUrlArgsIfNecessaryToUrls=function(e){if(this.options.urlArgs)for(var t=0,r=e.length;t<r;t++)e[t]=this._addUrlArgsToUrl(e[t]);return e},r.prototype.moduleIdToPaths=function(t){if(!0===this.nodeModulesMap[t])return this.isBuild()?["empty:"]:["node|"+t];var r,n=t;if(e.Utilities.endsWith(n,".js")||e.Utilities.isAbsolutePath(n))e.Utilities.endsWith(n,".js")||e.Utilities.containsQueryString(n)||(n+=".js"),r=[n];else for(var o=0,i=(r=this._applyPaths(n)).length;o<i;o++)this.isBuild()&&"empty:"===r[o]||(e.Utilities.isAbsolutePath(r[o])||(r[o]=this.options.baseUrl+r[o]),e.Utilities.endsWith(r[o],".js")||e.Utilities.containsQueryString(r[o])||(r[o]=r[o]+".js"));return this._addUrlArgsIfNecessaryToUrls(r)},r.prototype.requireToUrl=function(t){var r=t;return e.Utilities.isAbsolutePath(r)||(r=this._applyPaths(r)[0],e.Utilities.isAbsolutePath(r)||(r=this.options.baseUrl+r)),this._addUrlArgsIfNecessaryToUrl(r)},r.prototype.isBuild=function(){return this.options.isBuild},r.prototype.isDuplicateMessageIgnoredFor=function(e){return this.ignoreDuplicateModulesMap.hasOwnProperty(e)},r.prototype.getConfigForModule=function(e){if(this.options.config)return this.options.config[e]},r.prototype.shouldCatchError=function(){return this.options.catchError},r.prototype.shouldRecordStats=function(){return this.options.recordStats},r.prototype.onError=function(e){this.options.onError(e)},r}();e.Configuration=r}(AMDLoader||(AMDLoader={}));var AMDLoader;!function(e){var t=function(){function e(e){this.actualScriptLoader=e,this.callbackMap={}}return e.prototype.load=function(e,t,r,n){var o=this,i={callback:r,errorback:n};this.callbackMap.hasOwnProperty(t)?this.callbackMap[t].push(i):(this.callbackMap[t]=[i],this.actualScriptLoader.load(e,t,function(){return o.triggerCallback(t)},function(e){return o.triggerErrorback(t,e)}))},e.prototype.triggerCallback=function(e){var t=this.callbackMap[e];delete this.callbackMap[e];for(var r=0;r<t.length;r++)t[r].callback()},e.prototype.triggerErrorback=function(e,t){var r=this.callbackMap[e];delete this.callbackMap[e];for(var n=0;n<r.length;n++)r[n].errorback(t)},e}(),r=function(){function e(){}return e.prototype.attachListeners=function(e,t,r){var n=function(){e.removeEventListener("load",o),e.removeEventListener("error",i)},o=function(e){n(),t()},i=function(e){n(),r(e)};e.addEventListener("load",o),e.addEventListener("error",i)},e.prototype.load=function(e,t,r,n){var o=document.createElement("script");o.setAttribute("async","async"),o.setAttribute("type","text/javascript"),this.attachListeners(o,r,n),o.setAttribute("src",t),document.getElementsByTagName("head")[0].appendChild(o)},e}(),n=function(){function e(){}return e.prototype.load=function(e,t,r,n){try{importScripts(t),r()}catch(e){n(e)}},e}(),o=function(){function t(e){this._env=e,this._didInitialize=!1,this._didPatchNodeRequire=!1}return t.prototype._init=function(e){if(!this._didInitialize){this._didInitialize=!0,this._fs=e("fs"),this._vm=e("vm"),this._path=e("path"),this._crypto=e("crypto"),this._jsflags="";for(var t=0,r=process.argv;t<r.length;t++){var n=r[t];if(0===n.indexOf("--js-flags=")){this._jsflags=n;break}}}},t.prototype._initNodeRequire=function(t,r){function n(e){var t=e.constructor,r=function(t){try{return e.require(t)}finally{}};return r.resolve=function(r){return t._resolveFilename(r,e)},r.main=process.mainModule,r.extensions=t._extensions,r.cache=t._cache,r}var o=r.getConfig().getOptionsLiteral().nodeCachedDataDir;if(o&&!this._didPatchNodeRequire){this._didPatchNodeRequire=!0;var i=this,s=t("module");s.prototype._compile=function(t,a){t=t.replace(/^#!.*/,"");var d=s.wrap(t),l=i._getCachedDataPath(o,a),u={filename:a};try{u.cachedData=i._fs.readFileSync(l)}catch(e){u.produceCachedData=!0}var c=new i._vm.Script(d,u),h=c.runInThisContext(u),f=i._path.dirname(a),p=n(this),g=[this.exports,p,this,a,f,process,e.global,Buffer],v=h.apply(this.exports,g);return i._processCachedData(r,c,l),v}}},t.prototype.load=function(r,n,o,i){var s=this,a=r.getConfig().getOptionsLiteral(),d=a.nodeRequire||e.global.nodeRequire,l=a.nodeInstrumenter||function(e){return e};this._init(d),this._initNodeRequire(d,r);var u=r.getRecorder();if(/^node\|/.test(n)){var c=n.split("|"),h=null;try{h=d(c[1])}catch(e){return void i(e)}r.enqueueDefineAnonymousModule([],function(){return h}),o()}else n=e.Utilities.fileUriToFilePath(this._env.isWindows,n),this._fs.readFile(n,{encoding:"utf8"},function(e,d){if(e)i(e);else{var c=s._path.normalize(n),h=c;if(s._env.isElectronRenderer){var f=h.match(/^([a-z])\:(.*)/i);h=f?"file:///"+(f[1].toUpperCase()+":"+f[2]).replace(/\\/g,"/"):"file://"+h}var p,g="(function (require, define, __filename, __dirname) { ";if(p=d.charCodeAt(0)===t._BOM?g+d.substring(1)+"\n});":g+d+"\n});",p=l(p,c),a.nodeCachedDataDir){var v=s._getCachedDataPath(a.nodeCachedDataDir,n);s._fs.readFile(v,function(e,t){var i={filename:h,produceCachedData:void 0===t,cachedData:t},a=s._loadAndEvalScript(r,n,h,p,i,u);o(),s._processCachedData(r,a,v)})}else s._loadAndEvalScript(r,n,h,p,{filename:h},u),o()}})},t.prototype._loadAndEvalScript=function(t,r,n,o,i,s){s.record(e.LoaderEventType.NodeBeginEvaluatingScript,r);var a=new this._vm.Script(o,i);return a.runInThisContext(i).call(e.global,t.getGlobalAMDRequireFunc(),t.getGlobalAMDDefineFunc(),n,this._path.dirname(r)),s.record(e.LoaderEventType.NodeEndEvaluatingScript,r),a},t.prototype._getCachedDataPath=function(e,t){var r=this._crypto.createHash("md5").update(t,"utf8").update(this._jsflags,"utf8").digest("hex"),n=this._path.basename(t).replace(/\.js$/,"");return this._path.join(e,n+"-"+r+".code")},t.prototype._processCachedData=function(e,r,n){var o=this;r.cachedDataRejected?(e.getConfig().getOptionsLiteral().onNodeCachedData({errorCode:"cachedDataRejected",path:n}),t._runSoon(function(){return o._fs.unlink(n,function(t){t&&e.getConfig().getOptionsLiteral().onNodeCachedData({errorCode:"unlink",path:n,detail:t})})},e.getConfig().getOptionsLiteral().nodeCachedDataWriteDelay)):r.cachedDataProduced&&(e.getConfig().getOptionsLiteral().onNodeCachedData(void 0,{path:n,length:r.cachedData.length}),t._runSoon(function(){return o._fs.writeFile(n,r.cachedData,function(t){t&&e.getConfig().getOptionsLiteral().onNodeCachedData({errorCode:"writeFile",path:n,detail:t})})},e.getConfig().getOptionsLiteral().nodeCachedDataWriteDelay))},t._runSoon=function(e,t){var r=t+Math.ceil(Math.random()*t);setTimeout(e,r)},t}();o._BOM=65279,e.createScriptLoader=function(e){return new t(e.isWebWorker?new n:e.isNode?new o(e):new r)}}(AMDLoader||(AMDLoader={}));var AMDLoader;!function(e){var t=function(){function t(e){var t=e.lastIndexOf("/");this.fromModulePath=-1!==t?e.substr(0,t+1):""}return t._normalizeModuleId=function(e){var t,r=e;for(t=/\/\.\//;t.test(r);)r=r.replace(t,"/");for(r=r.replace(/^\.\//g,""),t=/\/(([^\/])|([^\/][^\/\.])|([^\/\.][^\/])|([^\/][^\/][^\/]+))\/\.\.\//;t.test(r);)r=r.replace(t,"/");return r=r.replace(/^(([^\/])|([^\/][^\/\.])|([^\/\.][^\/])|([^\/][^\/][^\/]+))\/\.\.\//,"")},t.prototype.resolveModule=function(r){var n=r;return e.Utilities.isAbsolutePath(n)||(e.Utilities.startsWith(n,"./")||e.Utilities.startsWith(n,"../"))&&(n=t._normalizeModuleId(this.fromModulePath+n)),n},t}();t.ROOT=new t(""),e.ModuleIdResolver=t;var r=function(){function t(e,t,r,n,o,i){this.id=e,this.strId=t,this.dependencies=r,this._callback=n,this._errorback=o,this.moduleIdResolver=i,this.exports={},this.exportsPassedIn=!1,this.unresolvedDependenciesCount=this.dependencies.length,this._isComplete=!1}return t._safeInvokeFunction=function(t,r){try{return{returnedValue:t.apply(e.global,r),producedError:null}}catch(e){return{returnedValue:null,producedError:e}}},t._invokeFactory=function(t,r,n,o){return t.isBuild()&&!e.Utilities.isAnonymousModule(r)?{returnedValue:null,producedError:null}:t.shouldCatchError()?this._safeInvokeFunction(n,o):{returnedValue:n.apply(e.global,o),producedError:null}},t.prototype.complete=function(r,n,o){this._isComplete=!0;var i=null;if(this._callback)if("function"==typeof this._callback){r.record(e.LoaderEventType.BeginInvokeFactory,this.strId);var s=t._invokeFactory(n,this.strId,this._callback,o);i=s.producedError,r.record(e.LoaderEventType.EndInvokeFactory,this.strId),i||void 0===s.returnedValue||this.exportsPassedIn&&!e.Utilities.isEmpty(this.exports)||(this.exports=s.returnedValue)}else this.exports=this._callback;i&&n.onError({errorCode:"factory",moduleId:this.strId,detail:i}),this.dependencies=null,this._callback=null,this._errorback=null,this.moduleIdResolver=null},t.prototype.onDependencyError=function(e){return!!this._errorback&&(this._errorback(e),!0)},t.prototype.isComplete=function(){return this._isComplete},t}();e.Module=r;var n=function(){function e(){this._nextId=0,this._strModuleIdToIntModuleId=new Map,this._intModuleIdToStrModuleId=[],this.getModuleId("exports"),this.getModuleId("module"),this.getModuleId("require")}return e.prototype.getMaxModuleId=function(){return this._nextId},e.prototype.getModuleId=function(e){var t=this._strModuleIdToIntModuleId.get(e);return void 0===t&&(t=this._nextId++,this._strModuleIdToIntModuleId.set(e,t),this._intModuleIdToStrModuleId[t]=e),t},e.prototype.getStrModuleId=function(e){return this._intModuleIdToStrModuleId[e]},e}(),o=function(){return function(e){this.id=e}}();o.EXPORTS=new o(0),o.MODULE=new o(1),o.REQUIRE=new o(2),e.RegularDependency=o;var i=function(){return function(e,t,r){this.id=e,this.pluginId=t,this.pluginParam=r}}();e.PluginDependency=i;var s=function(){function s(t,r,o,i,s){void 0===s&&(s=0),this._env=t,this._scriptLoader=r,this._loaderAvailableTimestamp=s,this._defineFunc=o,this._requireFunc=i,this._moduleIdProvider=new n,this._config=new e.Configuration(this._env),this._modules2=[],this._knownModules2=[],this._inverseDependencies2=[],this._inversePluginDependencies2=new Map,this._currentAnnonymousDefineCall=null,this._recorder=null,this._buildInfoPath=[],this._buildInfoDefineStack=[],this._buildInfoDependencies=[]}return s.prototype.reset=function(){return new s(this._env,this._scriptLoader,this._defineFunc,this._requireFunc,this._loaderAvailableTimestamp)},s.prototype.getGlobalAMDDefineFunc=function(){return this._defineFunc},s.prototype.getGlobalAMDRequireFunc=function(){return this._requireFunc},s._findRelevantLocationInStack=function(e,t){for(var r=function(e){return e.replace(/\\/g,"/")},n=r(e),o=t.split(/\n/),i=0;i<o.length;i++){var s=o[i].match(/(.*):(\d+):(\d+)\)?$/);if(s){var a=s[1],d=s[2],l=s[3],u=Math.max(a.lastIndexOf(" ")+1,a.lastIndexOf("(")+1);if(a=a.substr(u),(a=r(a))===n){var c={line:parseInt(d,10),col:parseInt(l,10)};return 1===c.line&&(c.col-="(function (require, define, __filename, __dirname) { ".length),c}}}throw new Error("Could not correlate define call site for needle "+e)},s.prototype.getBuildInfo=function(){if(!this._config.isBuild())return null;for(var e=[],t=0,r=0,n=this._modules2.length;r<n;r++){var o=this._modules2[r];if(o){var i=this._buildInfoPath[o.id]||null,a=this._buildInfoDefineStack[o.id]||null,d=this._buildInfoDependencies[o.id];e[t++]={id:o.strId,path:i,defineLocation:i&&a?s._findRelevantLocationInStack(i,a):null,dependencies:d,shim:null,exports:o.exports}}}return e},s.prototype.getRecorder=function(){return this._recorder||(this._config.shouldRecordStats()?this._recorder=new e.LoaderEventRecorder(this._loaderAvailableTimestamp):this._recorder=e.NullLoaderEventRecorder.INSTANCE),this._recorder},s.prototype.getLoaderEvents=function(){return this.getRecorder().getEvents()},s.prototype.enqueueDefineAnonymousModule=function(e,t){if(null!==this._currentAnnonymousDefineCall)throw new Error("Can only have one anonymous define call per script file");var r=null;this._config.isBuild()&&(r=new Error("StackLocation").stack),this._currentAnnonymousDefineCall={stack:r,dependencies:e,callback:t}},s.prototype.defineModule=function(e,n,o,i,s,a){var d=this;void 0===a&&(a=new t(e));var l=this._moduleIdProvider.getModuleId(e);if(this._modules2[l])this._config.isDuplicateMessageIgnoredFor(e)||console.warn("Duplicate definition of module '"+e+"'");else{var u=new r(l,e,this._normalizeDependencies(n,a),o,i,a);this._modules2[l]=u,this._config.isBuild()&&(this._buildInfoDefineStack[l]=s,this._buildInfoDependencies[l]=u.dependencies.map(function(e){return d._moduleIdProvider.getStrModuleId(e.id)})),this._resolve(u)}},s.prototype._normalizeDependency=function(e,t){if("exports"===e)return o.EXPORTS;if("module"===e)return o.MODULE;if("require"===e)return o.REQUIRE;var r=e.indexOf("!");if(r>=0){var n=t.resolveModule(e.substr(0,r)),s=t.resolveModule(e.substr(r+1)),a=this._moduleIdProvider.getModuleId(n+"!"+s),d=this._moduleIdProvider.getModuleId(n);return new i(a,d,s)}return new o(this._moduleIdProvider.getModuleId(t.resolveModule(e)))},s.prototype._normalizeDependencies=function(e,t){for(var r=[],n=0,o=0,i=e.length;o<i;o++)r[n++]=this._normalizeDependency(e[o],t);return r},s.prototype._relativeRequire=function(t,r,n,o){if("string"==typeof r)return this.synchronousRequire(r,t);this.defineModule(e.Utilities.generateAnonymousModule(),r,n,o,null,t)},s.prototype.synchronousRequire=function(e,r){void 0===r&&(r=new t(e));var n=this._normalizeDependency(e,r),o=this._modules2[n.id];if(!o)throw new Error("Check dependency list! Synchronous require cannot resolve module '"+e+"'. This is the first mention of this module!");if(!o.isComplete())throw new Error("Check dependency list! Synchronous require cannot resolve module '"+e+"'. This module has not been resolved completely yet.");return o.exports},s.prototype.configure=function(t,r){var n=this._config.shouldRecordStats();this._config=r?new e.Configuration(this._env,t):this._config.cloneAndMerge(t),this._config.shouldRecordStats()&&!n&&(this._recorder=null)},s.prototype.getConfig=function(){return this._config},s.prototype._onLoad=function(e){if(null!==this._currentAnnonymousDefineCall){var t=this._currentAnnonymousDefineCall;this._currentAnnonymousDefineCall=null,this.defineModule(this._moduleIdProvider.getStrModuleId(e),t.dependencies,t.callback,null,t.stack)}},s.prototype._createLoadError=function(e,t){var r=this;return{errorCode:"load",moduleId:this._moduleIdProvider.getStrModuleId(e),neededBy:(this._inverseDependencies2[e]||[]).map(function(e){return r._moduleIdProvider.getStrModuleId(e)}),detail:t}},s.prototype._onLoadError=function(e,t){for(var r=this._createLoadError(e,t),n=[],o=0,i=this._moduleIdProvider.getMaxModuleId();o<i;o++)n[o]=!1;var s=!1,a=[];for(a.push(e),n[e]=!0;a.length>0;){var d=a.shift(),l=this._modules2[d];l&&(s=l.onDependencyError(r)||s);var u=this._inverseDependencies2[d];if(u)for(var o=0,i=u.length;o<i;o++){var c=u[o];n[c]||(a.push(c),n[c]=!0)}}s||this._config.onError(r)},s.prototype._hasDependencyPath=function(e,t){var r=this._modules2[e];if(!r)return!1;for(var n=[],o=0,i=this._moduleIdProvider.getMaxModuleId();o<i;o++)n[o]=!1;var s=[];for(s.push(r),n[e]=!0;s.length>0;){var a=s.shift().dependencies;if(a)for(var o=0,i=a.length;o<i;o++){var d=a[o];if(d.id===t)return!0;var l=this._modules2[d.id];l&&!n[d.id]&&(n[d.id]=!0,s.push(l))}}return!1},s.prototype._findCyclePath=function(e,t,r){if(e===t||50===r)return[e];var n=this._modules2[e];if(!n)return null;for(var o=n.dependencies,i=0,s=o.length;i<s;i++){var a=this._findCyclePath(o[i].id,t,r+1);if(null!==a)return a.push(e),a}return null},s.prototype._createRequire=function(t){var r=this,n=function(e,n,o){return r._relativeRequire(t,e,n,o)};return n.toUrl=function(e){return r._config.requireToUrl(t.resolveModule(e))},n.getStats=function(){return r.getLoaderEvents()},n.__$__nodeRequire=e.global.nodeRequire,n},s.prototype._loadModule=function(t){var r=this;if(!this._modules2[t]&&!this._knownModules2[t]){this._knownModules2[t]=!0;var n=this._moduleIdProvider.getStrModuleId(t),o=this._config.moduleIdToPaths(n);this._env.isNode&&-1===n.indexOf("/")&&o.push("node|"+n);var i=-1,s=function(n){if(++i>=o.length)r._onLoadError(t,n);else{var a=o[i],d=r.getRecorder();if(r._config.isBuild()&&"empty:"===a)return r._buildInfoPath[t]=a,r.defineModule(r._moduleIdProvider.getStrModuleId(t),[],null,null,null),void r._onLoad(t);d.record(e.LoaderEventType.BeginLoadingScript,a),r._scriptLoader.load(r,a,function(){r._config.isBuild()&&(r._buildInfoPath[t]=a),d.record(e.LoaderEventType.EndLoadingScriptOK,a),r._onLoad(t)},function(t){d.record(e.LoaderEventType.EndLoadingScriptError,a),s(t)})}};s(null)}},s.prototype._loadPluginDependency=function(e,r){var n=this;if(!this._modules2[r.id]&&!this._knownModules2[r.id]){this._knownModules2[r.id]=!0;var o=function(e){n.defineModule(n._moduleIdProvider.getStrModuleId(r.id),[],e,null,null)};o.error=function(e){n._config.onError(n._createLoadError(r.id,e))},e.load(r.pluginParam,this._createRequire(t.ROOT),o,this._config.getOptionsLiteral())}},s.prototype._resolve=function(e){for(var t=this,r=e.dependencies,n=0,s=r.length;n<s;n++){var a=r[n];if(a!==o.EXPORTS)if(a!==o.MODULE)if(a!==o.REQUIRE){var d=this._modules2[a.id];if(d&&d.isComplete())e.unresolvedDependenciesCount--;else if(this._hasDependencyPath(a.id,e.id)){console.warn("There is a dependency cycle between '"+this._moduleIdProvider.getStrModuleId(a.id)+"' and '"+this._moduleIdProvider.getStrModuleId(e.id)+"'. The cyclic path follows:");var l=this._findCyclePath(a.id,e.id,0);l.reverse(),l.push(a.id),console.warn(l.map(function(e){return t._moduleIdProvider.getStrModuleId(e)}).join(" => \n")),e.unresolvedDependenciesCount--}else if(this._inverseDependencies2[a.id]=this._inverseDependencies2[a.id]||[],this._inverseDependencies2[a.id].push(e.id),a instanceof i){var u=this._modules2[a.pluginId];if(u&&u.isComplete()){this._loadPluginDependency(u.exports,a);continue}var c=this._inversePluginDependencies2.get(a.pluginId);c||(c=[],this._inversePluginDependencies2.set(a.pluginId,c)),c.push(a),this._loadModule(a.pluginId)}else this._loadModule(a.id)}else e.unresolvedDependenciesCount--;else e.unresolvedDependenciesCount--;else e.exportsPassedIn=!0,e.unresolvedDependenciesCount--}0===e.unresolvedDependenciesCount&&this._onModuleComplete(e)},s.prototype._onModuleComplete=function(e){var t=this,r=this.getRecorder();if(!e.isComplete()){for(var n=e.dependencies,i=[],s=0,a=n.length;s<a;s++){var d=n[s];if(d!==o.EXPORTS)if(d!==o.MODULE)if(d!==o.REQUIRE){var l=this._modules2[d.id];i[s]=l?l.exports:null}else i[s]=this._createRequire(e.moduleIdResolver);else i[s]={id:e.strId,config:function(){return t._config.getConfigForModule(e.strId)}};else i[s]=e.exports}e.complete(r,this._config,i);var u=this._inverseDependencies2[e.id];if(this._inverseDependencies2[e.id]=null,u)for(var s=0,a=u.length;s<a;s++){var c=u[s],h=this._modules2[c];h.unresolvedDependenciesCount--,0===h.unresolvedDependenciesCount&&this._onModuleComplete(h)}var f=this._inversePluginDependencies2.get(e.id);if(f){this._inversePluginDependencies2.delete(e.id);for(var s=0,a=f.length;s<a;s++)this._loadPluginDependency(e.exports,f[s])}}},s}();e.ModuleManager=s}(AMDLoader||(AMDLoader={}));var define,AMDLoader;!function(e){function t(){(o=function(e,t,r){"string"!=typeof e&&(r=t,t=e,e=null),"object"==typeof t&&Array.isArray(t)||(r=t,t=null),t||(t=["require","exports","module"]),e?n.defineModule(e,t,r,null,null):n.enqueueDefineAnonymousModule(t,r)}).amd={jQuery:!0};var t=function(e,t){void 0===t&&(t=!1),n.configure(e,t)};(i=function(){if(1===arguments.length){if(arguments[0]instanceof Object&&!Array.isArray(arguments[0]))return void t(arguments[0]);if("string"==typeof arguments[0])return n.synchronousRequire(arguments[0])}if(2!==arguments.length&&3!==arguments.length||!Array.isArray(arguments[0]))throw new Error("Unrecognized require call");n.defineModule(e.Utilities.generateAnonymousModule(),arguments[0],arguments[1],arguments[2],null)}).config=t,i.getConfig=function(){return n.getConfig().getOptionsLiteral()},i.reset=function(){n=n.reset()},i.getBuildInfo=function(){return n.getBuildInfo()},i.getStats=function(){return n.getLoaderEvents()}}function r(){t();var r=e.Environment.detect(),s=e.createScriptLoader(r);if(n=new e.ModuleManager(r,s,o,i,e.Utilities.getHighPerformanceTimestamp()),r.isNode){var a=e.global.require||require,d=function(t){n.getRecorder().record(e.LoaderEventType.NodeBeginNativeRequire,t);try{return a(t)}finally{n.getRecorder().record(e.LoaderEventType.NodeEndNativeRequire,t)}};e.global.nodeRequire=d,i.nodeRequire=d}r.isNode&&!r.isElectronRenderer?(module.exports=i,define=function(){o.apply(null,arguments)},require=i):(void 0!==e.global.require&&"function"!=typeof e.global.require&&i.config(e.global.require),r.isElectronRenderer?define=function(){o.apply(null,arguments)}:e.global.define=define=o,e.global.require=i,e.global.require.__$__nodeRequire=d)}var n=null,o=null,i=null;e.init=r,"undefined"!=typeof doNotInitLoader||"function"==typeof e.global.define&&e.global.define.amd||r()}(AMDLoader||(AMDLoader={})); |
| | | //# sourceMappingURL=../../min-maps/vs/loader.js.map |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | |
| | | (function(mod) { |
| | | if (typeof exports == "object" && typeof module == "object") // CommonJS |
| | | mod(require("../../lib/codemirror")); |
| | | else if (typeof define == "function" && define.amd) // AMD |
| | | define(["../../lib/codemirror"], mod); |
| | | else // Plain browser env |
| | | mod(CodeMirror); |
| | | })(function(CodeMirror) { |
| | | "use strict"; |
| | | |
| | | var htmlConfig = { |
| | | autoSelfClosers: {'area': true, 'base': true, 'br': true, 'col': true, 'command': true, |
| | | 'embed': true, 'frame': true, 'hr': true, 'img': true, 'input': true, |
| | | 'keygen': true, 'link': true, 'meta': true, 'param': true, 'source': true, |
| | | 'track': true, 'wbr': true, 'menuitem': true}, |
| | | implicitlyClosed: {'dd': true, 'li': true, 'optgroup': true, 'option': true, 'p': true, |
| | | 'rp': true, 'rt': true, 'tbody': true, 'td': true, 'tfoot': true, |
| | | 'th': true, 'tr': true}, |
| | | contextGrabbers: { |
| | | 'dd': {'dd': true, 'dt': true}, |
| | | 'dt': {'dd': true, 'dt': true}, |
| | | 'li': {'li': true}, |
| | | 'option': {'option': true, 'optgroup': true}, |
| | | 'optgroup': {'optgroup': true}, |
| | | 'p': {'address': true, 'article': true, 'aside': true, 'blockquote': true, 'dir': true, |
| | | 'div': true, 'dl': true, 'fieldset': true, 'footer': true, 'form': true, |
| | | 'h1': true, 'h2': true, 'h3': true, 'h4': true, 'h5': true, 'h6': true, |
| | | 'header': true, 'hgroup': true, 'hr': true, 'menu': true, 'nav': true, 'ol': true, |
| | | 'p': true, 'pre': true, 'section': true, 'table': true, 'ul': true}, |
| | | 'rp': {'rp': true, 'rt': true}, |
| | | 'rt': {'rp': true, 'rt': true}, |
| | | 'tbody': {'tbody': true, 'tfoot': true}, |
| | | 'td': {'td': true, 'th': true}, |
| | | 'tfoot': {'tbody': true}, |
| | | 'th': {'td': true, 'th': true}, |
| | | 'thead': {'tbody': true, 'tfoot': true}, |
| | | 'tr': {'tr': true} |
| | | }, |
| | | doNotIndent: {"pre": true}, |
| | | allowUnquoted: true, |
| | | allowMissing: true, |
| | | caseFold: true |
| | | } |
| | | |
| | | var xmlConfig = { |
| | | autoSelfClosers: {}, |
| | | implicitlyClosed: {}, |
| | | contextGrabbers: {}, |
| | | doNotIndent: {}, |
| | | allowUnquoted: false, |
| | | allowMissing: false, |
| | | caseFold: false |
| | | } |
| | | |
| | | CodeMirror.defineMode("xml", function(editorConf, config_) { |
| | | var indentUnit = editorConf.indentUnit |
| | | var config = {} |
| | | var defaults = config_.htmlMode ? htmlConfig : xmlConfig |
| | | for (var prop in defaults) config[prop] = defaults[prop] |
| | | for (var prop in config_) config[prop] = config_[prop] |
| | | |
| | | // Return variables for tokenizers |
| | | var type, setStyle; |
| | | |
| | | function inText(stream, state) { |
| | | function chain(parser) { |
| | | state.tokenize = parser; |
| | | return parser(stream, state); |
| | | } |
| | | |
| | | var ch = stream.next(); |
| | | if (ch == "<") { |
| | | if (stream.eat("!")) { |
| | | if (stream.eat("[")) { |
| | | if (stream.match("CDATA[")) return chain(inBlock("atom", "]]>")); |
| | | else return null; |
| | | } else if (stream.match("--")) { |
| | | return chain(inBlock("comment", "-->")); |
| | | } else if (stream.match("DOCTYPE", true, true)) { |
| | | stream.eatWhile(/[\w\._\-]/); |
| | | return chain(doctype(1)); |
| | | } else { |
| | | return null; |
| | | } |
| | | } else if (stream.eat("?")) { |
| | | stream.eatWhile(/[\w\._\-]/); |
| | | state.tokenize = inBlock("meta", "?>"); |
| | | return "meta"; |
| | | } else { |
| | | type = stream.eat("/") ? "closeTag" : "openTag"; |
| | | state.tokenize = inTag; |
| | | return "tag bracket"; |
| | | } |
| | | } else if (ch == "&") { |
| | | var ok; |
| | | if (stream.eat("#")) { |
| | | if (stream.eat("x")) { |
| | | ok = stream.eatWhile(/[a-fA-F\d]/) && stream.eat(";"); |
| | | } else { |
| | | ok = stream.eatWhile(/[\d]/) && stream.eat(";"); |
| | | } |
| | | } else { |
| | | ok = stream.eatWhile(/[\w\.\-:]/) && stream.eat(";"); |
| | | } |
| | | return ok ? "atom" : "error"; |
| | | } else { |
| | | stream.eatWhile(/[^&<]/); |
| | | return null; |
| | | } |
| | | } |
| | | inText.isInText = true; |
| | | |
| | | function inTag(stream, state) { |
| | | var ch = stream.next(); |
| | | if (ch == ">" || (ch == "/" && stream.eat(">"))) { |
| | | state.tokenize = inText; |
| | | type = ch == ">" ? "endTag" : "selfcloseTag"; |
| | | return "tag bracket"; |
| | | } else if (ch == "=") { |
| | | type = "equals"; |
| | | return null; |
| | | } else if (ch == "<") { |
| | | state.tokenize = inText; |
| | | state.state = baseState; |
| | | state.tagName = state.tagStart = null; |
| | | var next = state.tokenize(stream, state); |
| | | return next ? next + " tag error" : "tag error"; |
| | | } else if (/[\'\"]/.test(ch)) { |
| | | state.tokenize = inAttribute(ch); |
| | | state.stringStartCol = stream.column(); |
| | | return state.tokenize(stream, state); |
| | | } else { |
| | | stream.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/); |
| | | return "word"; |
| | | } |
| | | } |
| | | |
| | | function inAttribute(quote) { |
| | | var closure = function(stream, state) { |
| | | while (!stream.eol()) { |
| | | if (stream.next() == quote) { |
| | | state.tokenize = inTag; |
| | | break; |
| | | } |
| | | } |
| | | return "string"; |
| | | }; |
| | | closure.isInAttribute = true; |
| | | return closure; |
| | | } |
| | | |
| | | function inBlock(style, terminator) { |
| | | return function(stream, state) { |
| | | while (!stream.eol()) { |
| | | if (stream.match(terminator)) { |
| | | state.tokenize = inText; |
| | | break; |
| | | } |
| | | stream.next(); |
| | | } |
| | | return style; |
| | | }; |
| | | } |
| | | function doctype(depth) { |
| | | return function(stream, state) { |
| | | var ch; |
| | | while ((ch = stream.next()) != null) { |
| | | if (ch == "<") { |
| | | state.tokenize = doctype(depth + 1); |
| | | return state.tokenize(stream, state); |
| | | } else if (ch == ">") { |
| | | if (depth == 1) { |
| | | state.tokenize = inText; |
| | | break; |
| | | } else { |
| | | state.tokenize = doctype(depth - 1); |
| | | return state.tokenize(stream, state); |
| | | } |
| | | } |
| | | } |
| | | return "meta"; |
| | | }; |
| | | } |
| | | |
| | | function Context(state, tagName, startOfLine) { |
| | | this.prev = state.context; |
| | | this.tagName = tagName; |
| | | this.indent = state.indented; |
| | | this.startOfLine = startOfLine; |
| | | if (config.doNotIndent.hasOwnProperty(tagName) || (state.context && state.context.noIndent)) |
| | | this.noIndent = true; |
| | | } |
| | | function popContext(state) { |
| | | if (state.context) state.context = state.context.prev; |
| | | } |
| | | function maybePopContext(state, nextTagName) { |
| | | var parentTagName; |
| | | while (true) { |
| | | if (!state.context) { |
| | | return; |
| | | } |
| | | parentTagName = state.context.tagName; |
| | | if (!config.contextGrabbers.hasOwnProperty(parentTagName) || |
| | | !config.contextGrabbers[parentTagName].hasOwnProperty(nextTagName)) { |
| | | return; |
| | | } |
| | | popContext(state); |
| | | } |
| | | } |
| | | |
| | | function baseState(type, stream, state) { |
| | | if (type == "openTag") { |
| | | state.tagStart = stream.column(); |
| | | return tagNameState; |
| | | } else if (type == "closeTag") { |
| | | return closeTagNameState; |
| | | } else { |
| | | return baseState; |
| | | } |
| | | } |
| | | function tagNameState(type, stream, state) { |
| | | if (type == "word") { |
| | | state.tagName = stream.current(); |
| | | setStyle = "tag"; |
| | | return attrState; |
| | | } else { |
| | | setStyle = "error"; |
| | | return tagNameState; |
| | | } |
| | | } |
| | | function closeTagNameState(type, stream, state) { |
| | | if (type == "word") { |
| | | var tagName = stream.current(); |
| | | if (state.context && state.context.tagName != tagName && |
| | | config.implicitlyClosed.hasOwnProperty(state.context.tagName)) |
| | | popContext(state); |
| | | if ((state.context && state.context.tagName == tagName) || config.matchClosing === false) { |
| | | setStyle = "tag"; |
| | | return closeState; |
| | | } else { |
| | | setStyle = "tag error"; |
| | | return closeStateErr; |
| | | } |
| | | } else { |
| | | setStyle = "error"; |
| | | return closeStateErr; |
| | | } |
| | | } |
| | | |
| | | function closeState(type, _stream, state) { |
| | | if (type != "endTag") { |
| | | setStyle = "error"; |
| | | return closeState; |
| | | } |
| | | popContext(state); |
| | | return baseState; |
| | | } |
| | | function closeStateErr(type, stream, state) { |
| | | setStyle = "error"; |
| | | return closeState(type, stream, state); |
| | | } |
| | | |
| | | function attrState(type, _stream, state) { |
| | | if (type == "word") { |
| | | setStyle = "attribute"; |
| | | return attrEqState; |
| | | } else if (type == "endTag" || type == "selfcloseTag") { |
| | | var tagName = state.tagName, tagStart = state.tagStart; |
| | | state.tagName = state.tagStart = null; |
| | | if (type == "selfcloseTag" || |
| | | config.autoSelfClosers.hasOwnProperty(tagName)) { |
| | | maybePopContext(state, tagName); |
| | | } else { |
| | | maybePopContext(state, tagName); |
| | | state.context = new Context(state, tagName, tagStart == state.indented); |
| | | } |
| | | return baseState; |
| | | } |
| | | setStyle = "error"; |
| | | return attrState; |
| | | } |
| | | function attrEqState(type, stream, state) { |
| | | if (type == "equals") return attrValueState; |
| | | if (!config.allowMissing) setStyle = "error"; |
| | | return attrState(type, stream, state); |
| | | } |
| | | function attrValueState(type, stream, state) { |
| | | if (type == "string") return attrContinuedState; |
| | | if (type == "word" && config.allowUnquoted) {setStyle = "string"; return attrState;} |
| | | setStyle = "error"; |
| | | return attrState(type, stream, state); |
| | | } |
| | | function attrContinuedState(type, stream, state) { |
| | | if (type == "string") return attrContinuedState; |
| | | return attrState(type, stream, state); |
| | | } |
| | | |
| | | return { |
| | | startState: function(baseIndent) { |
| | | var state = {tokenize: inText, |
| | | state: baseState, |
| | | indented: baseIndent || 0, |
| | | tagName: null, tagStart: null, |
| | | context: null} |
| | | if (baseIndent != null) state.baseIndent = baseIndent |
| | | return state |
| | | }, |
| | | |
| | | token: function(stream, state) { |
| | | if (!state.tagName && stream.sol()) |
| | | state.indented = stream.indentation(); |
| | | |
| | | if (stream.eatSpace()) return null; |
| | | type = null; |
| | | var style = state.tokenize(stream, state); |
| | | if ((style || type) && style != "comment") { |
| | | setStyle = null; |
| | | state.state = state.state(type || style, stream, state); |
| | | if (setStyle) |
| | | style = setStyle == "error" ? style + " error" : setStyle; |
| | | } |
| | | return style; |
| | | }, |
| | | |
| | | indent: function(state, textAfter, fullLine) { |
| | | var context = state.context; |
| | | // Indent multi-line strings (e.g. css). |
| | | if (state.tokenize.isInAttribute) { |
| | | if (state.tagStart == state.indented) |
| | | return state.stringStartCol + 1; |
| | | else |
| | | return state.indented + indentUnit; |
| | | } |
| | | if (context && context.noIndent) return CodeMirror.Pass; |
| | | if (state.tokenize != inTag && state.tokenize != inText) |
| | | return fullLine ? fullLine.match(/^(\s*)/)[0].length : 0; |
| | | // Indent the starts of attribute names. |
| | | if (state.tagName) { |
| | | if (config.multilineTagIndentPastTag !== false) |
| | | return state.tagStart + state.tagName.length + 2; |
| | | else |
| | | return state.tagStart + indentUnit * (config.multilineTagIndentFactor || 1); |
| | | } |
| | | if (config.alignCDATA && /<!\[CDATA\[/.test(textAfter)) return 0; |
| | | var tagAfter = textAfter && /^<(\/)?([\w_:\.-]*)/.exec(textAfter); |
| | | if (tagAfter && tagAfter[1]) { // Closing tag spotted |
| | | while (context) { |
| | | if (context.tagName == tagAfter[2]) { |
| | | context = context.prev; |
| | | break; |
| | | } else if (config.implicitlyClosed.hasOwnProperty(context.tagName)) { |
| | | context = context.prev; |
| | | } else { |
| | | break; |
| | | } |
| | | } |
| | | } else if (tagAfter) { // Opening tag spotted |
| | | while (context) { |
| | | var grabbers = config.contextGrabbers[context.tagName]; |
| | | if (grabbers && grabbers.hasOwnProperty(tagAfter[2])) |
| | | context = context.prev; |
| | | else |
| | | break; |
| | | } |
| | | } |
| | | while (context && context.prev && !context.startOfLine) |
| | | context = context.prev; |
| | | if (context) return context.indent + indentUnit; |
| | | else return state.baseIndent || 0; |
| | | }, |
| | | |
| | | electricInput: /<\/[\s\w:]+>$/, |
| | | blockCommentStart: "<!--", |
| | | blockCommentEnd: "-->", |
| | | |
| | | configuration: config.htmlMode ? "html" : "xml", |
| | | helperType: config.htmlMode ? "html" : "xml", |
| | | |
| | | skipAttribute: function(state) { |
| | | if (state.state == attrValueState) |
| | | state.state = attrState |
| | | } |
| | | }; |
| | | }); |
| | | |
| | | CodeMirror.defineMIME("text/xml", "xml"); |
| | | CodeMirror.defineMIME("application/xml", "xml"); |
| | | if (!CodeMirror.mimeModes.hasOwnProperty("text/html")) |
| | | CodeMirror.defineMIME("text/html", {name: "xml", htmlMode: true}); |
| | | |
| | | }); |
New file |
| | |
| | | @font-face{font-family:NextIcon;src:url(../console-ui/public/icons/icon-font.eot);src:url(../console-ui/public/icons/icon-font.eot?#iefix) format("embedded-opentype"),url(../console-ui/public/icons/icon-font.woff2) format("woff2"),url(../console-ui/public/icons/icon-font.woff) format("woff"),url(../console-ui/public/icons/icon-font.ttf) format("truetype"),url(../console-ui/public/icons/icon-font.svg#NextIcon) format("svg");font-display:swap}.next-overlay-wrapper .next-overlay-backdrop{background-color:rgba(0,0,0,.2)}.next-loading-fusion-reactor{width:48px;height:48px}.next-loading-fusion-reactor .next-loading-dot{background:#5584ff}.next-loading-medium-fusion-reactor{width:32px;height:32px}.next-message.next-message-success.next-inline{background-color:#e4fdda;border-color:#e4fdda}.next-message.next-message-success.next-addon .next-message-symbol,.next-message.next-message-success.next-inline .next-message-symbol{color:#46bc15}.next-message.next-message-success.next-toast{box-shadow:0 2px 4px 0 rgba(0,0,0,.12)}.next-message.next-message-success.next-toast .next-message-symbol{color:#46bc15}.next-message.next-message-warning.next-inline{background-color:#fff3e0;border-color:#fff3e0}.next-message.next-message-warning.next-addon .next-message-symbol,.next-message.next-message-warning.next-inline .next-message-symbol{color:#ff9300}.next-message.next-message-warning.next-toast{box-shadow:0 2px 4px 0 rgba(0,0,0,.12)}.next-message.next-message-warning.next-toast .next-message-symbol{color:#ff9300}.next-message.next-message-error.next-addon .next-message-symbol,.next-message.next-message-error.next-inline .next-message-symbol{color:#ff3000}.next-message.next-message-error.next-toast{box-shadow:0 2px 4px 0 rgba(0,0,0,.12)}.next-message.next-message-error.next-toast .next-message-symbol{color:#ff3000}.next-message.next-message-notice.next-inline{background-color:#e3f2fd;border-color:#e3f2fd}.next-message.next-message-notice.next-addon .next-message-symbol,.next-message.next-message-notice.next-inline .next-message-symbol{color:#4494f9}.next-message.next-message-notice.next-toast{box-shadow:0 2px 4px 0 rgba(0,0,0,.12)}.next-message.next-message-notice.next-toast .next-message-symbol{color:#4494f9}.next-message.next-message-help.next-inline{background-color:#e3fff8;border-color:#e3fff8}.next-message.next-message-help.next-addon .next-message-symbol,.next-message.next-message-help.next-inline .next-message-symbol{color:#01c1b2}.next-message.next-message-help.next-toast{box-shadow:0 2px 4px 0 rgba(0,0,0,.12)}.next-message.next-message-help.next-toast .next-message-symbol{color:#01c1b2}.next-message.next-message-loading.next-addon .next-message-symbol,.next-message.next-message-loading.next-inline .next-message-symbol{color:#5584ff}.next-message.next-message-loading.next-toast{box-shadow:0 2px 4px 0 rgba(0,0,0,.12)}.next-message.next-message-loading.next-toast .next-message-symbol{color:#5584ff}.next-message.next-large .next-message-content,.next-message.next-medium .next-message-content{font-size:12px}.next-radio-wrapper .next-radio-inner{border:1px solid #c4c6cf}.next-radio-wrapper.checked .next-radio-inner{border-color:#5584ff;background:#5584ff}.next-radio-wrapper.disabled .next-radio-inner{border-color:#e6e7eb;background:#f7f8fa}.next-radio-wrapper.disabled .next-radio-inner.hovered,.next-radio-wrapper.disabled .next-radio-inner:hover{border-color:#e6e7eb}.next-radio-wrapper.disabled.checked .next-radio-inner{border-color:#e6e7eb;background:#f7f8fa}.next-radio-wrapper:not(.disabled).hovered .next-radio-inner,.next-radio-wrapper:not(.disabled):hover .next-radio-inner{border-color:#5584ff;background-color:#dee8ff}.next-radio-wrapper.checked:not(.disabled).hovered .next-radio-inner,.next-radio-wrapper.checked:not(.disabled):hover .next-radio-inner{background:#3e71f7}.next-radio-button>label{border:1px solid #c4c6cf}.next-radio-button>label.hovered,.next-radio-button>label:hover{border-color:#a0a2ad;background-color:#f2f3f7}.next-radio-button>label.checked{border-color:#5584ff}.next-radio-button>label.checked .next-radio-label{color:#5584ff}.next-radio-button>label.disabled{border-color:#e6e7eb;background-color:#f7f8fa}.next-radio-button>label.checked.disabled{border-color:#e6e7eb;background-color:#f2f3f7}.next-radio-button-medium>label{height:28px;line-height:28px}.next-radio-button-medium .next-radio-label{height:26px;line-height:26px;font-size:12px}.next-radio-label{font-size:12px}.next-checkbox-wrapper .next-checkbox-inner{border:1px solid #c4c6cf}.next-checkbox-wrapper .next-checkbox-inner>.next-icon{left:4px}.next-checkbox-wrapper .next-checkbox-inner>.next-icon .next-icon-remote,.next-checkbox-wrapper .next-checkbox-inner>.next-icon:before{width:8px;font-size:8px}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-checkbox-wrapper .next-checkbox-inner>.next-icon{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-checkbox-wrapper .next-checkbox-inner>.next-icon:before{width:16px;font-size:16px}}.next-checkbox-wrapper.checked.focused>.next-checkbox>.next-checkbox-inner,.next-checkbox-wrapper.checked>.next-checkbox>.next-checkbox-inner{background-color:#5584ff}.next-checkbox-wrapper.checked.focused>.next-checkbox>.next-checkbox-inner>.next-icon .next-icon-remote,.next-checkbox-wrapper.checked.focused>.next-checkbox>.next-checkbox-inner>.next-icon:before,.next-checkbox-wrapper.checked>.next-checkbox>.next-checkbox-inner>.next-icon .next-icon-remote,.next-checkbox-wrapper.checked>.next-checkbox>.next-checkbox-inner>.next-icon:before{width:8px;font-size:8px}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-checkbox-wrapper.checked.focused>.next-checkbox>.next-checkbox-inner>.next-icon,.next-checkbox-wrapper.checked>.next-checkbox>.next-checkbox-inner>.next-icon{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-checkbox-wrapper.checked.focused>.next-checkbox>.next-checkbox-inner>.next-icon:before,.next-checkbox-wrapper.checked>.next-checkbox>.next-checkbox-inner>.next-icon:before{width:16px;font-size:16px}}.next-checkbox-wrapper.indeterminate.focused>.next-checkbox>.next-checkbox-inner,.next-checkbox-wrapper.indeterminate>.next-checkbox>.next-checkbox-inner{background-color:#5584ff}.next-checkbox-wrapper.indeterminate.focused>.next-checkbox>.next-checkbox-inner>.next-icon .next-icon-remote,.next-checkbox-wrapper.indeterminate.focused>.next-checkbox>.next-checkbox-inner>.next-icon:before,.next-checkbox-wrapper.indeterminate>.next-checkbox>.next-checkbox-inner>.next-icon .next-icon-remote,.next-checkbox-wrapper.indeterminate>.next-checkbox>.next-checkbox-inner>.next-icon:before{width:8px;font-size:8px}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-checkbox-wrapper.indeterminate.focused>.next-checkbox>.next-checkbox-inner>.next-icon,.next-checkbox-wrapper.indeterminate>.next-checkbox>.next-checkbox-inner>.next-icon{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-checkbox-wrapper.indeterminate.focused>.next-checkbox>.next-checkbox-inner>.next-icon:before,.next-checkbox-wrapper.indeterminate>.next-checkbox>.next-checkbox-inner>.next-icon:before{width:16px;font-size:16px}}.next-checkbox-wrapper.focused>.next-checkbox>.next-checkbox-inner,.next-checkbox-wrapper.hovered>.next-checkbox>.next-checkbox-inner,.next-checkbox-wrapper:not(.disabled):hover>.next-checkbox>.next-checkbox-inner{border-color:#5584ff;background-color:#dee8ff}.next-checkbox-wrapper.checked:not(.disabled).hovered>.next-checkbox .next-checkbox-inner,.next-checkbox-wrapper.checked:not(.disabled):hover>.next-checkbox .next-checkbox-inner,.next-checkbox-wrapper.indeterminate:not(.disabled).hovered>.next-checkbox .next-checkbox-inner,.next-checkbox-wrapper.indeterminate:not(.disabled):hover>.next-checkbox .next-checkbox-inner{background-color:#3e71f7}.next-checkbox-wrapper.disabled.checked .next-checkbox-inner,.next-checkbox-wrapper.disabled.indeterminate .next-checkbox-inner,.next-checkbox-wrapper.disabled .next-checkbox-inner{border-color:#e6e7eb;background:#f7f8fa}.next-checkbox-wrapper.disabled.checked .next-checkbox-inner.hovered,.next-checkbox-wrapper.disabled.checked .next-checkbox-inner:hover,.next-checkbox-wrapper.disabled.indeterminate .next-checkbox-inner.hovered,.next-checkbox-wrapper.disabled.indeterminate .next-checkbox-inner:hover{border-color:#e6e7eb}.next-checkbox-wrapper.disabled.checked.focused .next-checkbox-inner{border-color:#e6e7eb;background:#f7f8fa}.next-checkbox-label{font-size:12px}.next-menu[dir=rtl] .next-menu-icon-selected.next-icon{margin-right:-16px}.next-menu[dir=rtl] .next-menu-icon-selected.next-icon .next-icon-remote,.next-menu[dir=rtl] .next-menu-icon-selected.next-icon:before{width:12px;font-size:12px}.next-menu{border:1px solid #dcdee3}.next-menu,.next-menu-item-helper{font-size:12px}.next-menu-item.next-selected .next-menu-icon-selected{color:#5584ff}.next-menu-item:not(.next-disabled).next-focused,.next-menu-item:not(.next-disabled).next-selected.next-focused,.next-menu-item:not(.next-disabled).next-selected.next-focused:hover,.next-menu-item:not(.next-disabled).next-selected:focus,.next-menu-item:not(.next-disabled).next-selected:focus:hover,.next-menu-item:not(.next-disabled).next-selected:hover,.next-menu-item:not(.next-disabled):hover{background-color:#f2f3f7}.next-menu-item:not(.next-disabled).next-focused .next-menu-icon-selected,.next-menu-item:not(.next-disabled).next-selected.next-focused .next-menu-icon-selected,.next-menu-item:not(.next-disabled).next-selected.next-focused:hover .next-menu-icon-selected,.next-menu-item:not(.next-disabled).next-selected:focus .next-menu-icon-selected,.next-menu-item:not(.next-disabled).next-selected:focus:hover .next-menu-icon-selected,.next-menu-item:not(.next-disabled).next-selected:hover .next-menu-icon-selected,.next-menu-item:not(.next-disabled):hover .next-menu-icon-selected{color:#5584ff}.next-menu-item-inner{font-size:12px}.next-menu-divider{border-bottom:1px solid #e6e7eb}.next-menu .next-menu-icon-selected.next-icon .next-icon-remote,.next-menu .next-menu-icon-selected.next-icon:before{width:12px;font-size:12px}.next-menu .next-menu-icon-arrow.next-icon .next-icon-remote,.next-menu .next-menu-icon-arrow.next-icon:before{width:8px;font-size:8px}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-menu .next-menu-icon-arrow.next-icon{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-menu .next-menu-icon-arrow.next-icon:before{width:16px;font-size:16px}}.next-menu .next-menu-icon-arrow-down.next-open .next-icon-remote,.next-menu .next-menu-icon-arrow-down.next-open:before{width:8px;font-size:8px}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-menu .next-menu-icon-arrow-down.next-open{transform:scale(.5) rotate(180deg);margin-left:-4px;margin-right:-4px}.next-menu .next-menu-icon-arrow-down.next-open:before{width:16px;font-size:16px}}.next-menu .next-menu-icon-arrow-right.next-open .next-icon-remote,.next-menu .next-menu-icon-arrow-right.next-open:before{width:8px;font-size:8px}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-menu .next-menu-icon-arrow-right.next-open{transform:scale(.5) rotate(-90deg);margin-left:-4px;margin-right:-4px}.next-menu .next-menu-icon-arrow-right.next-open:before{width:16px;font-size:16px}}.next-btn.next-small{padding:0 8px;height:20px}.next-btn.next-small.next-btn-loading:before{left:8px}.next-btn.next-medium{padding:0 12px;height:28px;font-size:12px}.next-btn.next-medium>.next-btn-icon.next-icon-alone .next-icon-remote,.next-btn.next-medium>.next-btn-icon.next-icon-alone:before,.next-btn.next-medium>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn.next-medium>.next-btn-icon.next-icon-first:before,.next-btn.next-medium>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn.next-medium>.next-btn-icon.next-icon-last:before{width:12px;font-size:12px}.next-btn.next-medium.next-btn-loading:before{width:12px;height:12px;font-size:12px;line-height:12px;left:12px}.next-btn.next-medium>.next-btn-custom-loading-icon.show{width:12px}.next-btn.next-large{padding:0 16px}.next-btn.next-large>.next-btn-icon.next-icon-alone .next-icon-remote,.next-btn.next-large>.next-btn-icon.next-icon-alone:before,.next-btn.next-large>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn.next-large>.next-btn-icon.next-icon-first:before,.next-btn.next-large>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn.next-large>.next-btn-icon.next-icon-last:before{width:16px;font-size:16px}.next-btn.next-large.next-btn-loading:before{width:16px;height:16px;font-size:16px;line-height:16px;left:16px}.next-btn.next-large>.next-btn-custom-loading-icon.show{width:16px}.next-btn.next-btn-normal{border-color:#c4c6cf}.next-btn.next-btn-normal.active,.next-btn.next-btn-normal.hover,.next-btn.next-btn-normal:active,.next-btn.next-btn-normal:focus,.next-btn.next-btn-normal:hover{background:#f2f3f7;border-color:#a0a2ad}.next-btn.next-btn-primary{background:#5584ff}.next-btn.next-btn-primary.active,.next-btn.next-btn-primary.hover,.next-btn.next-btn-primary:active,.next-btn.next-btn-primary:focus,.next-btn.next-btn-primary:hover{background:#3e71f7}.next-btn.next-btn-secondary{border-color:#5584ff}.next-btn.next-btn-secondary,.next-btn.next-btn-secondary.visited,.next-btn.next-btn-secondary:link,.next-btn.next-btn-secondary:visited{color:#5584ff}.next-btn.next-btn-secondary.active,.next-btn.next-btn-secondary.hover,.next-btn.next-btn-secondary:active,.next-btn.next-btn-secondary:focus,.next-btn.next-btn-secondary:hover{background:#3e71f7;border-color:#3e71f7}.next-btn.disabled.next-btn-normal,.next-btn.disabled.next-btn-normal.active,.next-btn.disabled.next-btn-normal.hover,.next-btn.disabled.next-btn-normal:active,.next-btn.disabled.next-btn-normal:focus,.next-btn.disabled.next-btn-normal:hover,.next-btn.disabled.next-btn-primary,.next-btn.disabled.next-btn-primary.active,.next-btn.disabled.next-btn-primary.hover,.next-btn.disabled.next-btn-primary:active,.next-btn.disabled.next-btn-primary:focus,.next-btn.disabled.next-btn-primary:hover,.next-btn.disabled.next-btn-secondary,.next-btn.disabled.next-btn-secondary.active,.next-btn.disabled.next-btn-secondary.hover,.next-btn.disabled.next-btn-secondary:active,.next-btn.disabled.next-btn-secondary:focus,.next-btn.disabled.next-btn-secondary:hover,.next-btn[disabled].next-btn-normal,.next-btn[disabled].next-btn-normal.active,.next-btn[disabled].next-btn-normal.hover,.next-btn[disabled].next-btn-normal:active,.next-btn[disabled].next-btn-normal:focus,.next-btn[disabled].next-btn-normal:hover,.next-btn[disabled].next-btn-primary,.next-btn[disabled].next-btn-primary.active,.next-btn[disabled].next-btn-primary.hover,.next-btn[disabled].next-btn-primary:active,.next-btn[disabled].next-btn-primary:focus,.next-btn[disabled].next-btn-primary:hover,.next-btn[disabled].next-btn-secondary,.next-btn[disabled].next-btn-secondary.active,.next-btn[disabled].next-btn-secondary.hover,.next-btn[disabled].next-btn-secondary:active,.next-btn[disabled].next-btn-secondary:focus,.next-btn[disabled].next-btn-secondary:hover{background:#f7f8fa;border-color:#e6e7eb}.next-btn-warning.next-btn-primary{background:#ff3000;border-color:#ff3000}.next-btn-warning.next-btn-primary.active,.next-btn-warning.next-btn-primary.hover,.next-btn-warning.next-btn-primary:active,.next-btn-warning.next-btn-primary:focus,.next-btn-warning.next-btn-primary:hover{background:#e72b00;border-color:#e72b00}.next-btn-warning.next-btn-primary.disabled,.next-btn-warning.next-btn-primary.disabled.active,.next-btn-warning.next-btn-primary.disabled.hover,.next-btn-warning.next-btn-primary.disabled:active,.next-btn-warning.next-btn-primary.disabled:focus,.next-btn-warning.next-btn-primary.disabled:hover,.next-btn-warning.next-btn-primary[disabled],.next-btn-warning.next-btn-primary[disabled].active,.next-btn-warning.next-btn-primary[disabled].hover,.next-btn-warning.next-btn-primary[disabled]:active,.next-btn-warning.next-btn-primary[disabled]:focus,.next-btn-warning.next-btn-primary[disabled]:hover{background:#f7f8fa;border-color:#dcdee3}.next-btn-warning.next-btn-normal{border-color:#ff3000}.next-btn-warning.next-btn-normal,.next-btn-warning.next-btn-normal.visited,.next-btn-warning.next-btn-normal:link,.next-btn-warning.next-btn-normal:visited{color:#ff3000}.next-btn-warning.next-btn-normal.active,.next-btn-warning.next-btn-normal.hover,.next-btn-warning.next-btn-normal:active,.next-btn-warning.next-btn-normal:focus,.next-btn-warning.next-btn-normal:hover{background:#e72b00;border-color:#e72b00}.next-btn-warning.next-btn-normal.disabled,.next-btn-warning.next-btn-normal.disabled.active,.next-btn-warning.next-btn-normal.disabled.hover,.next-btn-warning.next-btn-normal.disabled:active,.next-btn-warning.next-btn-normal.disabled:focus,.next-btn-warning.next-btn-normal.disabled:hover,.next-btn-warning.next-btn-normal[disabled],.next-btn-warning.next-btn-normal[disabled].active,.next-btn-warning.next-btn-normal[disabled].hover,.next-btn-warning.next-btn-normal[disabled]:active,.next-btn-warning.next-btn-normal[disabled]:focus,.next-btn-warning.next-btn-normal[disabled]:hover{background:#f7f8fa;border-color:#e6e7eb}.next-btn-text.next-btn-primary,.next-btn-text.next-btn-primary.visited,.next-btn-text.next-btn-primary:link,.next-btn-text.next-btn-primary:visited{color:#5584ff}.next-btn-text.next-btn-primary.active,.next-btn-text.next-btn-primary.hover,.next-btn-text.next-btn-primary:active,.next-btn-text.next-btn-primary:focus,.next-btn-text.next-btn-primary:hover{color:#3e71f7}.next-btn-text.next-btn-normal.active,.next-btn-text.next-btn-normal.hover,.next-btn-text.next-btn-normal:active,.next-btn-text.next-btn-normal:focus,.next-btn-text.next-btn-normal:hover,.next-btn-text.next-btn-secondary.active,.next-btn-text.next-btn-secondary.hover,.next-btn-text.next-btn-secondary:active,.next-btn-text.next-btn-secondary:focus,.next-btn-text.next-btn-secondary:hover{color:#5584ff}.next-btn-text.next-large>.next-btn-icon.next-icon-alone .next-icon-remote,.next-btn-text.next-large>.next-btn-icon.next-icon-alone:before,.next-btn-text.next-large>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn-text.next-large>.next-btn-icon.next-icon-first:before,.next-btn-text.next-large>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn-text.next-large>.next-btn-icon.next-icon-last:before{width:16px;font-size:16px}.next-btn-text.next-large.next-btn-loading:before{width:16px;height:16px;font-size:16px;line-height:16px}.next-btn-text.next-large>.next-btn-custom-loading-icon.show{width:16px}.next-btn-text.next-medium{font-size:12px}.next-btn-text.next-medium>.next-btn-icon.next-icon-alone .next-icon-remote,.next-btn-text.next-medium>.next-btn-icon.next-icon-alone:before,.next-btn-text.next-medium>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn-text.next-medium>.next-btn-icon.next-icon-first:before,.next-btn-text.next-medium>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn-text.next-medium>.next-btn-icon.next-icon-last:before{width:12px;font-size:12px}.next-btn-text.next-medium.next-btn-loading:before{width:12px;height:12px;font-size:12px;line-height:12px}.next-btn-text.next-medium>.next-btn-custom-loading-icon.show{width:12px}.next-btn-group>.next-btn-primary:not(:first-child).disabled,.next-btn-group>.next-btn-primary:not(:first-child)[disabled]{border-left-color:#e6e7eb}.next-btn-group[dir=rtl]>.next-btn-primary:not(:first-child).disabled,.next-btn-group[dir=rtl]>.next-btn-primary:not(:first-child)[disabled]{border-right-color:#e6e7eb}.next-btn.next-small[dir=rtl].next-btn-loading{padding-left:8px;padding-right:24px}.next-btn.next-small[dir=rtl].next-btn-loading:after{right:8px}.next-btn.next-medium[dir=rtl]>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn.next-medium[dir=rtl]>.next-btn-icon.next-icon-first:before,.next-btn.next-medium[dir=rtl]>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn.next-medium[dir=rtl]>.next-btn-icon.next-icon-last:before{width:12px;font-size:12px}.next-btn.next-medium[dir=rtl].next-btn-loading{padding-left:12px;padding-right:28px}.next-btn.next-medium[dir=rtl].next-btn-loading:after{right:12px}.next-btn.next-large[dir=rtl]>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn.next-large[dir=rtl]>.next-btn-icon.next-icon-first:before,.next-btn.next-large[dir=rtl]>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn.next-large[dir=rtl]>.next-btn-icon.next-icon-last:before{width:16px;font-size:16px}.next-btn.next-large[dir=rtl].next-btn-loading{padding-left:16px;padding-right:36px}.next-btn.next-large[dir=rtl].next-btn-loading:after{right:16px}.next-btn-text[dir=rtl].next-large>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn-text[dir=rtl].next-large>.next-btn-icon.next-icon-first:before,.next-btn-text[dir=rtl].next-large>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn-text[dir=rtl].next-large>.next-btn-icon.next-icon-last:before{width:16px;font-size:16px}.next-btn-text[dir=rtl].next-large.next-btn-loading{padding-right:20px}.next-btn-text[dir=rtl].next-medium>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn-text[dir=rtl].next-medium>.next-btn-icon.next-icon-first:before,.next-btn-text[dir=rtl].next-medium>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn-text[dir=rtl].next-medium>.next-btn-icon.next-icon-last:before{width:12px;font-size:12px}.next-btn-text[dir=rtl].next-medium.next-btn-loading{padding-right:16px}.next-dialog{border:1px solid #dcdee3;border-radius:3px;box-shadow:0 2px 4px 0 rgba(0,0,0,.12)}.next-dialog-body{font-size:12px}.next-dialog-close .next-dialog-close-icon.next-icon{margin-top:-6px;margin-left:-6px;width:12px;height:12px}.next-dialog-close .next-dialog-close-icon.next-icon:before{width:12px;height:12px;font-size:12px}.next-input{border:1px solid #c4c6cf}.next-input.next-small{height:20px}.next-input.next-small input{height:18px;line-height:18px \0 }.next-input.next-small .next-input-text-field{height:18px;line-height:18px}.next-input.next-small .next-icon .next-icon-remote,.next-input.next-small .next-icon:before{width:12px;font-size:12px}.next-input.next-medium{height:28px}.next-input.next-medium .next-input-inner,.next-input.next-medium .next-input-label{font-size:12px}.next-input.next-medium input{height:26px;line-height:26px \0 ;font-size:12px}.next-input.next-medium input::placeholder{font-size:12px}.next-input.next-medium .next-input-text-field{font-size:12px;height:26px;line-height:26px}.next-input.next-medium .next-icon .next-icon-remote,.next-input.next-medium .next-icon:before{width:12px;font-size:12px}.next-input.next-large .next-icon .next-icon-remote,.next-input.next-large .next-icon:before{width:16px;font-size:16px}.next-input.next-input-textarea.next-small textarea,.next-input.next-input-textarea textarea{font-size:12px}.next-input.next-focus,.next-input:hover{border-color:#a0a2ad}.next-input.next-focus{border-color:#5584ff;box-shadow:0 0 0 2px rgba(85,132,255,.2)}.next-input.next-warning,.next-input.next-warning.next-focus,.next-input.next-warning:hover{border-color:#ff9300}.next-input.next-warning.next-focus{box-shadow:0 0 0 2px rgba(255,147,0,.2)}.next-input.next-error,.next-input.next-error.next-focus,.next-input.next-error:hover{border-color:#ff3000}.next-input.next-error.next-focus{box-shadow:0 0 0 2px rgba(255,48,0,.2)}.next-input-control .next-input-len.next-error{color:#ff3000}.next-input-control .next-input-len.next-warning,.next-input-control .next-input-warning-icon{color:#ff9300}.next-input-control .next-input-success-icon{color:#46bc15}.next-input-control .next-input-loading-icon{color:#4494f9}.next-input input::-moz-placeholder,.next-input textarea::-moz-placeholder{color:#999}.next-input input:-ms-input-placeholder,.next-input textarea:-ms-input-placeholder{color:#999}.next-input input::-webkit-input-placeholder,.next-input textarea::-webkit-input-placeholder{color:#999}.next-input.next-disabled,.next-input.next-disabled:hover{border-color:#e6e7eb;background-color:#f7f8fa}.next-input-group-text{background-color:#f2f3f7;border:1px solid #c4c6cf}.next-input-group-text.next-disabled,.next-input-group-text.next-disabled:hover{border-color:#e6e7eb;background-color:#f7f8fa}.next-form-preview.next-form-item.next-medium .next-form-item-label,.next-input-group-text.next-medium{font-size:12px}.next-form-responsive-grid.next-small .next-form-item.next-left .next-form-item-label{margin-top:4px;margin-bottom:4px}.next-form-responsive-grid.next-medium .next-form-item.next-left .next-form-item-label{margin-top:8px;margin-bottom:8px}.next-form-item.has-error>.next-form-item-control>.next-form-item-help{color:#ff3000}.next-form-item.has-warning>.next-form-item-control>.next-form-item-help{color:#ff9300}.next-form-item .next-form-item-label,.next-form-item .next-form-text-align,.next-form-item p{line-height:28px}.next-form-item .next-checkbox-group,.next-form-item .next-checkbox-wrapper,.next-form-item .next-radio-group,.next-form-item .next-radio-wrapper,.next-form-item .next-rating{line-height:24px}.next-form-item .next-form-preview{font-size:12px}.next-form-item .next-form-preview.next-input-textarea>p{font-size:12px;min-height:16.8px;margin-top:5.6px}.next-form-item .next-form-item-label{font-size:12px}.next-form-item.next-small .next-checkbox-group,.next-form-item.next-small .next-checkbox-wrapper,.next-form-item.next-small .next-form-item-label,.next-form-item.next-small .next-form-text-align,.next-form-item.next-small .next-radio-group,.next-form-item.next-small .next-radio-wrapper,.next-form-item.next-small .next-rating,.next-form-item.next-small p{line-height:20px}.next-form-item-label.next-left>label[required]:after,.next-form-item-label label[required]:before{color:#ff3000} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | *//*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.filter-panel{text-align:right;padding:10px 0}.users-pagination{float:right;margin-top:20px} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.header-container-primary{background:#252a2f}.header-container-normal{background-color:#fff;box-shadow:0 2px 10px 0 rgba(0,0,0,.08)}.header-container .header-body{width:100%;margin:0 auto;height:66px;line-height:66px}.header-container .header-body .logo{margin-left:40px;width:96px;vertical-align:sub}.header-container .header-body .header-menu{float:right}.header-container .header-body .header-menu .header-menu-toggle{display:none;width:19px;margin-right:40px;margin-top:18px;cursor:pointer}.header-container .header-body ul{padding:0;margin:0}.header-container .header-body li{display:inline-block;margin-right:40px}.header-container .header-body .menu-item{font-family:Avenir-Heavy;font-size:14px}.header-container .header-body .menu-item-primary a{color:#fff;opacity:.6;font-family:Avenir-Medium}.header-container .header-body .menu-item-primary-active a,.header-container .header-body .menu-item-primary:hover a{opacity:1}.header-container .header-body .menu-item-normal a{color:#333;opacity:.6;font-family:Avenir-Medium}.header-container .header-body .menu-item-normal-active a,.header-container .header-body .menu-item-normal:hover a{opacity:1}.header-container .header-body .language-switch{float:right;display:inline-block;box-sizing:border-box;width:24px;height:24px;line-height:20px;margin-top:21px;margin-right:40px;text-align:center;border-radius:2px;cursor:pointer;font-family:PingFangSC-Medium;font-size:14px;opacity:.6}.header-container .header-body .logout{float:right;color:#fff;opacity:.6;font-family:Avenir-Medium;margin-right:40px}.header-container .header-body .language-switch:hover{opacity:1}.header-container .header-body .language-switch-primary{border:1px solid #fff;color:#fff}.header-container .header-body .language-switch-normal{border:1px solid #333;color:#333}@media screen and (max-width:640px){.header-container .header-body .logo{margin-left:20px}.header-container .header-body .language-switch{margin-right:20px}.header-container .header-body .header-menu ul{display:none}.header-container .header-body .header-menu .header-menu-toggle{display:inline-block;margin-right:20px}.header-container .header-body .header-menu-open ul{background-color:#f8f8f8;display:inline-block;position:absolute;right:0;top:66px;z-index:100}.header-container .header-body .header-menu-open li{width:200px;display:list-item;padding-left:30px;list-style:none;line-height:40px;margin-right:0}.header-container .header-body .header-menu-open li a{color:#333;display:inline-block;width:100%}.header-container .header-body .header-menu-open li:hover{background:#2e3034}.header-container .header-body .header-menu-open li:hover a{color:#fff;opactiy:1}.header-container .header-body .header-menu-open .menu-item-normal-active,.header-container .header-body .header-menu-open .menu-item-primary-active{background:#2e3034}.header-container .header-body .header-menu-open .menu-item-normal-active a,.header-container .header-body .header-menu-open .menu-item-primary-active a{color:#fff;opactiy:1}}.bone{width:24px;height:2px;position:relative}.bone:before{left:0}.bone:after,.bone:before{position:absolute;content:"";width:6px;height:6px;border-radius:50%;top:-2px}.bone:after{right:0}.bone-dark,.bone-dark:after,.bone-dark:before{background-color:#1161f6}.bone-light,.bone-light:after,.bone-light:before{background-color:#fff;opacity:.8}.footer-container{background:#f8f8f8}.footer-container .footer-body{max-width:1280px;margin:0 auto;padding:40px 40px 0}@media screen and (max-width:640px){.footer-container .footer-body{padding-left:20px;padding-right:20px}}.footer-container .footer-body img{display:block;width:125px;height:26px;margin-bottom:40px}.footer-container .footer-body .cols-container .col{display:inline-block;box-sizing:border-box;vertical-align:top}.footer-container .footer-body .cols-container .col-12{width:50%;padding-right:125px}.footer-container .footer-body .cols-container .col-6{width:25%}.footer-container .footer-body .cols-container h3{font-family:Avenir-Heavy;font-size:18px;color:#333;line-height:18px;margin-bottom:20px}.footer-container .footer-body .cols-container p{font-family:Avenir-Medium;font-size:12px;color:#999;line-height:18px}.footer-container .footer-body .cols-container dl{font-family:Avenir-Heavy;line-height:18px}.footer-container .footer-body .cols-container dt{font-weight:700;font-size:18px;color:#333;margin-bottom:20px}.footer-container .footer-body .cols-container dd{padding:0;margin:0}.footer-container .footer-body .cols-container dd a{text-decoration:none;display:block;font-size:14px;color:#999;margin:10px 0}.footer-container .footer-body .cols-container dd a:hover{color:#2e3034}.footer-container .footer-body .copyright{margin-top:44px;border-top:1px solid #ccc;min-height:60px;line-height:20px;text-align:center;font-family:Avenir-Medium;font-size:12px;color:#999;display:flex;align-items:center}.footer-container .footer-body .copyright span{display:inline-block;margin:0 auto}@media screen and (max-width:640px){.footer-container .footer-body .cols-container .col{width:100%;text-align:center;padding:0}}.button{box-sizing:border-box;display:inline-block;height:48px;line-height:48px;min-width:140px;font-family:Avenir-Heavy;font-size:16px;color:#fff;text-align:center;border-radius:4px;text-decoration:none}.button-primary{background:#4190ff}.button-normal{background:transparent;border:1px solid #fff}@font-face{font-family:octicons-link;src:url(data:font/woff;charset=utf-8;base64,d09GRgABAAAAAAZwABAAAAAACFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEU0lHAAAGaAAAAAgAAAAIAAAAAUdTVUIAAAZcAAAACgAAAAoAAQAAT1MvMgAAAyQAAABJAAAAYFYEU3RjbWFwAAADcAAAAEUAAACAAJThvmN2dCAAAATkAAAABAAAAAQAAAAAZnBnbQAAA7gAAACyAAABCUM+8IhnYXNwAAAGTAAAABAAAAAQABoAI2dseWYAAAFsAAABPAAAAZwcEq9taGVhZAAAAsgAAAA0AAAANgh4a91oaGVhAAADCAAAABoAAAAkCA8DRGhtdHgAAAL8AAAADAAAAAwGAACfbG9jYQAAAsAAAAAIAAAACABiATBtYXhwAAACqAAAABgAAAAgAA8ASm5hbWUAAAToAAABQgAAAlXu73sOcG9zdAAABiwAAAAeAAAAME3QpOBwcmVwAAAEbAAAAHYAAAB/aFGpk3jaTY6xa8JAGMW/O62BDi0tJLYQincXEypYIiGJjSgHniQ6umTsUEyLm5BV6NDBP8Tpts6F0v+k/0an2i+itHDw3v2+9+DBKTzsJNnWJNTgHEy4BgG3EMI9DCEDOGEXzDADU5hBKMIgNPZqoD3SilVaXZCER3/I7AtxEJLtzzuZfI+VVkprxTlXShWKb3TBecG11rwoNlmmn1P2WYcJczl32etSpKnziC7lQyWe1smVPy/Lt7Kc+0vWY/gAgIIEqAN9we0pwKXreiMasxvabDQMM4riO+qxM2ogwDGOZTXxwxDiycQIcoYFBLj5K3EIaSctAq2kTYiw+ymhce7vwM9jSqO8JyVd5RH9gyTt2+J/yUmYlIR0s04n6+7Vm1ozezUeLEaUjhaDSuXHwVRgvLJn1tQ7xiuVv/ocTRF42mNgZGBgYGbwZOBiAAFGJBIMAAizAFoAAABiAGIAznjaY2BkYGAA4in8zwXi+W2+MjCzMIDApSwvXzC97Z4Ig8N/BxYGZgcgl52BCSQKAA3jCV8CAABfAAAAAAQAAEB42mNgZGBg4f3vACQZQABIMjKgAmYAKEgBXgAAeNpjYGY6wTiBgZWBg2kmUxoDA4MPhGZMYzBi1AHygVLYQUCaawqDA4PChxhmh/8ODDEsvAwHgMKMIDnGL0x7gJQCAwMAJd4MFwAAAHjaY2BgYGaA4DAGRgYQkAHyGMF8NgYrIM3JIAGVYYDT+AEjAwuDFpBmA9KMDEwMCh9i/v8H8sH0/4dQc1iAmAkALaUKLgAAAHjaTY9LDsIgEIbtgqHUPpDi3gPoBVyRTmTddOmqTXThEXqrob2gQ1FjwpDvfwCBdmdXC5AVKFu3e5MfNFJ29KTQT48Ob9/lqYwOGZxeUelN2U2R6+cArgtCJpauW7UQBqnFkUsjAY/kOU1cP+DAgvxwn1chZDwUbd6CFimGXwzwF6tPbFIcjEl+vvmM/byA48e6tWrKArm4ZJlCbdsrxksL1AwWn/yBSJKpYbq8AXaaTb8AAHja28jAwOC00ZrBeQNDQOWO//sdBBgYGRiYWYAEELEwMTE4uzo5Zzo5b2BxdnFOcALxNjA6b2ByTswC8jYwg0VlNuoCTWAMqNzMzsoK1rEhNqByEyerg5PMJlYuVueETKcd/89uBpnpvIEVomeHLoMsAAe1Id4AAAAAAAB42oWQT07CQBTGv0JBhagk7HQzKxca2sJCE1hDt4QF+9JOS0nbaaYDCQfwCJ7Au3AHj+LO13FMmm6cl7785vven0kBjHCBhfpYuNa5Ph1c0e2Xu3jEvWG7UdPDLZ4N92nOm+EBXuAbHmIMSRMs+4aUEd4Nd3CHD8NdvOLTsA2GL8M9PODbcL+hD7C1xoaHeLJSEao0FEW14ckxC+TU8TxvsY6X0eLPmRhry2WVioLpkrbp84LLQPGI7c6sOiUzpWIWS5GzlSgUzzLBSikOPFTOXqly7rqx0Z1Q5BAIoZBSFihQYQOOBEdkCOgXTOHA07HAGjGWiIjaPZNW13/+lm6S9FT7rLHFJ6fQbkATOG1j2OFMucKJJsxIVfQORl+9Jyda6Sl1dUYhSCm1dyClfoeDve4qMYdLEbfqHf3O/AdDumsjAAB42mNgYoAAZQYjBmyAGYQZmdhL8zLdDEydARfoAqIAAAABAAMABwAKABMAB///AA8AAQAAAAAAAAAAAAAAAAABAAAAAA==) format("woff")}.markdown-body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:#24292e;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:16px;line-height:1.5;word-wrap:break-word}.markdown-body .pl-c{color:#6a737d}.markdown-body .pl-c1,.markdown-body .pl-s .pl-v{color:#005cc5}.markdown-body .pl-e,.markdown-body .pl-en{color:#6f42c1}.markdown-body .pl-s .pl-s1,.markdown-body .pl-smi{color:#24292e}.markdown-body .pl-ent{color:#22863a}.markdown-body .pl-k{color:#d73a49}.markdown-body .pl-pds,.markdown-body .pl-s,.markdown-body .pl-s .pl-pse .pl-s1,.markdown-body .pl-sr,.markdown-body .pl-sr .pl-cce,.markdown-body .pl-sr .pl-sra,.markdown-body .pl-sr .pl-sre{color:#032f62}.markdown-body .pl-smw,.markdown-body .pl-v{color:#e36209}.markdown-body .pl-bu{color:#b31d28}.markdown-body .pl-ii{color:#fafbfc;background-color:#b31d28}.markdown-body .pl-c2{color:#fafbfc;background-color:#d73a49}.markdown-body .pl-c2:before{content:"^M"}.markdown-body .pl-sr .pl-cce{font-weight:700;color:#22863a}.markdown-body .pl-ml{color:#735c0f}.markdown-body .pl-mh,.markdown-body .pl-mh .pl-en,.markdown-body .pl-ms{font-weight:700;color:#005cc5}.markdown-body .pl-mi{font-style:italic;color:#24292e}.markdown-body .pl-mb{font-weight:700;color:#24292e}.markdown-body .pl-md{color:#b31d28;background-color:#ffeef0}.markdown-body .pl-mi1{color:#22863a;background-color:#f0fff4}.markdown-body .pl-mc{color:#e36209;background-color:#ffebda}.markdown-body .pl-mi2{color:#f6f8fa;background-color:#005cc5}.markdown-body .pl-mdr{font-weight:700;color:#6f42c1}.markdown-body .pl-ba{color:#586069}.markdown-body .pl-sg{color:#959da5}.markdown-body .pl-corl{text-decoration:underline;color:#032f62}.markdown-body .octicon{display:inline-block;vertical-align:text-top;fill:currentColor}.markdown-body a{background-color:transparent}.markdown-body a:active,.markdown-body a:hover{outline-width:0}.markdown-body strong{font-weight:inherit;font-weight:bolder}.markdown-body h1{margin:.67em 0}.markdown-body img{border-style:none}.markdown-body code,.markdown-body kbd,.markdown-body pre{font-family:monospace,monospace;font-size:1em}.markdown-body hr{box-sizing:content-box;overflow:visible}.markdown-body input{font:inherit;margin:0;overflow:visible}.markdown-body [type=checkbox]{box-sizing:border-box;padding:0}.markdown-body *{box-sizing:border-box}.markdown-body input{font-family:inherit;font-size:inherit;line-height:inherit}.markdown-body a{color:#0366d6;text-decoration:none}.markdown-body a:hover{color:#0366d6;text-decoration:underline}.markdown-body strong{font-weight:600}.markdown-body hr{height:0;margin:15px 0;overflow:hidden;background:transparent;border-bottom:1px solid #dfe2e5}.markdown-body hr:after,.markdown-body hr:before{display:table;content:""}.markdown-body hr:after{clear:both}.markdown-body table{border-spacing:0;border-collapse:collapse}.markdown-body td,.markdown-body th{padding:0}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:0;margin-bottom:0}.markdown-body h1{font-size:32px;font-weight:600}.markdown-body h2{font-size:24px;font-weight:600}.markdown-body h3{font-size:20px;font-weight:600}.markdown-body h4{font-size:16px;font-weight:600}.markdown-body h5{font-size:14px;font-weight:600}.markdown-body h6{font-size:12px;font-weight:600}.markdown-body p{margin-top:0;margin-bottom:10px}.markdown-body blockquote{margin:0}.markdown-body ol,.markdown-body ul{padding-left:0;margin-top:0;margin-bottom:0}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.markdown-body ol ol ol,.markdown-body ol ul ol,.markdown-body ul ol ol,.markdown-body ul ul ol{list-style-type:lower-alpha}.markdown-body dd{margin-left:0}.markdown-body code,.markdown-body pre{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;font-size:12px}.markdown-body pre{margin-top:0;margin-bottom:0}.markdown-body .octicon{vertical-align:text-bottom}.markdown-body .pl-0{padding-left:0!important}.markdown-body .pl-1{padding-left:4px!important}.markdown-body .pl-2{padding-left:8px!important}.markdown-body .pl-3{padding-left:16px!important}.markdown-body .pl-4{padding-left:24px!important}.markdown-body .pl-5{padding-left:32px!important}.markdown-body .pl-6{padding-left:40px!important}.markdown-body:after,.markdown-body:before{display:table;content:""}.markdown-body:after{clear:both}.markdown-body>:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .anchor{float:left;padding-right:4px;margin-left:-20px;line-height:1}.markdown-body .anchor:focus{outline:none}.markdown-body blockquote,.markdown-body dl,.markdown-body ol,.markdown-body p,.markdown-body pre,.markdown-body table,.markdown-body ul{margin-top:0;margin-bottom:16px}.markdown-body hr{height:.25em;padding:0;margin:24px 0;background-color:#e1e4e8;border:0}.markdown-body blockquote{padding:0 1em;color:#6a737d;border-left:.25em solid #dfe2e5}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body kbd{font-size:11px;border:1px solid #c6cbd1;border-bottom-color:#959da5;box-shadow:inset 0 -1px 0 #959da5}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:24px;margin-bottom:16px;font-weight:600;line-height:1.25}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#1b1f23;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1{font-size:2em}.markdown-body h1,.markdown-body h2{padding-bottom:.3em;border-bottom:1px solid #eaecef}.markdown-body h2{font-size:1.5em}.markdown-body h3{font-size:1.25em}.markdown-body h4{font-size:1em}.markdown-body h5{font-size:.875em}.markdown-body h6{font-size:.85em;color:#6a737d}.markdown-body ol,.markdown-body ul{padding-left:2em}.markdown-body ol ol,.markdown-body ol ul,.markdown-body ul ol,.markdown-body ul ul{margin-top:0;margin-bottom:0}.markdown-body li{word-wrap:break-all}.markdown-body li>p{margin-top:16px}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{padding:0 16px;margin-bottom:16px}.markdown-body table{display:block;width:100%;overflow:auto}.markdown-body table th{font-weight:600}.markdown-body table td,.markdown-body table th{padding:6px 13px;border:1px solid #dfe2e5}.markdown-body table tr{background-color:#fff;border-top:1px solid #c6cbd1}.markdown-body table tr:nth-child(2n){background-color:#f6f8fa}.markdown-body img{max-width:100%;box-sizing:content-box;background-color:#fff}.markdown-body img[align=right]{padding-left:20px}.markdown-body img[align=left]{padding-right:20px}.markdown-body code{padding:.2em .4em;margin:0;font-size:85%;background-color:rgba(27,31,35,.05);border-radius:3px}.markdown-body pre{word-wrap:normal}.markdown-body pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:transparent;border:0}.markdown-body .highlight{margin-bottom:16px}.markdown-body .highlight pre{margin-bottom:0;word-break:normal}.markdown-body .highlight pre,.markdown-body pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f6f8fa;border-radius:3px}.markdown-body pre code{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown-body .full-commit .btn-outline:not(:disabled):hover{color:#005cc5;border-color:#005cc5}.markdown-body kbd{display:inline-block;padding:3px 5px;font:11px SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;line-height:10px;color:#444d56;vertical-align:middle;background-color:#fafbfc;border:1px solid #d1d5da;border-bottom-color:#c6cbd1;border-radius:3px;box-shadow:inset 0 -1px 0 #c6cbd1}.markdown-body :checked+.radio-label{position:relative;z-index:1;border-color:#0366d6}.markdown-body .task-list-item{list-style-type:none}.markdown-body .task-list-item+.task-list-item{margin-top:3px}.markdown-body .task-list-item input{margin:0 .2em .25em -1.6em;vertical-align:middle}.markdown-body hr{border-bottom-color:#eee}.markdown-body pre code{display:block;overflow-x:auto;padding:.5em;background:#1e1e1e;color:#dcdcdc}.hljs-keyword,.hljs-link,.hljs-literal,.hljs-name,.hljs-symbol{color:#569cd6}.hljs-link{text-decoration:underline}.hljs-built_in,.hljs-type{color:#4ec9b0}.hljs-class,.hljs-number{color:#b8d7a3}.hljs-meta-string,.hljs-string{color:#d69d85}.hljs-regexp,.hljs-template-tag{color:#9a5334}.hljs-formula,.hljs-function,.hljs-params,.hljs-subst,.hljs-title{color:#dcdcdc}.hljs-comment,.hljs-quote{color:#57a64a;font-style:italic}.hljs-doctag{color:#608b4e}.hljs-meta,.hljs-meta-keyword,.hljs-tag{color:#9b9b9b}.hljs-template-variable,.hljs-variable{color:#bd63c5}.hljs-attr,.hljs-attribute,.hljs-builtin-name{color:#9cdcfe}.hljs-section{color:gold}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-bullet,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-selector-pseudo,.hljs-selector-tag{color:#d7ba7d}.hljs-addition{background-color:#144212}.hljs-addition,.hljs-deletion{display:inline-block;width:100%}.hljs-deletion{background-color:#600}*{padding:0;margin:0}h1,h2,h3,h4,h5,h6{font-weight:400}.home-page .top-section{height:720px}.home-page .top-section .vertical-middle{width:100%}.home-page .top-section .product-logo{margin:0 auto}.home-page .top-section .button-area,.home-page .top-section .product-desc{text-align:center}.home-page .top-section .button-area .button:first-child{margin-right:20px}.home-page .top-section .version-note{text-align:center;margin:22px 0 10px}.home-page .top-section .version-note a{text-decoration:none;display:inline-block;font-family:Avenir-Heavy;font-size:14px;color:#fff;text-align:center;background:#46484b;border-radius:2px;line-height:24px;padding:0 6px;margin-right:10px}.home-page .top-section .release-date{font-family:Avenir-Medium;font-size:12px;color:#999;text-align:center}.home-page .function-section{max-width:832px;margin:0 auto;box-sizing:border-box;padding:82px 0}.home-page .function-section h3{font-family:Avenir-Heavy;font-size:36px;text-align:center;font-weight:400}.home-page .function-section .bone{margin:0 auto 45px}.home-page .function-section .func-item{margin-bottom:30px;position:relative}.home-page .function-section .func-item .col{display:inline-flex;align-items:center;vertical-align:middle;margin:0 auto;width:50%;max-width:750px;min-height:325px}.home-page .function-section .func-item .col img{width:325px}.home-page .function-section .func-item .col h4{font-weight:400;font-family:Avenir-Heavy;font-size:24px;color:#333;margin-bottom:20px}.home-page .function-section .func-item .col p{opacity:.8;font-family:Avenir-Medium;font-size:18px;color:#999;margin:0}.home-page .function-section .func-item .img{display:inline-block;text-align:center}@media screen and (max-width:830px){.home-page .function-section .func-item{text-align:center}.home-page .function-section .func-item .col{width:100%}.home-page .function-section .func-item .img{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);opacity:.1}}.home-page .feature-section{background:#2e3034}.home-page .feature-section .feature-section-body{max-width:1280px;margin:0 auto;position:relative;padding:80px 40px;color:#fff}.home-page .feature-section .feature-section-body h3{font-family:Avenir-Heavy;font-size:36px;text-align:center;margin:0;font-weight:400}.home-page .feature-section .feature-section-body .bone{margin:0 auto 45px}.home-page .feature-section .feature-section-body .feature-list{list-style:none;padding:0;margin:0}.home-page .feature-section .feature-section-body .feature-list .feature-list-item{vertical-align:top;display:inline-block;margin-bottom:48px;width:50%}.home-page .feature-section .feature-section-body .feature-list .feature-list-item ul{list-style:disc;padding-left:14px}.home-page .feature-section .feature-section-body .feature-list .feature-list-item ul li{font-family:Avenir-Medium;font-size:14px;color:#999}.home-page .feature-section .feature-section-body .feature-list .feature-list-item img{vertical-align:top;width:34px;margin-right:20px}.home-page .feature-section .feature-section-body .feature-list .feature-list-item div{display:inline-block;width:80%}.home-page .feature-section .feature-section-body .feature-list .feature-list-item div h4{font-family:Avenir-Heavy;font-size:20px;margin:5px 0 20px}.home-page .feature-section .feature-section-body .feature-list .feature-list-item div p{font-family:Avenir-Medium;font-size:14px;line-height:20px;color:#999}@media screen and (max-width:768px){.home-page .feature-section .feature-section-body .feature-list .feature-list-item{width:100%}}@media screen and (max-width:640px){.home-page .feature-section-body{padding-left:20px;padding-right:20px}}.product-nav-list li.selected a{background-color:#f4f6f8}.main-container{height:calc(100vh - 66px);background-color:#fff!important}.main-container .right-panel{background-color:#fff;width:calc(100% - 180px);padding:12px 32px;overflow:scroll}.main-container .nav-title{margin:0;text-align:center;font-size:14px;font-weight:700;height:72px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;border-bottom:var(--shell-brand-navigation-ver-divider-size,1px) var(--shell-brand-navigation-ver-divider-style,solid) var(--shell-brand-navigation-ver-divider-color,#eee);display:flex;justify-content:center;align-items:center}.main-container .nav-title span{margin-left:5px}.main-container .nav-menu{padding:0;background:transparent;border:0;line-height:40px}.main-container .nav-menu .first-menu>.next-menu-item-inner,.main-container .nav-menu div.next-menu-item{color:#333}.main-container .nav-menu .next-menu-item-inner{height:40px;color:#666}.main-container .nav-menu .current-path{background-color:#f2f3f7}.main-container .go-back{text-align:center;color:#546478;font-size:20px;font-weight:700;padding:10px 0;margin-top:14px;cursor:pointer}.next-card{border:1px solid #dcdee3}.next-card-head{padding-left:16px;padding-right:16px}.next-card-head-show-bullet .next-card-title:before{background:#5584ff}.next-card-head-main{margin-top:8px;height:40px;line-height:40px}.next-card-extra{font-size:12px;color:#5584ff}.next-card-body{padding-bottom:12px;padding-left:16px;padding-right:16px}.next-card-show-divider .next-card-head-main{border-bottom:1px solid #e6e7eb}.next-card-show-divider .next-card-body{padding-top:12px}.next-card-header{padding:0 16px;margin-bottom:12px;margin-top:12px}.next-card-actions{padding:12px 16px}.next-card-divider:before{border-bottom:1px solid #e6e7eb}.next-card-divider--inset{padding:0 16px}.next-card-content-container{margin-top:12px;padding-bottom:12px;padding-left:16px;padding-right:16px;font-size:12px} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */@keyframes slashStar{0%{opacity:1}to{opacity:0}}.home-page .top-section{position:relative;height:100vh}.home-page .top-section .login-panel{position:absolute;right:40px;width:480px;height:540px;top:90px;border:0}.home-page .top-section .login-panel input,.home-page .top-section .login-panel input::-webkit-input-placeholder{font-size:16px}.home-page .top-section .login-panel .login-header{width:100%;line-height:45px;font-size:32px;margin-top:58px;text-align:center}.home-page .top-section .login-panel .internal-sys-tip{width:100%;line-height:25px;font-size:20px;margin-top:25px;text-align:center;font-weight:800;color:rgba(255,0,0,.8)}.home-page .top-section .login-panel .login-form{width:360px;margin:40px auto auto}.home-page .top-section .login-panel .login-form input{height:60px}.home-page .top-section .login-panel .login-form button{width:100%;height:60px;font-size:16px;background:#4190ff 100%;color:#fff;border:0}.home-page .top-section .animation{position:absolute;width:6px;height:6px;border-radius:50%;background-color:#1be1f6}.home-page .top-section .animation1{left:15%;top:70%;animation:slashStar 2s ease-in-out .3s infinite}.home-page .top-section .animation2{left:34%;top:35%;animation:slashStar 2s ease-in-out 1.2s infinite}.home-page .top-section .animation3{left:53%;top:20%;animation:slashStar 2s ease-in-out .5s infinite}.home-page .top-section .animation4{left:72%;top:64%;animation:slashStar 2s ease-in-out .8s infinite}.home-page .top-section .animation5{left:87%;top:30%;animation:slashStar 2s ease-in-out 1.5s infinite}.home-page .top-section .vertical-middle{position:absolute;left:0;top:50%;margin-top:-47px;transform:translateY(-50%)}.home-page .top-section .product-area{width:600px;margin-left:40px}.home-page .top-section .product-logo{display:block;width:257px;height:50px;margin:0}.home-page .top-section .product-desc{opacity:.8;font-family:Avenir-Medium;font-size:24px;color:#fff;max-width:780px;margin:12px auto 30px;text-align:left;line-height:30px}.next-table{border-top:1px solid #dcdee3;border-left:1px solid #dcdee3}.next-table th{background:#ebecf0;border-right:1px solid #dcdee3;border-bottom:1px solid #dcdee3}.next-table-header-resizable .next-table-resize-handler:hover:after{background:#5584ff}.next-table td{border-right:1px solid #dcdee3;border-bottom:1px solid #dcdee3}.next-table.zebra tr:nth-child(2n) td{background:#f7f8fa}.next-table.zebra .next-table-cell.hovered,.next-table.zebra .next-table-row.hovered td,.next-table.zebra .next-table-row.selected td{background:#f2f3f7}.next-table-empty{color:#a0a2ad}.next-table-expanded-row .next-table td,.next-table-expanded-row .next-table th{border-right:1px solid #dcdee3}.next-table-cell.hovered,.next-table-row.hovered,.next-table-row.selected{background:#f2f3f7}.next-table-body,.next-table-header{font-size:12px}.next-table-column-resize-proxy{border-left:2px solid #5584ff}.next-table-body{font-size:12px}.next-table-fixed{border-right:1px solid #dcdee3;border-bottom:1px solid #dcdee3}.next-table-fixed .next-table-header{background:#ebecf0}.next-table-group .next-table-body table,.next-table-group .next-table-header table{border-top:1px solid #dcdee3;border-left:1px solid #dcdee3}.next-table-group .next-table-group-footer td,.next-table-group .next-table-group-header td{background:#ebecf0}.next-table-filter .next-table-filter-active,.next-table-sort .current .next-icon{color:#5584ff} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.next-balloon{font-size:12px}.next-balloon-title.next-balloon-closable .next-balloon-close{transform:translateY(18px)}.next-balloon-primary{border-color:#4494f9;background-color:#e3f2fd}.next-balloon-primary .next-balloon-close{transform:translateY(16px);font-size:12px}.next-balloon-primary .next-balloon-close .next-icon{width:12px;height:12px}.next-balloon-primary .next-balloon-close .next-icon:before{width:12px;height:12px;font-size:12px}.next-balloon-primary:after{border:1px solid #4494f9;background-color:#e3f2fd}.next-balloon-normal{border-color:#dcdee3;box-shadow:0 2px 4px 0 rgba(0,0,0,.12)}.next-balloon-normal .next-balloon-close{transform:translateY(16px);font-size:12px}.next-balloon-normal .next-balloon-close .next-icon{width:12px;height:12px}.next-balloon-normal .next-balloon-close .next-icon:before{width:12px;height:12px;font-size:12px}.next-balloon-normal:after{border:1px solid #dcdee3}.next-balloon-tooltip{font-size:12px;color:#333}.next-balloon-tooltip,.next-balloon-tooltip .next-balloon-arrow .next-balloon-arrow-content{background-color:#f2f3f7;border:1px solid #dcdee3}.next-tag-checkable.next-tag-level-secondary:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-secondary:not(.disabled):not([disabled]):hover{color:#5584ff}.next-tag-default.next-tag-level-primary{border-color:#ebecf0;background-color:#ebecf0}.next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]).hover,.next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]):hover{border-color:#e2e4e8;background-color:#e2e4e8}.disabled.next-tag-default.next-tag-level-primary,[disabled].next-tag-default.next-tag-level-primary{border-color:#f7f8fa;background-color:#f7f8fa}.next-tag-closable.next-tag-level-primary{border-color:#ebecf0;background-color:#ebecf0}.next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]).hover,.next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]):hover{border-color:#e2e4e8;background-color:#e2e4e8}.disabled.next-tag-closable.next-tag-level-primary,[disabled].next-tag-closable.next-tag-level-primary{border-color:#f7f8fa;background-color:#f7f8fa}.next-tag-checkable.next-tag-level-primary{border-color:#ebecf0;background-color:#ebecf0}.next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]):hover{border-color:#e2e4e8;background-color:#e2e4e8}.disabled.next-tag-checkable.next-tag-level-primary,[disabled].next-tag-checkable.next-tag-level-primary{border-color:#f7f8fa;background-color:#f7f8fa}.next-tag-checkable.next-tag-level-primary.checked{border-color:#5584ff;background-color:#5584ff}.next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]):hover{border-color:#3e71f7;background-color:#3e71f7}.disabled.next-tag-checkable.next-tag-level-primary.checked,[disabled].next-tag-checkable.next-tag-level-primary.checked{border-color:#f7f8fa;background-color:#f7f8fa}.next-tag-default.next-tag-level-normal{border-color:#c4c6cf}.next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]).hover,.next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]):hover{border-color:#a0a2ad}.disabled.next-tag-default.next-tag-level-normal,[disabled].next-tag-default.next-tag-level-normal{border-color:#e6e7eb;background-color:#f7f8fa}.next-tag-closable.next-tag-level-normal{border-color:#c4c6cf}.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]).hover,.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):hover{border-color:#a0a2ad}.disabled.next-tag-closable.next-tag-level-normal,[disabled].next-tag-closable.next-tag-level-normal{border-color:#e6e7eb}.next-tag-checkable.next-tag-level-normal.checked{color:#5584ff;border-color:#5584ff}.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]):hover{color:#3e71f7;border-color:#3e71f7}.next-tag-checkable.next-tag-level-secondary.checked{color:#5584ff;border-color:#5584ff}.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]):hover{color:#3e71f7;border-color:#3e71f7}.next-tag-checkable.next-tag-level-secondary.checked:before{background-color:#5584ff}.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]).hover:before,.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]):hover:before{background-color:#3e71f7}.next-tag-checkable.next-tag-level-secondary.checked:disabled:before,[disabled].next-tag-checkable.next-tag-level-secondary.checked:before{background-color:#e6e7eb}.next-tag-checkable.next-tag-level-normal,.next-tag-checkable.next-tag-level-normal:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-normal:not(.disabled):not([disabled]):hover{border-color:#c4c6cf}.disabled.next-tag-checkable.next-tag-level-normal,[disabled].next-tag-checkable.next-tag-level-normal{border-color:#e6e7eb;background-color:#f7f8fa}.next-tag-checkable.next-tag-level-normal.checked:before{background-color:#5584ff}.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]).hover:before,.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]):hover:before{background-color:#3e71f7}.next-tag-checkable.next-tag-level-normal.checked:disabled:before,[disabled].next-tag-checkable.next-tag-level-normal.checked:before{background-color:#e6e7eb}.next-tag-closable.next-tag-level-normal:before{background-color:#c4c6cf}.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]).hover:before,.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):hover:before{background-color:#a0a2ad}.next-tag-closable.next-tag-level-normal:disabled:before,[disabled].next-tag-closable.next-tag-level-normal:before{background-color:#e6e7eb}.next-tag-large.next-tag-closable>.next-tag-body{max-width:calc(100% - 44px)}.next-tag-large.next-tag-closable>.next-tag-close-btn .next-icon .next-icon-remote,.next-tag-large.next-tag-closable>.next-tag-close-btn .next-icon:before{width:12px;font-size:12px}.next-tag-medium{height:28px;line-height:26px}.next-tag-medium.next-tag-closable>.next-tag-body{max-width:calc(100% - 32px)}.next-tag-medium.next-tag-closable>.next-tag-close-btn .next-icon .next-icon-remote,.next-tag-medium.next-tag-closable>.next-tag-close-btn .next-icon:before{width:8px;font-size:8px}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-tag-medium.next-tag-closable>.next-tag-close-btn .next-icon{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-tag-medium.next-tag-closable>.next-tag-close-btn .next-icon:before{width:16px;font-size:16px}}.next-tag-small{height:20px;line-height:18px}.next-tag-checkable.next-tag-level-secondary.disabled,.next-tag-checkable.next-tag-level-secondary[disabled]{border-color:#e6e7eb;background-color:#f7f8fa}.next-select-multiple .next-disabled .next-select-tag-compact{background:linear-gradient(90deg,transparent,#f7f8fa 10px)}.next-select-multiple.next-small .next-select-values,.next-select-tag.next-small .next-select-values{min-height:18px;padding-top:2px;padding-bottom:2px}.next-select-multiple.next-small .next-select-values-compact,.next-select-tag.next-small .next-select-values-compact{height:20px!important}.next-select-multiple.next-small .next-input-control,.next-select-multiple.next-small .next-input-inner,.next-select-multiple.next-small .next-input-label,.next-select-multiple.next-small .next-select-tag-compact,.next-select-tag.next-small .next-input-control,.next-select-tag.next-small .next-input-inner,.next-select-tag.next-small .next-input-label,.next-select-tag.next-small .next-select-tag-compact{line-height:18px}.next-select-multiple.next-medium .next-select-values,.next-select-tag.next-medium .next-select-values{min-height:26px;padding-top:3px;padding-bottom:3px}.next-select-multiple.next-medium .next-select-values-compact,.next-select-tag.next-medium .next-select-values-compact{height:28px!important}.next-select-multiple.next-medium .next-input-control,.next-select-multiple.next-medium .next-input-inner,.next-select-multiple.next-medium .next-input-label,.next-select-multiple.next-medium .next-select-tag-compact,.next-select-tag.next-medium .next-input-control,.next-select-tag.next-medium .next-input-inner,.next-select-tag.next-medium .next-input-label,.next-select-tag.next-medium .next-select-tag-compact{line-height:26px}.next-select-menu-wrapper{border:1px solid #dcdee3}.next-select-all{border-bottom:1px solid #dcdee3}.next-select-all:hover{color:#3e71f7}.next-select-all .next-menu-icon-selected.next-icon{color:#5584ff}.next-select-highlight{color:#5584ff;font-size:12px}.next-select-in-ie.next-select-trigger.next-select-single .next-input.next-small .next-select-values{line-height:20px}.next-select-in-ie.next-select-trigger.next-select-single .next-input.next-medium .next-select-values{line-height:28px}@media screen and (-webkit-min-device-pixel-ratio:0){.next-select-multiple .next-select-compact .next-select-tag-compact{background:linear-gradient(90deg,hsla(0,0%,100%,0),#fff 10px)}.next-select-multiple .next-disabled .next-select-tag-compact{background:linear-gradient(90deg,hsla(0,0%,100%,0),#f7f8fa 10px)}} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.new-config-form{margin-top:36px} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.next-tabs-tab.active .next-tabs-tab-close{color:#5584ff}.next-tabs-btn-down.disabled,.next-tabs-btn-next.disabled,.next-tabs-btn-prev.disabled,.next-tabs-tab.disabled .next-tabs-tab-close{color:#dcdee3}.next-tabs.next-medium .next-tabs-tab-inner{font-size:12px;padding:12px 16px}.next-tabs-pure>.next-tabs-bar{border-bottom:1px solid #dcdee3}.next-tabs-pure>.next-tabs-bar .next-tabs-nav-container .next-tabs-tab.active{color:#5584ff}.next-tabs-pure>.next-tabs-bar .next-tabs-nav-container .next-tabs-tab.disabled{color:#dcdee3}.next-tabs-pure>.next-tabs-bar .next-tabs-nav-container .next-tabs-tab:before{border-bottom:2px solid #5584ff}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab{background-color:#f2f3f7}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab:hover{background-color:#ebecf0}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab.active{color:#5584ff}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab.disabled{background:#f7f8fa}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab.active .next-tabs-tab-close{color:#5584ff}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab.disabled .next-tabs-tab-close{color:#dcdee3}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-tab{border:1px solid #dcdee3}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-tab:hover{border-color:#c4c6cf}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-tab.active{border-color:#dcdee3 #dcdee3 #fff}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-tab:before{border-top:2px solid #5584ff}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar:before{border-bottom:1px solid #dcdee3}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar .next-tabs-tab{border:1px solid #dcdee3}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar .next-tabs-tab:hover{border-color:#c4c6cf}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar .next-tabs-tab.active{border-color:#fff #dcdee3 #dcdee3}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar .next-tabs-tab:before{border-bottom:2px solid #5584ff}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-content{border-bottom:1px solid #dcdee3}.next-tabs-wrapped.next-tabs-left>.next-tabs-bar .next-tabs-tab{border:1px solid #dcdee3}.next-tabs-wrapped.next-tabs-left>.next-tabs-bar .next-tabs-tab:hover{border-color:#c4c6cf}.next-tabs-wrapped.next-tabs-left>.next-tabs-bar .next-tabs-tab.active{border-color:#dcdee3 #fff #dcdee3 #dcdee3}.next-tabs-wrapped.next-tabs-left>.next-tabs-bar .next-tabs-tab:before{border-left:2px solid #5584ff}.next-tabs-wrapped.next-tabs-left>.next-tabs-content{border-left:1px solid #dcdee3}.next-tabs-wrapped.next-tabs-right>.next-tabs-bar .next-tabs-tab{border:1px solid #dcdee3}.next-tabs-wrapped.next-tabs-right>.next-tabs-bar .next-tabs-tab:hover{border-color:#c4c6cf}.next-tabs-wrapped.next-tabs-right>.next-tabs-bar .next-tabs-tab.active{border-color:#dcdee3 #dcdee3 #dcdee3 #fff}.next-tabs-wrapped.next-tabs-right>.next-tabs-bar .next-tabs-tab:before{border-right:2px solid #5584ff}.next-tabs-wrapped.next-tabs-right>.next-tabs-content{border-right:1px solid #dcdee3}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab{border:1px solid #c4c6cf;background-color:#f2f3f7}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab:last-child{border-right:1px solid #c4c6cf}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab.active{border-color:#5584ff}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab.disabled{border-color:#e6e7eb}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab:hover{border-color:#c4c6cf;background-color:#ebecf0}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab.active{background-color:#5584ff}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab.disabled{background:#f7f8fa}.next-tabs-text>.next-tabs-bar .next-tabs-tab.active{color:#5584ff}.next-tabs-text>.next-tabs-bar .next-tabs-tab:not(:last-child):after{background-color:#dcdee3}.next-tabs[dir=rtl].next-tabs-capsule>.next-tabs-bar .next-tabs-tab{border:1px solid #c4c6cf}.next-tabs[dir=rtl].next-tabs-capsule>.next-tabs-bar .next-tabs-tab:last-child{border-left:1px solid #c4c6cf}.next-tabs[dir=rtl].next-tabs-capsule>.next-tabs-bar .next-tabs-tab.active{border-color:#5584ff} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.button-list{text-align:right}.button-list button{margin-left:1em;font-size:14px}.editor-full-screen{width:100%;height:100%;position:fixed;top:0;left:0;z-index:100}.editor-normal{clear:both}.more-item.hide{display:none} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.config-editor{padding:10px}.config-editor .func-title{overflow:hidden;height:50px;width:100%;font-weight:500;margin-bottom:9px;font-size:18px;line-height:36px;color:#73777a}.config-editor .form{display:table}.config-editor .form .next-form-item{display:table-row}.config-editor .form .next-form-item .next-form-item-label{white-space:nowrap;word-break:keep-all}.config-editor .form .next-form-item .next-form-item-control,.config-editor .form .next-form-item .next-select{width:100%}.config-editor .form .next-form-item .next-form-item-control,.config-editor .form .next-form-item .next-form-item-label{display:table-cell}.config-editor .form .next-form-item-control{padding-bottom:12px}.config-editor .form .next-checkbox-label{color:#73777a;font-weight:400}.config-editor .form .next-radio-label{color:#73777a}.config-editor .form .switch{color:#33cde5;cursor:pointer;user-select:none}.config-editor .form .help-label>*{display:inline-block}.config-editor .form .help-label>i{color:#1dc11d;margin:0 .25em}.config-editor .button-list{text-align:right}.config-editor .button-list button{margin-left:1em;font-size:14px}.config-editor .editor-full-screen{width:100%;height:100%;position:fixed;top:0;left:0;z-index:100}.config-editor .editor-normal{clear:both} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.next-pagination[dir=rtl] .next-pagination-size-selector-btn.next-btn-text+.next-pagination-size-selector-btn{border-right:1px solid #dcdee3}.next-pagination[dir=rtl].next-small .next-pagination-total{line-height:20px}.next-pagination[dir=rtl].next-small .next-pagination-ellipsis,.next-pagination[dir=rtl].next-small .next-pagination-size-selector-title{height:20px;line-height:20px}.next-pagination[dir=rtl].next-medium .next-pagination-total{line-height:28px}.next-pagination[dir=rtl].next-medium .next-pagination-ellipsis{height:28px;line-height:28px}.next-pagination[dir=rtl].next-medium .next-pagination-display,.next-pagination[dir=rtl].next-medium .next-pagination-display em,.next-pagination[dir=rtl].next-medium .next-pagination-jump-text{font-size:12px}.next-pagination[dir=rtl].next-medium .next-pagination-size-selector-title{height:28px;line-height:28px;font-size:12px}.next-pagination .next-pagination-item:not([disabled]){border-color:#c4c6cf}.next-pagination .next-pagination-item.next-current{border-color:#5584ff;background:#5584ff}.next-pagination .next-pagination-item.next-current:focus,.next-pagination .next-pagination-item.next-current:hover{border-color:transparent;background:#3e71f7;color:#fff}.next-pagination-display em,.next-pagination-size-selector-btn.next-btn-text.next-current{color:#5584ff}.next-pagination-size-selector-btn.next-btn-text+.next-pagination-size-selector-btn{border-left:1px solid #dcdee3}.next-pagination.next-small .next-pagination-total{line-height:20px}.next-pagination.next-small .next-pagination-ellipsis,.next-pagination.next-small .next-pagination-size-selector-title{height:20px;line-height:20px}.next-pagination.next-small.next-no-border .next-pagination-item.next-next:not([disabled]):hover i,.next-pagination.next-small.next-no-border .next-pagination-item.next-prev:not([disabled]):hover i{color:#5584ff}.next-pagination.next-medium .next-pagination-total{line-height:28px}.next-pagination.next-medium .next-pagination-ellipsis{height:28px;line-height:28px}.next-pagination.next-medium .next-pagination-display,.next-pagination.next-medium .next-pagination-display em,.next-pagination.next-medium .next-pagination-jump-text{font-size:12px}.next-pagination.next-medium .next-pagination-size-selector-title{height:28px;line-height:28px;font-size:12px}.next-pagination.next-large.next-no-border .next-pagination-item.next-next:not([disabled]):hover i,.next-pagination.next-large.next-no-border .next-pagination-item.next-prev:not([disabled]):hover i,.next-pagination.next-medium.next-no-border .next-pagination-item.next-next:not([disabled]):hover i,.next-pagination.next-medium.next-no-border .next-pagination-item.next-prev:not([disabled]):hover i{color:#5584ff} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.query_result_wrapper{font-size:16px;margin-bottom:16px;font-family:Helvetica Neue,Luxi Sans,DejaVu Sans,Tahoma,Hiragino Sans GB,STHeiti,Microsoft YaHei} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.next-switch-loading .next-icon-loading{color:#5584ff}.next-switch-medium{width:56px;border-radius:20px}.next-switch-medium.next-switch-auto-width{min-width:56px}.next-switch-medium>.next-switch-btn{border-radius:20px}.next-switch-medium>.next-switch-children{font-size:12px}.next-switch-small,.next-switch-small>.next-switch-btn{border-radius:20px}.next-switch-on{background-color:#5584ff}.next-switch-on.hover,.next-switch-on:focus,.next-switch-on:hover{background-color:#3e71f7}.next-switch-on[disabled]{background-color:#ebecf0}.next-switch-on[disabled] .next-switch-btn{background-color:#f7f8fa}.next-switch-off,.next-switch-off.hover,.next-switch-off:focus,.next-switch-off:hover{background-color:#ebecf0;border-color:#ebecf0}.next-switch-off[disabled]{background-color:#ebecf0}.next-switch-off[disabled] .next-switch-btn{background-color:#f7f8fa}.next-switch-off[disabled]>.next-switch-children{color:#c4c6cf}.next-progress-line-underlay{background:#ebecf0}.next-progress-line-overlay-normal{background:#5584ff}.next-progress-line-overlay-success{background:#46bc15}.next-progress-line-overlay-error,.next-progress-line-overlay-started{background:#ff3000}.next-progress-line-overlay-middle{background:#ff9300}.next-progress-line-overlay-finishing{background:#46bc15}.next-progress-line.next-large .next-progress-line-overlay,.next-progress-line.next-large .next-progress-line-underlay,.next-progress-line.next-medium .next-progress-line-overlay,.next-progress-line.next-medium .next-progress-line-underlay,.next-progress-line.next-small .next-progress-line-overlay,.next-progress-line.next-small .next-progress-line-underlay{border-radius:20px}.next-progress-line.next-large .next-progress-line-text{font-size:12px}.next-progress-line-show-border .next-progress-line-underlay{border:1px solid #dcdee3}.next-progress-line-show-border.next-large .next-progress-line-overlay,.next-progress-line-show-border.next-large .next-progress-line-underlay,.next-progress-line-show-border.next-medium .next-progress-line-overlay,.next-progress-line-show-border.next-medium .next-progress-line-underlay,.next-progress-line-show-border.next-small .next-progress-line-overlay,.next-progress-line-show-border.next-small .next-progress-line-underlay{border-radius:20px}.next-progress-line-show-border.next-large .next-progress-line-text{font-size:12px}.next-progress-circle-underlay{stroke:#ebecf0}.next-progress-circle-overlay-normal{stroke:#5584ff}.next-progress-circle-overlay-success{stroke:#46bc15}.next-progress-circle-overlay-error,.next-progress-circle-overlay-started{stroke:#ff3000}.next-progress-circle-overlay-middle{stroke:#ff9300}.next-progress-circle-overlay-finishing{stroke:#46bc15}.next-upload-list[dir=rtl].next-upload-list-text .next-upload-list-item{padding:4px 8px 4px 36px}.next-upload-list[dir=rtl].next-upload-list-image .next-upload-list-item-progress{margin-left:20px}.next-upload.next-disabled,.next-upload.next-disabled .next-upload-inner *{border-color:#e6e7eb!important}.next-upload-list-text .next-upload-list-item{background-color:#f2f3f7;padding:4px 36px 4px 8px;font-size:12px}.next-upload-list-text .next-upload-list-item .next-icon-close .next-icon-remote,.next-upload-list-text .next-upload-list-item .next-icon-close:before{width:12px;font-size:12px}.next-upload-list-text .next-upload-list-item:hover{background-color:#f2f3f7}.next-upload-list-text .next-upload-list-item-done:hover .next-upload-list-item-name,.next-upload-list-text .next-upload-list-item-done:hover .next-upload-list-item-size{color:#5584ff}.next-upload-list-text .next-upload-list-item-error-msg{color:#ff3000}.next-upload-list-image .next-upload-list-item{border:1px solid #dcdee3;font-size:12px}.next-upload-list-image .next-upload-list-item .next-icon-close .next-icon-remote,.next-upload-list-image .next-upload-list-item .next-icon-close:before{width:12px;font-size:12px}.next-upload-list-image .next-upload-list-item:hover{border-color:#5584ff}.next-upload-list-image .next-upload-list-item-name{margin-right:20px}.next-upload-list-image .next-upload-list-item-done:hover .next-upload-list-item-name,.next-upload-list-image .next-upload-list-item-done:hover .next-upload-list-item-size{color:#5584ff}.next-upload-list-image .next-upload-list-item-thumbnail{border:1px solid #dcdee3;background-color:#f2f3f7}.next-upload-list-image .next-upload-list-item-error{border-color:#ff3000!important}.next-upload-list-image .next-upload-list-item-uploading .next-upload-list-item-progress{margin-right:20px}.next-upload-list-image .next-upload-list-item-error-with-msg .next-upload-list-item-error-msg{margin-right:20px;color:#ff3000}.next-upload-list-card .next-upload-list-item-wrapper{border:1px solid #c4c6cf}.next-upload-list-card .next-upload-list-item-uploading .next-upload-list-item-wrapper{background-color:#f7f8fa}.next-upload-list-card .next-upload-list-item-error .next-upload-list-item-wrapper{border-color:#ff3000}.next-upload-card{border:1px dashed #c4c6cf}.next-upload-card .next-icon{color:#c4c6cf}.next-upload-card .next-upload-text{font-size:12px}.next-upload-card:hover{border-color:#5584ff}.next-upload-card:hover .next-icon,.next-upload-card:hover .next-upload-text{color:#5584ff}.next-upload-dragable .next-upload-drag{border:1px dashed #c4c6cf}.next-upload-dragable .next-upload-drag-over{border-color:#5584ff}.next-collapse[dir=rtl] .next-collapse-panel-title{padding:8px 28px 8px 0}.next-collapse[dir=rtl] .next-collapse-panel-icon .next-icon-remote,.next-collapse[dir=rtl] .next-collapse-panel-icon:before{width:8px;font-size:8px}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-collapse[dir=rtl] .next-collapse-panel-icon{transform:scale(.5) rotate(180deg);margin-left:-4px;margin-right:-4px}.next-collapse[dir=rtl] .next-collapse-panel-icon:before{width:16px;font-size:16px}}.next-collapse{border:1px solid #dcdee3}.next-collapse-panel:not(:first-child){border-top:1px solid #dcdee3}.next-collapse .next-collapse-panel-icon .next-icon-remote,.next-collapse .next-collapse-panel-icon:before{width:8px;font-size:8px}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-collapse .next-collapse-panel-icon{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-collapse .next-collapse-panel-icon:before{width:16px;font-size:16px}}.next-collapse-panel-title{background:#f2f3f7;padding:8px 0 8px 28px}.next-collapse-panel-title:hover{background:#ebecf0}.next-collapse-panel-content{font-size:12px}.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded .next-icon-remote,.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded:before{width:8px;font-size:8px}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded{transform:scale(.5) rotate(90deg);margin-left:-4px;margin-right:-4px}.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded:before{width:16px;font-size:16px}}.next-collapse-disabled,.next-collapse-panel-disabled:not(:first-child){border-color:#e6e7eb}.next-collapse-panel-disabled:hover,.next-collapse-panel-disabled>.next-collapse-panel-title{background:#f2f3f7}.next-menu-btn.next-btn-secondary.next-btn-text:hover .next-menu-btn-arrow,.next-menu-btn.next-btn-secondary .next-menu-btn-arrow,.next-menu-btn.next-btn-text.next-btn-normal:hover .next-menu-btn-arrow,.next-menu-btn.next-btn-text.next-btn-primary .next-menu-btn-arrow{color:#5584ff}.next-menu-btn.next-btn-text.next-btn-primary:hover .next-menu-btn-arrow{color:#3e71f7}.next-search-simple[dir=rtl].next-normal .next-search-left .next-search-left-addon{border-left:1px solid #c4c6cf}.next-search-simple[dir=rtl].next-dark .next-search-left{border-color:#c4c6cf}.next-search-simple[dir=rtl].next-dark .next-search-left .next-search-left-addon{border-right:1px solid #c4c6cf}.next-search-simple[dir=rtl].next-dark:hover .next-search-left{border-color:#c4c6cf}.next-search-simple[dir=rtl].next-dark .next-search-icon{color:#999}.next-search-simple[dir=rtl].next-dark .next-search-icon:hover{color:#666}.next-search-normal[dir=rtl].next-primary .next-input{border-top-right-radius:1px;border-bottom-right-radius:1px}.next-search-normal[dir=rtl].next-primary .next-search-left .next-search-left-addon{border-left:1px solid #e6e7eb}.next-search-normal[dir=rtl].next-secondary .next-input{border-top-right-radius:1px;border-bottom-right-radius:1px}.next-search-normal[dir=rtl].next-secondary .next-search-left .next-search-left-addon{border-left:1px solid #e6e7eb}.next-search-normal[dir=rtl].next-normal .next-input{border-top-right-radius:1px;border-bottom-right-radius:1px}.next-search-normal[dir=rtl].next-normal .next-search-left .next-search-left-addon{border-left:1px solid #e6e7eb}.next-search-normal[dir=rtl].next-dark .next-search-left .next-search-left-addon{border-left:1px solid #5584ff}.next-search-normal.next-primary .next-search-left{border-color:#5584ff}.next-search-normal.next-primary .next-search-left .next-search-left-addon{border-right:1px solid #e6e7eb}.next-search-normal.next-primary:hover .next-btn,.next-search-normal.next-primary:hover .next-search-left{border-color:#5584ff}.next-search-normal.next-primary .next-search-btn{background:#5584ff;border-color:#5584ff}.next-search-normal.next-primary .next-search-btn:hover{background:#3e71f7;border-color:#5584ff}.next-search-normal.next-primary.next-large .next-search-btn,.next-search-normal.next-primary.next-large .next-search-left{border-width:2px;height:60px}.next-search-normal.next-primary.next-large .next-search-input{height:56px}.next-search-normal.next-primary.next-large .next-search-input input{height:56px;line-height:56px \0 }.next-search-normal.next-primary.next-large .next-select{height:56px}.next-search-normal.next-primary.next-medium .next-search-btn,.next-search-normal.next-primary.next-medium .next-search-left{border-width:2px;height:40px}.next-search-normal.next-primary.next-medium .next-search-input{height:36px}.next-search-normal.next-primary.next-medium .next-search-input input{height:36px;line-height:36px \0 }.next-search-normal.next-primary.next-medium .next-select{height:36px}.next-search-normal.next-primary.next-medium .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-primary.next-medium .next-search-btn .next-icon:before{width:16px;font-size:16px}.next-search-normal.next-primary .next-input{border-top-left-radius:1px;border-bottom-left-radius:1px}.next-search-normal.next-secondary .next-search-left{border-color:#c4c6cf}.next-search-normal.next-secondary .next-search-left .next-search-left-addon{border-right:1px solid #e6e7eb}.next-search-normal.next-secondary:hover .next-btn,.next-search-normal.next-secondary:hover .next-search-left{border-color:#5584ff}.next-search-normal.next-secondary .next-search-btn{background:#5584ff;border-color:#5584ff}.next-search-normal.next-secondary .next-search-btn:hover{background:#3e71f7;border-color:#5584ff}.next-search-normal.next-secondary.next-large .next-search-btn,.next-search-normal.next-secondary.next-large .next-search-left{height:60px}.next-search-normal.next-secondary.next-large .next-search-input{height:58px}.next-search-normal.next-secondary.next-large .next-search-input input{height:58px;line-height:58px \0 }.next-search-normal.next-secondary.next-large .next-select{height:58px}.next-search-normal.next-secondary.next-medium .next-search-btn,.next-search-normal.next-secondary.next-medium .next-search-left{height:40px}.next-search-normal.next-secondary.next-medium .next-search-input{height:38px}.next-search-normal.next-secondary.next-medium .next-search-input input{height:38px;line-height:38px \0 }.next-search-normal.next-secondary.next-medium .next-select{height:38px}.next-search-normal.next-secondary.next-medium .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-secondary.next-medium .next-search-btn .next-icon:before{width:16px;font-size:16px}.next-search-normal.next-normal .next-search-left{border-color:#c4c6cf}.next-search-normal.next-normal .next-search-left .next-search-left-addon{border-right:1px solid #e6e7eb}.next-search-normal.next-normal:hover .next-btn,.next-search-normal.next-normal:hover .next-search-left{border-color:#a0a2ad}.next-search-normal.next-normal .next-search-btn{background:#f7f8fa;border-color:#c4c6cf}.next-search-normal.next-normal .next-search-btn:hover{background:#ebecf0;border-color:#a0a2ad}.next-search-normal.next-normal.next-large .next-search-btn,.next-search-normal.next-normal.next-large .next-search-left{height:60px}.next-search-normal.next-normal.next-large .next-search-input{height:58px}.next-search-normal.next-normal.next-large .next-search-input input{height:58px;line-height:58px \0 }.next-search-normal.next-normal.next-large .next-select{height:58px}.next-search-normal.next-normal.next-medium .next-search-btn,.next-search-normal.next-normal.next-medium .next-search-left{height:40px}.next-search-normal.next-normal.next-medium .next-search-input{height:38px}.next-search-normal.next-normal.next-medium .next-search-input input{height:38px;line-height:38px \0 }.next-search-normal.next-normal.next-medium .next-select{height:38px}.next-search-normal.next-normal.next-medium .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-normal.next-medium .next-search-btn .next-icon:before{width:16px;font-size:16px}.next-search-normal.next-dark .next-search-left{border-color:#5584ff}.next-search-normal.next-dark .next-search-left .next-search-left-addon{border-right:1px solid #5584ff}.next-search-normal.next-dark:hover .next-btn,.next-search-normal.next-dark:hover .next-search-left{border-color:#5584ff}.next-search-normal.next-dark .next-search-btn{background:#5584ff;border-color:#5584ff}.next-search-normal.next-dark .next-search-btn:hover{background:#3e71f7;border-color:#5584ff}.next-search-normal.next-dark.next-large .next-search-btn,.next-search-normal.next-dark.next-large .next-search-left{height:60px}.next-search-normal.next-dark.next-large .next-search-input{height:58px}.next-search-normal.next-dark.next-large .next-search-input input{height:58px;line-height:58px \0 }.next-search-normal.next-dark.next-large .next-select{height:58px}.next-search-normal.next-dark.next-medium .next-search-btn,.next-search-normal.next-dark.next-medium .next-search-left{height:40px}.next-search-normal.next-dark.next-medium .next-search-input{height:38px}.next-search-normal.next-dark.next-medium .next-search-input input{height:38px;line-height:38px \0 }.next-search-normal.next-dark.next-medium .next-select{height:38px}.next-search-normal.next-dark.next-medium .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-dark.next-medium .next-search-btn .next-icon:before{width:16px;font-size:16px}.next-search-simple.next-normal .next-search-left{border-color:#c4c6cf}.next-search-simple.next-normal .next-search-left .next-search-left-addon{border-right:1px solid #c4c6cf}.next-search-simple.next-normal:hover .next-search-left{border-color:#a0a2ad}.next-search-simple.next-dark .next-search-left{border-color:#c4c6cf}.next-search-simple.next-dark .next-search-left .next-search-left-addon{border-right:1px solid #c4c6cf}.next-search-simple.next-dark:hover .next-search-left{border-color:#c4c6cf}.next-search-simple.next-dark .next-search-icon{color:#999}.next-search-simple.next-dark .next-search-icon:hover{color:#666}.next-search-simple.next-dark.next-medium .next-search-icon .next-icon-remote,.next-search-simple.next-dark.next-medium .next-search-icon:before{width:12px;font-size:12px}.next-search-simple .next-select.next-medium{height:26px}.next-transfer-panel{border:1px solid #dcdee3}.next-transfer-panel-header{border-bottom:1px solid #dcdee3;background-color:#f7f8fa;font-size:12px}.next-transfer-panel-item:not(.next-disabled).next-simple:hover{color:#5584ff}.next-transfer-panel-item.next-insert-before:before{border-top:1px solid #5584ff}.next-transfer-panel-item.next-insert-after:after{border-bottom:1px solid #5584ff}.next-transfer-panel-footer{border-top:1px solid #dcdee3}.next-transfer-panel-count{font-size:12px}.next-transfer-panel-move-all{font-size:12px;color:#5584ff}.next-transfer-move.next-icon{color:#c4c6cf} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.next-slick-arrow.inner.disabled{background:#f7f8fa}.next-slick-dots-item button:focus,.next-slick-dots-item button:hover{background-color:hsla(0,0%,100%,.5)}.next-slick-dots-item.active button{background:#5584ff} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.next-pagination-size-selector{position:static!important}.configuration-table{margin-bottom:20px} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.service-management .page-title{height:30px;width:100%;line-height:30px;margin:0 0 20px;padding:0 0 0 10px;border-left:3px solid #09c;color:#ccc}.service-management .title-item{font-size:14px;color:#000;margin-right:8px}.service-management .next-switch-off{background-color:#f2f3f7;border-color:#c4c6cf} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.service-detail .header-btn{float:right;margin-left:20px}.service-detail .edit-btn{margin-right:10px}.service-detail .next-form-item{margin-bottom:10px}.service-detail .loading{position:relative;width:100%}.service-detail .pagination{float:right;margin-top:15px}.service-detail .cluster-card{margin-bottom:30px}.cluster-edit-dialog .next-form-item,.instance-edit-dialog .next-form-item,.service-detail-edit-dialog .next-form-item,.service-detail .inner-card{margin-bottom:10px}.cluster-edit-dialog .next-col-fixed-12,.instance-edit-dialog .next-col-fixed-12,.service-detail-edit-dialog .next-col-fixed-12{flex:1}.cluster-edit-dialog .next-switch-off,.instance-edit-dialog .next-switch-off,.service-detail-edit-dialog .next-switch-off{background-color:#f2f3f7;border-color:#c4c6cf}.cluster-edit-dialog .in-select,.cluster-edit-dialog .in-text,.instance-edit-dialog .in-select,.instance-edit-dialog .in-text,.service-detail-edit-dialog .in-select,.service-detail-edit-dialog .in-text{width:120px}.service-detail-edit-dialog{width:600px}.full-width{width:100%} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.subscriber-list .page-title{height:30px;width:100%;line-height:30px;margin:0 0 20px;padding:0 0 0 10px;border-left:3px solid #09c;color:#ccc}.subscriber-list .title-item{font-size:14px;color:#000;margin-right:8px} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */.cluster-management .page-title{height:30px;width:100%;line-height:30px;margin:0 0 20px;padding:0 0 0 10px;border-left:3px solid #09c;color:#ccc}.cluster-management .title-item{font-size:14px;color:#000;margin-right:8px} |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | /*! |
| | | * Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */:global(#root),body,html{height:100%}:global(.mainwrapper){position:absolute!important;top:0;bottom:0;left:0;right:0}:global(.sideleft){float:left;background-color:#eaedf1;position:absolute;top:0;bottom:0;z-index:2;overflow:hidden;width:180px}:global(.sideleft .toptitle){width:100%;height:70px;line-height:70px;background:#d9dee4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:700;text-indent:20px}:global(.maincontainer){position:absolute;width:auto;top:0;bottom:0;left:180px;right:0;overflow:hidden;overflow-y:auto;-o-transition:all .2s ease;-ms-transition:all .2s ease;-moz-transition:all .2s ease;-webkit-transition:all .2s ease}:global(.viewFramework-product-navbar .product-nav-list li .active){background-color:#fff!important}.next-menu .next-menu-icon-arrow-down{transform:rotate(0deg)!important}li.next-menu-item:not(.next-disabled).next-selected:focus:hover,li.next-menu-item:not(.next-disabled).next-selected:hover,li.next-menu-item:not(.next-disabled):hover{background:#e4f3fe;background:var(--nav-normal-sub-nav-hover-bg-color,#e4f3fe);color:#209bfa;color:var(--nav-normal-sub-nav-hover-text-color,#209bfa)}.next-menu.next-normal .next-menu-item.next-selected{background:#e4f3fe!important;background:var(--nav-normal-sub-nav-selected-bg-color,#e4f3fe)!important;color:#209bfa!important;color:var(--nav-normal-sub-nav-selected-text-color,#209bfa)!important}.clearfix:after{content:".";clear:both;display:block;height:0;overflow:hidden;visibility:hidden}.clearfix{zoom:1}.copy-icon{cursor:pointer;margin-left:4px;color:var(--color-link-1,#298dff)}.layouttitle{height:40px;width:200px;background-color:#09c;color:#fff;line-height:40px;text-align:center;margin:0;padding:0;font-weight:700}.linknav{height:30px;line-height:30px;text-align:center}.righttitle{height:40px;background-color:#000;width:100%;font-weight:700}.product-nav-icon{padding:15px 0 0;height:70px;margin:0}.envcontainer{padding-left:15px;margin-right:auto;margin-left:auto;max-height:450px;overflow:scroll;margin-bottom:100px;display:none;top:50px;left:230px;position:fixed;z-index:99999;width:435px;height:auto;background-color:#fff;border:1px solid #ddd;border-radius:0;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.envtop{height:50px;line-height:50px;position:fixed;top:0;left:320px;z-index:999;background-color:transparent;-webkit-font-smoothing:antialiased}.envcontainer-top{padding-left:15px;margin-right:auto;margin-left:auto;max-height:450px;overflow:auto;margin-bottom:100px;display:none;top:50px;left:0;position:absolute;z-index:99999;width:435px;height:auto;background-color:#fff;border:1px solid #ddd;border-radius:0;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.envcontainer-top .row{margin:0!important}.envcontainer-top .active{background-color:#546478}.envcontainer dl dd.active{background-color:#546478;color:#fff}.current-env{display:block;padding:0;font-size:14px;margin:0 0 5px;text-align:center}.current-env a{color:#666;text-decoration:none}.product-nav-title{height:70px;line-height:70px;margin:0;text-align:center;padding:0;font-size:14px;background:#d9dee4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333}.console-title{padding:16px 0}.topbar-nav-item-title{margin:0 0 10px 31px;color:#666;font-weight:700}.dl{height:100%;width:125px;overflow:auto;margin:0 15px 15px 0}.dd{height:24px;line-height:24px;overflow-x:hidden;padding-left:12px;margin-left:20px}.active{color:#fff}.dd:hover{cursor:pointer;opacity:.7;filter:70}.cm-s-xq-light span.cm-keyword{line-height:1em;font-weight:700;color:#5a5cad}.cm-s-xq-light span.cm-atom{color:#6c8cd5}.cm-s-xq-light span.cm-number{color:#164}.cm-s-xq-light span.cm-def{text-decoration:underline}.cm-s-xq-light span.cm-type,.cm-s-xq-light span.cm-variable,.cm-s-xq-light span.cm-variable-2,.cm-s-xq-light span.cm-variable-3{color:#000}.cm-s-xq-light span.cm-comment{color:#0080ff;font-style:italic}.cm-s-xq-light span.cm-string{color:red}.cm-s-xq-light span.cm-meta{color:#ff0}.cm-s-xq-light span.cm-qualifier{color:grey}.cm-s-xq-light span.cm-builtin{color:#7ea656}.cm-s-xq-light span.cm-bracket{color:#cc7}.cm-s-xq-light span.cm-tag{color:#3f7f7f}.cm-s-xq-light span.cm-attribute{color:#7f007f}.cm-s-xq-light span.cm-error{color:red}.cm-s-xq-light .CodeMirror-activeline-background{background:#e8f2ff}.cm-s-xq-light .CodeMirror-matchingbracket{outline:1px solid grey;color:#000!important;background:#ff0}.CodeMirror{border:1px solid #eee}.CodeMirror-fullscreen{position:fixed;top:0;left:0;right:0;bottom:0;height:auto;z-index:9999}.CodeMirror-lint-markers{width:16px}.CodeMirror-lint-tooltip{background-color:infobackground;border:1px solid #000;border-radius:4px 4px 4px 4px;color:infotext;font-family:monospace;font-size:10pt;overflow:hidden;padding:2px 5px;position:fixed;white-space:pre;white-space:pre-wrap;z-index:100;max-width:600px;opacity:0;transition:opacity .4s;-moz-transition:opacity .4s;-webkit-transition:opacity .4s;-o-transition:opacity .4s;-ms-transition:opacity .4s}.CodeMirror-lint-mark-error,.CodeMirror-lint-mark-warning{background-position:0 100%;background-repeat:repeat-x}.CodeMirror-lint-mark-error{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==")}.CodeMirror-lint-mark-warning{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=")}.CodeMirror-lint-marker-error,.CodeMirror-lint-marker-warning{background-position:50%;background-repeat:no-repeat;cursor:pointer;display:inline-block;height:16px;width:16px;vertical-align:middle;position:relative}.CodeMirror-lint-message-error,.CodeMirror-lint-message-warning{padding-left:18px;background-position:0 0;background-repeat:no-repeat}.CodeMirror-lint-marker-error,.CodeMirror-lint-message-error{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=")}.CodeMirror-lint-marker-warning,.CodeMirror-lint-message-warning{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=")}.CodeMirror-lint-marker-multiple{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC");background-repeat:no-repeat;background-position:100% 100%;width:100%;height:100%}@media(min-width:992px){.modal-lg{width:980px}}@media(min-width:768px)and (max-width:992px){.modal-lg{width:750px}}.modal-body table.narrow-table td{padding:8px 0}.add-on.form-control{margin-left:-4px;box-shadow:none;font-size:28px;line-height:32px;padding:0;vertical-align:top}.text-break{word-wrap:break-word;word-break:break-all;white-space:normal}.form-inline{margin-bottom:20px}.console-title{min-height:70px}.form-horizontal .form-group .checkbox{margin-left:0;margin-right:10px}.combox_border,.combox_select{border:1px solid #c2c2c2;width:245px}.combox_border{height:auto;display:inline-block;position:relative}.combox_input{border:0;padding-left:5px;width:85%;vertical-align:middle}.form-inline .combox_input.form-control{width:85%}.combox_button{width:12%;color:#666;text-align:center;vertical-align:middle;cursor:pointer;border-left:1px solid #c2c2c2}ul.combox_select{border-top:0;padding:0;position:absolute;left:-1px;top:20px;display:none;background:#fff;max-height:300px;overflow-y:auto}ul.combox_select li{overflow:hidden;height:30px;line-height:30px;cursor:pointer}ul.combox_select li a{display:block;line-height:28px;padding:0 8px;text-decoration:none;color:#666}ul.combox_select li a:hover{text-decoration:none;background:#f5f5f5}#combox-appanme.combox_border,#combox-appanme .combox_select{width:158px}#combox-appanme .form-control{height:30px}input.error,textarea.error{border:1px solid red}.form-inline .form-group{position:relative}label.error{margin:4px 0;color:red;font-weight:400;position:absolute;right:15px;bottom:-26px}ins{background-color:#c6ffc6;text-decoration:none}del{background-color:#ffc6c6}form.vertical-margin-lg .form-group{margin-bottom:22px}.namespacewrapper{padding:5px 15px;overflow:hidden;background-color:#efefef}.xrange-container{position:relative;border:1px solid #ccc;margin:0;padding:0}.xrange-container .cocofont,.xrange-container .iconfont{cursor:pointer}.xrange-container .label{display:flex;align-items:center;text-align:center;justify-content:space-between;cursor:pointer}.xrange-container .label.is-button{display:flex;border:1px solid #e6ebef;height:32px;padding:6px 12px;background-color:#f5f5f6}.xrange-container .label.is-button>i{font-size:13px}.xrange-container .label.is-empty{padding:0}.xrange-container .label.is-empty.is-button{padding:6px 12px}.xrange-container .label.is-empty>i{font-size:15px;margin-right:0}.xrange-container .label.is-empty>span,.xrange-container .label.is-empty b{display:none}.xrange-container .label>i{font-size:13px;text-align:center}.xrange-container .label>b{padding-top:3px}.xrange-container .label>span{min-width:100px;display:inline-flex;margin-bottom:8px}.xrange-layer{position:fixed;left:0;top:0;width:100%;height:100%;z-index:990;background-color:rgba(0,0,0,.05)}.xrange-panel{display:none;position:relative;right:1px;top:-8px;z-index:1000;border:1px solid #e6e7eb;border-radius:0;box-shadow:1px 1px 3px 0 transparent;width:111px;min-height:302px;background-color:#fff}.xrange-panel.visible{display:block}.xrange-panel .quick-list{display:flex;flex-direction:column;justify-content:space-around;box-sizing:content-box!important;align-items:center}.xrange-panel .quick-list>span{flex:0 0 auto;width:100%;line-height:20px;padding:6px 0 6px 27px;font-size:12px;-webkit-user-select:none;cursor:pointer}.xrange-panel .quick-list>span+span{margin-left:0}.xrange-panel .quick-list>span.active{background-color:#f2f3f7;color:#333;cursor:default}.xrange-panel .xrange-panel-footer{display:flex;align-items:center;justify-content:space-between;height:60px;background-color:#fff;position:absolute;top:300px;left:-539px;min-width:648px;padding:12px 108px 12px 12px}.xrange-panel .xrange-panel-footer .fn-left,.xrange-panel .xrange-panel-footer .fn-right{flex:0 0 auto}.xrange-panel .xrange-panel-footer button+button{margin-left:8px}.xrange-panel .picker-container{display:none;position:relative;margin-top:16px}.xrange-panel .picker-container .next-range-picker-panel{top:-273px!important;left:-540px!important;position:absolute!important;animation:none!important;z-index:999999;border-color:#e6ebef}.next-calendar-card .next-calendar-range-body{background:#fff!important;min-height:227px!important}.xrange-panel .picker-container+.next-range-picker{display:none}.xrange-panel .picker-container .next-date-picker-quick-tool{display:none!important}.xrange-panel.show-picker .picker-container{display:block;min-height:5px}.dingding{background:url(https://g.alicdn.com/cm-design/arms/1.1.27/styles/arms/images/dingding.png) no-repeat 0}.dingding,.wangwang{display:inline-block;padding:5px 0 5px 30px;height:24px;vertical-align:middle}.wangwang{background:url(https://g.alicdn.com/cm-design/arms/1.1.27/styles/arms/images/wangwang.png) no-repeat 0;background-size:24px}@media screen and (min-width:768px){.region-group-list{max-width:784px}}@media screen and (min-width:992px){.region-group-list{max-width:862px}}@media screen and (min-width:1200px){.region-group-list{max-width:600px}}@media screen and (min-width:1330px){.region-group-list{max-width:700px}}@media screen and (min-width:1500px){.region-group-list{max-width:1000px}}.next-switch-medium{border:1px solid transparent;width:48px!important;height:26px!important;border-radius:15px!important}.next-switch-medium>.next-switch-trigger{border:1px solid transparent;position:absolute;left:33px!important;width:24px!important;height:24px!important;border-radius:15px!important}.aliyun-advice{bottom:98px!important}.next-switch-medium>.next-switch-children{font-size:12px!important;position:absolute;height:24px!important;line-height:24px!important}.next-switch-on>.next-switch-trigger{box-shadow:1px 1px 3px 0 rgba(0,0,0,.32)!important;background-color:#fff;border-color:transparent;position:absolute;right:0!important}.next-switch-on>.next-switch-children{left:2px!important;font-size:12px!important}.next-switch-on[disabled]>.next-switch-trigger{position:absolute;right:0!important;box-shadow:1px 1px 3px 0 rgba(0,0,0,.32)!important;background-color:#e6e7eb;border-color:transparent}.next-switch-off>.next-switch-children{right:-6px;color:#979a9c!important}.next-switch-off[disabled]>.next-switch-trigger{left:0!important;box-shadow:1px 1px 3px 0 rgba(0,0,0,.32)!important;background-color:#e6e7eb;border-color:transparent}.next-switch-off>.next-switch-trigger{left:0!important;box-shadow:1px 1px 3px 0 rgba(0,0,0,.32);background-color:#fff;border-color:transparent}.next-switch-off,.next-switch-on{width:58px!important}.next-switch-on{position:relative}.next-menu .next-menu-icon-select{position:absolute;left:4px;top:0;color:#73777a!important}.next-table-cell-wrapper{hyphens:auto!important;word-break:break-word!important}.dash-page-container{height:100%;min-width:980px}.dash-page-container:after{content:"";display:table;clear:both}.dash-left-container{position:relative;float:left;width:77.52%;height:100%}.dash-title-show{width:100%;height:106px;background-color:#fff;box-shadow:0 0 0 0 hsla(0,0%,85.1%,.5),0 0 2px 0 rgba(0,0,0,.12);margin-bottom:19px;padding-top:20px;padding-bottom:20px;overflow:hidden}.dash-title-item{float:left;height:49px;width:33%;border-right:1px solid #ebecec;line-height:49px;padding-left:30px;padding-right:30px}.dash-title-word{height:19px;line-height:19px;font-size:14px;color:#73777a}.dash-title-num{height:45px;font-size:32px}.dash-title-item:last-child{border:none!important}.dash-menu-list{width:100%;height:104px;background-color:#fff;box-shadow:0 0 0 0 hsla(0,0%,85.1%,.5),0 0 2px 0 rgba(0,0,0,.12);margin-bottom:19px}.dash-menu-item{position:relative;float:left;width:33.33%;border-right:1px solid #eee;height:100%;padding-top:20px;padding-bottom:20px;cursor:pointer}.dash-menu-item.disabled{cursor:not-allowed;opacity:.7}.dash-menu-item:last-child{border:none}.dash-menu-item:hover{box-shadow:0 3px 6px 0 rgba(0,0,0,.12)}.dash-menu-conent-wrapper{padding-left:60px;padding-right:40px}.dash-menu-pic{position:absolute;width:32px;left:20px}.dash-menu-content-title{height:19px;line-height:19px;color:#373d41;margin-bottom:5px}.dash-menu-content-word{font-size:12px;color:#73777a}.dash-scene-wrapper{width:100%;background-color:#fff;box-shadow:0 0 0 0 hsla(0,0%,85.1%,.5),0 0 2px 0 rgba(0,0,0,.12);margin-bottom:20px}.dash-scene-title{position:relative;padding-left:20px;height:50px;line-height:50px;border-bottom:1px solid #f0f0f0}.dash-sceneitem{width:100%;height:80px;padding-top:24px}.dash-scenitem-out{border-bottom:1px solid #eee;height:100%}.dash-sceneitem:hover{box-shadow:0 0 0 0 hsla(0,0%,85.1%,.5),0 0 4px 0 rgba(0,0,0,.12);border-bottom:1px solid #f0f0f0}.dash-sceneitem-progresswrapper{position:relative;width:256px;height:6px}.dash-sceneitem-progresswrapper.green{background-color:#e2f5cf}.dash-sceneitem-progresswrapper.red{background-color:#ffe6e5}.dash-sceneitem-progresswrapper.green .dash-sceneitem-progressinner{height:100%;background-color:#a6e22e}.dash-sceneitem-progresswrapper.red .dash-sceneitem-progressinner{height:100%;background-color:#eb4c4d}.dash-sceneitem-iconshow{position:absolute;right:0;top:5px}.dash-sceneitem:hover.dash-sceneitem-out{border:none}.dash-sceneitem:after{display:table;content:"";clear:both}.dash-sceneitem-title{float:left;height:32.8px;padding-top:5px;width:14.47%;border-right:1px solid #f0f0f0;overflow:hidden;text-overflow:ellipsis}.scene-nomore-data{position:absolute;text-align:center;left:0;right:0;color:#eee;font-size:12px}.dash-sceneitem-content{position:relative;float:left;padding-top:5px;padding-left:30px;width:85.53%}.scene-title-link{position:absolute;right:20px;top:0;font-size:10px}.dash-bottom-show{width:100%;height:42px;line-height:42px;margin-top:18px;text-align:center;background-color:#fff;box-shadow:0 0 0 0 hsla(0,0%,85.1%,.5),0 0 2px 0 rgba(0,0,0,.12)}.dash-right-container{float:right;height:100%;width:22.44%;padding:10px;background-color:#fff}.dash-bottom-item,.dash-vl{color:#979a9c;margin-right:10px}.dash-doc{background-color:#fff;height:178px;width:100%;margin-bottom:14px}.dash-doc-title{width:100%;height:68px;line-height:68px;padding-left:20px;padding-right:20px;border-bottom:1px solid #eee}.dash-doc-content{width:100%;padding:15px}.dash-card-contentwrappers{width:100%;height:230px;margin-bottom:14px;background-color:#fff;border:1px solid #eee;box-shadow:0 0 0 0 hsla(0,0%,85.1%,.5),0 0 2px 0 rgba(0,0,0,.12)}.dash-card-title{width:100%;height:39px;line-height:39px;margin:0;padding-left:24px;padding-right:24px;color:#4a4a4a;border-bottom:1px solid #eee}.dash-card-contentlist{padding:20px}.dash-card-contentitem{position:relative;text-align:left;font-size:12px;margin-bottom:10px}.next-slick-dots-item button{height:4px!important;width:35px!important;border-radius:10px!important}.next-table-row.hovered{background-color:#f5f7f9!important}.alert-success-text{color:#4a4a4a;font-size:14px;margin:10px 0}.alert-success{border-color:#e0e0e0!important}.row-bg-green{background-color:#e4fdda}.row-bg-light-green{background-color:#e3fff8}.row-bg-orange{background-color:#fff3e0}.row-bg-red{background-color:#ffece4}/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}[hidden],template{display:none}*,:after,:before{box-sizing:border-box}ol,ul{list-style:none;margin:0;padding:0}li{margin-left:0}hr{border:solid #e6e6e6;border-width:1px 0 0}a{text-decoration:none}a:link{color:#298dff}a:visited{color:#4a83c5}a:active,a:hover{color:#2580e7}a:active{text-decoration:underline}@font-face{font-family:Roboto;src:url(../console-ui/public/fonts/roboto-thin.eot);src:url(../console-ui/public/fonts/roboto-thin.eot?#iefix) format("embedded-opentype"),url(../console-ui/public/fonts/roboto-thin.woff2) format("woff2"),url(../console-ui/public/fonts/roboto-thin.woff) format("woff"),url(../console-ui/public/fonts/roboto-thin.ttf) format("truetype");font-weight:200;font-display:swap}@font-face{font-family:Roboto;src:url(../console-ui/public/fonts/roboto-light.eot);src:url(../console-ui/public/fonts/roboto-light.eot?#iefix) format("embedded-opentype"),url(../console-ui/public/fonts/roboto-light.woff2) format("woff2"),url(../console-ui/public/fonts/roboto-light.woff) format("woff"),url(../console-ui/public/fonts/roboto-light.ttf) format("truetype");font-weight:300;font-display:swap}@font-face{font-family:Roboto;src:url(../console-ui/public/fonts/roboto-regular.eot);src:url(../console-ui/public/fonts/roboto-regular.eot?#iefix) format("embedded-opentype"),url(../console-ui/public/fonts/roboto-regular.woff2) format("woff2"),url(../console-ui/public/fonts/roboto-regular.woff) format("woff"),url(../console-ui/public/fonts/roboto-regular.ttf) format("truetype");font-weight:400;font-display:swap}@font-face{font-family:Roboto;src:url(../console-ui/public/fonts/roboto-medium.eot);src:url(../console-ui/public/fonts/roboto-medium.eot?#iefix) format("embedded-opentype"),url(../console-ui/public/fonts/roboto-medium.woff2) format("woff2"),url(../console-ui/public/fonts/roboto-medium.woff) format("woff"),url(../console-ui/public/fonts/roboto-medium.ttf) format("truetype");font-weight:500;font-display:swap}@font-face{font-family:Roboto;src:url(../console-ui/public/fonts/roboto-bold.eot);src:url(../console-ui/public/fonts/roboto-bold.eot?#iefix) format("embedded-opentype"),url(../console-ui/public/fonts/roboto-bold.woff2) format("woff2"),url(../console-ui/public/fonts/roboto-bold.woff) format("woff"),url(../console-ui/public/fonts/roboto-bold.ttf) format("truetype");font-weight:700;font-display:swap}html{font-size:100%}body{font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142;color:#333}button,input,optgroup,select,textarea{font-family:inherit}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{font-weight:inherit}h1{margin-bottom:12px;font-size:24px;line-height:36px}h1,h2{font-weight:500}h2{margin-bottom:10px;font-size:20px;line-height:30px}h3,h4{margin-bottom:8px;font-size:16px}h3,h4,h5{font-weight:400;line-height:24px}h5{margin-bottom:7px;font-size:14px}h6{font-weight:500}h6,p{margin-bottom:7px;font-size:14px;line-height:20px}p{font-weight:400}strong{font-weight:500}small{font-size:75%}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@-moz-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@-ms-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@-o-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-100px);-moz-transform:translateY(-100px);-ms-transform:translateY(-100px);-o-transform:translateY(-100px);transform:translateY(-100px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-moz-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-100px);-moz-transform:translateY(-100px);-ms-transform:translateY(-100px);-o-transform:translateY(-100px);transform:translateY(-100px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-ms-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-100px);-moz-transform:translateY(-100px);-ms-transform:translateY(-100px);-o-transform:translateY(-100px);transform:translateY(-100px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-o-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-100px);-moz-transform:translateY(-100px);-ms-transform:translateY(-100px);-o-transform:translateY(-100px);transform:translateY(-100px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-100px);-moz-transform:translateY(-100px);-ms-transform:translateY(-100px);-o-transform:translateY(-100px);transform:translateY(-100px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInDownSmall{0%{opacity:0;-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);-ms-transform:translateY(-8px);-o-transform:translateY(-8px);transform:translateY(-8px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-moz-keyframes fadeInDownSmall{0%{opacity:0;-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);-ms-transform:translateY(-8px);-o-transform:translateY(-8px);transform:translateY(-8px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-ms-keyframes fadeInDownSmall{0%{opacity:0;-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);-ms-transform:translateY(-8px);-o-transform:translateY(-8px);transform:translateY(-8px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-o-keyframes fadeInDownSmall{0%{opacity:0;-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);-ms-transform:translateY(-8px);-o-transform:translateY(-8px);transform:translateY(-8px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDownSmall{0%{opacity:0;-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);-ms-transform:translateY(-8px);-o-transform:translateY(-8px);transform:translateY(-8px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-ms-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-moz-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-ms-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-ms-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-ms-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-o-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-ms-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-ms-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-ms-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-moz-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-ms-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-ms-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-ms-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-o-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-ms-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-ms-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(24px);-moz-transform:translateY(24px);-ms-transform:translateY(24px);-o-transform:translateY(24px);transform:translateY(24px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-moz-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(24px);-moz-transform:translateY(24px);-ms-transform:translateY(24px);-o-transform:translateY(24px);transform:translateY(24px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-ms-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(24px);-moz-transform:translateY(24px);-ms-transform:translateY(24px);-o-transform:translateY(24px);transform:translateY(24px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-o-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(24px);-moz-transform:translateY(24px);-ms-transform:translateY(24px);-o-transform:translateY(24px);transform:translateY(24px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(24px);-moz-transform:translateY(24px);-ms-transform:translateY(24px);-o-transform:translateY(24px);transform:translateY(24px)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@-moz-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@-ms-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@-o-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(20px);-moz-transform:translateY(20px);-ms-transform:translateY(20px);-o-transform:translateY(20px);transform:translateY(20px)}}@-moz-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(20px);-moz-transform:translateY(20px);-ms-transform:translateY(20px);-o-transform:translateY(20px);transform:translateY(20px)}}@-ms-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(20px);-moz-transform:translateY(20px);-ms-transform:translateY(20px);-o-transform:translateY(20px);transform:translateY(20px)}}@-o-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(20px);-moz-transform:translateY(20px);-ms-transform:translateY(20px);-o-transform:translateY(20px);transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(20px);-moz-transform:translateY(20px);-ms-transform:translateY(20px);-o-transform:translateY(20px);transform:translateY(20px)}}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-ms-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px)}}@-moz-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-ms-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px)}}@-ms-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-ms-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px)}}@-o-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-ms-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-ms-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px)}}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-ms-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px)}}@-moz-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-ms-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px)}}@-ms-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-ms-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px)}}@-o-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-ms-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-ms-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px)}}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-24px);-moz-transform:translateY(-24px);-ms-transform:translateY(-24px);-o-transform:translateY(-24px);transform:translateY(-24px)}}@-moz-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-24px);-moz-transform:translateY(-24px);-ms-transform:translateY(-24px);-o-transform:translateY(-24px);transform:translateY(-24px)}}@-ms-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-24px);-moz-transform:translateY(-24px);-ms-transform:translateY(-24px);-o-transform:translateY(-24px);transform:translateY(-24px)}}@-o-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-24px);-moz-transform:translateY(-24px);-ms-transform:translateY(-24px);-o-transform:translateY(-24px);transform:translateY(-24px)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-24px);-moz-transform:translateY(-24px);-ms-transform:translateY(-24px);-o-transform:translateY(-24px);transform:translateY(-24px)}}@-webkit-keyframes fadeOutUpSmall{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);-ms-transform:translateY(-8px);-o-transform:translateY(-8px);transform:translateY(-8px)}}@-moz-keyframes fadeOutUpSmall{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);-ms-transform:translateY(-8px);-o-transform:translateY(-8px);transform:translateY(-8px)}}@-ms-keyframes fadeOutUpSmall{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);-ms-transform:translateY(-8px);-o-transform:translateY(-8px);transform:translateY(-8px)}}@-o-keyframes fadeOutUpSmall{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);-ms-transform:translateY(-8px);-o-transform:translateY(-8px);transform:translateY(-8px)}}@keyframes fadeOutUpSmall{0%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-8px);-moz-transform:translateY(-8px);-ms-transform:translateY(-8px);-o-transform:translateY(-8px);transform:translateY(-8px)}}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(2000px);-moz-transform:translateY(2000px);-ms-transform:translateY(2000px);-o-transform:translateY(2000px);transform:translateY(2000px)}}@-moz-keyframes slideOutDown{0%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(2000px);-moz-transform:translateY(2000px);-ms-transform:translateY(2000px);-o-transform:translateY(2000px);transform:translateY(2000px)}}@-ms-keyframes slideOutDown{0%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(2000px);-moz-transform:translateY(2000px);-ms-transform:translateY(2000px);-o-transform:translateY(2000px);transform:translateY(2000px)}}@-o-keyframes slideOutDown{0%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(2000px);-moz-transform:translateY(2000px);-ms-transform:translateY(2000px);-o-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes slideOutDown{0%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(2000px);-moz-transform:translateY(2000px);-ms-transform:translateY(2000px);-o-transform:translateY(2000px);transform:translateY(2000px)}}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-2000px);-moz-transform:translateX(-2000px);-ms-transform:translateX(-2000px);-o-transform:translateX(-2000px);transform:translateX(-2000px)}}@-moz-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-2000px);-moz-transform:translateX(-2000px);-ms-transform:translateX(-2000px);-o-transform:translateX(-2000px);transform:translateX(-2000px)}}@-ms-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-2000px);-moz-transform:translateX(-2000px);-ms-transform:translateX(-2000px);-o-transform:translateX(-2000px);transform:translateX(-2000px)}}@-o-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-2000px);-moz-transform:translateX(-2000px);-ms-transform:translateX(-2000px);-o-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes slideOutLeft{0%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-2000px);-moz-transform:translateX(-2000px);-ms-transform:translateX(-2000px);-o-transform:translateX(-2000px);transform:translateX(-2000px)}}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(2000px);-moz-transform:translateX(2000px);-ms-transform:translateX(2000px);-o-transform:translateX(2000px);transform:translateX(2000px)}}@-moz-keyframes slideOutRight{0%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(2000px);-moz-transform:translateX(2000px);-ms-transform:translateX(2000px);-o-transform:translateX(2000px);transform:translateX(2000px)}}@-ms-keyframes slideOutRight{0%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(2000px);-moz-transform:translateX(2000px);-ms-transform:translateX(2000px);-o-transform:translateX(2000px);transform:translateX(2000px)}}@-o-keyframes slideOutRight{0%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(2000px);-moz-transform:translateX(2000px);-ms-transform:translateX(2000px);-o-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes slideOutRight{0%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(2000px);-moz-transform:translateX(2000px);-ms-transform:translateX(2000px);-o-transform:translateX(2000px);transform:translateX(2000px)}}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-2000px);-moz-transform:translateY(-2000px);-ms-transform:translateY(-2000px);-o-transform:translateY(-2000px);transform:translateY(-2000px)}}@-moz-keyframes slideOutUp{0%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-2000px);-moz-transform:translateY(-2000px);-ms-transform:translateY(-2000px);-o-transform:translateY(-2000px);transform:translateY(-2000px)}}@-ms-keyframes slideOutUp{0%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-2000px);-moz-transform:translateY(-2000px);-ms-transform:translateY(-2000px);-o-transform:translateY(-2000px);transform:translateY(-2000px)}}@-o-keyframes slideOutUp{0%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-2000px);-moz-transform:translateY(-2000px);-ms-transform:translateY(-2000px);-o-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes slideOutUp{0%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-2000px);-moz-transform:translateY(-2000px);-ms-transform:translateY(-2000px);-o-transform:translateY(-2000px);transform:translateY(-2000px)}}@-webkit-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-moz-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-ms-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-o-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-moz-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-ms-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-o-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-moz-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-ms-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-o-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes slideInUp{0%{opacity:0;-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-moz-keyframes slideInUp{0%{opacity:0;-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-ms-keyframes slideInUp{0%{opacity:0;-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-o-keyframes slideInUp{0%{opacity:0;-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@keyframes slideInUp{0%{opacity:0;-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}to{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-moz-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);-o-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@-moz-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-moz-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);-o-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@-ms-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-moz-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);-o-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@-o-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-moz-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);-o-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-moz-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);-o-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-moz-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);-o-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@-moz-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-moz-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);-o-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@-ms-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-moz-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);-o-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@-o-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-moz-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);-o-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-moz-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);-o-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@-webkit-keyframes zoomInBig{0%{opacity:0;-webkit-transform:scale(.9);-moz-transform:scale(.9);-ms-transform:scale(.9);-o-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}@-moz-keyframes zoomInBig{0%{opacity:0;-webkit-transform:scale(.9);-moz-transform:scale(.9);-ms-transform:scale(.9);-o-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}@-ms-keyframes zoomInBig{0%{opacity:0;-webkit-transform:scale(.9);-moz-transform:scale(.9);-ms-transform:scale(.9);-o-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}@-o-keyframes zoomInBig{0%{opacity:0;-webkit-transform:scale(.9);-moz-transform:scale(.9);-ms-transform:scale(.9);-o-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}@keyframes zoomInBig{0%{opacity:0;-webkit-transform:scale(.9);-moz-transform:scale(.9);-ms-transform:scale(.9);-o-transform:scale(.9);transform:scale(.9)}to{opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}@-webkit-keyframes zoomOutBig{0%{opacity:1}to{opacity:0;-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);-o-transform:scale(.8);transform:scale(.8)}}@-moz-keyframes zoomOutBig{0%{opacity:1}to{opacity:0;-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);-o-transform:scale(.8);transform:scale(.8)}}@-ms-keyframes zoomOutBig{0%{opacity:1}to{opacity:0;-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);-o-transform:scale(.8);transform:scale(.8)}}@-o-keyframes zoomOutBig{0%{opacity:1}to{opacity:0;-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);-o-transform:scale(.8);transform:scale(.8)}}@keyframes zoomOutBig{0%{opacity:1}to{opacity:0;-webkit-transform:scale(.8);-moz-transform:scale(.8);-ms-transform:scale(.8);-o-transform:scale(.8);transform:scale(.8)}}@-webkit-keyframes expandInDown{0%{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}to{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}}@-moz-keyframes expandInDown{0%{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}to{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}}@-ms-keyframes expandInDown{0%{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}to{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}}@-o-keyframes expandInDown{0%{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}to{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}}@keyframes expandInDown{0%{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}to{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}}@-webkit-keyframes expandInUp{0%{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}to{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}}@-moz-keyframes expandInUp{0%{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}to{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}}@-ms-keyframes expandInUp{0%{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}to{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}}@-o-keyframes expandInUp{0%{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}to{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}}@keyframes expandInUp{0%{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}to{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}}@-webkit-keyframes expandInWithFade{0%{opacity:0}40%{opacity:.1}50%{opacity:.9}to{opacity:1}}@-moz-keyframes expandInWithFade{0%{opacity:0}40%{opacity:.1}50%{opacity:.9}to{opacity:1}}@-ms-keyframes expandInWithFade{0%{opacity:0}40%{opacity:.1}50%{opacity:.9}to{opacity:1}}@-o-keyframes expandInWithFade{0%{opacity:0}40%{opacity:.1}50%{opacity:.9}to{opacity:1}}@keyframes expandInWithFade{0%{opacity:0}40%{opacity:.1}50%{opacity:.9}to{opacity:1}}@-webkit-keyframes expandOutUp{0%{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}to{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}}@-moz-keyframes expandOutUp{0%{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}to{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}}@-ms-keyframes expandOutUp{0%{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}to{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}}@-o-keyframes expandOutUp{0%{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}to{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}}@keyframes expandOutUp{0%{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}to{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left top 0;-moz-transform-origin:left top 0;-ms-transform-origin:left top 0;-o-transform-origin:left top 0;transform-origin:left top 0}}@-webkit-keyframes expandOutDown{0%{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}to{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}}@-moz-keyframes expandOutDown{0%{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}to{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}}@-ms-keyframes expandOutDown{0%{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}to{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}}@-o-keyframes expandOutDown{0%{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}to{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}}@keyframes expandOutDown{0%{opacity:1;-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-ms-transform:scaleY(1);-o-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}to{opacity:0;-webkit-transform:scaleY(.6);-moz-transform:scaleY(.6);-ms-transform:scaleY(.6);-o-transform:scaleY(.6);transform:scaleY(.6);-webkit-transform-origin:left bottom 0;-moz-transform-origin:left bottom 0;-ms-transform-origin:left bottom 0;-o-transform-origin:left bottom 0;transform-origin:left bottom 0}}@-webkit-keyframes expandOutWithFade{0%{opacity:1}70%{opacity:0}to{opacity:0}}@-moz-keyframes expandOutWithFade{0%{opacity:1}70%{opacity:0}to{opacity:0}}@-ms-keyframes expandOutWithFade{0%{opacity:1}70%{opacity:0}to{opacity:0}}@-o-keyframes expandOutWithFade{0%{opacity:1}70%{opacity:0}to{opacity:0}}@keyframes expandOutWithFade{0%{opacity:1}70%{opacity:0}to{opacity:0}}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}to{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}@-moz-keyframes pulse{0%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}to{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}@-ms-keyframes pulse{0%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}to{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}@-o-keyframes pulse{0%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}to{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}to{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}.fadeIn{-webkit-animation-name:fadeIn;-moz-animation-name:fadeIn;-ms-animation-name:fadeIn;-o-animation-name:fadeIn;animation-name:fadeIn;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.fadeInDown{-webkit-animation-name:fadeInDown;-moz-animation-name:fadeInDown;-ms-animation-name:fadeInDown;-o-animation-name:fadeInDown;animation-name:fadeInDown;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);-moz-animation-timing-function:cubic-bezier(.23,1,.32,1);-ms-animation-timing-function:cubic-bezier(.23,1,.32,1);-o-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.fadeInDown,.fadeInLeft{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.fadeInLeft{-webkit-animation-name:fadeInLeft;-moz-animation-name:fadeInLeft;-ms-animation-name:fadeInLeft;-o-animation-name:fadeInLeft;animation-name:fadeInLeft;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);-moz-animation-timing-function:cubic-bezier(.23,1,.32,1);-ms-animation-timing-function:cubic-bezier(.23,1,.32,1);-o-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.fadeInRight{-webkit-animation-name:fadeInRight;-moz-animation-name:fadeInRight;-ms-animation-name:fadeInRight;-o-animation-name:fadeInRight;animation-name:fadeInRight;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);-moz-animation-timing-function:cubic-bezier(.23,1,.32,1);-ms-animation-timing-function:cubic-bezier(.23,1,.32,1);-o-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.fadeInRight,.fadeInUp{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.fadeInUp{-webkit-animation-name:fadeInUp;-moz-animation-name:fadeInUp;-ms-animation-name:fadeInUp;-o-animation-name:fadeInUp;animation-name:fadeInUp;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.fadeOut{-webkit-animation-name:fadeOut;-moz-animation-name:fadeOut;-ms-animation-name:fadeOut;-o-animation-name:fadeOut;animation-name:fadeOut;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.35s;-moz-animation-duration:.35s;-ms-animation-duration:.35s;-o-animation-duration:.35s;animation-duration:.35s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.fadeOut,.fadeOutDown{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.fadeOutDown{-webkit-animation-name:fadeOutDown;-moz-animation-name:fadeOutDown;-ms-animation-name:fadeOutDown;-o-animation-name:fadeOutDown;animation-name:fadeOutDown;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.25s;-moz-animation-duration:.25s;-ms-animation-duration:.25s;-o-animation-duration:.25s;animation-duration:.25s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;-moz-animation-name:fadeOutLeft;-ms-animation-name:fadeOutLeft;-o-animation-name:fadeOutLeft;animation-name:fadeOutLeft;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.25s;-moz-animation-duration:.25s;-ms-animation-duration:.25s;-o-animation-duration:.25s;animation-duration:.25s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.fadeOutLeft,.fadeOutRight{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.fadeOutRight{-webkit-animation-name:fadeOutRight;-moz-animation-name:fadeOutRight;-ms-animation-name:fadeOutRight;-o-animation-name:fadeOutRight;animation-name:fadeOutRight;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.25s;-moz-animation-duration:.25s;-ms-animation-duration:.25s;-o-animation-duration:.25s;animation-duration:.25s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.fadeOutUp{-webkit-animation-name:fadeOutUp;-moz-animation-name:fadeOutUp;-ms-animation-name:fadeOutUp;-o-animation-name:fadeOutUp;animation-name:fadeOutUp;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.25s;-moz-animation-duration:.25s;-ms-animation-duration:.25s;-o-animation-duration:.25s;animation-duration:.25s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.slideInUp{-webkit-animation-name:slideInUp;-moz-animation-name:slideInUp;-ms-animation-name:slideInUp;-o-animation-name:slideInUp;animation-name:slideInUp;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.35s;-moz-animation-duration:.35s;-ms-animation-duration:.35s;-o-animation-duration:.35s;animation-duration:.35s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.slideInDown,.slideInUp{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.slideInDown{-webkit-animation-name:slideInDown;-moz-animation-name:slideInDown;-ms-animation-name:slideInDown;-o-animation-name:slideInDown;animation-name:slideInDown;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.35s;-moz-animation-duration:.35s;-ms-animation-duration:.35s;-o-animation-duration:.35s;animation-duration:.35s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.slideInLeft{-webkit-animation-name:slideInLeft;-moz-animation-name:slideInLeft;-ms-animation-name:slideInLeft;-o-animation-name:slideInLeft;animation-name:slideInLeft;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.35s;-moz-animation-duration:.35s;-ms-animation-duration:.35s;-o-animation-duration:.35s;animation-duration:.35s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.slideInLeft,.slideInRight{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.slideInRight{-webkit-animation-name:slideInRight;-moz-animation-name:slideInRight;-ms-animation-name:slideInRight;-o-animation-name:slideInRight;animation-name:slideInRight;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.35s;-moz-animation-duration:.35s;-ms-animation-duration:.35s;-o-animation-duration:.35s;animation-duration:.35s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.slideOutUp{-webkit-animation-name:slideOutUp;-moz-animation-name:slideOutUp;-ms-animation-name:slideOutUp;-o-animation-name:slideOutUp;animation-name:slideOutUp;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.slideOutRight,.slideOutUp{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.slideOutRight{-webkit-animation-name:slideOutRight;-moz-animation-name:slideOutRight;-ms-animation-name:slideOutRight;-o-animation-name:slideOutRight;animation-name:slideOutRight;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.slideOutLeft{-webkit-animation-name:slideOutLeft;-moz-animation-name:slideOutLeft;-ms-animation-name:slideOutLeft;-o-animation-name:slideOutLeft;animation-name:slideOutLeft;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.slideOutDown,.slideOutLeft{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.slideOutDown{-webkit-animation-name:slideOutDown;-moz-animation-name:slideOutDown;-ms-animation-name:slideOutDown;-o-animation-name:slideOutDown;animation-name:slideOutDown;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.zoomIn{-webkit-animation-name:zoomIn;-moz-animation-name:zoomIn;-ms-animation-name:zoomIn;-o-animation-name:zoomIn;animation-name:zoomIn;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);-moz-animation-timing-function:cubic-bezier(.23,1,.32,1);-ms-animation-timing-function:cubic-bezier(.23,1,.32,1);-o-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.zoomIn,.zoomOut{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.zoomOut{-webkit-animation-name:zoomOut;-moz-animation-name:zoomOut;-ms-animation-name:zoomOut;-o-animation-name:zoomOut;animation-name:zoomOut;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.expandInDown{-webkit-animation-name:expandInDown;-moz-animation-name:expandInDown;-ms-animation-name:expandInDown;-o-animation-name:expandInDown;animation-name:expandInDown;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);-moz-animation-timing-function:cubic-bezier(.23,1,.32,1);-ms-animation-timing-function:cubic-bezier(.23,1,.32,1);-o-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.expandInDown,.expandOutUp{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.expandOutUp{-webkit-animation-name:expandOutUp;-moz-animation-name:expandOutUp;-ms-animation-name:expandOutUp;-o-animation-name:expandOutUp;animation-name:expandOutUp;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.15s;-moz-animation-duration:.15s;-ms-animation-duration:.15s;-o-animation-duration:.15s;animation-duration:.15s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);-moz-animation-timing-function:cubic-bezier(.23,1,.32,1);-ms-animation-timing-function:cubic-bezier(.23,1,.32,1);-o-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.expandInUp{-webkit-animation-name:expandInUp;-moz-animation-name:expandInUp;-ms-animation-name:expandInUp;-o-animation-name:expandInUp;animation-name:expandInUp;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);-moz-animation-timing-function:cubic-bezier(.23,1,.32,1);-ms-animation-timing-function:cubic-bezier(.23,1,.32,1);-o-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.expandInUp,.expandOutDown{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.expandOutDown{-webkit-animation-name:expandOutDown;-moz-animation-name:expandOutDown;-ms-animation-name:expandOutDown;-o-animation-name:expandOutDown;animation-name:expandOutDown;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.15s;-moz-animation-duration:.15s;-ms-animation-duration:.15s;-o-animation-duration:.15s;animation-duration:.15s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);-moz-animation-timing-function:cubic-bezier(.23,1,.32,1);-ms-animation-timing-function:cubic-bezier(.23,1,.32,1);-o-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.fadeInDownSmall{-webkit-animation-name:fadeInDownSmall;-moz-animation-name:fadeInDownSmall;-ms-animation-name:fadeInDownSmall;-o-animation-name:fadeInDownSmall;animation-name:fadeInDownSmall;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);-moz-animation-timing-function:cubic-bezier(.23,1,.32,1);-ms-animation-timing-function:cubic-bezier(.23,1,.32,1);-o-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.fadeInDownSmall,.fadeOutUpSmall{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.fadeOutUpSmall{-webkit-animation-name:fadeOutUpSmall;-moz-animation-name:fadeOutUpSmall;-ms-animation-name:fadeOutUpSmall;-o-animation-name:fadeOutUpSmall;animation-name:fadeOutUpSmall;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.25s;-moz-animation-duration:.25s;-ms-animation-duration:.25s;-o-animation-duration:.25s;animation-duration:.25s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.zoomInBig{-webkit-animation-name:zoomInBig;-moz-animation-name:zoomInBig;-ms-animation-name:zoomInBig;-o-animation-name:zoomInBig;animation-name:zoomInBig;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.2s;-moz-animation-duration:.2s;-ms-animation-duration:.2s;-o-animation-duration:.2s;animation-duration:.2s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);-moz-animation-timing-function:cubic-bezier(0,0,.2,1);-ms-animation-timing-function:cubic-bezier(0,0,.2,1);-o-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.zoomInBig,.zoomOutBig{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.zoomOutBig{-webkit-animation-name:zoomOutBig;-moz-animation-name:zoomOutBig;-ms-animation-name:zoomOutBig;-o-animation-name:zoomOutBig;animation-name:zoomOutBig;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.2s;-moz-animation-duration:.2s;-ms-animation-duration:.2s;-o-animation-duration:.2s;animation-duration:.2s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);-moz-animation-timing-function:cubic-bezier(0,0,.2,1);-ms-animation-timing-function:cubic-bezier(0,0,.2,1);-o-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.pulse{-webkit-animation-name:pulse;-moz-animation-name:pulse;-ms-animation-name:pulse;-o-animation-name:pulse;animation-name:pulse;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.3s;-moz-animation-duration:.3s;-ms-animation-duration:.3s;-o-animation-duration:.3s;animation-duration:.3s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);-moz-animation-timing-function:cubic-bezier(.4,0,.2,1);-ms-animation-timing-function:cubic-bezier(.4,0,.2,1);-o-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.expand-enter{overflow:hidden}.expand-enter-active{transition:all .3s ease-out}.expand-enter-active>*{-webkit-animation-name:expandInWithFade;-moz-animation-name:expandInWithFade;-ms-animation-name:expandInWithFade;-o-animation-name:expandInWithFade;animation-name:expandInWithFade;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.2s;-moz-animation-duration:.2s;-ms-animation-duration:.2s;-o-animation-duration:.2s;animation-duration:.2s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);-moz-animation-timing-function:cubic-bezier(.23,1,.32,1);-ms-animation-timing-function:cubic-bezier(.23,1,.32,1);-o-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1);-webkit-animation-fill-mode:forwards;-moz-animation-fill-mode:forwards;-ms-animation-fill-mode:forwards;-o-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.expand-leave{overflow:hidden}.expand-leave-active{transition:all .2s ease-out}.expand-leave-active>*{-webkit-animation-name:expandOutWithFade;-moz-animation-name:expandOutWithFade;-ms-animation-name:expandOutWithFade;-o-animation-name:expandOutWithFade;animation-name:expandOutWithFade;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;-ms-animation-iteration-count:1;-o-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-duration:.2s;-moz-animation-duration:.2s;-ms-animation-duration:.2s;-o-animation-duration:.2s;animation-duration:.2s;-webkit-animation-delay:0s;-moz-animation-delay:0s;-ms-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);-moz-animation-timing-function:cubic-bezier(.23,1,.32,1);-ms-animation-timing-function:cubic-bezier(.23,1,.32,1);-o-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1);-webkit-animation-fill-mode:forwards;-moz-animation-fill-mode:forwards;-ms-animation-fill-mode:forwards;-o-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.next-icon[dir=rtl]:before{transform:rotateY(180deg)}@font-face{font-family:NextIcon;src:url(../console-ui/public/fonts/font_1533967_slipq25tezj.eot);src:url(../console-ui/public/fonts/font_1533967_slipq25tezj.eot?#iefix) format("embedded-opentype"),url(../console-ui/public/fonts/font_1533967_slipq25tezj.woff2) format("woff2"),url(../console-ui/public/fonts/font_1533967_slipq25tezj.woff) format("woff"),url(../console-ui/public/fonts/font_1533967_slipq25tezj.ttf) format("truetype"),url(../console-ui/public/fonts/font_1533967_slipq25tezj.svg#NextIcon) format("svg");font-display:swap}.next-icon{display:inline-block;font-family:NextIcon;font-style:normal;font-weight:400;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.next-icon:before{display:inline-block;vertical-align:middle;text-align:center}.next-icon-smile:before{content:"î"}.next-icon-cry:before{content:"î"}.next-icon-success:before{content:"î"}.next-icon-warning:before{content:"î"}.next-icon-prompt:before{content:"î"}.next-icon-error:before{content:"î"}.next-icon-help:before{content:"î³"}.next-icon-clock:before{content:"î¡"}.next-icon-success-filling:before{content:"îº"}.next-icon-delete-filling:before{content:"î£"}.next-icon-favorites-filling:before{content:"î"}.next-icon-add:before{content:"î"}.next-icon-minus:before{content:"î"}.next-icon-arrow-up:before{content:"î¥"}.next-icon-arrow-down:before{content:"î½"}.next-icon-arrow-left:before{content:"î"}.next-icon-arrow-right:before{content:"î"}.next-icon-arrow-double-left:before{content:"î"}.next-icon-arrow-double-right:before{content:"î"}.next-icon-switch:before{content:"î³"}.next-icon-sorting:before{content:"î´"}.next-icon-descending:before{content:"î"}.next-icon-ascending:before{content:"î"}.next-icon-select:before{content:"î²"}.next-icon-semi-select:before{content:"î³"}.next-icon-search:before{content:"î"}.next-icon-close:before{content:"î¦"}.next-icon-ellipsis:before{content:"î"}.next-icon-picture:before{content:"î±"}.next-icon-calendar:before{content:"î"}.next-icon-ashbin:before{content:"î¹"}.next-icon-upload:before{content:"î®"}.next-icon-download:before{content:"î¨"}.next-icon-set:before{content:"î"}.next-icon-edit:before{content:"î»"}.next-icon-refresh:before{content:"î·"}.next-icon-filter:before{content:"î§"}.next-icon-attachment:before{content:"î¥"}.next-icon-account:before{content:"î"}.next-icon-email:before{content:"î
"}.next-icon-atm:before{content:"î"}.next-icon-loading:before{content:"î";animation:loadingCircle 1s linear infinite}.next-icon-eye:before{content:"î"}.next-icon-copy:before{content:"î"}.next-icon-toggle-left:before{content:"î"}.next-icon-toggle-right:before{content:"î"}.next-icon-eye-close:before{content:"î"}.next-icon-unlock:before{content:"î"}.next-icon-lock:before{content:"î"}.next-icon-exit:before{content:"î"}.next-icon-chart-bar:before{content:"î"}.next-icon-chart-pie:before{content:"î"}.next-icon-form:before{content:"î»"}.next-icon-detail:before{content:"î¸"}.next-icon-list:before{content:"î¹"}.next-icon-dashboard:before{content:"îº"}.next-icon.next-xxs .next-icon-remote,.next-icon.next-xxs:before{width:8px;font-size:8px;line-height:inherit}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-icon.next-xxs{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-icon.next-xxs:before{width:16px;font-size:16px}}.next-icon.next-xs .next-icon-remote,.next-icon.next-xs:before{width:12px;font-size:12px;line-height:inherit}.next-icon.next-small .next-icon-remote,.next-icon.next-small:before{width:16px;font-size:16px;line-height:inherit}.next-icon.next-medium .next-icon-remote,.next-icon.next-medium:before{width:20px;font-size:20px;line-height:inherit}.next-icon.next-large .next-icon-remote,.next-icon.next-large:before{width:24px;font-size:24px;line-height:inherit}.next-icon.next-xl .next-icon-remote,.next-icon.next-xl:before{width:32px;font-size:32px;line-height:inherit}.next-icon.next-xxl .next-icon-remote,.next-icon.next-xxl:before{width:48px;font-size:48px;line-height:inherit}.next-icon.next-xxxl .next-icon-remote,.next-icon.next-xxxl:before{width:64px;font-size:64px;line-height:inherit}.next-icon.next-inherit .next-icon-remote,.next-icon.next-inherit:before{width:inherit;font-size:inherit;line-height:inherit}.next-icon .next-icon-remote,.next-icon.next-inherit .next-icon-remote{width:1em;height:1em;vertical-align:middle;fill:currentColor}.next-overlay-wrapper .next-overlay-inner{z-index:1001}.next-overlay-wrapper .next-overlay-backdrop{position:fixed;z-index:1001;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.3);transition:opacity .3s cubic-bezier(.4,0,.2,1);opacity:0}.next-overlay-wrapper.opened .next-overlay-backdrop{opacity:1}.next-loading-fusion-reactor[dir=rtl]{-webkit-animation-name:nextVectorRouteRTL;-moz-animation-name:nextVectorRouteRTL;-ms-animation-name:nextVectorRouteRTL;-o-animation-name:nextVectorRouteRTL;animation-name:nextVectorRouteRTL}@-webkit-keyframes nextVectorRouteRTL{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}5%{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}25%{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}30%{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}50%{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}55%{-webkit-transform:rotate(-270deg);-moz-transform:rotate(-270deg);-ms-transform:rotate(-270deg);-o-transform:rotate(-270deg);transform:rotate(-270deg)}75%{-webkit-transform:rotate(-270deg);-moz-transform:rotate(-270deg);-ms-transform:rotate(-270deg);-o-transform:rotate(-270deg);transform:rotate(-270deg)}80%{-webkit-transform:rotate(-1turn);-moz-transform:rotate(-1turn);-ms-transform:rotate(-1turn);-o-transform:rotate(-1turn);transform:rotate(-1turn)}to{-webkit-transform:rotate(-1turn);-moz-transform:rotate(-1turn);-ms-transform:rotate(-1turn);-o-transform:rotate(-1turn);transform:rotate(-1turn)}}@-moz-keyframes nextVectorRouteRTL{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}5%{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}25%{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}30%{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}50%{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}55%{-webkit-transform:rotate(-270deg);-moz-transform:rotate(-270deg);-ms-transform:rotate(-270deg);-o-transform:rotate(-270deg);transform:rotate(-270deg)}75%{-webkit-transform:rotate(-270deg);-moz-transform:rotate(-270deg);-ms-transform:rotate(-270deg);-o-transform:rotate(-270deg);transform:rotate(-270deg)}80%{-webkit-transform:rotate(-1turn);-moz-transform:rotate(-1turn);-ms-transform:rotate(-1turn);-o-transform:rotate(-1turn);transform:rotate(-1turn)}to{-webkit-transform:rotate(-1turn);-moz-transform:rotate(-1turn);-ms-transform:rotate(-1turn);-o-transform:rotate(-1turn);transform:rotate(-1turn)}}@-ms-keyframes nextVectorRouteRTL{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}5%{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}25%{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}30%{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}50%{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}55%{-webkit-transform:rotate(-270deg);-moz-transform:rotate(-270deg);-ms-transform:rotate(-270deg);-o-transform:rotate(-270deg);transform:rotate(-270deg)}75%{-webkit-transform:rotate(-270deg);-moz-transform:rotate(-270deg);-ms-transform:rotate(-270deg);-o-transform:rotate(-270deg);transform:rotate(-270deg)}80%{-webkit-transform:rotate(-1turn);-moz-transform:rotate(-1turn);-ms-transform:rotate(-1turn);-o-transform:rotate(-1turn);transform:rotate(-1turn)}to{-webkit-transform:rotate(-1turn);-moz-transform:rotate(-1turn);-ms-transform:rotate(-1turn);-o-transform:rotate(-1turn);transform:rotate(-1turn)}}@-o-keyframes nextVectorRouteRTL{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}5%{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}25%{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}30%{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}50%{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}55%{-webkit-transform:rotate(-270deg);-moz-transform:rotate(-270deg);-ms-transform:rotate(-270deg);-o-transform:rotate(-270deg);transform:rotate(-270deg)}75%{-webkit-transform:rotate(-270deg);-moz-transform:rotate(-270deg);-ms-transform:rotate(-270deg);-o-transform:rotate(-270deg);transform:rotate(-270deg)}80%{-webkit-transform:rotate(-1turn);-moz-transform:rotate(-1turn);-ms-transform:rotate(-1turn);-o-transform:rotate(-1turn);transform:rotate(-1turn)}to{-webkit-transform:rotate(-1turn);-moz-transform:rotate(-1turn);-ms-transform:rotate(-1turn);-o-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes nextVectorRouteRTL{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}5%{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}25%{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}30%{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}50%{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}55%{-webkit-transform:rotate(-270deg);-moz-transform:rotate(-270deg);-ms-transform:rotate(-270deg);-o-transform:rotate(-270deg);transform:rotate(-270deg)}75%{-webkit-transform:rotate(-270deg);-moz-transform:rotate(-270deg);-ms-transform:rotate(-270deg);-o-transform:rotate(-270deg);transform:rotate(-270deg)}80%{-webkit-transform:rotate(-1turn);-moz-transform:rotate(-1turn);-ms-transform:rotate(-1turn);-o-transform:rotate(-1turn);transform:rotate(-1turn)}to{-webkit-transform:rotate(-1turn);-moz-transform:rotate(-1turn);-ms-transform:rotate(-1turn);-o-transform:rotate(-1turn);transform:rotate(-1turn)}}.next-loading{position:relative}.next-loading.next-open{pointer-events:none}.next-loading .next-loading-component{opacity:.7;-webkit-filter:blur(1px);filter:blur(1px);filter:"progid:DXImageTransform.Microsoft.Blur(PixelRadius=1, MakeShadow=false)";position:relative;pointer-events:none}.next-loading-masker{position:absolute;top:0;bottom:0;left:0;right:0;z-index:99;opacity:.2;background:#fff}.next-loading-inline{display:inline-block}.next-loading-tip{display:block;position:absolute;top:50%;left:50%;z-index:4;transform:translate(-50%,-50%);text-align:center}.next-loading-tip-fullscreen{top:inherit;left:inherit;transform:inherit}.next-loading-tip-placeholder{display:none}.next-loading-right-tip .next-loading-indicator{display:inline-block}.next-loading-right-tip .next-loading-tip-content{position:absolute;display:block;top:50%;right:0;transform:translateY(-50%)}.next-loading-right-tip .next-loading-tip-placeholder{display:inline-block;visibility:hidden;margin-left:1em}.next-loading-fusion-reactor{display:inline-block;width:40px;height:40px;position:relative;margin:0;-webkit-animation-duration:5.6s;-moz-animation-duration:5.6s;-ms-animation-duration:5.6s;-o-animation-duration:5.6s;animation-duration:5.6s;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-o-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation-timing-function:linear;-ms-animation-timing-function:linear;-o-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-name:nextVectorRoute;-moz-animation-name:nextVectorRoute;-ms-animation-name:nextVectorRoute;-o-animation-name:nextVectorRoute;animation-name:nextVectorRoute}.next-loading-fusion-reactor .next-loading-dot{position:absolute;margin:auto;width:12px;height:12px;border-radius:50%;background:#209bfa;-webkit-animation-timing-function:ease-in-out;-moz-animation-timing-function:ease-in-out;-ms-animation-timing-function:ease-in-out;-o-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-o-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-duration:1.4s;-moz-animation-duration:1.4s;-ms-animation-duration:1.4s;-o-animation-duration:1.4s;animation-duration:1.4s}.next-loading-fusion-reactor .next-loading-dot:first-child{top:0;bottom:0;left:0;-webkit-animation-name:nextVectorDotsX;-moz-animation-name:nextVectorDotsX;-ms-animation-name:nextVectorDotsX;-o-animation-name:nextVectorDotsX;animation-name:nextVectorDotsX}.next-loading-fusion-reactor .next-loading-dot:nth-child(2){left:0;right:0;top:0;opacity:.8;-webkit-animation-name:nextVectorDotsY;-moz-animation-name:nextVectorDotsY;-ms-animation-name:nextVectorDotsY;-o-animation-name:nextVectorDotsY;animation-name:nextVectorDotsY}.next-loading-fusion-reactor .next-loading-dot:nth-child(3){top:0;bottom:0;right:0;opacity:.6;-webkit-animation-name:nextVectorDotsXR;-moz-animation-name:nextVectorDotsXR;-ms-animation-name:nextVectorDotsXR;-o-animation-name:nextVectorDotsXR;animation-name:nextVectorDotsXR}.next-loading-fusion-reactor .next-loading-dot:nth-child(4){left:0;right:0;bottom:0;opacity:.2;-webkit-animation-name:nextVectorDotsYR;-moz-animation-name:nextVectorDotsYR;-ms-animation-name:nextVectorDotsYR;-o-animation-name:nextVectorDotsYR;animation-name:nextVectorDotsYR}.next-loading-medium-fusion-reactor{width:24px;height:24px}.next-loading-medium-fusion-reactor .next-loading-dot{width:8px;height:8px}.next-loading-medium-fusion-reactor .next-loading-dot:first-child{-webkit-animation-name:nextVectorDotsX-medium;-moz-animation-name:nextVectorDotsX-medium;-ms-animation-name:nextVectorDotsX-medium;-o-animation-name:nextVectorDotsX-medium;animation-name:nextVectorDotsX-medium}.next-loading-medium-fusion-reactor .next-loading-dot:nth-child(2){-webkit-animation-name:nextVectorDotsY-medium;-moz-animation-name:nextVectorDotsY-medium;-ms-animation-name:nextVectorDotsY-medium;-o-animation-name:nextVectorDotsY-medium;animation-name:nextVectorDotsY-medium}.next-loading-medium-fusion-reactor .next-loading-dot:nth-child(3){-webkit-animation-name:nextVectorDotsXR-medium;-moz-animation-name:nextVectorDotsXR-medium;-ms-animation-name:nextVectorDotsXR-medium;-o-animation-name:nextVectorDotsXR-medium;animation-name:nextVectorDotsXR-medium}.next-loading-medium-fusion-reactor .next-loading-dot:nth-child(4){-webkit-animation-name:nextVectorDotsYR-medium;-moz-animation-name:nextVectorDotsYR-medium;-ms-animation-name:nextVectorDotsYR-medium;-o-animation-name:nextVectorDotsYR-medium;animation-name:nextVectorDotsYR-medium}@-webkit-keyframes nextVectorRoute{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}5%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}25%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}30%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}50%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}55%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}75%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}80%{-webkit-transform:rotate(1turn);-moz-transform:rotate(1turn);-ms-transform:rotate(1turn);-o-transform:rotate(1turn);transform:rotate(1turn)}to{-webkit-transform:rotate(1turn);-moz-transform:rotate(1turn);-ms-transform:rotate(1turn);-o-transform:rotate(1turn);transform:rotate(1turn)}}@-moz-keyframes nextVectorRoute{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}5%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}25%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}30%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}50%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}55%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}75%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}80%{-webkit-transform:rotate(1turn);-moz-transform:rotate(1turn);-ms-transform:rotate(1turn);-o-transform:rotate(1turn);transform:rotate(1turn)}to{-webkit-transform:rotate(1turn);-moz-transform:rotate(1turn);-ms-transform:rotate(1turn);-o-transform:rotate(1turn);transform:rotate(1turn)}}@-ms-keyframes nextVectorRoute{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}5%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}25%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}30%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}50%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}55%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}75%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}80%{-webkit-transform:rotate(1turn);-moz-transform:rotate(1turn);-ms-transform:rotate(1turn);-o-transform:rotate(1turn);transform:rotate(1turn)}to{-webkit-transform:rotate(1turn);-moz-transform:rotate(1turn);-ms-transform:rotate(1turn);-o-transform:rotate(1turn);transform:rotate(1turn)}}@-o-keyframes nextVectorRoute{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}5%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}25%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}30%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}50%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}55%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}75%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}80%{-webkit-transform:rotate(1turn);-moz-transform:rotate(1turn);-ms-transform:rotate(1turn);-o-transform:rotate(1turn);transform:rotate(1turn)}to{-webkit-transform:rotate(1turn);-moz-transform:rotate(1turn);-ms-transform:rotate(1turn);-o-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes nextVectorRoute{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}5%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}25%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}30%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}50%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}55%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}75%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}80%{-webkit-transform:rotate(1turn);-moz-transform:rotate(1turn);-ms-transform:rotate(1turn);-o-transform:rotate(1turn);transform:rotate(1turn)}to{-webkit-transform:rotate(1turn);-moz-transform:rotate(1turn);-ms-transform:rotate(1turn);-o-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes nextVectorDotsYR{25%{bottom:0}45%,50%{bottom:12.8px;height:14.4px;width:14.4px}90%{bottom:0;height:12px;width:12px}}@-moz-keyframes nextVectorDotsYR{25%{bottom:0}45%,50%{bottom:12.8px;height:14.4px;width:14.4px}90%{bottom:0;height:12px;width:12px}}@-ms-keyframes nextVectorDotsYR{25%{bottom:0}45%,50%{bottom:12.8px;height:14.4px;width:14.4px}90%{bottom:0;height:12px;width:12px}}@-o-keyframes nextVectorDotsYR{25%{bottom:0}45%,50%{bottom:12.8px;height:14.4px;width:14.4px}90%{bottom:0;height:12px;width:12px}}@keyframes nextVectorDotsYR{25%{bottom:0}45%,50%{bottom:12.8px;height:14.4px;width:14.4px}90%{bottom:0;height:12px;width:12px}}@-webkit-keyframes nextVectorDotsY{25%{top:0}45%,50%{top:12.8px;height:14.4px;width:14.4px}90%{top:0;height:12px;width:12px}}@-moz-keyframes nextVectorDotsY{25%{top:0}45%,50%{top:12.8px;height:14.4px;width:14.4px}90%{top:0;height:12px;width:12px}}@-ms-keyframes nextVectorDotsY{25%{top:0}45%,50%{top:12.8px;height:14.4px;width:14.4px}90%{top:0;height:12px;width:12px}}@-o-keyframes nextVectorDotsY{25%{top:0}45%,50%{top:12.8px;height:14.4px;width:14.4px}90%{top:0;height:12px;width:12px}}@keyframes nextVectorDotsY{25%{top:0}45%,50%{top:12.8px;height:14.4px;width:14.4px}90%{top:0;height:12px;width:12px}}@-webkit-keyframes nextVectorDotsX{25%{left:0}45%,50%{left:12.8px;width:14.4px;height:14.4px}90%{left:0;height:12px;width:12px}}@-moz-keyframes nextVectorDotsX{25%{left:0}45%,50%{left:12.8px;width:14.4px;height:14.4px}90%{left:0;height:12px;width:12px}}@-ms-keyframes nextVectorDotsX{25%{left:0}45%,50%{left:12.8px;width:14.4px;height:14.4px}90%{left:0;height:12px;width:12px}}@-o-keyframes nextVectorDotsX{25%{left:0}45%,50%{left:12.8px;width:14.4px;height:14.4px}90%{left:0;height:12px;width:12px}}@keyframes nextVectorDotsX{25%{left:0}45%,50%{left:12.8px;width:14.4px;height:14.4px}90%{left:0;height:12px;width:12px}}@-webkit-keyframes nextVectorDotsXR{25%{right:0}45%,50%{right:12.8px;width:14.4px;height:14.4px}90%{right:0;height:12px;width:12px}}@-moz-keyframes nextVectorDotsXR{25%{right:0}45%,50%{right:12.8px;width:14.4px;height:14.4px}90%{right:0;height:12px;width:12px}}@-ms-keyframes nextVectorDotsXR{25%{right:0}45%,50%{right:12.8px;width:14.4px;height:14.4px}90%{right:0;height:12px;width:12px}}@-o-keyframes nextVectorDotsXR{25%{right:0}45%,50%{right:12.8px;width:14.4px;height:14.4px}90%{right:0;height:12px;width:12px}}@keyframes nextVectorDotsXR{25%{right:0}45%,50%{right:12.8px;width:14.4px;height:14.4px}90%{right:0;height:12px;width:12px}}@-webkit-keyframes nextVectorDotsYR-medium{25%{bottom:0}45%,50%{bottom:7.2px;height:9.6px;width:9.6px}90%{bottom:0;height:8px;width:8px}}@-moz-keyframes nextVectorDotsYR-medium{25%{bottom:0}45%,50%{bottom:7.2px;height:9.6px;width:9.6px}90%{bottom:0;height:8px;width:8px}}@-ms-keyframes nextVectorDotsYR-medium{25%{bottom:0}45%,50%{bottom:7.2px;height:9.6px;width:9.6px}90%{bottom:0;height:8px;width:8px}}@-o-keyframes nextVectorDotsYR-medium{25%{bottom:0}45%,50%{bottom:7.2px;height:9.6px;width:9.6px}90%{bottom:0;height:8px;width:8px}}@keyframes nextVectorDotsYR-medium{25%{bottom:0}45%,50%{bottom:7.2px;height:9.6px;width:9.6px}90%{bottom:0;height:8px;width:8px}}@-webkit-keyframes nextVectorDotsY-medium{25%{top:0}45%,50%{top:7.2px;height:9.6px;width:9.6px}90%{top:0;height:8px;width:8px}}@-moz-keyframes nextVectorDotsY-medium{25%{top:0}45%,50%{top:7.2px;height:9.6px;width:9.6px}90%{top:0;height:8px;width:8px}}@-ms-keyframes nextVectorDotsY-medium{25%{top:0}45%,50%{top:7.2px;height:9.6px;width:9.6px}90%{top:0;height:8px;width:8px}}@-o-keyframes nextVectorDotsY-medium{25%{top:0}45%,50%{top:7.2px;height:9.6px;width:9.6px}90%{top:0;height:8px;width:8px}}@keyframes nextVectorDotsY-medium{25%{top:0}45%,50%{top:7.2px;height:9.6px;width:9.6px}90%{top:0;height:8px;width:8px}}@-webkit-keyframes nextVectorDotsX-medium{25%{left:0}45%,50%{left:7.2px;width:9.6px;height:9.6px}90%{left:0;height:8px;width:8px}}@-moz-keyframes nextVectorDotsX-medium{25%{left:0}45%,50%{left:7.2px;width:9.6px;height:9.6px}90%{left:0;height:8px;width:8px}}@-ms-keyframes nextVectorDotsX-medium{25%{left:0}45%,50%{left:7.2px;width:9.6px;height:9.6px}90%{left:0;height:8px;width:8px}}@-o-keyframes nextVectorDotsX-medium{25%{left:0}45%,50%{left:7.2px;width:9.6px;height:9.6px}90%{left:0;height:8px;width:8px}}@keyframes nextVectorDotsX-medium{25%{left:0}45%,50%{left:7.2px;width:9.6px;height:9.6px}90%{left:0;height:8px;width:8px}}@-webkit-keyframes nextVectorDotsXR-medium{25%{right:0}45%,50%{right:7.2px;width:9.6px;height:9.6px}90%{right:0;height:8px;width:8px}}@-moz-keyframes nextVectorDotsXR-medium{25%{right:0}45%,50%{right:7.2px;width:9.6px;height:9.6px}90%{right:0;height:8px;width:8px}}@-ms-keyframes nextVectorDotsXR-medium{25%{right:0}45%,50%{right:7.2px;width:9.6px;height:9.6px}90%{right:0;height:8px;width:8px}}@-o-keyframes nextVectorDotsXR-medium{25%{right:0}45%,50%{right:7.2px;width:9.6px;height:9.6px}90%{right:0;height:8px;width:8px}}@keyframes nextVectorDotsXR-medium{25%{right:0}45%,50%{right:7.2px;width:9.6px;height:9.6px}90%{right:0;height:8px;width:8px}}.next-radio-button-large[dir=rtl]>label:first-child{margin-left:-1px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-left-radius:0;border-bottom-left-radius:0}.next-radio-button-large[dir=rtl]>label:last-child{margin-left:0;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.next-radio-button-large[dir=rtl] .next-radio-label{height:38px;line-height:38px;font-size:16px}.next-radio-button-medium[dir=rtl]>label:first-child{margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:3px;border-bottom-right-radius:3px}.next-radio-button-medium[dir=rtl]>label:last-child{margin-left:0;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.next-radio-button-small[dir=rtl]>label:first-child{margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:3px;border-bottom-right-radius:3px}.next-radio-button-small[dir=rtl]>label:last-child{margin-left:0;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.next-radio-wrapper[dir=rtl] .next-radio-label{margin-left:0;margin-right:4px}.next-radio-group[dir=rtl] .next-radio-label{margin-right:4px;margin-left:16px}.next-radio-button[dir=rtl]>label .next-radio-label{margin:0}.next-radio-wrapper{outline:0;display:inline-block}.next-radio-wrapper .next-radio{box-sizing:border-box;display:inline-block;vertical-align:middle;position:relative;line-height:1}.next-radio-wrapper .next-radio *,.next-radio-wrapper .next-radio :after,.next-radio-wrapper .next-radio :before{box-sizing:border-box}.next-radio-wrapper .next-radio input[type=radio]{opacity:0;position:absolute;vertical-align:middle;top:0;left:0;width:16px;height:16px;margin:0;cursor:pointer}.next-radio-wrapper .next-radio-inner{display:block;width:16px;height:16px;background:#fff;border-radius:50%;border:1px solid #ddd;transition:all .1s linear;box-shadow:none}.next-radio-wrapper .next-radio-inner:after{transform:scale(0);position:absolute;border-radius:50%;top:50%;margin-top:-2px;left:50%;margin-left:-2px;background:#fff;content:"";transition:all .1s linear}.next-radio-wrapper.checked .next-radio-inner{border-color:#209bfa;background:#209bfa}.next-radio-wrapper.checked .next-radio-inner:after{width:4px;height:4px;font-weight:700;background:#fff;transform:scale(1)}.next-radio-wrapper.checked.hovered .next-radio-inner,.next-radio-wrapper.checked:hover .next-radio-inner{border-color:transparent}.next-radio-wrapper.disabled input[type=radio]{cursor:not-allowed}.next-radio-wrapper.disabled .next-radio-inner{border-color:#eee;background:#fafafa}.next-radio-wrapper.disabled .next-radio-inner:after{background:#ccc}.next-radio-wrapper.disabled .next-radio-inner.hovered,.next-radio-wrapper.disabled .next-radio-inner:hover{border-color:#eee}.next-radio-wrapper.disabled.checked .next-radio-inner{border-color:#eee;background:#fafafa}.next-radio-wrapper.disabled.checked .next-radio-inner:after{background:#ccc}.next-radio-wrapper.disabled .next-radio-label{color:#ccc}.next-radio-wrapper:not(.disabled).hovered .next-radio-inner,.next-radio-wrapper:not(.disabled):hover .next-radio-inner{border-color:#209bfa;background-color:#add9ff}.next-radio-wrapper:not(.disabled).hovered .next-radio-label,.next-radio-wrapper:not(.disabled):hover .next-radio-label{cursor:pointer}.next-radio-wrapper.checked:not(.disabled).hovered .next-radio-inner,.next-radio-wrapper.checked:not(.disabled):hover .next-radio-inner{border-color:transparent;background:#1274e7}.next-radio-wrapper.checked:not(.disabled).hovered .next-radio-inner:after,.next-radio-wrapper.checked:not(.disabled):hover .next-radio-inner:after{background:#fff}.next-radio-button .next-radio,.next-radio-button input[type=radio]{width:0;height:0}.next-radio-button>label{display:inline-block;box-sizing:border-box;position:relative;z-index:1;margin:0 0 0 -1px;border:1px solid #ddd;background-color:#fff;transition:all .1s linear;vertical-align:middle}.next-radio-button>label .next-radio-label{display:block;color:#333;margin:0;transition:all .1s linear}.next-radio-button>label.hovered,.next-radio-button>label:hover{z-index:10;border-color:#ccc;background-color:#f9f9f9}.next-radio-button>label.hovered .next-radio-label,.next-radio-button>label:hover .next-radio-label{color:#333}.next-radio-button>label.checked{z-index:11;border-color:#209bfa;background-color:#fff}.next-radio-button>label.checked .next-radio-label{color:#209bfa}.next-radio-button>label.disabled{z-index:0;cursor:not-allowed;border-color:#eee;background-color:#fafafa}.next-radio-button>label.disabled .next-radio-label{color:#ccc}.next-radio-button>label.checked.disabled{z-index:0;border-color:#eee;background-color:#f9f9f9}.next-radio-button>label.checked.disabled .next-radio-label{color:#ccc}.next-radio-button-large>label{padding:0 8px;height:40px;line-height:40px}.next-radio-button-large>label:first-child{margin-left:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.next-radio-button-large>label:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.next-radio-button-large .next-radio-label{height:38px;line-height:38px;font-size:16px}.next-radio-button-medium>label{padding:0 8px;height:32px;line-height:32px}.next-radio-button-medium>label:first-child{margin-left:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.next-radio-button-medium>label:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.next-radio-button-medium .next-radio-label{height:30px;line-height:30px;font-size:14px}.next-radio-button-small>label{padding:0 8px;height:20px;line-height:20px}.next-radio-button-small>label:first-child{margin-left:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.next-radio-button-small>label:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.next-radio-button-small .next-radio-label{height:18px;line-height:18px;font-size:12px}.next-radio-single-input input[type=radio]{opacity:0;position:absolute;top:0;left:0;margin:0}.next-radio-group{display:inline-block}.next-radio-group .next-radio-wrapper{margin-right:12px}.next-radio-group .next-radio-wrapper:last-child{margin-right:0}.next-radio-group .next-radio-label{color:#333}.next-radio-group.disabled .next-radio-label{color:#ccc}.next-radio-group.next-radio-button .next-radio-wrapper{margin-right:0}.next-radio-group-ver .next-radio-wrapper{display:block;margin-bottom:8px}.next-radio-label{margin:0 4px;font-size:14px;vertical-align:middle;line-height:1;color:#333}@-moz-document url-prefix(){.next-radio{margin-top:-1px}@supports(animation:calc(0s)){.next-radio{margin-top:-3px}}}.next-badge{position:relative;display:inline-block;vertical-align:middle;line-height:1}.next-badge,.next-badge *,.next-badge :after,.next-badge :before{box-sizing:border-box}.next-badge .next-badge-count{color:#fff;background:#d23c26;text-align:center;white-space:nowrap;border-radius:8px;position:absolute;width:auto;height:16px;min-width:16px;padding:0 4px;font-size:12px;line-height:16px;transform:translateX(-50%);top:-.5em}.next-badge .next-badge-count a,.next-badge .next-badge-count a:hover{color:#fff}.next-badge .next-badge-dot{color:#fff;background:#d23c26;text-align:center;white-space:nowrap;border-radius:8px;position:absolute;width:8px;height:8px;min-width:8px;padding:0;font-size:1px;line-height:1;transform:translateX(-50%);top:-.5em}.next-badge .next-badge-dot a,.next-badge .next-badge-dot a:hover{color:#fff}.next-badge .next-badge-custom{line-height:1.166667;white-space:nowrap;font-size:12px;padding-left:4px;padding-right:4px;border-radius:3px;transform:translateX(-50%)}.next-badge .next-badge-custom>*{line-height:1}.next-badge .next-badge-custom>.next-icon:before,.next-badge .next-badge-custom>i:before{font-size:inherit;width:auto;vertical-align:top}.next-badge .next-badge-scroll-number{position:absolute;top:-4px;z-index:10;overflow:hidden;transform-origin:left center}.next-badge-scroll-number-only{position:relative;display:inline-block;transition:transform .1s linear,-webkit-transform .1s linear;min-width:8px}.next-badge-scroll-number-only span{display:block;height:16px;line-height:16px;font-size:12px}.next-badge-not-a-wrapper .next-badge-count,.next-badge-not-a-wrapper .next-badge-custom,.next-badge-not-a-wrapper .next-badge-dot{position:relative;display:block;top:auto;transform:translateX(0)}.next-badge-list-wrapper{margin-left:0}.next-badge-list-wrapper li{margin-bottom:0;list-style:none}.next-badge[dir=rtl] .next-badge-custom{padding-right:4px;padding-left:4px}.next-badge[dir=rtl] .next-badge-scroll-number{left:0;transform-origin:right center}.next-balloon{position:absolute;top:0;max-width:300px;border-style:solid;border-radius:3px;font-size:14px;font-weight:400;word-wrap:break-all;word-wrap:break-word;z-index:0}.next-balloon,.next-balloon *,.next-balloon :after,.next-balloon :before{box-sizing:border-box}.next-balloon:focus,.next-balloon :focus{outline:0}.next-balloon-title{margin-bottom:8px;font-size:16px;font-weight:700}.next-balloon-title.next-balloon-closable{padding:0 40px 0 0}.next-balloon-title.next-balloon-closable .next-balloon-close{top:-1px;transform:translateY(16px);right:16px}.next-balloon-primary{color:#333;border-color:#209bfa;background-color:#add9ff;box-shadow:0 1px 3px 0 rgba(0,0,0,.12);border-width:1px}.next-balloon-primary .next-balloon-close{position:absolute;top:-1px;transform:translateY(15px);right:12px;font-size:16px;cursor:pointer;color:#999}.next-balloon-primary .next-balloon-close .next-icon{width:16px;height:16px;line-height:1em}.next-balloon-primary .next-balloon-close .next-icon:before{width:16px;height:16px;font-size:16px;line-height:1em}.next-balloon-primary .next-balloon-close :hover{color:#333}.next-balloon-primary:after{position:absolute;width:12px;height:12px;content:"";transform:rotate(45deg);box-sizing:content-box!important;border:1px solid #209bfa;background-color:#add9ff;z-index:-1}.next-balloon-primary.next-balloon-top:after{top:-7px;left:calc(50% - 7px);border-right:none;border-bottom:none}.next-balloon-primary.next-balloon-right:after{top:calc(50% - 7px);right:-7px;border-left:none;border-bottom:none}.next-balloon-primary.next-balloon-bottom:after{bottom:-7px;left:calc(50% - 7px);border-top:none;border-left:none}.next-balloon-primary.next-balloon-left:after{top:calc(50% - 7px);left:-7px;border-top:none;border-right:none}.next-balloon-primary.next-balloon-left-top:after{top:12px;left:-7px;border-top:none;border-right:none}.next-balloon-primary.next-balloon-left-bottom:after{bottom:12px;left:-7px;border-top:none;border-right:none}.next-balloon-primary.next-balloon-right-top:after{top:12px;right:-7px;border-bottom:none;border-left:none}.next-balloon-primary.next-balloon-right-bottom:after{right:-7px;bottom:12px;border-bottom:none;border-left:none}.next-balloon-primary.next-balloon-top-left:after{top:-7px;left:12px;border-right:none;border-bottom:none}.next-balloon-primary.next-balloon-top-right:after{top:-7px;right:12px;border-right:none;border-bottom:none}.next-balloon-primary.next-balloon-bottom-left:after{bottom:-7px;left:12px;border-top:none;border-left:none}.next-balloon-primary.next-balloon-bottom-right:after{right:12px;bottom:-7px;border-top:none;border-left:none}.next-balloon-normal{color:#333;border-color:#e6e6e6;background-color:#fff;box-shadow:0 4px 8px 0 rgba(0,0,0,.12);border-width:1px}.next-balloon-normal .next-balloon-close{position:absolute;top:-1px;transform:translateY(15px);right:12px;font-size:16px;cursor:pointer;color:#999}.next-balloon-normal .next-balloon-close .next-icon{width:16px;height:16px;line-height:1em}.next-balloon-normal .next-balloon-close .next-icon:before{width:16px;height:16px;font-size:16px;line-height:1em}.next-balloon-normal .next-balloon-close :hover{color:#666}.next-balloon-normal:after{position:absolute;width:12px;height:12px;content:"";transform:rotate(45deg);box-sizing:content-box!important;border:1px solid #e6e6e6;background-color:#fff;z-index:-1}.next-balloon-normal.next-balloon-top:after{top:-7px;left:calc(50% - 7px);border-right:none;border-bottom:none}.next-balloon-normal.next-balloon-right:after{top:calc(50% - 7px);right:-7px;border-left:none;border-bottom:none}.next-balloon-normal.next-balloon-bottom:after{bottom:-7px;left:calc(50% - 7px);border-top:none;border-left:none}.next-balloon-normal.next-balloon-left:after{top:calc(50% - 7px);left:-7px;border-top:none;border-right:none}.next-balloon-normal.next-balloon-left-top:after{top:12px;left:-7px;border-top:none;border-right:none}.next-balloon-normal.next-balloon-left-bottom:after{bottom:12px;left:-7px;border-top:none;border-right:none}.next-balloon-normal.next-balloon-right-top:after{top:12px;right:-7px;border-bottom:none;border-left:none}.next-balloon-normal.next-balloon-right-bottom:after{right:-7px;bottom:12px;border-bottom:none;border-left:none}.next-balloon-normal.next-balloon-top-left:after{top:-7px;left:12px;border-right:none;border-bottom:none}.next-balloon-normal.next-balloon-top-right:after{top:-7px;right:12px;border-right:none;border-bottom:none}.next-balloon-normal.next-balloon-bottom-left:after{bottom:-7px;left:12px;border-top:none;border-left:none}.next-balloon-normal.next-balloon-bottom-right:after{right:12px;bottom:-7px;border-top:none;border-left:none}.next-balloon.visible{display:block}.next-balloon.hidden{display:none}.next-balloon-medium{padding:16px}.next-balloon-closable{padding:16px 40px 16px 16px}.next-balloon-tooltip{box-sizing:border-box;position:absolute;top:0;max-width:300px;border-radius:3px;font-size:14px;font-weight:400;z-index:0;word-wrap:break-all;word-wrap:break-word;color:#fafafa;background-color:#333;box-shadow:none;border:1px solid transparent}.next-balloon-tooltip *,.next-balloon-tooltip :after,.next-balloon-tooltip :before{box-sizing:border-box}.next-balloon-tooltip .next-balloon-arrow{position:absolute;display:block;width:24px;height:24px;overflow:hidden;background:0 0;pointer-events:none}.next-balloon-tooltip .next-balloon-arrow .next-balloon-arrow-content{content:"";position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:12px;height:12px;margin:auto;background-color:#333;border:1px solid transparent;pointer-events:auto}.next-balloon-tooltip-top .next-balloon-arrow{top:-24px;left:calc(50% - 12px)}.next-balloon-tooltip-top .next-balloon-arrow .next-balloon-arrow-content{transform:translateY(12px) rotate(45deg)}.next-balloon-tooltip-right .next-balloon-arrow{top:calc(50% - 12px);right:-24px}.next-balloon-tooltip-right .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(-12px) rotate(45deg)}.next-balloon-tooltip-bottom .next-balloon-arrow{left:calc(50% - 12px);bottom:-24px}.next-balloon-tooltip-bottom .next-balloon-arrow .next-balloon-arrow-content{transform:translateY(-12px) rotate(45deg)}.next-balloon-tooltip-left .next-balloon-arrow{top:calc(50% - 12px);left:-24px}.next-balloon-tooltip-left .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(12px) rotate(45deg)}.next-balloon-tooltip-left-top .next-balloon-arrow{top:6px;left:-24px}.next-balloon-tooltip-left-top .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(12px) rotate(45deg)}.next-balloon-tooltip-left-bottom .next-balloon-arrow{bottom:6px;left:-24px}.next-balloon-tooltip-left-bottom .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(12px) rotate(45deg)}.next-balloon-tooltip-right-top .next-balloon-arrow{top:6px;right:-24px}.next-balloon-tooltip-right-top .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(-12px) rotate(45deg)}.next-balloon-tooltip-right-bottom .next-balloon-arrow{bottom:6px;right:-24px}.next-balloon-tooltip-right-bottom .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(-12px) rotate(45deg)}.next-balloon-tooltip-top-left .next-balloon-arrow{left:6px;top:-24px}.next-balloon-tooltip-top-left .next-balloon-arrow .next-balloon-arrow-content{transform:translateY(12px) rotate(45deg)}.next-balloon-tooltip-top-right .next-balloon-arrow{right:6px;top:-24px}.next-balloon-tooltip-top-right .next-balloon-arrow .next-balloon-arrow-content{transform:translateY(12px) rotate(45deg)}.next-balloon-tooltip-bottom-left .next-balloon-arrow{left:6px;bottom:-24px}.next-balloon-tooltip-bottom-left .next-balloon-arrow .next-balloon-arrow-content{transform:translateY(-12px) rotate(45deg)}.next-balloon-tooltip-bottom-right .next-balloon-arrow{right:6px;bottom:-24px}.next-balloon-tooltip-bottom-right .next-balloon-arrow .next-balloon-arrow-content{transform:translateY(-12px) rotate(45deg)}.next-balloon-tooltip.visible{display:block}.next-balloon-tooltip.hidden{display:none}.next-balloon-tooltip-medium{padding:8px}.next-balloon[dir=rtl].next-balloon-primary .next-balloon-close{left:12px;right:auto}.next-balloon[dir=rtl].next-balloon-primary.next-balloon-right:after{left:-7px;right:auto;border-right:none;border-top:none;border-left:inherit;border-bottom:inherit}.next-balloon[dir=rtl].next-balloon-primary.next-balloon-left-bottom:after,.next-balloon[dir=rtl].next-balloon-primary.next-balloon-left-top:after,.next-balloon[dir=rtl].next-balloon-primary.next-balloon-left:after{right:-7px;left:auto;border-left:none;border-bottom:none;border-right:inherit;border-top:inherit}.next-balloon[dir=rtl].next-balloon-primary.next-balloon-right-bottom:after,.next-balloon[dir=rtl].next-balloon-primary.next-balloon-right-top:after{left:-7px;right:auto;border-right:none;border-top:none;border-bottom:inherit;border-left:inherit}.next-balloon[dir=rtl].next-balloon-primary.next-balloon-top-left:after{right:12px;left:auto}.next-balloon[dir=rtl].next-balloon-primary.next-balloon-top-right:after{right:auto;left:12px}.next-balloon[dir=rtl].next-balloon-primary.next-balloon-bottom-left:after{right:12px;left:auto}.next-balloon[dir=rtl].next-balloon-normal .next-balloon-close,.next-balloon[dir=rtl].next-balloon-primary.next-balloon-bottom-right:after{left:12px;right:auto}.next-balloon[dir=rtl].next-balloon-normal.next-balloon-right:after{left:-7px;right:auto;border-right:none;border-top:none;border-left:inherit;border-bottom:inherit}.next-balloon[dir=rtl].next-balloon-normal.next-balloon-left-bottom:after,.next-balloon[dir=rtl].next-balloon-normal.next-balloon-left-top:after,.next-balloon[dir=rtl].next-balloon-normal.next-balloon-left:after{right:-7px;left:auto;border-left:none;border-bottom:none;border-right:inherit;border-top:inherit}.next-balloon[dir=rtl].next-balloon-normal.next-balloon-right-bottom:after,.next-balloon[dir=rtl].next-balloon-normal.next-balloon-right-top:after{left:-7px;right:auto;border-right:none;border-top:none;border-bottom:inherit;border-left:inherit}.next-balloon[dir=rtl].next-balloon-normal.next-balloon-top-left:after{right:12px;left:auto}.next-balloon[dir=rtl].next-balloon-normal.next-balloon-top-right:after{right:auto;left:12px}.next-balloon[dir=rtl].next-balloon-normal.next-balloon-bottom-left:after{right:12px;left:auto}.next-balloon[dir=rtl].next-balloon-normal.next-balloon-bottom-right:after{left:12px;right:auto}.next-balloon[dir=rtl].next-balloon-closable{padding:16px 16px 16px 40px}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-right .next-balloon-arrow{left:-24px;right:auto}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-right .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(12px) rotate(45deg)}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-left .next-balloon-arrow{right:-24px;left:auto}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-left .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(-12px) rotate(45deg)}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-left-top .next-balloon-arrow{right:-24px;left:auto}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-left-top .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(-12px) rotate(45deg)}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-left-bottom .next-balloon-arrow{right:-24px;left:auto}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-left-bottom .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(-12px) rotate(45deg)}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-right-top .next-balloon-arrow{left:-24px;right:auto}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-right-top .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(12px) rotate(45deg)}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-right-bottom .next-balloon-arrow{left:-24px;right:auto}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-right-bottom .next-balloon-arrow .next-balloon-arrow-content{transform:translateX(12px) rotate(45deg)}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-top-left .next-balloon-arrow{right:10px;left:auto}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-top-right .next-balloon-arrow{left:10px;right:auto}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-bottom-left .next-balloon-arrow{right:10px;left:auto}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-bottom-right .next-balloon-arrow{left:10px;right:auto}.next-balloon-tooltip[dir=rtl].next-balloon-tooltip-medium{padding:8px}.next-menu[dir=rtl] .next-menu-item-helper{float:left}.next-menu[dir=rtl] .next-menu-item .next-checkbox,.next-menu[dir=rtl] .next-menu-item .next-radio{margin-left:4px;margin-right:0}.next-menu[dir=rtl] .next-menu-hoz-right{float:left}.next-menu[dir=rtl] .next-menu-hoz-icon-arrow.next-icon{left:6px;right:auto}.next-menu[dir=rtl] .next-menu-icon-selected.next-icon{margin-left:0;margin-right:-18px}.next-menu[dir=rtl] .next-menu-icon-selected.next-icon .next-icon-remote,.next-menu[dir=rtl] .next-menu-icon-selected.next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-menu[dir=rtl] .next-menu-icon-selected.next-icon.next-menu-icon-right{right:auto;left:4px}.next-menu[dir=rtl] .next-menu-icon-arrow.next-icon{left:10px;right:auto}.next-menu{position:relative;min-width:100px;margin:0;list-style:none;border:1px solid #e6e6e6;border-radius:3px;box-shadow:none;background:#fff;line-height:32px;font-size:14px;animation-duration:.3s;animation-timing-function:ease}.next-menu,.next-menu *,.next-menu :after,.next-menu :before{box-sizing:border-box}.next-menu:focus,.next-menu :focus{outline:0}.next-menu-spacing-lr{padding:0}.next-menu-spacing-lr.next-menu-outside>.next-menu{height:100%;overflow-y:auto}.next-menu-spacing-tb{padding:0}.next-menu.next-ver{padding:8px 0}.next-menu.next-ver .next-menu-item{padding:0 20px}.next-menu.next-hoz{padding:8px 0}.next-menu.next-hoz .next-menu-item{padding:0 20px}.next-menu-embeddable,.next-menu-embeddable .next-menu-item.next-disabled,.next-menu-embeddable .next-menu-item.next-disabled .next-menu-item-text>a{background:transparent;border:none}.next-menu-embeddable{box-shadow:none}.next-menu-embeddable .next-menu-item-inner{height:100%}.next-menu-content{position:relative}.next-menu-content,.next-menu-sub-menu{padding:0;margin:0;list-style:none}.next-menu-sub-menu.next-expand-enter{overflow:hidden}.next-menu-sub-menu.next-expand-enter-active{transition:height .3s ease}.next-menu-sub-menu.next-expand-leave{overflow:hidden}.next-menu-sub-menu.next-expand-leave-active{transition:height .3s ease}.next-menu-item{position:relative;transition:background .1s linear;color:#333;cursor:pointer}.next-menu-item-helper{float:right;color:#999;font-style:normal;font-size:14px}.next-menu-item .next-checkbox,.next-menu-item .next-radio{margin-right:4px}.next-menu-item.next-selected{color:#333;background-color:#fff}.next-menu-item.next-selected .next-menu-icon-arrow{color:#666}.next-menu-item.next-selected .next-menu-icon-selected{color:#209bfa}.next-menu-item.next-disabled,.next-menu-item.next-disabled .next-menu-item-text>a{color:#ccc;background-color:#fff;cursor:not-allowed}.next-menu-item.next-disabled .next-menu-icon-arrow,.next-menu-item.next-disabled .next-menu-icon-selected,.next-menu-item.next-disabled .next-menu-item-text>a .next-menu-icon-arrow,.next-menu-item.next-disabled .next-menu-item-text>a .next-menu-icon-selected{color:#ccc}.next-menu-item:not(.next-disabled).next-focused,.next-menu-item:not(.next-disabled).next-selected.next-focused,.next-menu-item:not(.next-disabled).next-selected.next-focused:hover,.next-menu-item:not(.next-disabled).next-selected:focus,.next-menu-item:not(.next-disabled).next-selected:focus:hover,.next-menu-item:not(.next-disabled).next-selected:hover,.next-menu-item:not(.next-disabled):hover{color:#333;background-color:#f9f9f9}.next-menu-item:not(.next-disabled).next-focused .next-menu-icon-arrow,.next-menu-item:not(.next-disabled).next-selected.next-focused .next-menu-icon-arrow,.next-menu-item:not(.next-disabled).next-selected.next-focused:hover .next-menu-icon-arrow,.next-menu-item:not(.next-disabled).next-selected:focus .next-menu-icon-arrow,.next-menu-item:not(.next-disabled).next-selected:focus:hover .next-menu-icon-arrow,.next-menu-item:not(.next-disabled).next-selected:hover .next-menu-icon-arrow,.next-menu-item:not(.next-disabled):hover .next-menu-icon-arrow{color:#333}.next-menu-item:not(.next-disabled).next-focused .next-menu-icon-selected,.next-menu-item:not(.next-disabled).next-selected.next-focused .next-menu-icon-selected,.next-menu-item:not(.next-disabled).next-selected.next-focused:hover .next-menu-icon-selected,.next-menu-item:not(.next-disabled).next-selected:focus .next-menu-icon-selected,.next-menu-item:not(.next-disabled).next-selected:focus:hover .next-menu-icon-selected,.next-menu-item:not(.next-disabled).next-selected:hover .next-menu-icon-selected,.next-menu-item:not(.next-disabled):hover .next-menu-icon-selected{color:#209bfa}.next-menu-item-inner{height:32px;font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.next-menu-item .next-menu-item-text{vertical-align:middle}.next-menu-item .next-menu-item-text>a{display:inline-block;text-decoration:none;color:#333}.next-menu-item .next-menu-item-text>a:before{position:absolute;background-color:transparent;top:0;left:0;bottom:0;right:0;content:""}.next-menu.next-hoz{padding:0}.next-menu.next-hoz.next-menu-nowrap{overflow:hidden;white-space:nowrap}.next-menu.next-hoz.next-menu-nowrap .next-menu-more{text-align:center}.next-menu.next-hoz .next-menu-content>.next-menu-item,.next-menu.next-hoz>.next-menu-item,.next-menu.next-hoz>.next-menu-sub-menu-wrapper{display:inline-block;vertical-align:top}.next-menu.next-hoz .next-menu-content,.next-menu.next-hoz .next-menu-footer,.next-menu.next-hoz .next-menu-header{display:inline-block}.next-menu-hoz-right{float:right}.next-menu-group-label{padding:0 12px;color:#999}.next-menu-divider{margin:8px 12px;border-bottom:1px solid #eee}.next-menu .next-menu-icon-selected.next-icon{position:absolute;top:0;margin-left:-16px}.next-menu .next-menu-icon-selected.next-icon .next-icon-remote,.next-menu .next-menu-icon-selected.next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-menu .next-menu-icon-selected.next-icon.next-menu-icon-right{right:4px}.next-menu .next-menu-symbol-icon-selected.next-menu-icon-selected:before{content:"î²"}.next-menu .next-menu-icon-arrow.next-icon{position:absolute;top:0;right:10px;color:#666;transition:all .1s linear}.next-menu .next-menu-icon-arrow.next-icon .next-icon-remote,.next-menu .next-menu-icon-arrow.next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-menu .next-menu-icon-arrow-down:before{content:"î½"}.next-menu .next-menu-icon-arrow-down.next-open{transform:rotate(180deg)}.next-menu .next-menu-icon-arrow-down.next-open .next-icon-remote,.next-menu .next-menu-icon-arrow-down.next-open:before{width:20px;font-size:20px;line-height:inherit}.next-menu .next-menu-symbol-popupfold:before{content:"î"}.next-menu .next-menu-icon-arrow-right.next-open{transform:rotate(-90deg)}.next-menu .next-menu-icon-arrow-right.next-open .next-icon-remote,.next-menu .next-menu-icon-arrow-right.next-open:before{width:20px;font-size:20px;line-height:inherit}.next-menu .next-menu-hoz-icon-arrow.next-icon{position:absolute;top:0;right:6px;color:#666;transition:all .1s linear}.next-menu .next-menu-hoz-icon-arrow.next-icon .next-icon-remote,.next-menu .next-menu-hoz-icon-arrow.next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-menu .next-menu-hoz-icon-arrow.next-icon:before{content:"î½"}.next-menu-unfold-icon:before{content:""}.next-menu .next-menu-hoz-icon-arrow.next-open{transform:rotate(180deg)}.next-menu .next-menu-hoz-icon-arrow.next-open .next-icon-remote,.next-menu .next-menu-hoz-icon-arrow.next-open:before{width:12px;font-size:12px;line-height:inherit}.next-menu.next-context{line-height:24px}.next-menu.next-context .next-menu-item-inner{height:24px}.next-breadcrumb{display:block;margin:0;padding:0;white-space:nowrap;height:16px;line-height:16px}.next-breadcrumb .next-breadcrumb-item{display:inline-block}.next-breadcrumb .next-breadcrumb-item .next-breadcrumb-text{display:inline-block;text-decoration:none;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;transition:all .1s linear}.next-breadcrumb .next-breadcrumb-item .next-breadcrumb-text>b{font-weight:400}.next-breadcrumb .next-breadcrumb-item .next-breadcrumb-separator{display:inline-block;vertical-align:top}.next-breadcrumb .next-breadcrumb-text{height:16px;min-width:16px;font-size:12px;line-height:16px}.next-breadcrumb .next-breadcrumb-separator{height:16px;margin:0 8px;font-size:16px;line-height:16px}.next-breadcrumb .next-breadcrumb-separator .next-icon:before{display:block}.next-breadcrumb .next-breadcrumb-separator .next-icon .next-icon-remote,.next-breadcrumb .next-breadcrumb-separator .next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-breadcrumb .next-breadcrumb-text-ellipsis{font-size:12px}.next-breadcrumb .next-breadcrumb-text{color:#666}.next-breadcrumb .next-breadcrumb-text>b{color:#209bfa}.next-breadcrumb .next-breadcrumb-text>a{color:#666;text-decoration:none;text-align:center}.next-breadcrumb .next-breadcrumb-text.activated,.next-breadcrumb .next-breadcrumb-text.activated>a{color:#333;font-weight:700}.next-breadcrumb .next-breadcrumb-text-ellipsis{color:#666;cursor:default}.next-breadcrumb .next-breadcrumb-text-ellipsis-clickable{color:#666;cursor:pointer}.next-breadcrumb .next-breadcrumb-separator{color:#999}.next-breadcrumb .next-breadcrumb-text:not(.next-breadcrumb-text-ellipsis):hover>a,.next-breadcrumb a.next-breadcrumb-text.activated:hover>a,.next-breadcrumb a.next-breadcrumb-text:not(.next-breadcrumb-text-ellipsis):hover,.next-breadcrumb a.next-breadcrumb-text:not(.next-breadcrumb-text-ellipsis):hover>b{color:#209bfa}.next-breadcrumb a.next-breadcrumb-text.activated:hover{color:#209bfa;font-weight:700}.next-breadcrumb-icon-sep:before{content:"î"}.next-breadcrumb-dropdown-wrapper{padding:4px 0}.next-btn,.next-btn *,.next-btn :after,.next-btn :before{box-sizing:border-box}.next-btn::-moz-focus-inner{border:0;padding:0}.next-btn,.next-btn:active,.next-btn:focus,.next-btn:hover{outline:0}@keyframes loadingCircle{0%{transform-origin:50% 50%;transform:rotate(0deg)}to{transform-origin:50% 50%;transform:rotate(1turn)}}.next-btn{position:relative;display:inline-block;box-shadow:none;text-decoration:none;text-align:center;text-transform:none;white-space:nowrap;vertical-align:middle;user-select:none;transition:all .1s linear;line-height:1;cursor:pointer}.next-btn:after{text-align:center;position:absolute;opacity:0;visibility:hidden;transition:opacity .1s linear}.next-btn:before{content:"";height:100%;width:0}.next-btn .next-icon,.next-btn:before{display:inline-block;vertical-align:middle}.next-btn .next-icon{font-size:0}.next-btn>.next-btn-helper,.next-btn>div,.next-btn>span{display:inline-block;vertical-align:middle}.next-btn>.next-btn-helper{text-decoration:inherit}.next-btn.hover,.next-btn:hover{box-shadow:none}.next-btn.next-small{border-radius:3px;padding:0 16px;height:24px;font-size:12px;border-width:1px}.next-btn.next-small>.next-btn-icon.next-icon-first{transform:scale(1);margin-left:0;margin-right:4px}.next-btn.next-small>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn.next-small>.next-btn-icon.next-icon-first:before{width:12px;font-size:12px;line-height:inherit}.next-btn.next-small>.next-btn-icon.next-icon-last{transform:scale(1);margin-left:4px;margin-right:0}.next-btn.next-small>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn.next-small>.next-btn-icon.next-icon-last:before{width:12px;font-size:12px;line-height:inherit}.next-btn.next-small>.next-btn-icon.next-icon-alone{transform:scale(1)}.next-btn.next-small>.next-btn-icon.next-icon-alone .next-icon-remote,.next-btn.next-small>.next-btn-icon.next-icon-alone:before{width:12px;font-size:12px;line-height:inherit}.next-btn.next-small.next-btn-loading:before{width:12px;height:12px;font-size:12px;line-height:12px;left:16px;top:50%;text-align:center;margin-right:4px}.next-btn.next-small.next-btn-loading>.next-icon{display:none}.next-btn.next-small>.next-btn-custom-loading-icon{opacity:0;width:0}.next-btn.next-small>.next-btn-custom-loading-icon.show{width:12px;margin-right:4px;opacity:1;transition:all .1s linear}.next-btn.next-medium{border-radius:3px;padding:0 20px;height:32px;font-size:14px;border-width:1px}.next-btn.next-medium>.next-btn-icon.next-icon-first{transform:scale(1);margin-left:0;margin-right:4px}.next-btn.next-medium>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn.next-medium>.next-btn-icon.next-icon-first:before{width:20px;font-size:20px;line-height:inherit}.next-btn.next-medium>.next-btn-icon.next-icon-last{transform:scale(1);margin-left:4px;margin-right:0}.next-btn.next-medium>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn.next-medium>.next-btn-icon.next-icon-last:before{width:20px;font-size:20px;line-height:inherit}.next-btn.next-medium>.next-btn-icon.next-icon-alone{transform:scale(1)}.next-btn.next-medium>.next-btn-icon.next-icon-alone .next-icon-remote,.next-btn.next-medium>.next-btn-icon.next-icon-alone:before{width:20px;font-size:20px;line-height:inherit}.next-btn.next-medium.next-btn-loading:before{width:20px;height:20px;font-size:20px;line-height:20px;left:20px;top:50%;text-align:center;margin-right:4px}.next-btn.next-medium.next-btn-loading>.next-icon{display:none}.next-btn.next-medium>.next-btn-custom-loading-icon{opacity:0;width:0}.next-btn.next-medium>.next-btn-custom-loading-icon.show{width:20px;margin-right:4px;opacity:1;transition:all .1s linear}.next-btn.next-large{border-radius:3px;padding:0 24px;height:40px;font-size:16px;border-width:1px}.next-btn.next-large>.next-btn-icon.next-icon-first{transform:scale(1);margin-left:0;margin-right:4px}.next-btn.next-large>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn.next-large>.next-btn-icon.next-icon-first:before{width:20px;font-size:20px;line-height:inherit}.next-btn.next-large>.next-btn-icon.next-icon-last{transform:scale(1);margin-left:4px;margin-right:0}.next-btn.next-large>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn.next-large>.next-btn-icon.next-icon-last:before{width:20px;font-size:20px;line-height:inherit}.next-btn.next-large>.next-btn-icon.next-icon-alone{transform:scale(1)}.next-btn.next-large>.next-btn-icon.next-icon-alone .next-icon-remote,.next-btn.next-large>.next-btn-icon.next-icon-alone:before{width:20px;font-size:20px;line-height:inherit}.next-btn.next-large.next-btn-loading:before{width:20px;height:20px;font-size:20px;line-height:20px;left:24px;top:50%;text-align:center;margin-right:4px}.next-btn.next-large.next-btn-loading>.next-icon{display:none}.next-btn.next-large>.next-btn-custom-loading-icon{opacity:0;width:0}.next-btn.next-large>.next-btn-custom-loading-icon.show{width:20px;margin-right:4px;opacity:1;transition:all .1s linear}.next-btn.next-btn-normal{border-style:solid;background:#fff;border-color:#ddd}.next-btn.next-btn-normal,.next-btn.next-btn-normal.visited,.next-btn.next-btn-normal:link,.next-btn.next-btn-normal:visited{color:#333}.next-btn.next-btn-normal.active,.next-btn.next-btn-normal.hover,.next-btn.next-btn-normal:active,.next-btn.next-btn-normal:focus,.next-btn.next-btn-normal:hover{color:#333;background:#f9f9f9;border-color:#ccc;text-decoration:none}.next-btn.next-btn-primary{border-style:solid;background:#209bfa;border-color:transparent}.next-btn.next-btn-primary,.next-btn.next-btn-primary.visited,.next-btn.next-btn-primary:link,.next-btn.next-btn-primary:visited{color:#fff}.next-btn.next-btn-primary.active,.next-btn.next-btn-primary.hover,.next-btn.next-btn-primary:active,.next-btn.next-btn-primary:focus,.next-btn.next-btn-primary:hover{color:#fff;background:#1274e7;border-color:transparent;text-decoration:none}.next-btn.next-btn-secondary{border-style:solid;background:#fff;border-color:#209bfa}.next-btn.next-btn-secondary,.next-btn.next-btn-secondary.visited,.next-btn.next-btn-secondary:link,.next-btn.next-btn-secondary:visited{color:#209bfa}.next-btn.next-btn-secondary.active,.next-btn.next-btn-secondary.hover,.next-btn.next-btn-secondary:active,.next-btn.next-btn-secondary:focus,.next-btn.next-btn-secondary:hover{color:#fff;background:#1274e7;border-color:#1274e7;text-decoration:none}.next-btn.disabled,.next-btn[disabled]{cursor:not-allowed}.next-btn.disabled.next-btn-normal,.next-btn[disabled].next-btn-normal{background:#fafafa;border-color:#eee}.next-btn.disabled.next-btn-normal,.next-btn.disabled.next-btn-normal.visited,.next-btn.disabled.next-btn-normal:link,.next-btn.disabled.next-btn-normal:visited,.next-btn[disabled].next-btn-normal,.next-btn[disabled].next-btn-normal.visited,.next-btn[disabled].next-btn-normal:link,.next-btn[disabled].next-btn-normal:visited{color:#ccc}.next-btn.disabled.next-btn-normal.active,.next-btn.disabled.next-btn-normal.hover,.next-btn.disabled.next-btn-normal:active,.next-btn.disabled.next-btn-normal:focus,.next-btn.disabled.next-btn-normal:hover,.next-btn[disabled].next-btn-normal.active,.next-btn[disabled].next-btn-normal.hover,.next-btn[disabled].next-btn-normal:active,.next-btn[disabled].next-btn-normal:focus,.next-btn[disabled].next-btn-normal:hover{color:#ccc;background:#fafafa;border-color:#eee;text-decoration:none}.next-btn.disabled.next-btn-primary,.next-btn[disabled].next-btn-primary{background:#fafafa;border-color:#eee}.next-btn.disabled.next-btn-primary,.next-btn.disabled.next-btn-primary.visited,.next-btn.disabled.next-btn-primary:link,.next-btn.disabled.next-btn-primary:visited,.next-btn[disabled].next-btn-primary,.next-btn[disabled].next-btn-primary.visited,.next-btn[disabled].next-btn-primary:link,.next-btn[disabled].next-btn-primary:visited{color:#ccc}.next-btn.disabled.next-btn-primary.active,.next-btn.disabled.next-btn-primary.hover,.next-btn.disabled.next-btn-primary:active,.next-btn.disabled.next-btn-primary:focus,.next-btn.disabled.next-btn-primary:hover,.next-btn[disabled].next-btn-primary.active,.next-btn[disabled].next-btn-primary.hover,.next-btn[disabled].next-btn-primary:active,.next-btn[disabled].next-btn-primary:focus,.next-btn[disabled].next-btn-primary:hover{color:#ccc;background:#fafafa;border-color:#eee;text-decoration:none}.next-btn.disabled.next-btn-secondary,.next-btn[disabled].next-btn-secondary{background:#fafafa;border-color:#eee}.next-btn.disabled.next-btn-secondary,.next-btn.disabled.next-btn-secondary.visited,.next-btn.disabled.next-btn-secondary:link,.next-btn.disabled.next-btn-secondary:visited,.next-btn[disabled].next-btn-secondary,.next-btn[disabled].next-btn-secondary.visited,.next-btn[disabled].next-btn-secondary:link,.next-btn[disabled].next-btn-secondary:visited{color:#ccc}.next-btn.disabled.next-btn-secondary.active,.next-btn.disabled.next-btn-secondary.hover,.next-btn.disabled.next-btn-secondary:active,.next-btn.disabled.next-btn-secondary:focus,.next-btn.disabled.next-btn-secondary:hover,.next-btn[disabled].next-btn-secondary.active,.next-btn[disabled].next-btn-secondary.hover,.next-btn[disabled].next-btn-secondary:active,.next-btn[disabled].next-btn-secondary:focus,.next-btn[disabled].next-btn-secondary:hover{color:#ccc;background:#fafafa;border-color:#eee;text-decoration:none}.next-btn-warning{border-style:solid}.next-btn-warning.next-btn-primary{background:#d23c26;border-color:#d23c26}.next-btn-warning.next-btn-primary,.next-btn-warning.next-btn-primary.visited,.next-btn-warning.next-btn-primary:link,.next-btn-warning.next-btn-primary:visited{color:#fff}.next-btn-warning.next-btn-primary.active,.next-btn-warning.next-btn-primary.hover,.next-btn-warning.next-btn-primary:active,.next-btn-warning.next-btn-primary:focus,.next-btn-warning.next-btn-primary:hover{color:#fff;background:#b7321e;border-color:#b7321e;text-decoration:none}.next-btn-warning.next-btn-primary.disabled,.next-btn-warning.next-btn-primary[disabled]{background:#fafafa;border-color:#e6e6e6}.next-btn-warning.next-btn-primary.disabled,.next-btn-warning.next-btn-primary.disabled.visited,.next-btn-warning.next-btn-primary.disabled:link,.next-btn-warning.next-btn-primary.disabled:visited,.next-btn-warning.next-btn-primary[disabled],.next-btn-warning.next-btn-primary[disabled].visited,.next-btn-warning.next-btn-primary[disabled]:link,.next-btn-warning.next-btn-primary[disabled]:visited{color:#ccc}.next-btn-warning.next-btn-primary.disabled.active,.next-btn-warning.next-btn-primary.disabled.hover,.next-btn-warning.next-btn-primary.disabled:active,.next-btn-warning.next-btn-primary.disabled:focus,.next-btn-warning.next-btn-primary.disabled:hover,.next-btn-warning.next-btn-primary[disabled].active,.next-btn-warning.next-btn-primary[disabled].hover,.next-btn-warning.next-btn-primary[disabled]:active,.next-btn-warning.next-btn-primary[disabled]:focus,.next-btn-warning.next-btn-primary[disabled]:hover{color:#ccc;background:#fafafa;border-color:#e6e6e6;text-decoration:none}.next-btn-warning.next-btn-normal{background:#fff;border-color:#d23c26}.next-btn-warning.next-btn-normal,.next-btn-warning.next-btn-normal.visited,.next-btn-warning.next-btn-normal:link,.next-btn-warning.next-btn-normal:visited{color:#d23c26}.next-btn-warning.next-btn-normal.active,.next-btn-warning.next-btn-normal.hover,.next-btn-warning.next-btn-normal:active,.next-btn-warning.next-btn-normal:focus,.next-btn-warning.next-btn-normal:hover{color:#fff;background:#b7321e;border-color:#b7321e;text-decoration:none}.next-btn-warning.next-btn-normal.disabled,.next-btn-warning.next-btn-normal[disabled]{background:#fafafa;border-color:#eee}.next-btn-warning.next-btn-normal.disabled,.next-btn-warning.next-btn-normal.disabled.visited,.next-btn-warning.next-btn-normal.disabled:link,.next-btn-warning.next-btn-normal.disabled:visited,.next-btn-warning.next-btn-normal[disabled],.next-btn-warning.next-btn-normal[disabled].visited,.next-btn-warning.next-btn-normal[disabled]:link,.next-btn-warning.next-btn-normal[disabled]:visited{color:#ccc}.next-btn-warning.next-btn-normal.disabled.active,.next-btn-warning.next-btn-normal.disabled.hover,.next-btn-warning.next-btn-normal.disabled:active,.next-btn-warning.next-btn-normal.disabled:focus,.next-btn-warning.next-btn-normal.disabled:hover,.next-btn-warning.next-btn-normal[disabled].active,.next-btn-warning.next-btn-normal[disabled].hover,.next-btn-warning.next-btn-normal[disabled]:active,.next-btn-warning.next-btn-normal[disabled]:focus,.next-btn-warning.next-btn-normal[disabled]:hover{color:#ccc;background:#fafafa;border-color:#eee;text-decoration:none}.next-btn-text{border-radius:0;user-select:text}.next-btn-text,.next-btn-text.hover,.next-btn-text:hover{box-shadow:none}.next-btn-text.next-btn-primary{background:transparent;border-color:transparent}.next-btn-text.next-btn-primary,.next-btn-text.next-btn-primary.visited,.next-btn-text.next-btn-primary:link,.next-btn-text.next-btn-primary:visited{color:#298dff}.next-btn-text.next-btn-primary.active,.next-btn-text.next-btn-primary.hover,.next-btn-text.next-btn-primary:active,.next-btn-text.next-btn-primary:focus,.next-btn-text.next-btn-primary:hover{color:#1274e7;background:transparent;border-color:transparent;text-decoration:none}.next-btn-text.next-btn-primary.disabled,.next-btn-text.next-btn-primary[disabled]{background:transparent;border-color:transparent}.next-btn-text.next-btn-primary.disabled,.next-btn-text.next-btn-primary.disabled.visited,.next-btn-text.next-btn-primary.disabled:link,.next-btn-text.next-btn-primary.disabled:visited,.next-btn-text.next-btn-primary[disabled],.next-btn-text.next-btn-primary[disabled].visited,.next-btn-text.next-btn-primary[disabled]:link,.next-btn-text.next-btn-primary[disabled]:visited{color:#ccc}.next-btn-text.next-btn-primary.disabled.active,.next-btn-text.next-btn-primary.disabled.hover,.next-btn-text.next-btn-primary.disabled:active,.next-btn-text.next-btn-primary.disabled:focus,.next-btn-text.next-btn-primary.disabled:hover,.next-btn-text.next-btn-primary[disabled].active,.next-btn-text.next-btn-primary[disabled].hover,.next-btn-text.next-btn-primary[disabled]:active,.next-btn-text.next-btn-primary[disabled]:focus,.next-btn-text.next-btn-primary[disabled]:hover{color:#ccc;background:transparent;border-color:transparent;text-decoration:none}.next-btn-text.next-btn-secondary{background:transparent;border-color:transparent}.next-btn-text.next-btn-secondary,.next-btn-text.next-btn-secondary.visited,.next-btn-text.next-btn-secondary:link,.next-btn-text.next-btn-secondary:visited{color:#666}.next-btn-text.next-btn-secondary.active,.next-btn-text.next-btn-secondary.hover,.next-btn-text.next-btn-secondary:active,.next-btn-text.next-btn-secondary:focus,.next-btn-text.next-btn-secondary:hover{color:#209bfa;background:transparent;border-color:transparent;text-decoration:none}.next-btn-text.next-btn-secondary.disabled,.next-btn-text.next-btn-secondary[disabled]{background:transparent;border-color:transparent}.next-btn-text.next-btn-secondary.disabled,.next-btn-text.next-btn-secondary.disabled.visited,.next-btn-text.next-btn-secondary.disabled:link,.next-btn-text.next-btn-secondary.disabled:visited,.next-btn-text.next-btn-secondary[disabled],.next-btn-text.next-btn-secondary[disabled].visited,.next-btn-text.next-btn-secondary[disabled]:link,.next-btn-text.next-btn-secondary[disabled]:visited{color:#ccc}.next-btn-text.next-btn-secondary.disabled.active,.next-btn-text.next-btn-secondary.disabled.hover,.next-btn-text.next-btn-secondary.disabled:active,.next-btn-text.next-btn-secondary.disabled:focus,.next-btn-text.next-btn-secondary.disabled:hover,.next-btn-text.next-btn-secondary[disabled].active,.next-btn-text.next-btn-secondary[disabled].hover,.next-btn-text.next-btn-secondary[disabled]:active,.next-btn-text.next-btn-secondary[disabled]:focus,.next-btn-text.next-btn-secondary[disabled]:hover{color:#ccc;background:transparent;border-color:transparent;text-decoration:none}.next-btn-text.next-btn-normal{background:transparent;border-color:transparent}.next-btn-text.next-btn-normal,.next-btn-text.next-btn-normal.visited,.next-btn-text.next-btn-normal:link,.next-btn-text.next-btn-normal:visited{color:#333}.next-btn-text.next-btn-normal.active,.next-btn-text.next-btn-normal.hover,.next-btn-text.next-btn-normal:active,.next-btn-text.next-btn-normal:focus,.next-btn-text.next-btn-normal:hover{color:#209bfa;background:transparent;border-color:transparent;text-decoration:none}.next-btn-text.next-btn-normal.disabled,.next-btn-text.next-btn-normal[disabled]{background:transparent;border-color:transparent}.next-btn-text.next-btn-normal.disabled,.next-btn-text.next-btn-normal.disabled.visited,.next-btn-text.next-btn-normal.disabled:link,.next-btn-text.next-btn-normal.disabled:visited,.next-btn-text.next-btn-normal[disabled],.next-btn-text.next-btn-normal[disabled].visited,.next-btn-text.next-btn-normal[disabled]:link,.next-btn-text.next-btn-normal[disabled]:visited{color:#ccc}.next-btn-text.next-btn-normal.disabled.active,.next-btn-text.next-btn-normal.disabled.hover,.next-btn-text.next-btn-normal.disabled:active,.next-btn-text.next-btn-normal.disabled:focus,.next-btn-text.next-btn-normal.disabled:hover,.next-btn-text.next-btn-normal[disabled].active,.next-btn-text.next-btn-normal[disabled].hover,.next-btn-text.next-btn-normal[disabled]:active,.next-btn-text.next-btn-normal[disabled]:focus,.next-btn-text.next-btn-normal[disabled]:hover{color:#ccc;background:transparent;border-color:transparent;text-decoration:none}.next-btn-text.next-large{border-radius:0;padding:0;height:24px;font-size:14px;border-width:0}.next-btn-text.next-large>.next-btn-icon.next-icon-first{transform:scale(1);margin-left:0;margin-right:4px}.next-btn-text.next-large>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn-text.next-large>.next-btn-icon.next-icon-first:before{width:20px;font-size:20px;line-height:inherit}.next-btn-text.next-large>.next-btn-icon.next-icon-last{transform:scale(1);margin-left:4px;margin-right:0}.next-btn-text.next-large>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn-text.next-large>.next-btn-icon.next-icon-last:before{width:20px;font-size:20px;line-height:inherit}.next-btn-text.next-large>.next-btn-icon.next-icon-alone{transform:scale(1)}.next-btn-text.next-large>.next-btn-icon.next-icon-alone .next-icon-remote,.next-btn-text.next-large>.next-btn-icon.next-icon-alone:before{width:20px;font-size:20px;line-height:inherit}.next-btn-text.next-large.next-btn-loading:before{width:20px;height:20px;font-size:20px;line-height:20px;left:0;top:50%;text-align:center;margin-right:4px}.next-btn-text.next-large.next-btn-loading>.next-icon{display:none}.next-btn-text.next-large>.next-btn-custom-loading-icon{opacity:0;width:0}.next-btn-text.next-large>.next-btn-custom-loading-icon.show{width:20px;margin-right:4px;opacity:1;transition:all .1s linear}.next-btn-text.next-medium{border-radius:0;padding:0;height:20px;font-size:14px;border-width:0}.next-btn-text.next-medium>.next-btn-icon.next-icon-first{transform:scale(1);margin-left:0;margin-right:4px}.next-btn-text.next-medium>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn-text.next-medium>.next-btn-icon.next-icon-first:before{width:20px;font-size:20px;line-height:inherit}.next-btn-text.next-medium>.next-btn-icon.next-icon-last{transform:scale(1);margin-left:4px;margin-right:0}.next-btn-text.next-medium>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn-text.next-medium>.next-btn-icon.next-icon-last:before{width:20px;font-size:20px;line-height:inherit}.next-btn-text.next-medium>.next-btn-icon.next-icon-alone{transform:scale(1)}.next-btn-text.next-medium>.next-btn-icon.next-icon-alone .next-icon-remote,.next-btn-text.next-medium>.next-btn-icon.next-icon-alone:before{width:20px;font-size:20px;line-height:inherit}.next-btn-text.next-medium.next-btn-loading:before{width:20px;height:20px;font-size:20px;line-height:20px;left:0;top:50%;text-align:center;margin-right:4px}.next-btn-text.next-medium.next-btn-loading>.next-icon{display:none}.next-btn-text.next-medium>.next-btn-custom-loading-icon{opacity:0;width:0}.next-btn-text.next-medium>.next-btn-custom-loading-icon.show{width:20px;margin-right:4px;opacity:1;transition:all .1s linear}.next-btn-text.next-small{border-radius:0;padding:0;height:16px;font-size:12px;border-width:0}.next-btn-text.next-small>.next-btn-icon.next-icon-first{transform:scale(1);margin-left:0;margin-right:4px}.next-btn-text.next-small>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn-text.next-small>.next-btn-icon.next-icon-first:before{width:12px;font-size:12px;line-height:inherit}.next-btn-text.next-small>.next-btn-icon.next-icon-last{transform:scale(1);margin-left:4px;margin-right:0}.next-btn-text.next-small>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn-text.next-small>.next-btn-icon.next-icon-last:before{width:12px;font-size:12px;line-height:inherit}.next-btn-text.next-small>.next-btn-icon.next-icon-alone{transform:scale(1)}.next-btn-text.next-small>.next-btn-icon.next-icon-alone .next-icon-remote,.next-btn-text.next-small>.next-btn-icon.next-icon-alone:before{width:12px;font-size:12px;line-height:inherit}.next-btn-text.next-small.next-btn-loading:before{width:12px;height:12px;font-size:12px;line-height:12px;left:0;top:50%;text-align:center;margin-right:4px}.next-btn-text.next-small.next-btn-loading>.next-icon{display:none}.next-btn-text.next-small>.next-btn-custom-loading-icon{opacity:0;width:0}.next-btn-text.next-small>.next-btn-custom-loading-icon.show{width:12px;margin-right:4px;opacity:1;transition:all .1s linear}.next-btn-text.next-btn-loading{background:transparent;border-color:transparent}.next-btn-text.next-btn-loading,.next-btn-text.next-btn-loading.visited,.next-btn-text.next-btn-loading:link,.next-btn-text.next-btn-loading:visited{color:#333}.next-btn-text.next-btn-loading.active,.next-btn-text.next-btn-loading.hover,.next-btn-text.next-btn-loading:active,.next-btn-text.next-btn-loading:focus,.next-btn-text.next-btn-loading:hover{color:#333;background:transparent;border-color:transparent;text-decoration:none}.next-btn-loading{pointer-events:none}.next-btn-loading:before{font-family:NextIcon;content:"î";opacity:1;visibility:visible;animation:loadingCircle 2s linear infinite}.next-btn-loading:after{content:"";display:inline-block;position:static;height:100%;width:0;vertical-align:middle}.next-btn-custom-loading{pointer-events:none}.next-btn-ghost{box-shadow:none;border-style:solid}.next-btn-ghost.next-btn-dark{background:transparent;border-color:#fff}.next-btn-ghost.next-btn-dark,.next-btn-ghost.next-btn-dark.visited,.next-btn-ghost.next-btn-dark:link,.next-btn-ghost.next-btn-dark:visited{color:#fff}.next-btn-ghost.next-btn-dark.active,.next-btn-ghost.next-btn-dark.hover,.next-btn-ghost.next-btn-dark:active,.next-btn-ghost.next-btn-dark:focus,.next-btn-ghost.next-btn-dark:hover{color:#fff;background:hsla(0,0%,100%,.8);border-color:#fff;text-decoration:none}.next-btn-ghost.next-btn-dark.disabled,.next-btn-ghost.next-btn-dark[disabled]{background:transparent;border-color:hsla(0,0%,100%,.4)}.next-btn-ghost.next-btn-dark.disabled,.next-btn-ghost.next-btn-dark.disabled.visited,.next-btn-ghost.next-btn-dark.disabled:link,.next-btn-ghost.next-btn-dark.disabled:visited,.next-btn-ghost.next-btn-dark[disabled],.next-btn-ghost.next-btn-dark[disabled].visited,.next-btn-ghost.next-btn-dark[disabled]:link,.next-btn-ghost.next-btn-dark[disabled]:visited{color:hsla(0,0%,100%,.4)}.next-btn-ghost.next-btn-dark.disabled.active,.next-btn-ghost.next-btn-dark.disabled.hover,.next-btn-ghost.next-btn-dark.disabled:active,.next-btn-ghost.next-btn-dark.disabled:focus,.next-btn-ghost.next-btn-dark.disabled:hover,.next-btn-ghost.next-btn-dark[disabled].active,.next-btn-ghost.next-btn-dark[disabled].hover,.next-btn-ghost.next-btn-dark[disabled]:active,.next-btn-ghost.next-btn-dark[disabled]:focus,.next-btn-ghost.next-btn-dark[disabled]:hover{color:hsla(0,0%,100%,.4);background:transparent;border-color:hsla(0,0%,100%,.4);text-decoration:none}.next-btn-ghost.next-btn-light{background:transparent;border-color:#333}.next-btn-ghost.next-btn-light,.next-btn-ghost.next-btn-light.visited,.next-btn-ghost.next-btn-light:link,.next-btn-ghost.next-btn-light:visited{color:#333}.next-btn-ghost.next-btn-light.active,.next-btn-ghost.next-btn-light.hover,.next-btn-ghost.next-btn-light:active,.next-btn-ghost.next-btn-light:focus,.next-btn-ghost.next-btn-light:hover{color:#999;background:rgba(0,0,0,.92);border-color:#333;text-decoration:none}.next-btn-ghost.next-btn-light.disabled,.next-btn-ghost.next-btn-light[disabled]{background:transparent;border-color:rgba(0,0,0,.1)}.next-btn-ghost.next-btn-light.disabled,.next-btn-ghost.next-btn-light.disabled.visited,.next-btn-ghost.next-btn-light.disabled:link,.next-btn-ghost.next-btn-light.disabled:visited,.next-btn-ghost.next-btn-light[disabled],.next-btn-ghost.next-btn-light[disabled].visited,.next-btn-ghost.next-btn-light[disabled]:link,.next-btn-ghost.next-btn-light[disabled]:visited{color:rgba(0,0,0,.1)}.next-btn-ghost.next-btn-light.disabled.active,.next-btn-ghost.next-btn-light.disabled.hover,.next-btn-ghost.next-btn-light.disabled:active,.next-btn-ghost.next-btn-light.disabled:focus,.next-btn-ghost.next-btn-light.disabled:hover,.next-btn-ghost.next-btn-light[disabled].active,.next-btn-ghost.next-btn-light[disabled].hover,.next-btn-ghost.next-btn-light[disabled]:active,.next-btn-ghost.next-btn-light[disabled]:focus,.next-btn-ghost.next-btn-light[disabled]:hover{color:rgba(0,0,0,.1);background:transparent;border-color:rgba(0,0,0,.1);text-decoration:none}.next-btn-group{position:relative;display:inline-block;vertical-align:middle}.next-btn-group>.next-btn{position:relative;float:left;box-shadow:none}.next-btn-group>.next-btn.active,.next-btn-group>.next-btn:active,.next-btn-group>.next-btn:focus,.next-btn-group>.next-btn:hover{z-index:1}.next-btn-group>.next-btn.disabled,.next-btn-group>.next-btn[disabled]{z-index:0}.next-btn-group .next-btn.next-btn{margin:0 0 0 -1px}.next-btn-group .next-btn:not(:first-child):not(:last-child){border-radius:0}.next-btn-group>.next-btn:first-child{margin:0}.next-btn-group>.next-btn:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.next-btn-group>.next-btn:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.next-btn-group>.next-btn-primary:not(:first-child){border-left-color:hsla(0,0%,100%,.2)}.next-btn-group>.next-btn-primary:not(:first-child):hover{border-left-color:transparent}.next-btn-group>.next-btn-primary:not(:first-child).disabled,.next-btn-group>.next-btn-primary:not(:first-child)[disabled]{border-left-color:#eee}.next-btn-group[dir=rtl]>.next-btn{float:right}.next-btn-group[dir=rtl] .next-btn.next-btn{margin:0 -1px 0 0}.next-btn-group[dir=rtl]>.next-btn:first-child:not(:last-child){border-bottom-left-radius:0;border-top-left-radius:0}.next-btn-group[dir=rtl]>.next-btn:last-child:not(:first-child){border-bottom-right-radius:0;border-top-right-radius:0}.next-btn-group[dir=rtl]>.next-btn-primary:not(:first-child){border-right-color:hsla(0,0%,100%,.2)}.next-btn-group[dir=rtl]>.next-btn-primary:not(:first-child):hover{border-right-color:transparent}.next-btn-group[dir=rtl]>.next-btn-primary:not(:first-child).disabled,.next-btn-group[dir=rtl]>.next-btn-primary:not(:first-child)[disabled]{border-right-color:#eee}.next-btn.next-small[dir=rtl]{border-radius:3px}.next-btn.next-small[dir=rtl]>.next-btn-icon.next-icon-first{margin-left:4px;margin-right:0}.next-btn.next-small[dir=rtl]>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn.next-small[dir=rtl]>.next-btn-icon.next-icon-first:before{width:12px;font-size:12px;line-height:inherit}.next-btn.next-small[dir=rtl]>.next-btn-icon.next-icon-last{margin-left:0;margin-right:4px}.next-btn.next-small[dir=rtl]>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn.next-small[dir=rtl]>.next-btn-icon.next-icon-last:before{width:12px;font-size:12px;line-height:inherit}.next-btn.next-small[dir=rtl].next-btn-loading{padding-left:16px;padding-right:32px}.next-btn.next-small[dir=rtl].next-btn-loading:after{right:16px;top:50%;margin-right:0;margin-left:4px}.next-btn.next-medium[dir=rtl]{border-radius:3px}.next-btn.next-medium[dir=rtl]>.next-btn-icon.next-icon-first{margin-left:4px;margin-right:0}.next-btn.next-medium[dir=rtl]>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn.next-medium[dir=rtl]>.next-btn-icon.next-icon-first:before{width:20px;font-size:20px;line-height:inherit}.next-btn.next-medium[dir=rtl]>.next-btn-icon.next-icon-last{margin-left:0;margin-right:4px}.next-btn.next-medium[dir=rtl]>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn.next-medium[dir=rtl]>.next-btn-icon.next-icon-last:before{width:20px;font-size:20px;line-height:inherit}.next-btn.next-medium[dir=rtl].next-btn-loading{padding-left:20px;padding-right:44px}.next-btn.next-medium[dir=rtl].next-btn-loading:after{right:20px;top:50%;margin-right:0;margin-left:4px}.next-btn.next-large[dir=rtl]{border-radius:3px}.next-btn.next-large[dir=rtl]>.next-btn-icon.next-icon-first{margin-left:4px;margin-right:0}.next-btn.next-large[dir=rtl]>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn.next-large[dir=rtl]>.next-btn-icon.next-icon-first:before{width:20px;font-size:20px;line-height:inherit}.next-btn.next-large[dir=rtl]>.next-btn-icon.next-icon-last{margin-left:0;margin-right:4px}.next-btn.next-large[dir=rtl]>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn.next-large[dir=rtl]>.next-btn-icon.next-icon-last:before{width:20px;font-size:20px;line-height:inherit}.next-btn.next-large[dir=rtl].next-btn-loading{padding-left:24px;padding-right:48px}.next-btn.next-large[dir=rtl].next-btn-loading:after{right:24px;top:50%;margin-right:0;margin-left:4px}.next-btn-text[dir=rtl].next-large{border-radius:0}.next-btn-text[dir=rtl].next-large>.next-btn-icon.next-icon-first{margin-left:4px;margin-right:0}.next-btn-text[dir=rtl].next-large>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn-text[dir=rtl].next-large>.next-btn-icon.next-icon-first:before{width:20px;font-size:20px;line-height:inherit}.next-btn-text[dir=rtl].next-large>.next-btn-icon.next-icon-last{margin-left:0;margin-right:4px}.next-btn-text[dir=rtl].next-large>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn-text[dir=rtl].next-large>.next-btn-icon.next-icon-last:before{width:20px;font-size:20px;line-height:inherit}.next-btn-text[dir=rtl].next-large.next-btn-loading{padding-left:0;padding-right:24px}.next-btn-text[dir=rtl].next-large.next-btn-loading:after{right:0;top:50%;margin-right:0;margin-left:4px}.next-btn-text[dir=rtl].next-medium{border-radius:0}.next-btn-text[dir=rtl].next-medium>.next-btn-icon.next-icon-first{margin-left:4px;margin-right:0}.next-btn-text[dir=rtl].next-medium>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn-text[dir=rtl].next-medium>.next-btn-icon.next-icon-first:before{width:20px;font-size:20px;line-height:inherit}.next-btn-text[dir=rtl].next-medium>.next-btn-icon.next-icon-last{margin-left:0;margin-right:4px}.next-btn-text[dir=rtl].next-medium>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn-text[dir=rtl].next-medium>.next-btn-icon.next-icon-last:before{width:20px;font-size:20px;line-height:inherit}.next-btn-text[dir=rtl].next-medium.next-btn-loading{padding-left:0;padding-right:24px}.next-btn-text[dir=rtl].next-medium.next-btn-loading:after{right:0;top:50%;margin-right:0;margin-left:4px}.next-btn-text[dir=rtl].next-small{border-radius:0}.next-btn-text[dir=rtl].next-small>.next-btn-icon.next-icon-first{margin-left:4px;margin-right:0}.next-btn-text[dir=rtl].next-small>.next-btn-icon.next-icon-first .next-icon-remote,.next-btn-text[dir=rtl].next-small>.next-btn-icon.next-icon-first:before{width:12px;font-size:12px;line-height:inherit}.next-btn-text[dir=rtl].next-small>.next-btn-icon.next-icon-last{margin-left:0;margin-right:4px}.next-btn-text[dir=rtl].next-small>.next-btn-icon.next-icon-last .next-icon-remote,.next-btn-text[dir=rtl].next-small>.next-btn-icon.next-icon-last:before{width:12px;font-size:12px;line-height:inherit}.next-btn-text[dir=rtl].next-small.next-btn-loading{padding-left:0;padding-right:16px}.next-btn-text[dir=rtl].next-small.next-btn-loading:after{right:0;top:50%;margin-right:0;margin-left:4px}.next-input{vertical-align:middle;display:inline-table;border-collapse:separate;font-size:0;line-height:1;width:200px;border-spacing:0;transition:all .1s linear;border:1px solid #ddd;background-color:#fff}.next-input,.next-input *,.next-input :after,.next-input :before{box-sizing:border-box}.next-input input{height:100%}.next-input input[type=reset],.next-input input[type=submit]{-webkit-appearance:button;cursor:pointer}.next-input input::-moz-focus-inner{border:0;padding:0}.next-input input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px #fff inset;border-radius:3px}.next-input input[type=password]::-ms-reveal{display:none}.next-input textarea{resize:none}.next-input input,.next-input textarea{width:100%;border:none;outline:none;padding:0;margin:0;font-weight:400;vertical-align:middle;background-color:transparent;color:#333}.next-input input::-ms-clear,.next-input textarea::-ms-clear{display:none}.next-input.next-small{height:24px;border-radius:3px}.next-input.next-small .next-input-label{padding-left:8px;font-size:12px}.next-input.next-small .next-input-inner{font-size:12px}.next-input.next-small .next-input-control,.next-input.next-small .next-input-inner-text{padding-right:4px}.next-input.next-small input{height:22px;line-height:22px \0 ;padding:0 4px;font-size:12px}.next-input.next-small input::placeholder{font-size:12px}.next-input.next-small .next-input-text-field{padding:0 4px;font-size:12px;height:22px;line-height:22px}.next-input.next-small .next-icon .next-icon-remote,.next-input.next-small .next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-input.next-small .next-input-control{border-radius:0 3px 3px 0}.next-input.next-medium{height:32px;border-radius:3px}.next-input.next-medium .next-input-label{padding-left:8px;font-size:14px}.next-input.next-medium .next-input-inner{font-size:14px}.next-input.next-medium .next-input-control,.next-input.next-medium .next-input-inner-text{padding-right:8px}.next-input.next-medium input{height:30px;line-height:30px \0 ;padding:0 8px;font-size:14px}.next-input.next-medium input::placeholder{font-size:14px}.next-input.next-medium .next-input-text-field{padding:0 8px;font-size:14px;height:30px;line-height:30px}.next-input.next-medium .next-icon .next-icon-remote,.next-input.next-medium .next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-input.next-medium .next-input-control{border-radius:0 3px 3px 0}.next-input.next-large{height:40px;border-radius:3px}.next-input.next-large .next-input-label{padding-left:12px;font-size:16px}.next-input.next-large .next-input-inner{font-size:16px}.next-input.next-large .next-input-control,.next-input.next-large .next-input-inner-text{padding-right:8px}.next-input.next-large input{height:38px;line-height:38px \0 ;padding:0 12px;font-size:16px}.next-input.next-large input::placeholder{font-size:16px}.next-input.next-large .next-input-text-field{padding:0 12px;font-size:16px;height:38px;line-height:38px}.next-input.next-large .next-icon .next-icon-remote,.next-input.next-large .next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-input.next-large .next-input-control{border-radius:0 3px 3px 0}.next-input.next-input-textarea{height:auto;border-radius:3px;font-size:0}.next-input.next-input-textarea textarea{color:#333;padding:4px 8px;font-size:14px;border-radius:3px}.next-input.next-input-textarea.next-small textarea{font-size:14px}.next-input.next-input-textarea.next-large textarea{font-size:16px}.next-input.next-input-textarea .next-input-control{display:block;width:auto;border-radius:3px}.next-input.next-input-textarea .next-input-len{padding:0 8px 4px;display:block;text-align:right;width:auto}.next-input-hint-wrap{color:#999;position:relative}.next-input-hint-wrap .next-input-clear{opacity:0;z-index:1;position:absolute}.next-input-hint-wrap .next-input-hint{opacity:1}.next-input .next-icon-eye-close:hover,.next-input .next-icon-eye:hover,.next-input .next-input-clear-icon:hover{cursor:pointer;color:#666}.next-input .next-input-hover-show{opacity:0}.next-input.next-focus,.next-input:hover{border-color:#ccc;background-color:#fff}.next-input.next-focus .next-input-clear,.next-input:hover .next-input-clear{opacity:1}.next-input.next-focus .next-input-clear+.next-input-hint,.next-input:hover .next-input-clear+.next-input-hint{opacity:0}.next-input.next-focus .next-input-hover-show,.next-input .next-input-clear:focus,.next-input:hover .next-input-hover-show{opacity:1}.next-input .next-input-clear:focus+.next-input-hint{opacity:0}.next-input.next-focus{border-color:#209bfa;background-color:#fff;box-shadow:0 0 0 2px rgba(32,155,250,.2)}.next-input.next-warning{border-color:#f1c826;background-color:#fff}.next-input.next-warning.next-focus,.next-input.next-warning:hover{border-color:#f1c826}.next-input.next-warning.next-focus{box-shadow:0 0 0 2px rgba(241,200,38,.2)}.next-input.next-error{border-color:#d23c26;background-color:#fff}.next-input.next-error input,.next-input.next-error textarea{color:#333}.next-input.next-error.next-focus,.next-input.next-error:hover{border-color:#d23c26}.next-input.next-error.next-focus{box-shadow:0 0 0 2px rgba(210,60,38,.2)}.next-input.next-hidden{display:none}.next-input.next-noborder{border:none;box-shadow:none}.next-input-control .next-input-len{font-size:12px;line-height:12px;color:#999;display:table-cell;width:1px;vertical-align:bottom}.next-input-control .next-input-len.next-error{color:#d23c26}.next-input-control .next-input-len.next-warning{color:#f1c826}.next-input-control>*{display:table-cell;width:1%;top:0}.next-input-control>:not(:last-child){padding-right:4px}.next-input-control .next-icon{transition:all .1s linear;color:#999}.next-input-control .next-input-warning-icon{color:#f1c826}.next-input-control .next-input-warning-icon:before{content:"î"}.next-input-control .next-input-success-icon{color:#1ad78c}.next-input-control .next-input-success-icon:before{content:"îº"}.next-input-control .next-input-loading-icon{color:#298dff}.next-input-control .next-input-loading-icon:before{content:"î";animation:loadingCircle 1s linear infinite}.next-input-control .next-input-clear-icon:before{content:"î£"}.next-input-inner-text,.next-input-label{color:#666}.next-input input::-moz-placeholder,.next-input textarea::-moz-placeholder{color:#ccc;opacity:1}.next-input input:-ms-input-placeholder,.next-input textarea:-ms-input-placeholder{color:#ccc}.next-input input::-webkit-input-placeholder,.next-input textarea::-webkit-input-placeholder{color:#ccc}.next-input.next-disabled{color:#ccc;cursor:not-allowed}.next-input.next-disabled,.next-input.next-disabled:hover{border-color:#eee;background-color:#fafafa}.next-input.next-disabled input,.next-input.next-disabled textarea{-webkit-text-fill-color:#ccc;color:#ccc}.next-input.next-disabled input::-moz-placeholder,.next-input.next-disabled textarea::-moz-placeholder{color:#ccc;opacity:1}.next-input.next-disabled input:-ms-input-placeholder,.next-input.next-disabled textarea:-ms-input-placeholder{color:#ccc}.next-input.next-disabled input::-webkit-input-placeholder,.next-input.next-disabled textarea::-webkit-input-placeholder{color:#ccc}.next-input.next-disabled .next-input-hint-wrap,.next-input.next-disabled .next-input-inner-text,.next-input.next-disabled .next-input-label,.next-input.next-disabled .next-input-len{color:#ccc}.next-input.next-disabled .next-input-hint-wrap .next-input-clear{opacity:0}.next-input.next-disabled .next-input-hint-wrap .next-input-hint{opacity:1}.next-input.next-disabled .next-input-hint-wrap .next-input-clear-icon:hover{cursor:not-allowed;color:#ccc}.next-input.next-disabled .next-icon{color:#ccc}.next-input-control,.next-input-inner,.next-input-label{display:table-cell;width:1px;vertical-align:middle;line-height:1;background-color:transparent;white-space:nowrap}.next-input-group{display:inline-table;border-collapse:separate;border-spacing:0;line-height:0;width:100%}.next-input-group,.next-input-group *,.next-input-group :after,.next-input-group :before{box-sizing:border-box}.next-input-group-auto-width{width:100%;border-radius:0!important}.next-input-group>.next-input{border-radius:0}.next-input-group>.next-input.next-focus{position:relative;z-index:1}.next-input-group>.next-input:first-child.next-large,.next-input-group>.next-input:first-child.next-medium,.next-input-group>.next-input:first-child.next-small{border-top-left-radius:3px!important;border-bottom-left-radius:3px!important}.next-input-group>.next-input:last-child.next-large,.next-input-group>.next-input:last-child.next-medium,.next-input-group>.next-input:last-child.next-small{border-top-right-radius:3px!important;border-bottom-right-radius:3px!important}.next-input-group-addon{width:1px;display:table-cell;vertical-align:middle;white-space:nowrap}.next-input-group-addon:first-child,.next-input-group-addon:first-child>*{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.next-input-group-addon:first-child>*{margin-right:-1px}.next-input-group-addon:first-child>.next-focus{position:relative;z-index:1}.next-input-group-addon:first-child>*>.next-input{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.next-input-group-addon:first-child>*>.next-input.next-focus{position:relative;z-index:1}.next-input-group-addon:last-child,.next-input-group-addon:last-child>*{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.next-input-group-addon:last-child>*{margin-left:-1px}.next-input-group-addon:last-child>*>.next-input{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.next-input-group-text{color:#999;background-color:#f9f9f9;text-align:center;border:1px solid #ddd;padding:0 8px}.next-input-group-text:first-child{border-right-width:0}.next-input-group-text:last-child{border-left-width:0}.next-input-group-text.next-disabled{color:#ccc;cursor:not-allowed}.next-input-group-text.next-disabled,.next-input-group-text.next-disabled:hover{border-color:#eee;background-color:#fafafa}.next-input-group-text.next-small{font-size:12px;border-radius:3px}.next-input-group-text.next-medium{font-size:14px;border-radius:3px}.next-input-group-text.next-large{font-size:16px;border-radius:3px}.next-input[dir=rtl].next-small .next-input-label{padding-left:0;padding-right:8px}.next-input[dir=rtl].next-small .next-input-control{padding-right:0;padding-left:4px}.next-input[dir=rtl].next-medium .next-input-label{padding-left:0;padding-right:8px}.next-input[dir=rtl].next-medium .next-input-control{padding-right:0;padding-left:8px}.next-input[dir=rtl].next-large .next-input-label{padding-left:0;padding-right:12px}.next-input[dir=rtl].next-large .next-input-control{padding-right:0;padding-left:8px}.next-input[dir=rtl].next-input-textarea .next-input-len{text-align:left}.next-input[dir=rtl] .next-input-control>:not(:last-child){padding-left:4px;padding-right:0}.next-input-group[dir=rtl]>.next-input:first-child.next-large,.next-input-group[dir=rtl]>.next-input:first-child.next-medium,.next-input-group[dir=rtl]>.next-input:first-child.next-small{border-top-left-radius:0!important;border-bottom-left-radius:0!important;border-top-right-radius:3px!important;border-bottom-right-radius:3px!important}.next-input-group[dir=rtl]>.next-input:last-child.next-large,.next-input-group[dir=rtl]>.next-input:last-child.next-medium,.next-input-group[dir=rtl]>.next-input:last-child.next-small{border-top-left-radius:3px!important;border-bottom-left-radius:3px!important;border-top-right-radius:0!important;border-bottom-right-radius:0!important}.next-input-group[dir=rtl] .next-input-group-addon:first-child,.next-input-group[dir=rtl] .next-input-group-addon:first-child>*>.next-input,.next-input-group[dir=rtl] .next-input-group-addon:first-child>.next-input{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.next-input-group[dir=rtl] .next-input-group-addon:first-child.next-large,.next-input-group[dir=rtl] .next-input-group-addon:first-child.next-medium,.next-input-group[dir=rtl] .next-input-group-addon:first-child.next-small,.next-input-group[dir=rtl] .next-input-group-addon:first-child>*>.next-input.next-large,.next-input-group[dir=rtl] .next-input-group-addon:first-child>*>.next-input.next-medium,.next-input-group[dir=rtl] .next-input-group-addon:first-child>*>.next-input.next-small,.next-input-group[dir=rtl] .next-input-group-addon:first-child>.next-input.next-large,.next-input-group[dir=rtl] .next-input-group-addon:first-child>.next-input.next-medium,.next-input-group[dir=rtl] .next-input-group-addon:first-child>.next-input.next-small{border-bottom-right-radius:3px!important;border-top-right-radius:3px!important}.next-input-group[dir=rtl] .next-input-group-addon:first-child>*{margin-left:-1px;border-bottom-left-radius:0!important;border-top-left-radius:0!important}.next-input-group[dir=rtl] .next-input-group-addon:last-child,.next-input-group[dir=rtl] .next-input-group-addon:last-child>*>.next-input,.next-input-group[dir=rtl] .next-input-group-addon:last-child>.next-input{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.next-input-group[dir=rtl] .next-input-group-addon:last-child.next-large,.next-input-group[dir=rtl] .next-input-group-addon:last-child.next-medium,.next-input-group[dir=rtl] .next-input-group-addon:last-child.next-small,.next-input-group[dir=rtl] .next-input-group-addon:last-child>*>.next-input.next-large,.next-input-group[dir=rtl] .next-input-group-addon:last-child>*>.next-input.next-medium,.next-input-group[dir=rtl] .next-input-group-addon:last-child>*>.next-input.next-small,.next-input-group[dir=rtl] .next-input-group-addon:last-child>.next-input.next-large,.next-input-group[dir=rtl] .next-input-group-addon:last-child>.next-input.next-medium,.next-input-group[dir=rtl] .next-input-group-addon:last-child>.next-input.next-small{border-bottom-left-radius:3px!important;border-top-left-radius:3px!important}.next-input-group[dir=rtl] .next-input-group-addon:last-child>*{margin-right:-1px;border-bottom-right-radius:0!important;border-top-right-radius:0!important}.next-input-group[dir=rtl] .next-input-group-text:first-child{border-right-width:1px;border-left:0}.next-input-group[dir=rtl] .next-input-group-text:last-child{border-left-width:1px;border-right:0}.next-calendar,.next-calendar *,.next-calendar :after,.next-calendar :before{box-sizing:border-box}.next-calendar table{border-collapse:collapse;border-spacing:0}.next-calendar td,.next-calendar th{padding:0}@keyframes cellZoomIn{0%{transform:scale(.5)}to{transform:scale(1)}}@keyframes cellHover{0%{opacity:0}to{opacity:1}}@keyframes enterToLeft{0%{transform:translate(-40%);opacity:0}50%{opacity:.6}to{opacity:1;transform:translate(0)}}@keyframes enterToRight{0%{transform:translate(40%);opacity:0}50%{opacity:.6}to{opacity:1;transform:translate(0)}}.next-calendar-card .next-calendar-header,.next-calendar-fullscreen .next-calendar-header{text-align:right}.next-calendar-card .next-calendar-header .next-select,.next-calendar-fullscreen .next-calendar-header .next-select{margin-right:4px;vertical-align:top}.next-calendar-card .next-calendar-header .next-menu,.next-calendar-fullscreen .next-calendar-header .next-menu{text-align:left}.next-calendar-card .next-calendar-header,.next-calendar-fullscreen .next-calendar-header{margin-bottom:8px}.next-calendar-panel-header{position:relative;background:#fff;margin-bottom:8px;border-bottom:1px solid transparent}.next-calendar-panel-header-full,.next-calendar-panel-header-left,.next-calendar-panel-header-right{height:32px;line-height:32px}.next-calendar-panel-header-full .next-calendar-btn,.next-calendar-panel-header-left .next-calendar-btn,.next-calendar-panel-header-right .next-calendar-btn{vertical-align:top;font-weight:700;margin:0 4px;background:transparent;border-color:transparent}.next-calendar-panel-header-full .next-calendar-btn,.next-calendar-panel-header-full .next-calendar-btn.visited,.next-calendar-panel-header-full .next-calendar-btn:link,.next-calendar-panel-header-full .next-calendar-btn:visited,.next-calendar-panel-header-left .next-calendar-btn,.next-calendar-panel-header-left .next-calendar-btn.visited,.next-calendar-panel-header-left .next-calendar-btn:link,.next-calendar-panel-header-left .next-calendar-btn:visited,.next-calendar-panel-header-right .next-calendar-btn,.next-calendar-panel-header-right .next-calendar-btn.visited,.next-calendar-panel-header-right .next-calendar-btn:link,.next-calendar-panel-header-right .next-calendar-btn:visited{color:#000}.next-calendar-panel-header-full .next-calendar-btn.active,.next-calendar-panel-header-full .next-calendar-btn.hover,.next-calendar-panel-header-full .next-calendar-btn:active,.next-calendar-panel-header-full .next-calendar-btn:focus,.next-calendar-panel-header-full .next-calendar-btn:hover,.next-calendar-panel-header-left .next-calendar-btn.active,.next-calendar-panel-header-left .next-calendar-btn.hover,.next-calendar-panel-header-left .next-calendar-btn:active,.next-calendar-panel-header-left .next-calendar-btn:focus,.next-calendar-panel-header-left .next-calendar-btn:hover,.next-calendar-panel-header-right .next-calendar-btn.active,.next-calendar-panel-header-right .next-calendar-btn.hover,.next-calendar-panel-header-right .next-calendar-btn:active,.next-calendar-panel-header-right .next-calendar-btn:focus,.next-calendar-panel-header-right .next-calendar-btn:hover{color:#fff;background:transparent;border-color:transparent;text-decoration:none}.next-calendar-panel-header-left,.next-calendar-panel-header-right{display:inline-block;width:50%;text-align:center}.next-calendar-panel-header-full{width:100%;text-align:center}.next-calendar-panel-menu{max-height:210px;overflow:auto;text-align:left}.next-calendar-btn{cursor:pointer;padding:0;margin:0;border:0;background:transparent;outline:none;height:100%}.next-calendar-btn>.next-icon.next-icon .next-icon-remote,.next-calendar-btn>.next-icon.next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-calendar-btn .next-icon{margin-left:4px}.next-calendar-btn-next-decade,.next-calendar-btn-next-month,.next-calendar-btn-next-year,.next-calendar-btn-prev-decade,.next-calendar-btn-prev-month,.next-calendar-btn-prev-year{position:absolute;top:0;background:transparent;border-color:transparent}.next-calendar-btn-next-decade,.next-calendar-btn-next-decade.visited,.next-calendar-btn-next-decade:link,.next-calendar-btn-next-decade:visited,.next-calendar-btn-next-month,.next-calendar-btn-next-month.visited,.next-calendar-btn-next-month:link,.next-calendar-btn-next-month:visited,.next-calendar-btn-next-year,.next-calendar-btn-next-year.visited,.next-calendar-btn-next-year:link,.next-calendar-btn-next-year:visited,.next-calendar-btn-prev-decade,.next-calendar-btn-prev-decade.visited,.next-calendar-btn-prev-decade:link,.next-calendar-btn-prev-decade:visited,.next-calendar-btn-prev-month,.next-calendar-btn-prev-month.visited,.next-calendar-btn-prev-month:link,.next-calendar-btn-prev-month:visited,.next-calendar-btn-prev-year,.next-calendar-btn-prev-year.visited,.next-calendar-btn-prev-year:link,.next-calendar-btn-prev-year:visited{color:#666}.next-calendar-btn-next-decade.active,.next-calendar-btn-next-decade.hover,.next-calendar-btn-next-decade:active,.next-calendar-btn-next-decade:focus,.next-calendar-btn-next-decade:hover,.next-calendar-btn-next-month.active,.next-calendar-btn-next-month.hover,.next-calendar-btn-next-month:active,.next-calendar-btn-next-month:focus,.next-calendar-btn-next-month:hover,.next-calendar-btn-next-year.active,.next-calendar-btn-next-year.hover,.next-calendar-btn-next-year:active,.next-calendar-btn-next-year:focus,.next-calendar-btn-next-year:hover,.next-calendar-btn-prev-decade.active,.next-calendar-btn-prev-decade.hover,.next-calendar-btn-prev-decade:active,.next-calendar-btn-prev-decade:focus,.next-calendar-btn-prev-decade:hover,.next-calendar-btn-prev-month.active,.next-calendar-btn-prev-month.hover,.next-calendar-btn-prev-month:active,.next-calendar-btn-prev-month:focus,.next-calendar-btn-prev-month:hover,.next-calendar-btn-prev-year.active,.next-calendar-btn-prev-year.hover,.next-calendar-btn-prev-year:active,.next-calendar-btn-prev-year:focus,.next-calendar-btn-prev-year:hover{color:#209bfa;background:transparent;border-color:transparent;text-decoration:none}.next-calendar-btn-prev-decade,.next-calendar-btn-prev-year{left:8px}.next-calendar-btn-prev-month{left:28px}.next-calendar-btn-next-month{right:28px}.next-calendar-btn-next-decade,.next-calendar-btn-next-year{right:8px}.next-calendar-fullscreen .next-calendar-th{text-align:right;color:#333;font-size:16px;font-weight:700;padding-right:12px;padding-bottom:4px}.next-calendar-fullscreen .next-calendar-cell{font-size:14px}.next-calendar-fullscreen .next-calendar-cell.next-selected .next-calendar-date,.next-calendar-fullscreen .next-calendar-cell.next-selected .next-calendar-month{font-weight:700;background:#add9ff;color:#209bfa;border-color:#209bfa}.next-calendar-fullscreen .next-calendar-cell.next-disabled .next-calendar-date,.next-calendar-fullscreen .next-calendar-cell.next-disabled .next-calendar-month{cursor:not-allowed;background:#fafafa;color:#ccc;border-color:#eee}.next-calendar-fullscreen .next-calendar-date,.next-calendar-fullscreen .next-calendar-month{text-align:right;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0 4px;padding:4px 8px;min-height:80px;transition:background .1s linear;background:#fff;color:#333;border-color:currentcolor #e6e6e6 #e6e6e6;border-top:2px solid #e6e6e6}.next-calendar-fullscreen .next-calendar-date:hover,.next-calendar-fullscreen .next-calendar-month:hover{background:#add9ff;color:#209bfa;border-color:#209bfa}.next-calendar-fullscreen .next-calendar-cell-next-month .next-calendar-date,.next-calendar-fullscreen .next-calendar-cell-prev-month .next-calendar-date{background:transparent;color:#ccc;border-color:transparent}.next-calendar-fullscreen .next-calendar-cell-current .next-calendar-date,.next-calendar-fullscreen .next-calendar-cell-current .next-calendar-month{font-weight:700;background:#fff;color:#209bfa;border-color:#209bfa}.next-calendar-card .next-calendar-th,.next-calendar-panel .next-calendar-th,.next-calendar-range .next-calendar-th{text-align:center;color:#999;font-size:12px;font-weight:400}.next-calendar-card .next-calendar-cell,.next-calendar-panel .next-calendar-cell,.next-calendar-range .next-calendar-cell{text-align:center;font-size:12px}.next-calendar-card .next-calendar-cell.next-selected .next-calendar-date,.next-calendar-card .next-calendar-cell.next-selected .next-calendar-month,.next-calendar-card .next-calendar-cell.next-selected .next-calendar-year,.next-calendar-panel .next-calendar-cell.next-selected .next-calendar-date,.next-calendar-panel .next-calendar-cell.next-selected .next-calendar-month,.next-calendar-panel .next-calendar-cell.next-selected .next-calendar-year,.next-calendar-range .next-calendar-cell.next-selected .next-calendar-date,.next-calendar-range .next-calendar-cell.next-selected .next-calendar-month,.next-calendar-range .next-calendar-cell.next-selected .next-calendar-year{animation:cellZoomIn .4s cubic-bezier(.23,1,.32,1);font-weight:700;background:#209bfa;color:#fff;border-color:#209bfa}.next-calendar-card .next-calendar-cell.next-disabled .next-calendar-date,.next-calendar-card .next-calendar-cell.next-disabled .next-calendar-month,.next-calendar-card .next-calendar-cell.next-disabled .next-calendar-year,.next-calendar-panel .next-calendar-cell.next-disabled .next-calendar-date,.next-calendar-panel .next-calendar-cell.next-disabled .next-calendar-month,.next-calendar-panel .next-calendar-cell.next-disabled .next-calendar-year,.next-calendar-range .next-calendar-cell.next-disabled .next-calendar-date,.next-calendar-range .next-calendar-cell.next-disabled .next-calendar-month,.next-calendar-range .next-calendar-cell.next-disabled .next-calendar-year{cursor:not-allowed;background:#fafafa;color:#ccc;border-color:#fafafa}.next-calendar-card .next-calendar-cell.next-inrange .next-calendar-date,.next-calendar-panel .next-calendar-cell.next-inrange .next-calendar-date,.next-calendar-range .next-calendar-cell.next-inrange .next-calendar-date{background:#e4f3fe;color:#209bfa;border-color:#e4f3fe}.next-calendar-card .next-calendar-date,.next-calendar-card .next-calendar-month,.next-calendar-card .next-calendar-year,.next-calendar-panel .next-calendar-date,.next-calendar-panel .next-calendar-month,.next-calendar-panel .next-calendar-year,.next-calendar-range .next-calendar-date,.next-calendar-range .next-calendar-month,.next-calendar-range .next-calendar-year{text-align:center;background:#fff;color:#666;border:1px solid #fff}.next-calendar-card .next-calendar-date:hover,.next-calendar-card .next-calendar-month:hover,.next-calendar-card .next-calendar-year:hover,.next-calendar-panel .next-calendar-date:hover,.next-calendar-panel .next-calendar-month:hover,.next-calendar-panel .next-calendar-year:hover,.next-calendar-range .next-calendar-date:hover,.next-calendar-range .next-calendar-month:hover,.next-calendar-range .next-calendar-year:hover{cursor:pointer;background:#e4f3fe;color:#209bfa;border-color:#e4f3fe}.next-calendar-card .next-calendar-date,.next-calendar-panel .next-calendar-date,.next-calendar-range .next-calendar-date{width:24px;height:24px;line-height:22px;margin:4px auto;border-radius:3px}.next-calendar-card .next-calendar-month,.next-calendar-panel .next-calendar-month,.next-calendar-range .next-calendar-month{width:60px;height:24px;line-height:22px;margin:8px auto;border-radius:3px}.next-calendar-card .next-calendar-year,.next-calendar-panel .next-calendar-year,.next-calendar-range .next-calendar-year{width:48px;height:24px;line-height:22px;margin:8px auto;border-radius:3px}.next-calendar-card .next-calendar-cell-next-month .next-calendar-date,.next-calendar-card .next-calendar-cell-prev-month .next-calendar-date,.next-calendar-panel .next-calendar-cell-next-month .next-calendar-date,.next-calendar-panel .next-calendar-cell-prev-month .next-calendar-date,.next-calendar-range .next-calendar-cell-next-month .next-calendar-date,.next-calendar-range .next-calendar-cell-prev-month .next-calendar-date{background:#fff;color:#ccc;border-color:#fff}.next-calendar-card .next-calendar-cell-current .next-calendar-date,.next-calendar-card .next-calendar-cell-current .next-calendar-month,.next-calendar-card .next-calendar-cell-current .next-calendar-year,.next-calendar-panel .next-calendar-cell-current .next-calendar-date,.next-calendar-panel .next-calendar-cell-current .next-calendar-month,.next-calendar-panel .next-calendar-cell-current .next-calendar-year,.next-calendar-range .next-calendar-cell-current .next-calendar-date,.next-calendar-range .next-calendar-cell-current .next-calendar-month,.next-calendar-range .next-calendar-cell-current .next-calendar-year{font-weight:700;background:#fff;color:#209bfa;border-color:transparent}.next-calendar-panel.next-calendar-week .next-calendar-tbody tr{cursor:pointer}.next-calendar-panel.next-calendar-week .next-calendar-tbody tr:hover .next-calendar-cell .next-calendar-date{background:#e4f3fe;color:#209bfa;border-color:#e4f3fe}.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-cell.next-selected .next-calendar-date{font-weight:400;background:transparent;border-color:transparent}.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-date{position:relative;color:#209bfa}.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-date:before{content:"";position:absolute;left:-1px;top:-1px;bottom:-1px;right:-1px;background:#e4f3fe;border:1px solid #e4f3fe;border-radius:3px}.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-date>span{position:relative}.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-end,.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-start{color:#fff}.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-end:before,.next-calendar-panel.next-calendar-week .next-calendar-tbody .next-calendar-week-active-start:before{background:#209bfa;border-color:#209bfa}.next-calendar[dir=rtl] .next-calendar-header{text-align:left}.next-calendar[dir=rtl] .next-calendar-header .next-select{margin-right:0;margin-left:4px}.next-calendar[dir=rtl] .next-calendar-header .next-menu{text-align:right}.next-calendar[dir=rtl] .next-calendar-btn-prev-decade,.next-calendar[dir=rtl] .next-calendar-btn-prev-year{left:auto;right:8px}.next-calendar[dir=rtl] .next-calendar-btn-prev-month{left:auto;right:28px}.next-calendar[dir=rtl] .next-calendar-btn-next-month{right:auto;left:28px}.next-calendar[dir=rtl] .next-calendar-btn-next-decade,.next-calendar[dir=rtl] .next-calendar-btn-next-year{right:auto;left:8px}.next-calendar-fullscreen[dir=rtl] .next-calendar-th{text-align:left;padding-left:12px;padding-right:0}.next-calendar-fullscreen[dir=rtl] .next-calendar-date,.next-calendar-fullscreen[dir=rtl] .next-calendar-month{text-align:left}.next-calendar-range[dir=rtl] .next-calendar-body-left,.next-calendar-range[dir=rtl] .next-calendar-body-right{float:right}.next-calendar-range[dir=rtl] .next-calendar-body-left{padding-right:0;padding-left:8px}.next-calendar-range[dir=rtl] .next-calendar-body-right{padding-left:0;padding-right:8px}.next-calendar-table{width:100%;table-layout:fixed}.next-calendar-range .next-calendar-body-left,.next-calendar-range .next-calendar-body-right{float:left;width:50%}.next-calendar-range .next-calendar-body-left{padding-right:8px}.next-calendar-range .next-calendar-body-right{padding-left:8px}.next-calendar-range .next-calendar-body:after{visibility:hidden;display:block;height:0;font-size:0;content:" ";clear:both}.next-calendar-symbol-prev:before{content:"î"}.next-calendar-symbol-next:before{content:"î"}.next-calendar-symbol-prev-super:before{content:"î"}.next-calendar-symbol-next-super:before{content:"î"}.next-card,.next-card:after,.next-card:before{box-sizing:border-box}.next-card[dir=rtl] .next-card-extra{left:0;right:auto}.next-card[dir=rtl] .next-card-title:before{right:0;left:auto}.next-card[dir=rtl] .next-card-subtitle{float:left;padding-right:8px;padding-left:0}.next-card[dir=rtl] .next-card-head-show-bullet .next-card-title{padding-left:0;padding-right:8px}.next-card,.next-card *,.next-card :after,.next-card :before{box-sizing:border-box}.next-card{min-width:100px;border:0 solid #e6e6e6;border-radius:3px;box-shadow:none;background:#fff;overflow:hidden}.next-card-noborder{border:0}.next-card-head{background:#fff;padding-left:24px;padding-right:24px}.next-card-head-show-bullet .next-card-title{padding-left:8px}.next-card-head-show-bullet .next-card-title:before{content:"";display:inline-block;height:16px;width:3px;background:#209bfa;position:absolute;left:0;top:calc(50% - 8px)}.next-card-head-main{position:relative;margin-top:0;margin-bottom:0;height:64px;line-height:64px}.next-card-title{display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:80%;height:100%;color:#333;font-size:16px;font-weight:400}.next-card-subtitle{font-size:12px;color:#666;padding-left:8px}.next-card-extra{position:absolute;right:0;top:0;height:100%;font-size:14px;color:#298dff}.next-card-body{padding-bottom:20px;padding-left:24px;padding-right:24px}.next-card-show-divider .next-card-head-main{border-bottom:1px solid #eee}.next-card-show-divider .next-card-body{padding-top:20px}.next-card-hide-divider .next-card-body{padding-top:0}.next-cardâfree{padding:0}.next-card-content{overflow:hidden;transition:all .3s ease;position:relative}.next-card-footer .next-icon{transition:all .1s linear}.next-card-footer .next-icon.next-icon-arrow-down.expand{transform-origin:50% 47%;transform:rotate(180deg)}.next-card-header{background:#fff;padding:0 24px;margin-bottom:20px;margin-top:20px}.next-card-media,.next-card-media>*{display:block;background-size:cover;background-repeat:no-repeat;background-position:50%;object-fit:cover;width:100%}.next-card-header-titles{overflow:hidden}.next-card-header-extra{float:right;text-align:right}.next-card-header-extra .next--btn{margin-left:12px;vertical-align:middle}.next-card-header-title{color:#333;font-size:16px;font-weight:400;line-height:1.5}.next-card-header-subtitle{font-size:12px;color:#666}.next-card-actions{display:block;padding:20px 24px}.next-card-actions .next-btn:not(:last-child){margin-right:12px;vertical-align:middle}.next-card-divider{border-style:none;width:100%;margin:0;position:relative;overflow:visible}.next-card-divider:before{content:"";display:block;border-bottom:1px solid #eee}.next-card-divider--inset{padding:0 24px}.next-card-content-container{margin-top:20px;padding-bottom:20px;padding-left:24px;padding-right:24px;font-size:14px;line-height:1.5;color:#666}.next-cascader{display:inline-block;overflow:auto;border:1px solid #e6e6e6;border-radius:3px}.next-cascader,.next-cascader *,.next-cascader :after,.next-cascader :before{box-sizing:border-box}.next-cascader-inner:after{visibility:hidden;display:block;height:0;font-size:0;content:" ";clear:both}.next-cascader-menu-wrapper{float:left;overflow:auto;width:auto;min-width:100px;height:192px;overflow-x:hidden;overflow-y:auto}.next-cascader-menu-wrapper+.next-cascader-menu-wrapper{border-left:1px solid #e6e6e6}.next-cascader-menu{position:relative;padding:0;border:none;border-radius:0;box-shadow:none;min-width:auto;min-height:100%}.next-cascader-menu.next-has-right-border{border-right:1px solid #e6e6e6}.next-cascader-menu-item.next-expanded{color:#333;background-color:#f9f9f9}.next-cascader-menu-icon-right{position:absolute;top:0;right:10px;color:#666}.next-cascader-menu-icon-right:hover{color:#333}.next-cascader-menu-icon-expand.next-icon .next-icon-remote,.next-cascader-menu-icon-expand.next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-cascader-menu-icon-loading.next-icon .next-icon-remote,.next-cascader-menu-icon-loading.next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-cascader-menu-item.next-expanded .next-cascader-menu-icon-right{color:#333}.next-cascader-menu-item.next-expanded .next-cascader-menu-icon-loading{color:#209bfa}.next-cascader-filtered-list{height:192px;padding:0;border:none;border-radius:0;box-shadow:none;overflow:auto}.next-cascader-filtered-list .next-menu-item-inner{overflow:visible}.next-cascader-filtered-item em{color:#209bfa;font-style:normal}.next-cascader[dir=rtl] .next-cascader-menu-wrapper{float:right;border-left:none;border-right:1px solid #e6e6e6}.next-cascader[dir=rtl] .next-cascader-menu-wrapper:first-child{border-right:none}.next-cascader[dir=rtl] .next-cascader-menu.next-has-right-border{border-right:none;border-left:1px solid #e6e6e6}.next-cascader[dir=rtl] .next-cascader-menu-icon-right{right:auto;left:10px}.next-cascader-select,.next-cascader-select *,.next-cascader-select :after,.next-cascader-select :before{box-sizing:border-box}.next-cascader-select-dropdown{box-sizing:border-box;border:1px solid #e6e6e6;border-radius:3px;box-shadow:none}.next-cascader-select-dropdown *,.next-cascader-select-dropdown :after,.next-cascader-select-dropdown :before{box-sizing:border-box}.next-cascader-select-dropdown .next-cascader{display:block;border:none;box-shadow:none}.next-cascader-select-not-found{padding:0;border:none;box-shadow:none;overflow:auto;color:#999}.next-cascader-select-not-found .next-menu-item:hover{color:#999;background:#fff;cursor:default}.next-checkbox-wrapper[dir=rtl]{margin-right:8px;margin-left:0}.next-checkbox-wrapper[dir=rtl]:first-child{margin-right:0}.next-checkbox-wrapper[dir=rtl]>.next-checkbox-label{margin-right:4px;margin-left:0}.next-checkbox-wrapper{box-sizing:border-box;display:inline-block}.next-checkbox-wrapper *,.next-checkbox-wrapper :after,.next-checkbox-wrapper :before{box-sizing:border-box}.next-checkbox-wrapper .next-checkbox{display:inline-block;position:relative;line-height:1;vertical-align:middle}.next-checkbox-wrapper input[type=checkbox]{opacity:0;position:absolute;top:0;left:0;width:16px;height:16px;margin:0;cursor:pointer}.next-checkbox-wrapper .next-checkbox-inner{display:block;width:16px;height:16px;background:#fff;border-radius:3px;border:1px solid #ddd;transition:all .1s linear;text-align:left;box-shadow:none}.next-checkbox-wrapper .next-checkbox-inner>.next-icon{transform:scale(0);position:absolute;top:0;opacity:0;line-height:16px;transition:all .1s linear;color:#fff;left:2px;margin-left:0}.next-checkbox-wrapper .next-checkbox-inner>.next-icon .next-icon-remote,.next-checkbox-wrapper .next-checkbox-inner>.next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-checkbox-wrapper .next-checkbox-inner>.next-icon:before{vertical-align:top;margin-top:0}.next-checkbox-wrapper .next-checkbox-inner>.next-checkbox-select-icon:before{content:"î²"}.next-checkbox-wrapper .next-checkbox-inner>.next-checkbox-semi-select-icon:before{content:"î³"}.next-checkbox-wrapper.checked.focused>.next-checkbox>.next-checkbox-inner,.next-checkbox-wrapper.checked>.next-checkbox>.next-checkbox-inner{border-color:transparent;background-color:#209bfa}.next-checkbox-wrapper.checked.focused>.next-checkbox>.next-checkbox-inner.hovered,.next-checkbox-wrapper.checked.focused>.next-checkbox>.next-checkbox-inner:hover,.next-checkbox-wrapper.checked>.next-checkbox>.next-checkbox-inner.hovered,.next-checkbox-wrapper.checked>.next-checkbox>.next-checkbox-inner:hover{border-color:transparent}.next-checkbox-wrapper.checked.focused>.next-checkbox>.next-checkbox-inner>.next-icon,.next-checkbox-wrapper.checked>.next-checkbox>.next-checkbox-inner>.next-icon{opacity:1;transform:scale(1);margin-left:0}.next-checkbox-wrapper.checked.focused>.next-checkbox>.next-checkbox-inner>.next-icon .next-icon-remote,.next-checkbox-wrapper.checked.focused>.next-checkbox>.next-checkbox-inner>.next-icon:before,.next-checkbox-wrapper.checked>.next-checkbox>.next-checkbox-inner>.next-icon .next-icon-remote,.next-checkbox-wrapper.checked>.next-checkbox>.next-checkbox-inner>.next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-checkbox-wrapper.indeterminate.focused>.next-checkbox>.next-checkbox-inner,.next-checkbox-wrapper.indeterminate>.next-checkbox>.next-checkbox-inner{border-color:transparent;background-color:#209bfa}.next-checkbox-wrapper.indeterminate.focused>.next-checkbox>.next-checkbox-inner.hovered,.next-checkbox-wrapper.indeterminate.focused>.next-checkbox>.next-checkbox-inner:hover,.next-checkbox-wrapper.indeterminate>.next-checkbox>.next-checkbox-inner.hovered,.next-checkbox-wrapper.indeterminate>.next-checkbox>.next-checkbox-inner:hover{border-color:transparent}.next-checkbox-wrapper.indeterminate.focused>.next-checkbox>.next-checkbox-inner>.next-icon,.next-checkbox-wrapper.indeterminate>.next-checkbox>.next-checkbox-inner>.next-icon{opacity:1;transform:scaleX(1);margin-left:0}.next-checkbox-wrapper.indeterminate.focused>.next-checkbox>.next-checkbox-inner>.next-icon .next-icon-remote,.next-checkbox-wrapper.indeterminate.focused>.next-checkbox>.next-checkbox-inner>.next-icon:before,.next-checkbox-wrapper.indeterminate>.next-checkbox>.next-checkbox-inner>.next-icon .next-icon-remote,.next-checkbox-wrapper.indeterminate>.next-checkbox>.next-checkbox-inner>.next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-checkbox-wrapper.focused>.next-checkbox>.next-checkbox-inner,.next-checkbox-wrapper.hovered>.next-checkbox>.next-checkbox-inner,.next-checkbox-wrapper:not(.disabled):hover>.next-checkbox>.next-checkbox-inner{border-color:#209bfa;background-color:#add9ff}.next-checkbox-wrapper.focused .next-checkbox-label,.next-checkbox-wrapper.hovered .next-checkbox-label,.next-checkbox-wrapper:not(.disabled):hover .next-checkbox-label{cursor:pointer}.next-checkbox-wrapper.checked:not(.disabled).hovered>.next-checkbox .next-checkbox-inner,.next-checkbox-wrapper.checked:not(.disabled):hover>.next-checkbox .next-checkbox-inner,.next-checkbox-wrapper.indeterminate:not(.disabled).hovered>.next-checkbox .next-checkbox-inner,.next-checkbox-wrapper.indeterminate:not(.disabled):hover>.next-checkbox .next-checkbox-inner{border-color:transparent;background-color:#1274e7}.next-checkbox-wrapper.checked:not(.disabled).hovered>.next-checkbox .next-checkbox-inner>.next-icon,.next-checkbox-wrapper.checked:not(.disabled):hover>.next-checkbox .next-checkbox-inner>.next-icon,.next-checkbox-wrapper.indeterminate:not(.disabled).hovered>.next-checkbox .next-checkbox-inner>.next-icon,.next-checkbox-wrapper.indeterminate:not(.disabled):hover>.next-checkbox .next-checkbox-inner>.next-icon{color:#fff;opacity:1}.next-checkbox-wrapper.disabled input[type=checkbox]{cursor:not-allowed}.next-checkbox-wrapper.disabled.checked .next-checkbox-inner,.next-checkbox-wrapper.disabled.indeterminate .next-checkbox-inner,.next-checkbox-wrapper.disabled .next-checkbox-inner{border-color:#eee;background:#fafafa}.next-checkbox-wrapper.disabled.checked .next-checkbox-inner.hovered,.next-checkbox-wrapper.disabled.checked .next-checkbox-inner:hover,.next-checkbox-wrapper.disabled.indeterminate .next-checkbox-inner.hovered,.next-checkbox-wrapper.disabled.indeterminate .next-checkbox-inner:hover{border-color:#eee}.next-checkbox-wrapper.disabled.checked .next-checkbox-inner>.next-icon,.next-checkbox-wrapper.disabled.indeterminate .next-checkbox-inner>.next-icon{color:#ccc;opacity:1}.next-checkbox-wrapper.disabled.checked.focused .next-checkbox-inner{border-color:#eee;background:#fafafa}.next-checkbox-wrapper.disabled.checked.focused .next-checkbox-inner>.next-icon{color:#ccc;opacity:1}.next-checkbox-wrapper.disabled .next-checkbox-label{color:#ccc;cursor:not-allowed}.next-checkbox-group .next-checkbox-wrapper{display:inline-block;margin-right:12px}.next-checkbox-group .next-checkbox-wrapper:last-child{margin-right:0}.next-checkbox-group-ver .next-checkbox-wrapper{display:block;margin-left:0;margin-right:0;margin-bottom:8px}.next-checkbox-label{font-size:14px;color:#333;vertical-align:middle;margin:0 4px;line-height:1}.next-collapse[dir=rtl] .next-collapse-panel-title{padding:8px 36px 8px 0}.next-collapse[dir=rtl] .next-collapse-panel-icon{left:inherit;right:12px;transform:rotate(180deg);margin-left:0;margin-right:0}.next-collapse[dir=rtl] .next-collapse-panel-icon .next-icon-remote,.next-collapse[dir=rtl] .next-collapse-panel-icon:before{width:16px;font-size:16px;line-height:inherit}.next-collapse{border:1px solid #e6e6e6;border-radius:3px}.next-collapse,.next-collapse *,.next-collapse :after,.next-collapse :before{box-sizing:border-box}.next-collapse:focus,.next-collapse :focus{outline:0}.next-collapse-panel:not(:first-child){border-top:1px solid #e6e6e6}.next-collapse .next-collapse-panel-icon{position:absolute;color:#333;transition:transform .1s linear;left:12px;margin-top:-2px;margin-left:0;margin-right:0}.next-collapse .next-collapse-panel-icon .next-icon-remote,.next-collapse .next-collapse-panel-icon:before{width:16px;font-size:16px;line-height:inherit}.next-collapse-panel-title{position:relative;line-height:1.5;background:#f9f9f9;font-size:14px;font-weight:400;color:#333;cursor:pointer;padding:8px 0 8px 36px;transition:background .1s linear}.next-collapse-panel-title:hover{background:#f5f5f5;color:#333;font-weight:400}.next-collapse-panel-title:hover .next-collapse-panel-icon{color:#333}.next-collapse-panel-content{height:0;line-height:1.5;padding:0 16px;background:#fff;font-size:14px;color:#666;transition:all .3s ease;opacity:0}.next-collapse-panel-expanded>.next-collapse-panel-content{display:block;padding:12px 16px;height:auto;opacity:1}.next-collapse .next-collapse-unfold-icon:before{content:""}.next-collapse-panel-hidden>.next-collapse-panel-content{overflow:hidden}.next-collapse .next-collapse-panel-icon:before{content:"î"}.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded{transform:rotate(90deg);margin-left:0;margin-right:0}.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded .next-icon-remote,.next-collapse .next-collapse-panel-icon.next-collapse-panel-icon-expanded:before{width:16px;font-size:16px;line-height:inherit}.next-collapse-disabled,.next-collapse-panel-disabled:not(:first-child){border-color:#eee}.next-collapse-panel-disabled>.next-collapse-panel-title{cursor:not-allowed;color:#ccc;background:#f9f9f9}.next-collapse-panel-disabled .next-collapse-panel-icon{color:#ccc}.next-collapse-panel-disabled .next-collapse-panel-title:hover{font-weight:400}.next-collapse-panel-disabled .next-collapse-panel-title:hover .next-collapse-panel-icon{color:#ccc}.next-collapse-panel-disabled:hover{color:#ccc;background:#f9f9f9}.next-time-picker-menu{float:left;text-align:center}.next-time-picker-menu:not(:last-child){border-right:1px solid #ddd}.next-time-picker-menu-title{cursor:default;height:28px;line-height:28px;font-size:12px;font-weight:400;color:#999;background:#fff}.next-time-picker-menu ul{position:relative;overflow-y:auto;list-style:none;margin:0;padding:0;font-size:12px;height:196px}.next-time-picker-menu-item{cursor:pointer;height:28px;line-height:28px;transition:background .1s linear;color:#666;background:#fff;outline:none}.next-time-picker-menu-item:hover{color:#333;background:#f9f9f9}.next-time-picker-menu-item.next-selected{font-weight:700;color:#666;background:#f9f9f9}.next-time-picker-menu-item.next-disabled{cursor:not-allowed;color:#ccc;background:#fff}.next-time-picker-panel,.next-time-picker-panel *,.next-time-picker-panel :after,.next-time-picker-panel :before{box-sizing:border-box}.next-time-picker-panel:after{visibility:hidden;display:block;height:0;font-size:0;content:" ";clear:both}.next-time-picker-panel-header{border-bottom:1px solid #e6e6e6}.next-time-picker-panel-input.next-input{width:100%;padding:6px;border-color:transparent;vertical-align:middle}.next-time-picker-panel-col-3 .next-time-picker-menu{width:33.3333333333%}.next-time-picker-panel-col-2 .next-time-picker-menu{width:50%}.next-time-picker-panel-col-1 .next-time-picker-menu{width:100%}.next-time-picker-body[dir=rtl] .next-time-picker-menu{float:right}.next-time-picker-body[dir=rtl] .next-time-picker-menu:not(:last-child){border-right:none;border-left:1px solid #ddd}.next-time-picker{display:inline-block;width:200px}.next-time-picker,.next-time-picker *,.next-time-picker :after,.next-time-picker :before{box-sizing:border-box}.next-time-picker-trigger .next-input{width:100%}.next-time-picker-body{overflow:hidden;width:200px;border:1px solid #e6e6e6;border-radius:3px;background:#fff;box-shadow:none}.next-time-picker-symbol-clock-icon:before{content:"î¡"}.next-range-picker-panel-input-separator,.next-range-picker-trigger-separator{cursor:default;display:inline-block;text-align:center;color:#ccc;width:16px;font-size:12px;vertical-align:middle}.next-date-picker,.next-month-picker,.next-week-picker,.next-year-picker{display:inline-block;width:200px}.next-date-picker-input,.next-month-picker-input,.next-week-picker-input,.next-year-picker-input{width:100%}.next-date-picker-body,.next-month-picker-body,.next-week-picker-body,.next-year-picker-body{width:288px}.next-date-picker-panel-input.next-input,.next-month-picker-panel-input.next-input,.next-week-picker-panel-input.next-input,.next-year-picker-panel-input.next-input{width:100%;background:transparent}.next-date-picker-body.next-date-picker-body-show-time .next-date-picker-panel-input.next-input{width:49%}.next-date-picker-body.next-date-picker-body-show-time .next-date-picker-panel-input.next-input:first-child{margin-right:2%}.next-range-picker{display:inline-block;width:336px}.next-range-picker-input{width:100%}.next-range-picker-trigger{border:1px solid #ddd;background-color:#fff}.next-range-picker-trigger:hover{border-color:#ccc;background-color:#fff}.next-range-picker-trigger.next-error{border-color:#d23c26}.next-range-picker-trigger-input.next-input{height:auto;width:calc(50% - 8px)}.next-range-picker.next-disabled .next-range-picker-trigger{color:#ccc;border-color:#eee;background-color:#fafafa;cursor:not-allowed}.next-range-picker.next-disabled .next-range-picker-trigger:hover{border-color:#eee;background-color:#fafafa}.next-range-picker.next-large .next-range-picker-panel-input,.next-range-picker.next-large .next-range-picker-trigger,.next-range-picker.next-medium .next-range-picker-panel-input,.next-range-picker.next-medium .next-range-picker-trigger,.next-range-picker.next-small .next-range-picker-panel-input,.next-range-picker.next-small .next-range-picker-trigger{border-radius:3px}.next-range-picker-body{width:600px}.next-range-picker-panel-input-end-date.next-input,.next-range-picker-panel-input-start-date.next-input{width:calc(50% - 8px)}.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-end-date,.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-end-time,.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-start-date,.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-start-time{width:calc(25% - 8px)}.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-start-date{margin-right:8px}.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-input-end-time{margin-left:8px}.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-time:after{visibility:hidden;display:block;height:0;font-size:0;content:" ";clear:both}.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-time-end,.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-time-start{width:50%;float:left}.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-time-start{border-right:1px solid #e6e6e6}.next-range-picker-body.next-range-picker-body-show-time .next-range-picker-panel-time-end{border-left:1px solid #e6e6e6}.next-date-picker-body[dir=rtl] .next-date-picker-panel-footer{text-align:left}.next-date-picker-body[dir=rtl] .next-date-picker-panel-footer>.next-btn:not(:last-child){margin-right:0;margin-left:16px}.next-date-picker-body[dir=rtl].next-date-picker-body-show-time .next-date-picker-panel-input.next-input:first-child{margin-left:2%;margin-right:0}.next-date-picker-body[dir=rtl].next-date-picker-body-show-time .next-time-picker-menu{float:right}.next-date-picker-body[dir=rtl].next-date-picker-body-show-time .next-time-picker-menu:not(:last-child){border-right:none;border-left:1px solid #ddd}.next-range-picker-body[dir=rtl] .next-range-picker-panel-input{text-align:right}.next-range-picker-body[dir=rtl] .next-date-picker-panel-footer{text-align:left}.next-range-picker-body[dir=rtl] .next-date-picker-panel-footer>.next-btn:not(:last-child){margin-right:0;margin-left:16px}.next-range-picker-body[dir=rtl].next-range-picker-body-show-time .next-range-picker-panel-input-start-date{margin-right:0;margin-left:8px}.next-range-picker-body[dir=rtl].next-range-picker-body-show-time .next-range-picker-panel-input-end-time{margin-left:0;margin-right:8px}.next-range-picker-body[dir=rtl].next-range-picker-body-show-time .next-range-picker-panel-time-end,.next-range-picker-body[dir=rtl].next-range-picker-body-show-time .next-range-picker-panel-time-start{float:right}.next-range-picker-body[dir=rtl].next-range-picker-body-show-time .next-range-picker-panel-time-start{border-right:none;border-left:1px solid #e6e6e6}.next-range-picker-body[dir=rtl].next-range-picker-body-show-time .next-range-picker-panel-time-end{border-left:none;border-right:1px solid #e6e6e6}.next-range-picker-body[dir=rtl].next-range-picker-body-show-time .next-time-picker-menu{float:right}.next-range-picker-body[dir=rtl].next-range-picker-body-show-time .next-time-picker-menu:not(:last-child){border-right:none;border-left:1px solid #ddd}.next-date-picker,.next-date-picker *,.next-date-picker :after,.next-date-picker :before,.next-month-picker,.next-month-picker *,.next-month-picker :after,.next-month-picker :before,.next-range-picker,.next-range-picker *,.next-range-picker :after,.next-range-picker :before,.next-week-picker,.next-week-picker *,.next-week-picker :after,.next-week-picker :before,.next-year-picker,.next-year-picker *,.next-year-picker :after,.next-year-picker :before{box-sizing:border-box}.next-date-picker-body,.next-month-picker-body,.next-range-picker-body,.next-week-picker-body,.next-year-picker-body{border:1px solid #e6e6e6;border-radius:3px;box-shadow:none;background:#fff}.next-date-picker-panel-header,.next-month-picker-panel-header,.next-range-picker-panel-header,.next-week-picker-panel-header,.next-year-picker-panel-header{padding:6px;text-align:center}.next-date-picker-panel-time,.next-month-picker-panel-time,.next-range-picker-panel-time,.next-week-picker-panel-time,.next-year-picker-panel-time{border-top:1px solid #e6e6e6}.next-date-picker-panel-footer,.next-month-picker-panel-footer,.next-range-picker-panel-footer,.next-week-picker-panel-footer,.next-year-picker-panel-footer{text-align:right;padding:8px 20px;border-top:1px solid #e6e6e6}.next-date-picker-panel-footer>.next-btn:not(:last-child),.next-date-picker-panel-tools>.next-btn:not(:last-child),.next-month-picker-panel-footer>.next-btn:not(:last-child),.next-month-picker-panel-tools>.next-btn:not(:last-child),.next-range-picker-panel-footer>.next-btn:not(:last-child),.next-range-picker-panel-tools>.next-btn:not(:last-child),.next-week-picker-panel-footer>.next-btn:not(:last-child),.next-week-picker-panel-tools>.next-btn:not(:last-child),.next-year-picker-panel-footer>.next-btn:not(:last-child),.next-year-picker-panel-tools>.next-btn:not(:last-child){margin-right:16px}.next-date-picker-panel-tools,.next-month-picker-panel-tools,.next-range-picker-panel-tools,.next-week-picker-panel-tools,.next-year-picker-panel-tools{float:left}.next-date-picker .next-calendar-panel-header,.next-month-picker .next-calendar-panel-header,.next-range-picker .next-calendar-panel-header,.next-week-picker .next-calendar-panel-header,.next-year-picker .next-calendar-panel-header{margin-left:-1px;margin-right:-1px}.next-date-picker .next-input input,.next-month-picker .next-input input,.next-range-picker .next-input input,.next-week-picker .next-input input,.next-year-picker .next-input input{vertical-align:baseline}.next-date-picker-symbol-calendar-icon:before,.next-month-picker-symbol-calendar-icon:before,.next-range-picker-symbol-calendar-icon:before,.next-week-picker-symbol-calendar-icon:before,.next-year-picker-symbol-calendar-icon:before{content:"î"}.next-range-picker-panel-body .next-calendar{display:inline-block;width:50%}.next-message{position:relative;display:block;vertical-align:baseline;animation-duration:.3s;animation-timing-function:ease-in-out}.next-message,.next-message *,.next-message :after,.next-message :before{box-sizing:border-box}.next-message:after{visibility:hidden;display:block;height:0;font-size:0;content:" ";clear:both}.next-message .next-message-close{color:#999;font-size:0;position:absolute;cursor:pointer}.next-message .next-message-close .next-icon-close{width:12px;height:12px;line-height:1em}.next-message .next-message-close .next-icon-close:before{width:12px;height:12px;font-size:12px;line-height:1em}.next-message .next-message-close:hover{color:#666}.next-message.next-message-success.next-inline{background-color:#e5fff5;border-color:#e5fff5;box-shadow:none;border-style:solid}.next-message.next-message-success.next-inline .next-message-title{color:#333}.next-message.next-message-success.next-inline .next-message-content{color:#666}.next-message.next-message-success.next-inline .next-message-symbol{color:#1ad78c}.next-message.next-message-success.next-inline .next-message-symbol-icon:before{content:"î"}.next-message.next-message-success.next-addon{background-color:transparent;border-color:transparent;box-shadow:none;border-style:solid}.next-message.next-message-success.next-addon .next-message-title{color:#333}.next-message.next-message-success.next-addon .next-message-content{color:#666}.next-message.next-message-success.next-addon .next-message-symbol{color:#1ad78c}.next-message.next-message-success.next-addon .next-message-symbol-icon:before{content:"î"}.next-message.next-message-success.next-toast{background-color:#fff;border-color:#fff;box-shadow:0 4px 8px 0 rgba(0,0,0,.12);border-style:solid}.next-message.next-message-success.next-toast .next-message-title{color:#333}.next-message.next-message-success.next-toast .next-message-content{color:#666}.next-message.next-message-success.next-toast .next-message-symbol{color:#1ad78c}.next-message.next-message-success.next-toast .next-message-symbol-icon:before{content:"î"}.next-message.next-message-warning.next-inline{background-color:#fff9e0;border-color:#fff9e0;box-shadow:none;border-style:solid}.next-message.next-message-warning.next-inline .next-message-title{color:#333}.next-message.next-message-warning.next-inline .next-message-content{color:#666}.next-message.next-message-warning.next-inline .next-message-symbol{color:#f1c826}.next-message.next-message-warning.next-inline .next-message-symbol-icon:before{content:"î"}.next-message.next-message-warning.next-addon{background-color:transparent;border-color:transparent;box-shadow:none;border-style:solid}.next-message.next-message-warning.next-addon .next-message-title{color:#333}.next-message.next-message-warning.next-addon .next-message-content{color:#666}.next-message.next-message-warning.next-addon .next-message-symbol{color:#f1c826}.next-message.next-message-warning.next-addon .next-message-symbol-icon:before{content:"î"}.next-message.next-message-warning.next-toast{background-color:#fff;border-color:#fff;box-shadow:0 4px 8px 0 rgba(0,0,0,.12);border-style:solid}.next-message.next-message-warning.next-toast .next-message-title{color:#333}.next-message.next-message-warning.next-toast .next-message-content{color:#666}.next-message.next-message-warning.next-toast .next-message-symbol{color:#f1c826}.next-message.next-message-warning.next-toast .next-message-symbol-icon:before{content:"î"}.next-message.next-message-error.next-inline{background-color:#ffece4;border-color:#ffece4;box-shadow:none;border-style:solid}.next-message.next-message-error.next-inline .next-message-title{color:#333}.next-message.next-message-error.next-inline .next-message-content{color:#666}.next-message.next-message-error.next-inline .next-message-symbol{color:#d23c26}.next-message.next-message-error.next-inline .next-message-symbol-icon:before{content:"î"}.next-message.next-message-error.next-addon{background-color:transparent;border-color:transparent;box-shadow:none;border-style:solid}.next-message.next-message-error.next-addon .next-message-title{color:#333}.next-message.next-message-error.next-addon .next-message-content{color:#666}.next-message.next-message-error.next-addon .next-message-symbol{color:#d23c26}.next-message.next-message-error.next-addon .next-message-symbol-icon:before{content:"î"}.next-message.next-message-error.next-toast{background-color:#fff;border-color:#fff;box-shadow:0 4px 8px 0 rgba(0,0,0,.12);border-style:solid}.next-message.next-message-error.next-toast .next-message-title{color:#333}.next-message.next-message-error.next-toast .next-message-content{color:#666}.next-message.next-message-error.next-toast .next-message-symbol{color:#d23c26}.next-message.next-message-error.next-toast .next-message-symbol-icon:before{content:"î"}.next-message.next-message-notice.next-inline{background-color:#e4f3fe;border-color:#e4f3fe;box-shadow:none;border-style:solid}.next-message.next-message-notice.next-inline .next-message-title{color:#333}.next-message.next-message-notice.next-inline .next-message-content{color:#666}.next-message.next-message-notice.next-inline .next-message-symbol{color:#298dff}.next-message.next-message-notice.next-inline .next-message-symbol-icon:before{content:"î"}.next-message.next-message-notice.next-addon{background-color:transparent;border-color:transparent;box-shadow:none;border-style:solid}.next-message.next-message-notice.next-addon .next-message-title{color:#333}.next-message.next-message-notice.next-addon .next-message-content{color:#666}.next-message.next-message-notice.next-addon .next-message-symbol{color:#298dff}.next-message.next-message-notice.next-addon .next-message-symbol-icon:before{content:"î"}.next-message.next-message-notice.next-toast{background-color:#fff;border-color:#fff;box-shadow:0 4px 8px 0 rgba(0,0,0,.12);border-style:solid}.next-message.next-message-notice.next-toast .next-message-title{color:#333}.next-message.next-message-notice.next-toast .next-message-content{color:#666}.next-message.next-message-notice.next-toast .next-message-symbol{color:#298dff}.next-message.next-message-notice.next-toast .next-message-symbol-icon:before{content:"î"}.next-message.next-message-help.next-inline{background-color:#fff9e0;border-color:#fff9e0;box-shadow:none;border-style:solid}.next-message.next-message-help.next-inline .next-message-title{color:#333}.next-message.next-message-help.next-inline .next-message-content{color:#666}.next-message.next-message-help.next-inline .next-message-symbol{color:#f1c826}.next-message.next-message-help.next-inline .next-message-symbol-icon:before{content:"î³"}.next-message.next-message-help.next-addon{background-color:transparent;border-color:transparent;box-shadow:none;border-style:solid}.next-message.next-message-help.next-addon .next-message-title{color:#333}.next-message.next-message-help.next-addon .next-message-content{color:#666}.next-message.next-message-help.next-addon .next-message-symbol{color:#f1c826}.next-message.next-message-help.next-addon .next-message-symbol-icon:before{content:"î³"}.next-message.next-message-help.next-toast{background-color:#fff;border-color:#fff;box-shadow:0 4px 8px 0 rgba(0,0,0,.12);border-style:solid}.next-message.next-message-help.next-toast .next-message-title{color:#333}.next-message.next-message-help.next-toast .next-message-content{color:#666}.next-message.next-message-help.next-toast .next-message-symbol{color:#f1c826}.next-message.next-message-help.next-toast .next-message-symbol-icon:before{content:"î³"}.next-message.next-message-loading.next-inline{background-color:#fff;border-color:#fff;box-shadow:none;border-style:solid}.next-message.next-message-loading.next-inline .next-message-title{color:#333}.next-message.next-message-loading.next-inline .next-message-content{color:#666}.next-message.next-message-loading.next-inline .next-message-symbol{color:#209bfa}.next-message.next-message-loading.next-inline .next-message-symbol-icon:before{content:"î";animation:loadingCircle 1s linear infinite}.next-message.next-message-loading.next-addon{background-color:transparent;border-color:transparent;box-shadow:none;border-style:solid}.next-message.next-message-loading.next-addon .next-message-title{color:#333}.next-message.next-message-loading.next-addon .next-message-content{color:#666}.next-message.next-message-loading.next-addon .next-message-symbol{color:#209bfa}.next-message.next-message-loading.next-addon .next-message-symbol-icon:before{content:"î";animation:loadingCircle 1s linear infinite}.next-message.next-message-loading.next-toast{background-color:#fff;border-color:#fff;box-shadow:0 4px 8px 0 rgba(0,0,0,.12);border-style:solid}.next-message.next-message-loading.next-toast .next-message-title{color:#333}.next-message.next-message-loading.next-toast .next-message-content{color:#666}.next-message.next-message-loading.next-toast .next-message-symbol{color:#209bfa}.next-message.next-message-loading.next-toast .next-message-symbol-icon:before{content:"î";animation:loadingCircle 1s linear infinite}.next-message.next-medium{border-width:1px;padding:12px}.next-message.next-medium .next-message-symbol{float:left;line-height:16px}.next-message.next-medium .next-message-symbol .next-icon-remote,.next-message.next-medium .next-message-symbol:before{width:16px;font-size:16px;line-height:inherit}.next-message.next-medium .next-message-title{padding:0 20px 0 24px;font-size:16px;line-height:16px}.next-message.next-medium .next-message-content{margin-top:8px;padding:0 20px 0 24px;font-size:14px;line-height:1.5}.next-message.next-medium .next-message-symbol+.next-message-content{margin-top:0}.next-message.next-medium.next-only-content .next-message-content,.next-message.next-medium.next-title-content .next-message-title{line-height:16px}.next-message.next-medium .next-message-close{top:12px;right:12px}.next-message.next-medium.next-inline,.next-message.next-medium.next-toast{border-radius:3px}.next-message.next-large{border-width:2px;padding:16px}.next-message.next-large .next-message-symbol{float:left;line-height:24px}.next-message.next-large .next-message-symbol .next-icon-remote,.next-message.next-large .next-message-symbol:before{width:24px;font-size:24px;line-height:inherit}.next-message.next-large .next-message-title{padding:0 20px 0 36px;font-size:20px;line-height:20px}.next-message.next-large .next-message-content{margin-top:8px;padding:0 20px 0 36px;font-size:14px;line-height:1.5}.next-message.next-large .next-message-symbol+.next-message-content{margin-top:0}.next-message.next-large.next-only-content .next-message-content,.next-message.next-large.next-title-content .next-message-title{line-height:24px}.next-message.next-large .next-message-close{top:16px;right:16px}.next-message.next-large.next-inline,.next-message.next-large.next-toast{border-radius:3px}.next-message[dir=rtl] .next-message-symbol{float:right}.next-message[dir=rtl].next-medium .next-message-title{padding:0 24px 0 20px}.next-message[dir=rtl].next-medium .next-message-close{left:12px;right:auto}.next-message[dir=rtl].next-large .next-message-title{padding:0 36px 0 20px}.next-message[dir=rtl].next-large .next-message-close{left:16px;right:auto}.next-message-wrapper-v2{margin:0;padding:0;position:fixed;left:0;z-index:1001;width:100%;pointer-events:none}.next-message-list{padding:8px;text-align:center}.next-message-list .next-message{display:inline-block;pointer-events:all}.next-message-fade-leave{animation-duration:.3s;animation-play-state:paused;animation-fill-mode:both;animation-timing-function:ease}.next-message-fade-leave.next-message-fade-leave-active{animation-name:MessageFadeOut;animation-play-state:running}@keyframes MessageFadeOut{0%{max-height:150px;margin-bottom:16px;opacity:1}to{max-height:0;margin-bottom:0;padding-top:0;padding-bottom:0;opacity:0}}.next-dialog[dir=rtl],.next-dialog[dir=rtl] .next-dialog-footer.next-align-left{text-align:right}.next-dialog[dir=rtl] .next-dialog-footer.next-align-center{text-align:center}.next-dialog[dir=rtl] .next-dialog-footer.next-align-right{text-align:left}.next-dialog[dir=rtl] .next-dialog-btn+.next-dialog-btn{margin-right:4px;margin-left:0}.next-dialog[dir=rtl] .next-dialog-close{left:12px;right:auto}.next-dialog{position:fixed;z-index:1001;background:#fff;border:1px solid #e6e6e6;border-radius:6px;box-shadow:0 4px 8px 0 rgba(0,0,0,.12);text-align:left;overflow:hidden;max-width:90%}.next-dialog,.next-dialog *,.next-dialog :after,.next-dialog :before{box-sizing:border-box}.next-dialog-header{padding:12px 20px;border-bottom:0 solid transparent;font-size:16px;font-weight:400;background:transparent;color:#333}.next-dialog-body{padding:20px;font-size:14px;line-height:1.5;color:#666}.next-dialog-body-no-footer{margin-bottom:0}.next-dialog-footer{padding:12px 20px;border-top:0 solid transparent;background:transparent}.next-dialog-footer.next-align-left{text-align:left}.next-dialog-footer.next-align-center{text-align:center}.next-dialog-footer.next-align-right{text-align:right}.next-dialog-footer-fixed-height{position:absolute;width:100%;bottom:0}.next-dialog-btn+.next-dialog-btn{margin-left:4px}.next-dialog-close{position:absolute;top:12px;right:12px;width:16px;cursor:pointer}.next-dialog-close,.next-dialog-close:link,.next-dialog-close:visited{height:16px;color:#999}.next-dialog-close:hover{background:transparent;color:#333}.next-dialog-close .next-dialog-close-icon.next-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px;width:16px;height:16px;line-height:1em}.next-dialog-close .next-dialog-close-icon.next-icon:before{width:16px;height:16px;font-size:16px;line-height:1em}.next-dialog-container{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1001;padding:40px;overflow:auto;text-align:center;box-sizing:border-box}.next-dialog-container:before{display:inline-block;vertical-align:middle;width:0;height:100%;content:""}.next-dialog-container .next-dialog{display:inline-block;position:relative;vertical-align:middle}.next-dialog-quick .next-dialog-body{padding:20px}.next-dialog .next-dialog-message.next-message{min-width:300px;padding:0}.next-dialog-wrapper{position:fixed;top:0;left:0;bottom:0;right:0;overflow:auto}.next-dialog-inner-wrapper{display:flex;position:relative;top:100px;pointer-events:none;padding-bottom:24px}.next-dialog-v2{pointer-events:auto;margin:0 auto}.next-dialog-v2 .next-dialog-header{word-break:break-word;padding-right:40px}.next-dialog-v2 .next-dialog-body{padding-right:40px}.next-dialog-v2 .next-dialog-header+.next-dialog-body{padding:20px}.next-dialog-v2 .next-dialog-header+.next-dialog-body-no-footer{margin-bottom:0}.next-dialog.next-dialog-v2{position:relative}.next-dialog-centered{text-align:center}.next-dialog-centered:before{display:inline-block;width:0;height:100%;vertical-align:middle;content:""}.next-dialog-centered .next-dialog-v2{margin:40px 0;display:inline-block;text-align:left;vertical-align:middle}.next-drawer{position:fixed;z-index:1001;background:#fff;border:1px solid #e6e6e6;box-shadow:0 4px 8px 0 rgba(0,0,0,.12);overflow:auto;animation-duration:.3s;animation-timing-function:ease-in-out}.next-drawer,.next-drawer *,.next-drawer :after,.next-drawer :before{box-sizing:border-box}.next-drawer-left,.next-drawer-right{height:100%;max-width:80%;width:240px}.next-drawer-bottom,.next-drawer-top{width:100%}.next-drawer-header{padding:12px 20px;border-bottom:1px solid #e6e6e6;font-size:16px;background:#fff;color:#333}.next-drawer-no-title{padding:0;border-bottom:0}.next-drawer-body{padding:20px;font-size:14px;line-height:1.5;color:#666}.next-drawer-close{position:absolute;top:12px;right:12px;width:16px;cursor:pointer}.next-drawer-close,.next-drawer-close:link,.next-drawer-close:visited{height:16px;color:#999}.next-drawer-close:hover{background:transparent;color:#333}.next-drawer-close .next-drawer-close-icon.next-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px;width:16px;height:16px;line-height:1em}.next-drawer-close .next-drawer-close-icon.next-icon:before{width:16px;height:16px;font-size:16px;line-height:1em}.next-row{display:flex}.next-row,.next-row *,.next-row :after,.next-row :before{box-sizing:border-box}.next-row.next-row-wrap{flex-wrap:wrap}@media(min-width:320px){.next-row.next-row-fixed{width:320px}}@media(min-width:480px){.next-row.next-row-fixed{width:480px}}@media(min-width:720px){.next-row.next-row-fixed{width:720px}}@media(min-width:990px){.next-row.next-row-fixed{width:990px}}@media(min-width:1200px){.next-row.next-row-fixed{width:1200px}}@media(min-width:1500px){.next-row.next-row-fixed{width:1500px}}.next-row.next-row-fixed-xxs{width:320px}.next-row.next-row-fixed-xs{width:480px}.next-row.next-row-fixed-s{width:720px}.next-row.next-row-fixed-m{width:990px}.next-row.next-row-fixed-l{width:1200px}.next-row.next-row-fixed-xl{width:1500px}.next-row.next-row-justify-start{justify-content:flex-start}.next-row.next-row-justify-end{justify-content:flex-end}.next-row.next-row-justify-center{justify-content:center}.next-row.next-row-justify-space-between{justify-content:space-between}.next-row.next-row-justify-space-around{justify-content:space-around}.next-row.next-row-align-top{align-items:flex-start}.next-row.next-row-align-bottom{align-items:flex-end}.next-row.next-row-align-center{align-items:center}.next-row.next-row-align-baseline{align-items:baseline}.next-row.next-row-align-stretch{align-items:stretch}.next-col{flex:1}.next-col.next-col-top{align-self:flex-start}.next-col.next-col-bottom{align-self:flex-end}.next-col.next-col-center{align-self:center}@media (min-width:0\0)and (min-resolution:0.001dpcm){.next-row{display:table;width:100%}.next-col{display:table-cell;vertical-align:top}}.next-col-1{flex:0 0 4.1666666667%;width:4.1666666667%;max-width:4.1666666667%}.next-col-2{flex:0 0 8.3333333333%;width:8.3333333333%;max-width:8.3333333333%}.next-col-3{flex:0 0 12.5%;width:12.5%;max-width:12.5%}.next-col-4{flex:0 0 16.6666666667%;width:16.6666666667%;max-width:16.6666666667%}.next-col-5{flex:0 0 20.8333333333%;width:20.8333333333%;max-width:20.8333333333%}.next-col-6{flex:0 0 25%;width:25%;max-width:25%}.next-col-7{flex:0 0 29.1666666667%;width:29.1666666667%;max-width:29.1666666667%}.next-col-8{flex:0 0 33.3333333333%;width:33.3333333333%;max-width:33.3333333333%}.next-col-9{flex:0 0 37.5%;width:37.5%;max-width:37.5%}.next-col-10{flex:0 0 41.6666666667%;width:41.6666666667%;max-width:41.6666666667%}.next-col-11{flex:0 0 45.8333333333%;width:45.8333333333%;max-width:45.8333333333%}.next-col-12{flex:0 0 50%;width:50%;max-width:50%}.next-col-13{flex:0 0 54.1666666667%;width:54.1666666667%;max-width:54.1666666667%}.next-col-14{flex:0 0 58.3333333333%;width:58.3333333333%;max-width:58.3333333333%}.next-col-15{flex:0 0 62.5%;width:62.5%;max-width:62.5%}.next-col-16{flex:0 0 66.6666666667%;width:66.6666666667%;max-width:66.6666666667%}.next-col-17{flex:0 0 70.8333333333%;width:70.8333333333%;max-width:70.8333333333%}.next-col-18{flex:0 0 75%;width:75%;max-width:75%}.next-col-19{flex:0 0 79.1666666667%;width:79.1666666667%;max-width:79.1666666667%}.next-col-20{flex:0 0 83.3333333333%;width:83.3333333333%;max-width:83.3333333333%}.next-col-21{flex:0 0 87.5%;width:87.5%;max-width:87.5%}.next-col-22{flex:0 0 91.6666666667%;width:91.6666666667%;max-width:91.6666666667%}.next-col-23{flex:0 0 95.8333333333%;width:95.8333333333%;max-width:95.8333333333%}.next-col-24{flex:0 0 100%;width:100%;max-width:100%}@media(min-width:320px){.next-col-xxs-1{flex:0 0 4.1666666667%;width:4.1666666667%;max-width:4.1666666667%}.next-col-xxs-2{flex:0 0 8.3333333333%;width:8.3333333333%;max-width:8.3333333333%}.next-col-xxs-3{flex:0 0 12.5%;width:12.5%;max-width:12.5%}.next-col-xxs-4{flex:0 0 16.6666666667%;width:16.6666666667%;max-width:16.6666666667%}.next-col-xxs-5{flex:0 0 20.8333333333%;width:20.8333333333%;max-width:20.8333333333%}.next-col-xxs-6{flex:0 0 25%;width:25%;max-width:25%}.next-col-xxs-7{flex:0 0 29.1666666667%;width:29.1666666667%;max-width:29.1666666667%}.next-col-xxs-8{flex:0 0 33.3333333333%;width:33.3333333333%;max-width:33.3333333333%}.next-col-xxs-9{flex:0 0 37.5%;width:37.5%;max-width:37.5%}.next-col-xxs-10{flex:0 0 41.6666666667%;width:41.6666666667%;max-width:41.6666666667%}.next-col-xxs-11{flex:0 0 45.8333333333%;width:45.8333333333%;max-width:45.8333333333%}.next-col-xxs-12{flex:0 0 50%;width:50%;max-width:50%}.next-col-xxs-13{flex:0 0 54.1666666667%;width:54.1666666667%;max-width:54.1666666667%}.next-col-xxs-14{flex:0 0 58.3333333333%;width:58.3333333333%;max-width:58.3333333333%}.next-col-xxs-15{flex:0 0 62.5%;width:62.5%;max-width:62.5%}.next-col-xxs-16{flex:0 0 66.6666666667%;width:66.6666666667%;max-width:66.6666666667%}.next-col-xxs-17{flex:0 0 70.8333333333%;width:70.8333333333%;max-width:70.8333333333%}.next-col-xxs-18{flex:0 0 75%;width:75%;max-width:75%}.next-col-xxs-19{flex:0 0 79.1666666667%;width:79.1666666667%;max-width:79.1666666667%}.next-col-xxs-20{flex:0 0 83.3333333333%;width:83.3333333333%;max-width:83.3333333333%}.next-col-xxs-21{flex:0 0 87.5%;width:87.5%;max-width:87.5%}.next-col-xxs-22{flex:0 0 91.6666666667%;width:91.6666666667%;max-width:91.6666666667%}.next-col-xxs-23{flex:0 0 95.8333333333%;width:95.8333333333%;max-width:95.8333333333%}.next-col-xxs-24{flex:0 0 100%;width:100%;max-width:100%}}@media(min-width:480px){.next-col-xs-1{flex:0 0 4.1666666667%;width:4.1666666667%;max-width:4.1666666667%}.next-col-xs-2{flex:0 0 8.3333333333%;width:8.3333333333%;max-width:8.3333333333%}.next-col-xs-3{flex:0 0 12.5%;width:12.5%;max-width:12.5%}.next-col-xs-4{flex:0 0 16.6666666667%;width:16.6666666667%;max-width:16.6666666667%}.next-col-xs-5{flex:0 0 20.8333333333%;width:20.8333333333%;max-width:20.8333333333%}.next-col-xs-6{flex:0 0 25%;width:25%;max-width:25%}.next-col-xs-7{flex:0 0 29.1666666667%;width:29.1666666667%;max-width:29.1666666667%}.next-col-xs-8{flex:0 0 33.3333333333%;width:33.3333333333%;max-width:33.3333333333%}.next-col-xs-9{flex:0 0 37.5%;width:37.5%;max-width:37.5%}.next-col-xs-10{flex:0 0 41.6666666667%;width:41.6666666667%;max-width:41.6666666667%}.next-col-xs-11{flex:0 0 45.8333333333%;width:45.8333333333%;max-width:45.8333333333%}.next-col-xs-12{flex:0 0 50%;width:50%;max-width:50%}.next-col-xs-13{flex:0 0 54.1666666667%;width:54.1666666667%;max-width:54.1666666667%}.next-col-xs-14{flex:0 0 58.3333333333%;width:58.3333333333%;max-width:58.3333333333%}.next-col-xs-15{flex:0 0 62.5%;width:62.5%;max-width:62.5%}.next-col-xs-16{flex:0 0 66.6666666667%;width:66.6666666667%;max-width:66.6666666667%}.next-col-xs-17{flex:0 0 70.8333333333%;width:70.8333333333%;max-width:70.8333333333%}.next-col-xs-18{flex:0 0 75%;width:75%;max-width:75%}.next-col-xs-19{flex:0 0 79.1666666667%;width:79.1666666667%;max-width:79.1666666667%}.next-col-xs-20{flex:0 0 83.3333333333%;width:83.3333333333%;max-width:83.3333333333%}.next-col-xs-21{flex:0 0 87.5%;width:87.5%;max-width:87.5%}.next-col-xs-22{flex:0 0 91.6666666667%;width:91.6666666667%;max-width:91.6666666667%}.next-col-xs-23{flex:0 0 95.8333333333%;width:95.8333333333%;max-width:95.8333333333%}.next-col-xs-24{flex:0 0 100%;width:100%;max-width:100%}}@media(min-width:720px){.next-col-s-1{flex:0 0 4.1666666667%;width:4.1666666667%;max-width:4.1666666667%}.next-col-s-2{flex:0 0 8.3333333333%;width:8.3333333333%;max-width:8.3333333333%}.next-col-s-3{flex:0 0 12.5%;width:12.5%;max-width:12.5%}.next-col-s-4{flex:0 0 16.6666666667%;width:16.6666666667%;max-width:16.6666666667%}.next-col-s-5{flex:0 0 20.8333333333%;width:20.8333333333%;max-width:20.8333333333%}.next-col-s-6{flex:0 0 25%;width:25%;max-width:25%}.next-col-s-7{flex:0 0 29.1666666667%;width:29.1666666667%;max-width:29.1666666667%}.next-col-s-8{flex:0 0 33.3333333333%;width:33.3333333333%;max-width:33.3333333333%}.next-col-s-9{flex:0 0 37.5%;width:37.5%;max-width:37.5%}.next-col-s-10{flex:0 0 41.6666666667%;width:41.6666666667%;max-width:41.6666666667%}.next-col-s-11{flex:0 0 45.8333333333%;width:45.8333333333%;max-width:45.8333333333%}.next-col-s-12{flex:0 0 50%;width:50%;max-width:50%}.next-col-s-13{flex:0 0 54.1666666667%;width:54.1666666667%;max-width:54.1666666667%}.next-col-s-14{flex:0 0 58.3333333333%;width:58.3333333333%;max-width:58.3333333333%}.next-col-s-15{flex:0 0 62.5%;width:62.5%;max-width:62.5%}.next-col-s-16{flex:0 0 66.6666666667%;width:66.6666666667%;max-width:66.6666666667%}.next-col-s-17{flex:0 0 70.8333333333%;width:70.8333333333%;max-width:70.8333333333%}.next-col-s-18{flex:0 0 75%;width:75%;max-width:75%}.next-col-s-19{flex:0 0 79.1666666667%;width:79.1666666667%;max-width:79.1666666667%}.next-col-s-20{flex:0 0 83.3333333333%;width:83.3333333333%;max-width:83.3333333333%}.next-col-s-21{flex:0 0 87.5%;width:87.5%;max-width:87.5%}.next-col-s-22{flex:0 0 91.6666666667%;width:91.6666666667%;max-width:91.6666666667%}.next-col-s-23{flex:0 0 95.8333333333%;width:95.8333333333%;max-width:95.8333333333%}.next-col-s-24{flex:0 0 100%;width:100%;max-width:100%}}@media(min-width:990px){.next-col-m-1{flex:0 0 4.1666666667%;width:4.1666666667%;max-width:4.1666666667%}.next-col-m-2{flex:0 0 8.3333333333%;width:8.3333333333%;max-width:8.3333333333%}.next-col-m-3{flex:0 0 12.5%;width:12.5%;max-width:12.5%}.next-col-m-4{flex:0 0 16.6666666667%;width:16.6666666667%;max-width:16.6666666667%}.next-col-m-5{flex:0 0 20.8333333333%;width:20.8333333333%;max-width:20.8333333333%}.next-col-m-6{flex:0 0 25%;width:25%;max-width:25%}.next-col-m-7{flex:0 0 29.1666666667%;width:29.1666666667%;max-width:29.1666666667%}.next-col-m-8{flex:0 0 33.3333333333%;width:33.3333333333%;max-width:33.3333333333%}.next-col-m-9{flex:0 0 37.5%;width:37.5%;max-width:37.5%}.next-col-m-10{flex:0 0 41.6666666667%;width:41.6666666667%;max-width:41.6666666667%}.next-col-m-11{flex:0 0 45.8333333333%;width:45.8333333333%;max-width:45.8333333333%}.next-col-m-12{flex:0 0 50%;width:50%;max-width:50%}.next-col-m-13{flex:0 0 54.1666666667%;width:54.1666666667%;max-width:54.1666666667%}.next-col-m-14{flex:0 0 58.3333333333%;width:58.3333333333%;max-width:58.3333333333%}.next-col-m-15{flex:0 0 62.5%;width:62.5%;max-width:62.5%}.next-col-m-16{flex:0 0 66.6666666667%;width:66.6666666667%;max-width:66.6666666667%}.next-col-m-17{flex:0 0 70.8333333333%;width:70.8333333333%;max-width:70.8333333333%}.next-col-m-18{flex:0 0 75%;width:75%;max-width:75%}.next-col-m-19{flex:0 0 79.1666666667%;width:79.1666666667%;max-width:79.1666666667%}.next-col-m-20{flex:0 0 83.3333333333%;width:83.3333333333%;max-width:83.3333333333%}.next-col-m-21{flex:0 0 87.5%;width:87.5%;max-width:87.5%}.next-col-m-22{flex:0 0 91.6666666667%;width:91.6666666667%;max-width:91.6666666667%}.next-col-m-23{flex:0 0 95.8333333333%;width:95.8333333333%;max-width:95.8333333333%}.next-col-m-24{flex:0 0 100%;width:100%;max-width:100%}}@media(min-width:1200px){.next-col-l-1{flex:0 0 4.1666666667%;width:4.1666666667%;max-width:4.1666666667%}.next-col-l-2{flex:0 0 8.3333333333%;width:8.3333333333%;max-width:8.3333333333%}.next-col-l-3{flex:0 0 12.5%;width:12.5%;max-width:12.5%}.next-col-l-4{flex:0 0 16.6666666667%;width:16.6666666667%;max-width:16.6666666667%}.next-col-l-5{flex:0 0 20.8333333333%;width:20.8333333333%;max-width:20.8333333333%}.next-col-l-6{flex:0 0 25%;width:25%;max-width:25%}.next-col-l-7{flex:0 0 29.1666666667%;width:29.1666666667%;max-width:29.1666666667%}.next-col-l-8{flex:0 0 33.3333333333%;width:33.3333333333%;max-width:33.3333333333%}.next-col-l-9{flex:0 0 37.5%;width:37.5%;max-width:37.5%}.next-col-l-10{flex:0 0 41.6666666667%;width:41.6666666667%;max-width:41.6666666667%}.next-col-l-11{flex:0 0 45.8333333333%;width:45.8333333333%;max-width:45.8333333333%}.next-col-l-12{flex:0 0 50%;width:50%;max-width:50%}.next-col-l-13{flex:0 0 54.1666666667%;width:54.1666666667%;max-width:54.1666666667%}.next-col-l-14{flex:0 0 58.3333333333%;width:58.3333333333%;max-width:58.3333333333%}.next-col-l-15{flex:0 0 62.5%;width:62.5%;max-width:62.5%}.next-col-l-16{flex:0 0 66.6666666667%;width:66.6666666667%;max-width:66.6666666667%}.next-col-l-17{flex:0 0 70.8333333333%;width:70.8333333333%;max-width:70.8333333333%}.next-col-l-18{flex:0 0 75%;width:75%;max-width:75%}.next-col-l-19{flex:0 0 79.1666666667%;width:79.1666666667%;max-width:79.1666666667%}.next-col-l-20{flex:0 0 83.3333333333%;width:83.3333333333%;max-width:83.3333333333%}.next-col-l-21{flex:0 0 87.5%;width:87.5%;max-width:87.5%}.next-col-l-22{flex:0 0 91.6666666667%;width:91.6666666667%;max-width:91.6666666667%}.next-col-l-23{flex:0 0 95.8333333333%;width:95.8333333333%;max-width:95.8333333333%}.next-col-l-24{flex:0 0 100%;width:100%;max-width:100%}}@media(min-width:1500px){.next-col-xl-1{flex:0 0 4.1666666667%;width:4.1666666667%;max-width:4.1666666667%}.next-col-xl-2{flex:0 0 8.3333333333%;width:8.3333333333%;max-width:8.3333333333%}.next-col-xl-3{flex:0 0 12.5%;width:12.5%;max-width:12.5%}.next-col-xl-4{flex:0 0 16.6666666667%;width:16.6666666667%;max-width:16.6666666667%}.next-col-xl-5{flex:0 0 20.8333333333%;width:20.8333333333%;max-width:20.8333333333%}.next-col-xl-6{flex:0 0 25%;width:25%;max-width:25%}.next-col-xl-7{flex:0 0 29.1666666667%;width:29.1666666667%;max-width:29.1666666667%}.next-col-xl-8{flex:0 0 33.3333333333%;width:33.3333333333%;max-width:33.3333333333%}.next-col-xl-9{flex:0 0 37.5%;width:37.5%;max-width:37.5%}.next-col-xl-10{flex:0 0 41.6666666667%;width:41.6666666667%;max-width:41.6666666667%}.next-col-xl-11{flex:0 0 45.8333333333%;width:45.8333333333%;max-width:45.8333333333%}.next-col-xl-12{flex:0 0 50%;width:50%;max-width:50%}.next-col-xl-13{flex:0 0 54.1666666667%;width:54.1666666667%;max-width:54.1666666667%}.next-col-xl-14{flex:0 0 58.3333333333%;width:58.3333333333%;max-width:58.3333333333%}.next-col-xl-15{flex:0 0 62.5%;width:62.5%;max-width:62.5%}.next-col-xl-16{flex:0 0 66.6666666667%;width:66.6666666667%;max-width:66.6666666667%}.next-col-xl-17{flex:0 0 70.8333333333%;width:70.8333333333%;max-width:70.8333333333%}.next-col-xl-18{flex:0 0 75%;width:75%;max-width:75%}.next-col-xl-19{flex:0 0 79.1666666667%;width:79.1666666667%;max-width:79.1666666667%}.next-col-xl-20{flex:0 0 83.3333333333%;width:83.3333333333%;max-width:83.3333333333%}.next-col-xl-21{flex:0 0 87.5%;width:87.5%;max-width:87.5%}.next-col-xl-22{flex:0 0 91.6666666667%;width:91.6666666667%;max-width:91.6666666667%}.next-col-xl-23{flex:0 0 95.8333333333%;width:95.8333333333%;max-width:95.8333333333%}.next-col-xl-24{flex:0 0 100%;width:100%;max-width:100%}}.next-col-1p5{flex:0 0 20%;width:20%;max-width:20%}.next-col-2p5{flex:0 0 40%;width:40%;max-width:40%}.next-col-3p5{flex:0 0 60%;width:60%;max-width:60%}.next-col-4p5{flex:0 0 80%;width:80%;max-width:80%}.next-col-5p5{flex:0 0 100%;width:100%;max-width:100%}@media(min-width:320px){.next-col-xxs-1p5{flex:0 0 20%;width:20%;max-width:20%}.next-col-xxs-2p5{flex:0 0 40%;width:40%;max-width:40%}.next-col-xxs-3p5{flex:0 0 60%;width:60%;max-width:60%}.next-col-xxs-4p5{flex:0 0 80%;width:80%;max-width:80%}.next-col-xxs-5p5{flex:0 0 100%;width:100%;max-width:100%}}@media(min-width:480px){.next-col-xs-1p5{flex:0 0 20%;width:20%;max-width:20%}.next-col-xs-2p5{flex:0 0 40%;width:40%;max-width:40%}.next-col-xs-3p5{flex:0 0 60%;width:60%;max-width:60%}.next-col-xs-4p5{flex:0 0 80%;width:80%;max-width:80%}.next-col-xs-5p5{flex:0 0 100%;width:100%;max-width:100%}}@media(min-width:720px){.next-col-s-1p5{flex:0 0 20%;width:20%;max-width:20%}.next-col-s-2p5{flex:0 0 40%;width:40%;max-width:40%}.next-col-s-3p5{flex:0 0 60%;width:60%;max-width:60%}.next-col-s-4p5{flex:0 0 80%;width:80%;max-width:80%}.next-col-s-5p5{flex:0 0 100%;width:100%;max-width:100%}}@media(min-width:990px){.next-col-m-1p5{flex:0 0 20%;width:20%;max-width:20%}.next-col-m-2p5{flex:0 0 40%;width:40%;max-width:40%}.next-col-m-3p5{flex:0 0 60%;width:60%;max-width:60%}.next-col-m-4p5{flex:0 0 80%;width:80%;max-width:80%}.next-col-m-5p5{flex:0 0 100%;width:100%;max-width:100%}}@media(min-width:1200px){.next-col-l-1p5{flex:0 0 20%;width:20%;max-width:20%}.next-col-l-2p5{flex:0 0 40%;width:40%;max-width:40%}.next-col-l-3p5{flex:0 0 60%;width:60%;max-width:60%}.next-col-l-4p5{flex:0 0 80%;width:80%;max-width:80%}.next-col-l-5p5{flex:0 0 100%;width:100%;max-width:100%}}@media(min-width:1500px){.next-col-xl-1p5{flex:0 0 20%;width:20%;max-width:20%}.next-col-xl-2p5{flex:0 0 40%;width:40%;max-width:40%}.next-col-xl-3p5{flex:0 0 60%;width:60%;max-width:60%}.next-col-xl-4p5{flex:0 0 80%;width:80%;max-width:80%}.next-col-xl-5p5{flex:0 0 100%;width:100%;max-width:100%}}.next-col-fixed-1{flex:0 0 20px;width:20px;max-width:20px}.next-col-fixed-2{flex:0 0 40px;width:40px;max-width:40px}.next-col-fixed-3{flex:0 0 60px;width:60px;max-width:60px}.next-col-fixed-4{flex:0 0 80px;width:80px;max-width:80px}.next-col-fixed-5{flex:0 0 100px;width:100px;max-width:100px}.next-col-fixed-6{flex:0 0 120px;width:120px;max-width:120px}.next-col-fixed-7{flex:0 0 140px;width:140px;max-width:140px}.next-col-fixed-8{flex:0 0 160px;width:160px;max-width:160px}.next-col-fixed-9{flex:0 0 180px;width:180px;max-width:180px}.next-col-fixed-10{flex:0 0 200px;width:200px;max-width:200px}.next-col-fixed-11{flex:0 0 220px;width:220px;max-width:220px}.next-col-fixed-12{flex:0 0 240px;width:240px;max-width:240px}.next-col-fixed-13{flex:0 0 260px;width:260px;max-width:260px}.next-col-fixed-14{flex:0 0 280px;width:280px;max-width:280px}.next-col-fixed-15{flex:0 0 300px;width:300px;max-width:300px}.next-col-fixed-16{flex:0 0 320px;width:320px;max-width:320px}.next-col-fixed-17{flex:0 0 340px;width:340px;max-width:340px}.next-col-fixed-18{flex:0 0 360px;width:360px;max-width:360px}.next-col-fixed-19{flex:0 0 380px;width:380px;max-width:380px}.next-col-fixed-20{flex:0 0 400px;width:400px;max-width:400px}.next-col-fixed-21{flex:0 0 420px;width:420px;max-width:420px}.next-col-fixed-22{flex:0 0 440px;width:440px;max-width:440px}.next-col-fixed-23{flex:0 0 460px;width:460px;max-width:460px}.next-col-fixed-24{flex:0 0 480px;width:480px;max-width:480px}.next-col-fixed-25{flex:0 0 500px;width:500px;max-width:500px}.next-col-fixed-26{flex:0 0 520px;width:520px;max-width:520px}.next-col-fixed-27{flex:0 0 540px;width:540px;max-width:540px}.next-col-fixed-28{flex:0 0 560px;width:560px;max-width:560px}.next-col-fixed-29{flex:0 0 580px;width:580px;max-width:580px}.next-col-fixed-30{flex:0 0 600px;width:600px;max-width:600px}.next-col-offset-1{margin-left:4.1666666667%}.next-col-offset-2{margin-left:8.3333333333%}.next-col-offset-3{margin-left:12.5%}.next-col-offset-4{margin-left:16.6666666667%}.next-col-offset-5{margin-left:20.8333333333%}.next-col-offset-6{margin-left:25%}.next-col-offset-7{margin-left:29.1666666667%}.next-col-offset-8{margin-left:33.3333333333%}.next-col-offset-9{margin-left:37.5%}.next-col-offset-10{margin-left:41.6666666667%}.next-col-offset-11{margin-left:45.8333333333%}.next-col-offset-12{margin-left:50%}.next-col-offset-13{margin-left:54.1666666667%}.next-col-offset-14{margin-left:58.3333333333%}.next-col-offset-15{margin-left:62.5%}.next-col-offset-16{margin-left:66.6666666667%}.next-col-offset-17{margin-left:70.8333333333%}.next-col-offset-18{margin-left:75%}.next-col-offset-19{margin-left:79.1666666667%}.next-col-offset-20{margin-left:83.3333333333%}.next-col-offset-21{margin-left:87.5%}.next-col-offset-22{margin-left:91.6666666667%}.next-col-offset-23{margin-left:95.8333333333%}.next-col-offset-24{margin-left:100%}@media(min-width:320px){.next-col-xxs-offset-1{margin-left:4.1666666667%}.next-col-xxs-offset-2{margin-left:8.3333333333%}.next-col-xxs-offset-3{margin-left:12.5%}.next-col-xxs-offset-4{margin-left:16.6666666667%}.next-col-xxs-offset-5{margin-left:20.8333333333%}.next-col-xxs-offset-6{margin-left:25%}.next-col-xxs-offset-7{margin-left:29.1666666667%}.next-col-xxs-offset-8{margin-left:33.3333333333%}.next-col-xxs-offset-9{margin-left:37.5%}.next-col-xxs-offset-10{margin-left:41.6666666667%}.next-col-xxs-offset-11{margin-left:45.8333333333%}.next-col-xxs-offset-12{margin-left:50%}.next-col-xxs-offset-13{margin-left:54.1666666667%}.next-col-xxs-offset-14{margin-left:58.3333333333%}.next-col-xxs-offset-15{margin-left:62.5%}.next-col-xxs-offset-16{margin-left:66.6666666667%}.next-col-xxs-offset-17{margin-left:70.8333333333%}.next-col-xxs-offset-18{margin-left:75%}.next-col-xxs-offset-19{margin-left:79.1666666667%}.next-col-xxs-offset-20{margin-left:83.3333333333%}.next-col-xxs-offset-21{margin-left:87.5%}.next-col-xxs-offset-22{margin-left:91.6666666667%}.next-col-xxs-offset-23{margin-left:95.8333333333%}.next-col-xxs-offset-24{margin-left:100%}}@media(min-width:480px){.next-col-xs-offset-1{margin-left:4.1666666667%}.next-col-xs-offset-2{margin-left:8.3333333333%}.next-col-xs-offset-3{margin-left:12.5%}.next-col-xs-offset-4{margin-left:16.6666666667%}.next-col-xs-offset-5{margin-left:20.8333333333%}.next-col-xs-offset-6{margin-left:25%}.next-col-xs-offset-7{margin-left:29.1666666667%}.next-col-xs-offset-8{margin-left:33.3333333333%}.next-col-xs-offset-9{margin-left:37.5%}.next-col-xs-offset-10{margin-left:41.6666666667%}.next-col-xs-offset-11{margin-left:45.8333333333%}.next-col-xs-offset-12{margin-left:50%}.next-col-xs-offset-13{margin-left:54.1666666667%}.next-col-xs-offset-14{margin-left:58.3333333333%}.next-col-xs-offset-15{margin-left:62.5%}.next-col-xs-offset-16{margin-left:66.6666666667%}.next-col-xs-offset-17{margin-left:70.8333333333%}.next-col-xs-offset-18{margin-left:75%}.next-col-xs-offset-19{margin-left:79.1666666667%}.next-col-xs-offset-20{margin-left:83.3333333333%}.next-col-xs-offset-21{margin-left:87.5%}.next-col-xs-offset-22{margin-left:91.6666666667%}.next-col-xs-offset-23{margin-left:95.8333333333%}.next-col-xs-offset-24{margin-left:100%}}@media(min-width:720px){.next-col-s-offset-1{margin-left:4.1666666667%}.next-col-s-offset-2{margin-left:8.3333333333%}.next-col-s-offset-3{margin-left:12.5%}.next-col-s-offset-4{margin-left:16.6666666667%}.next-col-s-offset-5{margin-left:20.8333333333%}.next-col-s-offset-6{margin-left:25%}.next-col-s-offset-7{margin-left:29.1666666667%}.next-col-s-offset-8{margin-left:33.3333333333%}.next-col-s-offset-9{margin-left:37.5%}.next-col-s-offset-10{margin-left:41.6666666667%}.next-col-s-offset-11{margin-left:45.8333333333%}.next-col-s-offset-12{margin-left:50%}.next-col-s-offset-13{margin-left:54.1666666667%}.next-col-s-offset-14{margin-left:58.3333333333%}.next-col-s-offset-15{margin-left:62.5%}.next-col-s-offset-16{margin-left:66.6666666667%}.next-col-s-offset-17{margin-left:70.8333333333%}.next-col-s-offset-18{margin-left:75%}.next-col-s-offset-19{margin-left:79.1666666667%}.next-col-s-offset-20{margin-left:83.3333333333%}.next-col-s-offset-21{margin-left:87.5%}.next-col-s-offset-22{margin-left:91.6666666667%}.next-col-s-offset-23{margin-left:95.8333333333%}.next-col-s-offset-24{margin-left:100%}}@media(min-width:990px){.next-col-m-offset-1{margin-left:4.1666666667%}.next-col-m-offset-2{margin-left:8.3333333333%}.next-col-m-offset-3{margin-left:12.5%}.next-col-m-offset-4{margin-left:16.6666666667%}.next-col-m-offset-5{margin-left:20.8333333333%}.next-col-m-offset-6{margin-left:25%}.next-col-m-offset-7{margin-left:29.1666666667%}.next-col-m-offset-8{margin-left:33.3333333333%}.next-col-m-offset-9{margin-left:37.5%}.next-col-m-offset-10{margin-left:41.6666666667%}.next-col-m-offset-11{margin-left:45.8333333333%}.next-col-m-offset-12{margin-left:50%}.next-col-m-offset-13{margin-left:54.1666666667%}.next-col-m-offset-14{margin-left:58.3333333333%}.next-col-m-offset-15{margin-left:62.5%}.next-col-m-offset-16{margin-left:66.6666666667%}.next-col-m-offset-17{margin-left:70.8333333333%}.next-col-m-offset-18{margin-left:75%}.next-col-m-offset-19{margin-left:79.1666666667%}.next-col-m-offset-20{margin-left:83.3333333333%}.next-col-m-offset-21{margin-left:87.5%}.next-col-m-offset-22{margin-left:91.6666666667%}.next-col-m-offset-23{margin-left:95.8333333333%}.next-col-m-offset-24{margin-left:100%}}@media(min-width:1200px){.next-col-l-offset-1{margin-left:4.1666666667%}.next-col-l-offset-2{margin-left:8.3333333333%}.next-col-l-offset-3{margin-left:12.5%}.next-col-l-offset-4{margin-left:16.6666666667%}.next-col-l-offset-5{margin-left:20.8333333333%}.next-col-l-offset-6{margin-left:25%}.next-col-l-offset-7{margin-left:29.1666666667%}.next-col-l-offset-8{margin-left:33.3333333333%}.next-col-l-offset-9{margin-left:37.5%}.next-col-l-offset-10{margin-left:41.6666666667%}.next-col-l-offset-11{margin-left:45.8333333333%}.next-col-l-offset-12{margin-left:50%}.next-col-l-offset-13{margin-left:54.1666666667%}.next-col-l-offset-14{margin-left:58.3333333333%}.next-col-l-offset-15{margin-left:62.5%}.next-col-l-offset-16{margin-left:66.6666666667%}.next-col-l-offset-17{margin-left:70.8333333333%}.next-col-l-offset-18{margin-left:75%}.next-col-l-offset-19{margin-left:79.1666666667%}.next-col-l-offset-20{margin-left:83.3333333333%}.next-col-l-offset-21{margin-left:87.5%}.next-col-l-offset-22{margin-left:91.6666666667%}.next-col-l-offset-23{margin-left:95.8333333333%}.next-col-l-offset-24{margin-left:100%}}@media(min-width:1500px){.next-col-xl-offset-1{margin-left:4.1666666667%}.next-col-xl-offset-2{margin-left:8.3333333333%}.next-col-xl-offset-3{margin-left:12.5%}.next-col-xl-offset-4{margin-left:16.6666666667%}.next-col-xl-offset-5{margin-left:20.8333333333%}.next-col-xl-offset-6{margin-left:25%}.next-col-xl-offset-7{margin-left:29.1666666667%}.next-col-xl-offset-8{margin-left:33.3333333333%}.next-col-xl-offset-9{margin-left:37.5%}.next-col-xl-offset-10{margin-left:41.6666666667%}.next-col-xl-offset-11{margin-left:45.8333333333%}.next-col-xl-offset-12{margin-left:50%}.next-col-xl-offset-13{margin-left:54.1666666667%}.next-col-xl-offset-14{margin-left:58.3333333333%}.next-col-xl-offset-15{margin-left:62.5%}.next-col-xl-offset-16{margin-left:66.6666666667%}.next-col-xl-offset-17{margin-left:70.8333333333%}.next-col-xl-offset-18{margin-left:75%}.next-col-xl-offset-19{margin-left:79.1666666667%}.next-col-xl-offset-20{margin-left:83.3333333333%}.next-col-xl-offset-21{margin-left:87.5%}.next-col-xl-offset-22{margin-left:91.6666666667%}.next-col-xl-offset-23{margin-left:95.8333333333%}.next-col-xl-offset-24{margin-left:100%}}.next-col-offset-fixed-1{margin-left:20px}.next-col-offset-fixed-2{margin-left:40px}.next-col-offset-fixed-3{margin-left:60px}.next-col-offset-fixed-4{margin-left:80px}.next-col-offset-fixed-5{margin-left:100px}.next-col-offset-fixed-6{margin-left:120px}.next-col-offset-fixed-7{margin-left:140px}.next-col-offset-fixed-8{margin-left:160px}.next-col-offset-fixed-9{margin-left:180px}.next-col-offset-fixed-10{margin-left:200px}.next-col-offset-fixed-11{margin-left:220px}.next-col-offset-fixed-12{margin-left:240px}.next-col-offset-fixed-13{margin-left:260px}.next-col-offset-fixed-14{margin-left:280px}.next-col-offset-fixed-15{margin-left:300px}.next-col-offset-fixed-16{margin-left:320px}.next-col-offset-fixed-17{margin-left:340px}.next-col-offset-fixed-18{margin-left:360px}.next-col-offset-fixed-19{margin-left:380px}.next-col-offset-fixed-20{margin-left:400px}.next-col-offset-fixed-21{margin-left:420px}.next-col-offset-fixed-22{margin-left:440px}.next-col-offset-fixed-23{margin-left:460px}.next-col-offset-fixed-24{margin-left:480px}.next-col-offset-fixed-25{margin-left:500px}.next-col-offset-fixed-26{margin-left:520px}.next-col-offset-fixed-27{margin-left:540px}.next-col-offset-fixed-28{margin-left:560px}.next-col-offset-fixed-29{margin-left:580px}.next-col-offset-fixed-30{margin-left:600px}.next-col-offset-fixed-xxs-1{margin-left:20px}.next-col-offset-fixed-xxs-2{margin-left:40px}.next-col-offset-fixed-xxs-3{margin-left:60px}.next-col-offset-fixed-xxs-4{margin-left:80px}.next-col-offset-fixed-xxs-5{margin-left:100px}.next-col-offset-fixed-xxs-6{margin-left:120px}.next-col-offset-fixed-xxs-7{margin-left:140px}.next-col-offset-fixed-xxs-8{margin-left:160px}.next-col-offset-fixed-xxs-9{margin-left:180px}.next-col-offset-fixed-xxs-10{margin-left:200px}.next-col-offset-fixed-xxs-11{margin-left:220px}.next-col-offset-fixed-xxs-12{margin-left:240px}.next-col-offset-fixed-xxs-13{margin-left:260px}.next-col-offset-fixed-xxs-14{margin-left:280px}.next-col-offset-fixed-xxs-15{margin-left:300px}.next-col-offset-fixed-xxs-16{margin-left:320px}.next-col-offset-fixed-xxs-17{margin-left:340px}.next-col-offset-fixed-xxs-18{margin-left:360px}.next-col-offset-fixed-xxs-19{margin-left:380px}.next-col-offset-fixed-xxs-20{margin-left:400px}.next-col-offset-fixed-xxs-21{margin-left:420px}.next-col-offset-fixed-xxs-22{margin-left:440px}.next-col-offset-fixed-xxs-23{margin-left:460px}.next-col-offset-fixed-xxs-24{margin-left:480px}.next-col-offset-fixed-xxs-25{margin-left:500px}.next-col-offset-fixed-xxs-26{margin-left:520px}.next-col-offset-fixed-xxs-27{margin-left:540px}.next-col-offset-fixed-xxs-28{margin-left:560px}.next-col-offset-fixed-xxs-29{margin-left:580px}.next-col-offset-fixed-xxs-30{margin-left:600px}.next-col-offset-fixed-xs-1{margin-left:20px}.next-col-offset-fixed-xs-2{margin-left:40px}.next-col-offset-fixed-xs-3{margin-left:60px}.next-col-offset-fixed-xs-4{margin-left:80px}.next-col-offset-fixed-xs-5{margin-left:100px}.next-col-offset-fixed-xs-6{margin-left:120px}.next-col-offset-fixed-xs-7{margin-left:140px}.next-col-offset-fixed-xs-8{margin-left:160px}.next-col-offset-fixed-xs-9{margin-left:180px}.next-col-offset-fixed-xs-10{margin-left:200px}.next-col-offset-fixed-xs-11{margin-left:220px}.next-col-offset-fixed-xs-12{margin-left:240px}.next-col-offset-fixed-xs-13{margin-left:260px}.next-col-offset-fixed-xs-14{margin-left:280px}.next-col-offset-fixed-xs-15{margin-left:300px}.next-col-offset-fixed-xs-16{margin-left:320px}.next-col-offset-fixed-xs-17{margin-left:340px}.next-col-offset-fixed-xs-18{margin-left:360px}.next-col-offset-fixed-xs-19{margin-left:380px}.next-col-offset-fixed-xs-20{margin-left:400px}.next-col-offset-fixed-xs-21{margin-left:420px}.next-col-offset-fixed-xs-22{margin-left:440px}.next-col-offset-fixed-xs-23{margin-left:460px}.next-col-offset-fixed-xs-24{margin-left:480px}.next-col-offset-fixed-xs-25{margin-left:500px}.next-col-offset-fixed-xs-26{margin-left:520px}.next-col-offset-fixed-xs-27{margin-left:540px}.next-col-offset-fixed-xs-28{margin-left:560px}.next-col-offset-fixed-xs-29{margin-left:580px}.next-col-offset-fixed-xs-30{margin-left:600px}.next-col-offset-fixed-s-1{margin-left:20px}.next-col-offset-fixed-s-2{margin-left:40px}.next-col-offset-fixed-s-3{margin-left:60px}.next-col-offset-fixed-s-4{margin-left:80px}.next-col-offset-fixed-s-5{margin-left:100px}.next-col-offset-fixed-s-6{margin-left:120px}.next-col-offset-fixed-s-7{margin-left:140px}.next-col-offset-fixed-s-8{margin-left:160px}.next-col-offset-fixed-s-9{margin-left:180px}.next-col-offset-fixed-s-10{margin-left:200px}.next-col-offset-fixed-s-11{margin-left:220px}.next-col-offset-fixed-s-12{margin-left:240px}.next-col-offset-fixed-s-13{margin-left:260px}.next-col-offset-fixed-s-14{margin-left:280px}.next-col-offset-fixed-s-15{margin-left:300px}.next-col-offset-fixed-s-16{margin-left:320px}.next-col-offset-fixed-s-17{margin-left:340px}.next-col-offset-fixed-s-18{margin-left:360px}.next-col-offset-fixed-s-19{margin-left:380px}.next-col-offset-fixed-s-20{margin-left:400px}.next-col-offset-fixed-s-21{margin-left:420px}.next-col-offset-fixed-s-22{margin-left:440px}.next-col-offset-fixed-s-23{margin-left:460px}.next-col-offset-fixed-s-24{margin-left:480px}.next-col-offset-fixed-s-25{margin-left:500px}.next-col-offset-fixed-s-26{margin-left:520px}.next-col-offset-fixed-s-27{margin-left:540px}.next-col-offset-fixed-s-28{margin-left:560px}.next-col-offset-fixed-s-29{margin-left:580px}.next-col-offset-fixed-s-30{margin-left:600px}.next-col-offset-fixed-m-1{margin-left:20px}.next-col-offset-fixed-m-2{margin-left:40px}.next-col-offset-fixed-m-3{margin-left:60px}.next-col-offset-fixed-m-4{margin-left:80px}.next-col-offset-fixed-m-5{margin-left:100px}.next-col-offset-fixed-m-6{margin-left:120px}.next-col-offset-fixed-m-7{margin-left:140px}.next-col-offset-fixed-m-8{margin-left:160px}.next-col-offset-fixed-m-9{margin-left:180px}.next-col-offset-fixed-m-10{margin-left:200px}.next-col-offset-fixed-m-11{margin-left:220px}.next-col-offset-fixed-m-12{margin-left:240px}.next-col-offset-fixed-m-13{margin-left:260px}.next-col-offset-fixed-m-14{margin-left:280px}.next-col-offset-fixed-m-15{margin-left:300px}.next-col-offset-fixed-m-16{margin-left:320px}.next-col-offset-fixed-m-17{margin-left:340px}.next-col-offset-fixed-m-18{margin-left:360px}.next-col-offset-fixed-m-19{margin-left:380px}.next-col-offset-fixed-m-20{margin-left:400px}.next-col-offset-fixed-m-21{margin-left:420px}.next-col-offset-fixed-m-22{margin-left:440px}.next-col-offset-fixed-m-23{margin-left:460px}.next-col-offset-fixed-m-24{margin-left:480px}.next-col-offset-fixed-m-25{margin-left:500px}.next-col-offset-fixed-m-26{margin-left:520px}.next-col-offset-fixed-m-27{margin-left:540px}.next-col-offset-fixed-m-28{margin-left:560px}.next-col-offset-fixed-m-29{margin-left:580px}.next-col-offset-fixed-m-30{margin-left:600px}.next-col-offset-fixed-l-1{margin-left:20px}.next-col-offset-fixed-l-2{margin-left:40px}.next-col-offset-fixed-l-3{margin-left:60px}.next-col-offset-fixed-l-4{margin-left:80px}.next-col-offset-fixed-l-5{margin-left:100px}.next-col-offset-fixed-l-6{margin-left:120px}.next-col-offset-fixed-l-7{margin-left:140px}.next-col-offset-fixed-l-8{margin-left:160px}.next-col-offset-fixed-l-9{margin-left:180px}.next-col-offset-fixed-l-10{margin-left:200px}.next-col-offset-fixed-l-11{margin-left:220px}.next-col-offset-fixed-l-12{margin-left:240px}.next-col-offset-fixed-l-13{margin-left:260px}.next-col-offset-fixed-l-14{margin-left:280px}.next-col-offset-fixed-l-15{margin-left:300px}.next-col-offset-fixed-l-16{margin-left:320px}.next-col-offset-fixed-l-17{margin-left:340px}.next-col-offset-fixed-l-18{margin-left:360px}.next-col-offset-fixed-l-19{margin-left:380px}.next-col-offset-fixed-l-20{margin-left:400px}.next-col-offset-fixed-l-21{margin-left:420px}.next-col-offset-fixed-l-22{margin-left:440px}.next-col-offset-fixed-l-23{margin-left:460px}.next-col-offset-fixed-l-24{margin-left:480px}.next-col-offset-fixed-l-25{margin-left:500px}.next-col-offset-fixed-l-26{margin-left:520px}.next-col-offset-fixed-l-27{margin-left:540px}.next-col-offset-fixed-l-28{margin-left:560px}.next-col-offset-fixed-l-29{margin-left:580px}.next-col-offset-fixed-l-30{margin-left:600px}.next-col-offset-fixed-xl-1{margin-left:20px}.next-col-offset-fixed-xl-2{margin-left:40px}.next-col-offset-fixed-xl-3{margin-left:60px}.next-col-offset-fixed-xl-4{margin-left:80px}.next-col-offset-fixed-xl-5{margin-left:100px}.next-col-offset-fixed-xl-6{margin-left:120px}.next-col-offset-fixed-xl-7{margin-left:140px}.next-col-offset-fixed-xl-8{margin-left:160px}.next-col-offset-fixed-xl-9{margin-left:180px}.next-col-offset-fixed-xl-10{margin-left:200px}.next-col-offset-fixed-xl-11{margin-left:220px}.next-col-offset-fixed-xl-12{margin-left:240px}.next-col-offset-fixed-xl-13{margin-left:260px}.next-col-offset-fixed-xl-14{margin-left:280px}.next-col-offset-fixed-xl-15{margin-left:300px}.next-col-offset-fixed-xl-16{margin-left:320px}.next-col-offset-fixed-xl-17{margin-left:340px}.next-col-offset-fixed-xl-18{margin-left:360px}.next-col-offset-fixed-xl-19{margin-left:380px}.next-col-offset-fixed-xl-20{margin-left:400px}.next-col-offset-fixed-xl-21{margin-left:420px}.next-col-offset-fixed-xl-22{margin-left:440px}.next-col-offset-fixed-xl-23{margin-left:460px}.next-col-offset-fixed-xl-24{margin-left:480px}.next-col-offset-fixed-xl-25{margin-left:500px}.next-col-offset-fixed-xl-26{margin-left:520px}.next-col-offset-fixed-xl-27{margin-left:540px}.next-col-offset-fixed-xl-28{margin-left:560px}.next-col-offset-fixed-xl-29{margin-left:580px}.next-col-offset-fixed-xl-30{margin-left:600px}.next-col.next-col-hidden{display:none}@media(min-width:320px)and (max-width:479px){.next-col.next-col-xxs-hidden{display:none}}@media(min-width:480px)and (max-width:719px){.next-col.next-col-xs-hidden{display:none}}@media(min-width:720px)and (max-width:989px){.next-col.next-col-s-hidden{display:none}}@media(min-width:990px)and (max-width:1199px){.next-col.next-col-m-hidden{display:none}}@media(min-width:1200px)and (max-width:1499px){.next-col.next-col-l-hidden{display:none}}@media(min-width:1500px){.next-col.next-col-xl-hidden{display:none}}.next-row.next-row-hidden{display:none}@media(min-width:320px)and (max-width:479px){.next-row.next-row-xxs-hidden{display:none}}@media(min-width:480px)and (max-width:719px){.next-row.next-row-xs-hidden{display:none}}@media(min-width:720px)and (max-width:989px){.next-row.next-row-s-hidden{display:none}}@media(min-width:990px)and (max-width:1199px){.next-row.next-row-m-hidden{display:none}}@media(min-width:1200px)and (max-width:1499px){.next-row.next-row-l-hidden{display:none}}@media(min-width:1500px){.next-row.next-row-xl-hidden{display:none}}.next-col-offset-1[dir=rtl]{margin-right:4.1666666667%;margin-left:auto}.next-col-offset-2[dir=rtl]{margin-right:8.3333333333%;margin-left:auto}.next-col-offset-3[dir=rtl]{margin-right:12.5%;margin-left:auto}.next-col-offset-4[dir=rtl]{margin-right:16.6666666667%;margin-left:auto}.next-col-offset-5[dir=rtl]{margin-right:20.8333333333%;margin-left:auto}.next-col-offset-6[dir=rtl]{margin-right:25%;margin-left:auto}.next-col-offset-7[dir=rtl]{margin-right:29.1666666667%;margin-left:auto}.next-col-offset-8[dir=rtl]{margin-right:33.3333333333%;margin-left:auto}.next-col-offset-9[dir=rtl]{margin-right:37.5%;margin-left:auto}.next-col-offset-10[dir=rtl]{margin-right:41.6666666667%;margin-left:auto}.next-col-offset-11[dir=rtl]{margin-right:45.8333333333%;margin-left:auto}.next-col-offset-12[dir=rtl]{margin-right:50%;margin-left:auto}.next-col-offset-13[dir=rtl]{margin-right:54.1666666667%;margin-left:auto}.next-col-offset-14[dir=rtl]{margin-right:58.3333333333%;margin-left:auto}.next-col-offset-15[dir=rtl]{margin-right:62.5%;margin-left:auto}.next-col-offset-16[dir=rtl]{margin-right:66.6666666667%;margin-left:auto}.next-col-offset-17[dir=rtl]{margin-right:70.8333333333%;margin-left:auto}.next-col-offset-18[dir=rtl]{margin-right:75%;margin-left:auto}.next-col-offset-19[dir=rtl]{margin-right:79.1666666667%;margin-left:auto}.next-col-offset-20[dir=rtl]{margin-right:83.3333333333%;margin-left:auto}.next-col-offset-21[dir=rtl]{margin-right:87.5%;margin-left:auto}.next-col-offset-22[dir=rtl]{margin-right:91.6666666667%;margin-left:auto}.next-col-offset-23[dir=rtl]{margin-right:95.8333333333%;margin-left:auto}.next-col-offset-24[dir=rtl]{margin-right:100%;margin-left:auto}@media(min-width:320px){.next-col-xxs-offset-1[dir=rtl]{margin-right:4.1666666667%;margin-left:auto}.next-col-xxs-offset-2[dir=rtl]{margin-right:8.3333333333%;margin-left:auto}.next-col-xxs-offset-3[dir=rtl]{margin-right:12.5%;margin-left:auto}.next-col-xxs-offset-4[dir=rtl]{margin-right:16.6666666667%;margin-left:auto}.next-col-xxs-offset-5[dir=rtl]{margin-right:20.8333333333%;margin-left:auto}.next-col-xxs-offset-6[dir=rtl]{margin-right:25%;margin-left:auto}.next-col-xxs-offset-7[dir=rtl]{margin-right:29.1666666667%;margin-left:auto}.next-col-xxs-offset-8[dir=rtl]{margin-right:33.3333333333%;margin-left:auto}.next-col-xxs-offset-9[dir=rtl]{margin-right:37.5%;margin-left:auto}.next-col-xxs-offset-10[dir=rtl]{margin-right:41.6666666667%;margin-left:auto}.next-col-xxs-offset-11[dir=rtl]{margin-right:45.8333333333%;margin-left:auto}.next-col-xxs-offset-12[dir=rtl]{margin-right:50%;margin-left:auto}.next-col-xxs-offset-13[dir=rtl]{margin-right:54.1666666667%;margin-left:auto}.next-col-xxs-offset-14[dir=rtl]{margin-right:58.3333333333%;margin-left:auto}.next-col-xxs-offset-15[dir=rtl]{margin-right:62.5%;margin-left:auto}.next-col-xxs-offset-16[dir=rtl]{margin-right:66.6666666667%;margin-left:auto}.next-col-xxs-offset-17[dir=rtl]{margin-right:70.8333333333%;margin-left:auto}.next-col-xxs-offset-18[dir=rtl]{margin-right:75%;margin-left:auto}.next-col-xxs-offset-19[dir=rtl]{margin-right:79.1666666667%;margin-left:auto}.next-col-xxs-offset-20[dir=rtl]{margin-right:83.3333333333%;margin-left:auto}.next-col-xxs-offset-21[dir=rtl]{margin-right:87.5%;margin-left:auto}.next-col-xxs-offset-22[dir=rtl]{margin-right:91.6666666667%;margin-left:auto}.next-col-xxs-offset-23[dir=rtl]{margin-right:95.8333333333%;margin-left:auto}.next-col-xxs-offset-24[dir=rtl]{margin-right:100%;margin-left:auto}}@media(min-width:480px){.next-col-xs-offset-1[dir=rtl]{margin-right:4.1666666667%;margin-left:auto}.next-col-xs-offset-2[dir=rtl]{margin-right:8.3333333333%;margin-left:auto}.next-col-xs-offset-3[dir=rtl]{margin-right:12.5%;margin-left:auto}.next-col-xs-offset-4[dir=rtl]{margin-right:16.6666666667%;margin-left:auto}.next-col-xs-offset-5[dir=rtl]{margin-right:20.8333333333%;margin-left:auto}.next-col-xs-offset-6[dir=rtl]{margin-right:25%;margin-left:auto}.next-col-xs-offset-7[dir=rtl]{margin-right:29.1666666667%;margin-left:auto}.next-col-xs-offset-8[dir=rtl]{margin-right:33.3333333333%;margin-left:auto}.next-col-xs-offset-9[dir=rtl]{margin-right:37.5%;margin-left:auto}.next-col-xs-offset-10[dir=rtl]{margin-right:41.6666666667%;margin-left:auto}.next-col-xs-offset-11[dir=rtl]{margin-right:45.8333333333%;margin-left:auto}.next-col-xs-offset-12[dir=rtl]{margin-right:50%;margin-left:auto}.next-col-xs-offset-13[dir=rtl]{margin-right:54.1666666667%;margin-left:auto}.next-col-xs-offset-14[dir=rtl]{margin-right:58.3333333333%;margin-left:auto}.next-col-xs-offset-15[dir=rtl]{margin-right:62.5%;margin-left:auto}.next-col-xs-offset-16[dir=rtl]{margin-right:66.6666666667%;margin-left:auto}.next-col-xs-offset-17[dir=rtl]{margin-right:70.8333333333%;margin-left:auto}.next-col-xs-offset-18[dir=rtl]{margin-right:75%;margin-left:auto}.next-col-xs-offset-19[dir=rtl]{margin-right:79.1666666667%;margin-left:auto}.next-col-xs-offset-20[dir=rtl]{margin-right:83.3333333333%;margin-left:auto}.next-col-xs-offset-21[dir=rtl]{margin-right:87.5%;margin-left:auto}.next-col-xs-offset-22[dir=rtl]{margin-right:91.6666666667%;margin-left:auto}.next-col-xs-offset-23[dir=rtl]{margin-right:95.8333333333%;margin-left:auto}.next-col-xs-offset-24[dir=rtl]{margin-right:100%;margin-left:auto}}@media(min-width:720px){.next-col-s-offset-1[dir=rtl]{margin-right:4.1666666667%;margin-left:auto}.next-col-s-offset-2[dir=rtl]{margin-right:8.3333333333%;margin-left:auto}.next-col-s-offset-3[dir=rtl]{margin-right:12.5%;margin-left:auto}.next-col-s-offset-4[dir=rtl]{margin-right:16.6666666667%;margin-left:auto}.next-col-s-offset-5[dir=rtl]{margin-right:20.8333333333%;margin-left:auto}.next-col-s-offset-6[dir=rtl]{margin-right:25%;margin-left:auto}.next-col-s-offset-7[dir=rtl]{margin-right:29.1666666667%;margin-left:auto}.next-col-s-offset-8[dir=rtl]{margin-right:33.3333333333%;margin-left:auto}.next-col-s-offset-9[dir=rtl]{margin-right:37.5%;margin-left:auto}.next-col-s-offset-10[dir=rtl]{margin-right:41.6666666667%;margin-left:auto}.next-col-s-offset-11[dir=rtl]{margin-right:45.8333333333%;margin-left:auto}.next-col-s-offset-12[dir=rtl]{margin-right:50%;margin-left:auto}.next-col-s-offset-13[dir=rtl]{margin-right:54.1666666667%;margin-left:auto}.next-col-s-offset-14[dir=rtl]{margin-right:58.3333333333%;margin-left:auto}.next-col-s-offset-15[dir=rtl]{margin-right:62.5%;margin-left:auto}.next-col-s-offset-16[dir=rtl]{margin-right:66.6666666667%;margin-left:auto}.next-col-s-offset-17[dir=rtl]{margin-right:70.8333333333%;margin-left:auto}.next-col-s-offset-18[dir=rtl]{margin-right:75%;margin-left:auto}.next-col-s-offset-19[dir=rtl]{margin-right:79.1666666667%;margin-left:auto}.next-col-s-offset-20[dir=rtl]{margin-right:83.3333333333%;margin-left:auto}.next-col-s-offset-21[dir=rtl]{margin-right:87.5%;margin-left:auto}.next-col-s-offset-22[dir=rtl]{margin-right:91.6666666667%;margin-left:auto}.next-col-s-offset-23[dir=rtl]{margin-right:95.8333333333%;margin-left:auto}.next-col-s-offset-24[dir=rtl]{margin-right:100%;margin-left:auto}}@media(min-width:990px){.next-col-m-offset-1[dir=rtl]{margin-right:4.1666666667%;margin-left:auto}.next-col-m-offset-2[dir=rtl]{margin-right:8.3333333333%;margin-left:auto}.next-col-m-offset-3[dir=rtl]{margin-right:12.5%;margin-left:auto}.next-col-m-offset-4[dir=rtl]{margin-right:16.6666666667%;margin-left:auto}.next-col-m-offset-5[dir=rtl]{margin-right:20.8333333333%;margin-left:auto}.next-col-m-offset-6[dir=rtl]{margin-right:25%;margin-left:auto}.next-col-m-offset-7[dir=rtl]{margin-right:29.1666666667%;margin-left:auto}.next-col-m-offset-8[dir=rtl]{margin-right:33.3333333333%;margin-left:auto}.next-col-m-offset-9[dir=rtl]{margin-right:37.5%;margin-left:auto}.next-col-m-offset-10[dir=rtl]{margin-right:41.6666666667%;margin-left:auto}.next-col-m-offset-11[dir=rtl]{margin-right:45.8333333333%;margin-left:auto}.next-col-m-offset-12[dir=rtl]{margin-right:50%;margin-left:auto}.next-col-m-offset-13[dir=rtl]{margin-right:54.1666666667%;margin-left:auto}.next-col-m-offset-14[dir=rtl]{margin-right:58.3333333333%;margin-left:auto}.next-col-m-offset-15[dir=rtl]{margin-right:62.5%;margin-left:auto}.next-col-m-offset-16[dir=rtl]{margin-right:66.6666666667%;margin-left:auto}.next-col-m-offset-17[dir=rtl]{margin-right:70.8333333333%;margin-left:auto}.next-col-m-offset-18[dir=rtl]{margin-right:75%;margin-left:auto}.next-col-m-offset-19[dir=rtl]{margin-right:79.1666666667%;margin-left:auto}.next-col-m-offset-20[dir=rtl]{margin-right:83.3333333333%;margin-left:auto}.next-col-m-offset-21[dir=rtl]{margin-right:87.5%;margin-left:auto}.next-col-m-offset-22[dir=rtl]{margin-right:91.6666666667%;margin-left:auto}.next-col-m-offset-23[dir=rtl]{margin-right:95.8333333333%;margin-left:auto}.next-col-m-offset-24[dir=rtl]{margin-right:100%;margin-left:auto}}@media(min-width:1200px){.next-col-l-offset-1[dir=rtl]{margin-right:4.1666666667%;margin-left:auto}.next-col-l-offset-2[dir=rtl]{margin-right:8.3333333333%;margin-left:auto}.next-col-l-offset-3[dir=rtl]{margin-right:12.5%;margin-left:auto}.next-col-l-offset-4[dir=rtl]{margin-right:16.6666666667%;margin-left:auto}.next-col-l-offset-5[dir=rtl]{margin-right:20.8333333333%;margin-left:auto}.next-col-l-offset-6[dir=rtl]{margin-right:25%;margin-left:auto}.next-col-l-offset-7[dir=rtl]{margin-right:29.1666666667%;margin-left:auto}.next-col-l-offset-8[dir=rtl]{margin-right:33.3333333333%;margin-left:auto}.next-col-l-offset-9[dir=rtl]{margin-right:37.5%;margin-left:auto}.next-col-l-offset-10[dir=rtl]{margin-right:41.6666666667%;margin-left:auto}.next-col-l-offset-11[dir=rtl]{margin-right:45.8333333333%;margin-left:auto}.next-col-l-offset-12[dir=rtl]{margin-right:50%;margin-left:auto}.next-col-l-offset-13[dir=rtl]{margin-right:54.1666666667%;margin-left:auto}.next-col-l-offset-14[dir=rtl]{margin-right:58.3333333333%;margin-left:auto}.next-col-l-offset-15[dir=rtl]{margin-right:62.5%;margin-left:auto}.next-col-l-offset-16[dir=rtl]{margin-right:66.6666666667%;margin-left:auto}.next-col-l-offset-17[dir=rtl]{margin-right:70.8333333333%;margin-left:auto}.next-col-l-offset-18[dir=rtl]{margin-right:75%;margin-left:auto}.next-col-l-offset-19[dir=rtl]{margin-right:79.1666666667%;margin-left:auto}.next-col-l-offset-20[dir=rtl]{margin-right:83.3333333333%;margin-left:auto}.next-col-l-offset-21[dir=rtl]{margin-right:87.5%;margin-left:auto}.next-col-l-offset-22[dir=rtl]{margin-right:91.6666666667%;margin-left:auto}.next-col-l-offset-23[dir=rtl]{margin-right:95.8333333333%;margin-left:auto}.next-col-l-offset-24[dir=rtl]{margin-right:100%;margin-left:auto}}@media(min-width:1500px){.next-col-xl-offset-1[dir=rtl]{margin-right:4.1666666667%;margin-left:auto}.next-col-xl-offset-2[dir=rtl]{margin-right:8.3333333333%;margin-left:auto}.next-col-xl-offset-3[dir=rtl]{margin-right:12.5%;margin-left:auto}.next-col-xl-offset-4[dir=rtl]{margin-right:16.6666666667%;margin-left:auto}.next-col-xl-offset-5[dir=rtl]{margin-right:20.8333333333%;margin-left:auto}.next-col-xl-offset-6[dir=rtl]{margin-right:25%;margin-left:auto}.next-col-xl-offset-7[dir=rtl]{margin-right:29.1666666667%;margin-left:auto}.next-col-xl-offset-8[dir=rtl]{margin-right:33.3333333333%;margin-left:auto}.next-col-xl-offset-9[dir=rtl]{margin-right:37.5%;margin-left:auto}.next-col-xl-offset-10[dir=rtl]{margin-right:41.6666666667%;margin-left:auto}.next-col-xl-offset-11[dir=rtl]{margin-right:45.8333333333%;margin-left:auto}.next-col-xl-offset-12[dir=rtl]{margin-right:50%;margin-left:auto}.next-col-xl-offset-13[dir=rtl]{margin-right:54.1666666667%;margin-left:auto}.next-col-xl-offset-14[dir=rtl]{margin-right:58.3333333333%;margin-left:auto}.next-col-xl-offset-15[dir=rtl]{margin-right:62.5%;margin-left:auto}.next-col-xl-offset-16[dir=rtl]{margin-right:66.6666666667%;margin-left:auto}.next-col-xl-offset-17[dir=rtl]{margin-right:70.8333333333%;margin-left:auto}.next-col-xl-offset-18[dir=rtl]{margin-right:75%;margin-left:auto}.next-col-xl-offset-19[dir=rtl]{margin-right:79.1666666667%;margin-left:auto}.next-col-xl-offset-20[dir=rtl]{margin-right:83.3333333333%;margin-left:auto}.next-col-xl-offset-21[dir=rtl]{margin-right:87.5%;margin-left:auto}.next-col-xl-offset-22[dir=rtl]{margin-right:91.6666666667%;margin-left:auto}.next-col-xl-offset-23[dir=rtl]{margin-right:95.8333333333%;margin-left:auto}.next-col-xl-offset-24[dir=rtl]{margin-right:100%;margin-left:auto}}.next-col-offset-fixed-1[dir=rtl]{margin-right:20px;margin-left:auto}.next-col-offset-fixed-2[dir=rtl]{margin-right:40px;margin-left:auto}.next-col-offset-fixed-3[dir=rtl]{margin-right:60px;margin-left:auto}.next-col-offset-fixed-4[dir=rtl]{margin-right:80px;margin-left:auto}.next-col-offset-fixed-5[dir=rtl]{margin-right:100px;margin-left:auto}.next-col-offset-fixed-6[dir=rtl]{margin-right:120px;margin-left:auto}.next-col-offset-fixed-7[dir=rtl]{margin-right:140px;margin-left:auto}.next-col-offset-fixed-8[dir=rtl]{margin-right:160px;margin-left:auto}.next-col-offset-fixed-9[dir=rtl]{margin-right:180px;margin-left:auto}.next-col-offset-fixed-10[dir=rtl]{margin-right:200px;margin-left:auto}.next-col-offset-fixed-11[dir=rtl]{margin-right:220px;margin-left:auto}.next-col-offset-fixed-12[dir=rtl]{margin-right:240px;margin-left:auto}.next-col-offset-fixed-13[dir=rtl]{margin-right:260px;margin-left:auto}.next-col-offset-fixed-14[dir=rtl]{margin-right:280px;margin-left:auto}.next-col-offset-fixed-15[dir=rtl]{margin-right:300px;margin-left:auto}.next-col-offset-fixed-16[dir=rtl]{margin-right:320px;margin-left:auto}.next-col-offset-fixed-17[dir=rtl]{margin-right:340px;margin-left:auto}.next-col-offset-fixed-18[dir=rtl]{margin-right:360px;margin-left:auto}.next-col-offset-fixed-19[dir=rtl]{margin-right:380px;margin-left:auto}.next-col-offset-fixed-20[dir=rtl]{margin-right:400px;margin-left:auto}.next-col-offset-fixed-21[dir=rtl]{margin-right:420px;margin-left:auto}.next-col-offset-fixed-22[dir=rtl]{margin-right:440px;margin-left:auto}.next-col-offset-fixed-23[dir=rtl]{margin-right:460px;margin-left:auto}.next-col-offset-fixed-24[dir=rtl]{margin-right:480px;margin-left:auto}.next-col-offset-fixed-25[dir=rtl]{margin-right:500px;margin-left:auto}.next-col-offset-fixed-26[dir=rtl]{margin-right:520px;margin-left:auto}.next-col-offset-fixed-27[dir=rtl]{margin-right:540px;margin-left:auto}.next-col-offset-fixed-28[dir=rtl]{margin-right:560px;margin-left:auto}.next-col-offset-fixed-29[dir=rtl]{margin-right:580px;margin-left:auto}.next-col-offset-fixed-30[dir=rtl]{margin-right:600px;margin-left:auto}.next-col-offset-fixed-xxs-1[dir=rtl]{margin-right:20px;margin-left:auto}.next-col-offset-fixed-xxs-2[dir=rtl]{margin-right:40px;margin-left:auto}.next-col-offset-fixed-xxs-3[dir=rtl]{margin-right:60px;margin-left:auto}.next-col-offset-fixed-xxs-4[dir=rtl]{margin-right:80px;margin-left:auto}.next-col-offset-fixed-xxs-5[dir=rtl]{margin-right:100px;margin-left:auto}.next-col-offset-fixed-xxs-6[dir=rtl]{margin-right:120px;margin-left:auto}.next-col-offset-fixed-xxs-7[dir=rtl]{margin-right:140px;margin-left:auto}.next-col-offset-fixed-xxs-8[dir=rtl]{margin-right:160px;margin-left:auto}.next-col-offset-fixed-xxs-9[dir=rtl]{margin-right:180px;margin-left:auto}.next-col-offset-fixed-xxs-10[dir=rtl]{margin-right:200px;margin-left:auto}.next-col-offset-fixed-xxs-11[dir=rtl]{margin-right:220px;margin-left:auto}.next-col-offset-fixed-xxs-12[dir=rtl]{margin-right:240px;margin-left:auto}.next-col-offset-fixed-xxs-13[dir=rtl]{margin-right:260px;margin-left:auto}.next-col-offset-fixed-xxs-14[dir=rtl]{margin-right:280px;margin-left:auto}.next-col-offset-fixed-xxs-15[dir=rtl]{margin-right:300px;margin-left:auto}.next-col-offset-fixed-xxs-16[dir=rtl]{margin-right:320px;margin-left:auto}.next-col-offset-fixed-xxs-17[dir=rtl]{margin-right:340px;margin-left:auto}.next-col-offset-fixed-xxs-18[dir=rtl]{margin-right:360px;margin-left:auto}.next-col-offset-fixed-xxs-19[dir=rtl]{margin-right:380px;margin-left:auto}.next-col-offset-fixed-xxs-20[dir=rtl]{margin-right:400px;margin-left:auto}.next-col-offset-fixed-xxs-21[dir=rtl]{margin-right:420px;margin-left:auto}.next-col-offset-fixed-xxs-22[dir=rtl]{margin-right:440px;margin-left:auto}.next-col-offset-fixed-xxs-23[dir=rtl]{margin-right:460px;margin-left:auto}.next-col-offset-fixed-xxs-24[dir=rtl]{margin-right:480px;margin-left:auto}.next-col-offset-fixed-xxs-25[dir=rtl]{margin-right:500px;margin-left:auto}.next-col-offset-fixed-xxs-26[dir=rtl]{margin-right:520px;margin-left:auto}.next-col-offset-fixed-xxs-27[dir=rtl]{margin-right:540px;margin-left:auto}.next-col-offset-fixed-xxs-28[dir=rtl]{margin-right:560px;margin-left:auto}.next-col-offset-fixed-xxs-29[dir=rtl]{margin-right:580px;margin-left:auto}.next-col-offset-fixed-xxs-30[dir=rtl]{margin-right:600px;margin-left:auto}.next-col-offset-fixed-xs-1[dir=rtl]{margin-right:20px;margin-left:auto}.next-col-offset-fixed-xs-2[dir=rtl]{margin-right:40px;margin-left:auto}.next-col-offset-fixed-xs-3[dir=rtl]{margin-right:60px;margin-left:auto}.next-col-offset-fixed-xs-4[dir=rtl]{margin-right:80px;margin-left:auto}.next-col-offset-fixed-xs-5[dir=rtl]{margin-right:100px;margin-left:auto}.next-col-offset-fixed-xs-6[dir=rtl]{margin-right:120px;margin-left:auto}.next-col-offset-fixed-xs-7[dir=rtl]{margin-right:140px;margin-left:auto}.next-col-offset-fixed-xs-8[dir=rtl]{margin-right:160px;margin-left:auto}.next-col-offset-fixed-xs-9[dir=rtl]{margin-right:180px;margin-left:auto}.next-col-offset-fixed-xs-10[dir=rtl]{margin-right:200px;margin-left:auto}.next-col-offset-fixed-xs-11[dir=rtl]{margin-right:220px;margin-left:auto}.next-col-offset-fixed-xs-12[dir=rtl]{margin-right:240px;margin-left:auto}.next-col-offset-fixed-xs-13[dir=rtl]{margin-right:260px;margin-left:auto}.next-col-offset-fixed-xs-14[dir=rtl]{margin-right:280px;margin-left:auto}.next-col-offset-fixed-xs-15[dir=rtl]{margin-right:300px;margin-left:auto}.next-col-offset-fixed-xs-16[dir=rtl]{margin-right:320px;margin-left:auto}.next-col-offset-fixed-xs-17[dir=rtl]{margin-right:340px;margin-left:auto}.next-col-offset-fixed-xs-18[dir=rtl]{margin-right:360px;margin-left:auto}.next-col-offset-fixed-xs-19[dir=rtl]{margin-right:380px;margin-left:auto}.next-col-offset-fixed-xs-20[dir=rtl]{margin-right:400px;margin-left:auto}.next-col-offset-fixed-xs-21[dir=rtl]{margin-right:420px;margin-left:auto}.next-col-offset-fixed-xs-22[dir=rtl]{margin-right:440px;margin-left:auto}.next-col-offset-fixed-xs-23[dir=rtl]{margin-right:460px;margin-left:auto}.next-col-offset-fixed-xs-24[dir=rtl]{margin-right:480px;margin-left:auto}.next-col-offset-fixed-xs-25[dir=rtl]{margin-right:500px;margin-left:auto}.next-col-offset-fixed-xs-26[dir=rtl]{margin-right:520px;margin-left:auto}.next-col-offset-fixed-xs-27[dir=rtl]{margin-right:540px;margin-left:auto}.next-col-offset-fixed-xs-28[dir=rtl]{margin-right:560px;margin-left:auto}.next-col-offset-fixed-xs-29[dir=rtl]{margin-right:580px;margin-left:auto}.next-col-offset-fixed-xs-30[dir=rtl]{margin-right:600px;margin-left:auto}.next-col-offset-fixed-s-1[dir=rtl]{margin-right:20px;margin-left:auto}.next-col-offset-fixed-s-2[dir=rtl]{margin-right:40px;margin-left:auto}.next-col-offset-fixed-s-3[dir=rtl]{margin-right:60px;margin-left:auto}.next-col-offset-fixed-s-4[dir=rtl]{margin-right:80px;margin-left:auto}.next-col-offset-fixed-s-5[dir=rtl]{margin-right:100px;margin-left:auto}.next-col-offset-fixed-s-6[dir=rtl]{margin-right:120px;margin-left:auto}.next-col-offset-fixed-s-7[dir=rtl]{margin-right:140px;margin-left:auto}.next-col-offset-fixed-s-8[dir=rtl]{margin-right:160px;margin-left:auto}.next-col-offset-fixed-s-9[dir=rtl]{margin-right:180px;margin-left:auto}.next-col-offset-fixed-s-10[dir=rtl]{margin-right:200px;margin-left:auto}.next-col-offset-fixed-s-11[dir=rtl]{margin-right:220px;margin-left:auto}.next-col-offset-fixed-s-12[dir=rtl]{margin-right:240px;margin-left:auto}.next-col-offset-fixed-s-13[dir=rtl]{margin-right:260px;margin-left:auto}.next-col-offset-fixed-s-14[dir=rtl]{margin-right:280px;margin-left:auto}.next-col-offset-fixed-s-15[dir=rtl]{margin-right:300px;margin-left:auto}.next-col-offset-fixed-s-16[dir=rtl]{margin-right:320px;margin-left:auto}.next-col-offset-fixed-s-17[dir=rtl]{margin-right:340px;margin-left:auto}.next-col-offset-fixed-s-18[dir=rtl]{margin-right:360px;margin-left:auto}.next-col-offset-fixed-s-19[dir=rtl]{margin-right:380px;margin-left:auto}.next-col-offset-fixed-s-20[dir=rtl]{margin-right:400px;margin-left:auto}.next-col-offset-fixed-s-21[dir=rtl]{margin-right:420px;margin-left:auto}.next-col-offset-fixed-s-22[dir=rtl]{margin-right:440px;margin-left:auto}.next-col-offset-fixed-s-23[dir=rtl]{margin-right:460px;margin-left:auto}.next-col-offset-fixed-s-24[dir=rtl]{margin-right:480px;margin-left:auto}.next-col-offset-fixed-s-25[dir=rtl]{margin-right:500px;margin-left:auto}.next-col-offset-fixed-s-26[dir=rtl]{margin-right:520px;margin-left:auto}.next-col-offset-fixed-s-27[dir=rtl]{margin-right:540px;margin-left:auto}.next-col-offset-fixed-s-28[dir=rtl]{margin-right:560px;margin-left:auto}.next-col-offset-fixed-s-29[dir=rtl]{margin-right:580px;margin-left:auto}.next-col-offset-fixed-s-30[dir=rtl]{margin-right:600px;margin-left:auto}.next-col-offset-fixed-m-1[dir=rtl]{margin-right:20px;margin-left:auto}.next-col-offset-fixed-m-2[dir=rtl]{margin-right:40px;margin-left:auto}.next-col-offset-fixed-m-3[dir=rtl]{margin-right:60px;margin-left:auto}.next-col-offset-fixed-m-4[dir=rtl]{margin-right:80px;margin-left:auto}.next-col-offset-fixed-m-5[dir=rtl]{margin-right:100px;margin-left:auto}.next-col-offset-fixed-m-6[dir=rtl]{margin-right:120px;margin-left:auto}.next-col-offset-fixed-m-7[dir=rtl]{margin-right:140px;margin-left:auto}.next-col-offset-fixed-m-8[dir=rtl]{margin-right:160px;margin-left:auto}.next-col-offset-fixed-m-9[dir=rtl]{margin-right:180px;margin-left:auto}.next-col-offset-fixed-m-10[dir=rtl]{margin-right:200px;margin-left:auto}.next-col-offset-fixed-m-11[dir=rtl]{margin-right:220px;margin-left:auto}.next-col-offset-fixed-m-12[dir=rtl]{margin-right:240px;margin-left:auto}.next-col-offset-fixed-m-13[dir=rtl]{margin-right:260px;margin-left:auto}.next-col-offset-fixed-m-14[dir=rtl]{margin-right:280px;margin-left:auto}.next-col-offset-fixed-m-15[dir=rtl]{margin-right:300px;margin-left:auto}.next-col-offset-fixed-m-16[dir=rtl]{margin-right:320px;margin-left:auto}.next-col-offset-fixed-m-17[dir=rtl]{margin-right:340px;margin-left:auto}.next-col-offset-fixed-m-18[dir=rtl]{margin-right:360px;margin-left:auto}.next-col-offset-fixed-m-19[dir=rtl]{margin-right:380px;margin-left:auto}.next-col-offset-fixed-m-20[dir=rtl]{margin-right:400px;margin-left:auto}.next-col-offset-fixed-m-21[dir=rtl]{margin-right:420px;margin-left:auto}.next-col-offset-fixed-m-22[dir=rtl]{margin-right:440px;margin-left:auto}.next-col-offset-fixed-m-23[dir=rtl]{margin-right:460px;margin-left:auto}.next-col-offset-fixed-m-24[dir=rtl]{margin-right:480px;margin-left:auto}.next-col-offset-fixed-m-25[dir=rtl]{margin-right:500px;margin-left:auto}.next-col-offset-fixed-m-26[dir=rtl]{margin-right:520px;margin-left:auto}.next-col-offset-fixed-m-27[dir=rtl]{margin-right:540px;margin-left:auto}.next-col-offset-fixed-m-28[dir=rtl]{margin-right:560px;margin-left:auto}.next-col-offset-fixed-m-29[dir=rtl]{margin-right:580px;margin-left:auto}.next-col-offset-fixed-m-30[dir=rtl]{margin-right:600px;margin-left:auto}.next-col-offset-fixed-l-1[dir=rtl]{margin-right:20px;margin-left:auto}.next-col-offset-fixed-l-2[dir=rtl]{margin-right:40px;margin-left:auto}.next-col-offset-fixed-l-3[dir=rtl]{margin-right:60px;margin-left:auto}.next-col-offset-fixed-l-4[dir=rtl]{margin-right:80px;margin-left:auto}.next-col-offset-fixed-l-5[dir=rtl]{margin-right:100px;margin-left:auto}.next-col-offset-fixed-l-6[dir=rtl]{margin-right:120px;margin-left:auto}.next-col-offset-fixed-l-7[dir=rtl]{margin-right:140px;margin-left:auto}.next-col-offset-fixed-l-8[dir=rtl]{margin-right:160px;margin-left:auto}.next-col-offset-fixed-l-9[dir=rtl]{margin-right:180px;margin-left:auto}.next-col-offset-fixed-l-10[dir=rtl]{margin-right:200px;margin-left:auto}.next-col-offset-fixed-l-11[dir=rtl]{margin-right:220px;margin-left:auto}.next-col-offset-fixed-l-12[dir=rtl]{margin-right:240px;margin-left:auto}.next-col-offset-fixed-l-13[dir=rtl]{margin-right:260px;margin-left:auto}.next-col-offset-fixed-l-14[dir=rtl]{margin-right:280px;margin-left:auto}.next-col-offset-fixed-l-15[dir=rtl]{margin-right:300px;margin-left:auto}.next-col-offset-fixed-l-16[dir=rtl]{margin-right:320px;margin-left:auto}.next-col-offset-fixed-l-17[dir=rtl]{margin-right:340px;margin-left:auto}.next-col-offset-fixed-l-18[dir=rtl]{margin-right:360px;margin-left:auto}.next-col-offset-fixed-l-19[dir=rtl]{margin-right:380px;margin-left:auto}.next-col-offset-fixed-l-20[dir=rtl]{margin-right:400px;margin-left:auto}.next-col-offset-fixed-l-21[dir=rtl]{margin-right:420px;margin-left:auto}.next-col-offset-fixed-l-22[dir=rtl]{margin-right:440px;margin-left:auto}.next-col-offset-fixed-l-23[dir=rtl]{margin-right:460px;margin-left:auto}.next-col-offset-fixed-l-24[dir=rtl]{margin-right:480px;margin-left:auto}.next-col-offset-fixed-l-25[dir=rtl]{margin-right:500px;margin-left:auto}.next-col-offset-fixed-l-26[dir=rtl]{margin-right:520px;margin-left:auto}.next-col-offset-fixed-l-27[dir=rtl]{margin-right:540px;margin-left:auto}.next-col-offset-fixed-l-28[dir=rtl]{margin-right:560px;margin-left:auto}.next-col-offset-fixed-l-29[dir=rtl]{margin-right:580px;margin-left:auto}.next-col-offset-fixed-l-30[dir=rtl]{margin-right:600px;margin-left:auto}.next-col-offset-fixed-xl-1[dir=rtl]{margin-right:20px;margin-left:auto}.next-col-offset-fixed-xl-2[dir=rtl]{margin-right:40px;margin-left:auto}.next-col-offset-fixed-xl-3[dir=rtl]{margin-right:60px;margin-left:auto}.next-col-offset-fixed-xl-4[dir=rtl]{margin-right:80px;margin-left:auto}.next-col-offset-fixed-xl-5[dir=rtl]{margin-right:100px;margin-left:auto}.next-col-offset-fixed-xl-6[dir=rtl]{margin-right:120px;margin-left:auto}.next-col-offset-fixed-xl-7[dir=rtl]{margin-right:140px;margin-left:auto}.next-col-offset-fixed-xl-8[dir=rtl]{margin-right:160px;margin-left:auto}.next-col-offset-fixed-xl-9[dir=rtl]{margin-right:180px;margin-left:auto}.next-col-offset-fixed-xl-10[dir=rtl]{margin-right:200px;margin-left:auto}.next-col-offset-fixed-xl-11[dir=rtl]{margin-right:220px;margin-left:auto}.next-col-offset-fixed-xl-12[dir=rtl]{margin-right:240px;margin-left:auto}.next-col-offset-fixed-xl-13[dir=rtl]{margin-right:260px;margin-left:auto}.next-col-offset-fixed-xl-14[dir=rtl]{margin-right:280px;margin-left:auto}.next-col-offset-fixed-xl-15[dir=rtl]{margin-right:300px;margin-left:auto}.next-col-offset-fixed-xl-16[dir=rtl]{margin-right:320px;margin-left:auto}.next-col-offset-fixed-xl-17[dir=rtl]{margin-right:340px;margin-left:auto}.next-col-offset-fixed-xl-18[dir=rtl]{margin-right:360px;margin-left:auto}.next-col-offset-fixed-xl-19[dir=rtl]{margin-right:380px;margin-left:auto}.next-col-offset-fixed-xl-20[dir=rtl]{margin-right:400px;margin-left:auto}.next-col-offset-fixed-xl-21[dir=rtl]{margin-right:420px;margin-left:auto}.next-col-offset-fixed-xl-22[dir=rtl]{margin-right:440px;margin-left:auto}.next-col-offset-fixed-xl-23[dir=rtl]{margin-right:460px;margin-left:auto}.next-col-offset-fixed-xl-24[dir=rtl]{margin-right:480px;margin-left:auto}.next-col-offset-fixed-xl-25[dir=rtl]{margin-right:500px;margin-left:auto}.next-col-offset-fixed-xl-26[dir=rtl]{margin-right:520px;margin-left:auto}.next-col-offset-fixed-xl-27[dir=rtl]{margin-right:540px;margin-left:auto}.next-col-offset-fixed-xl-28[dir=rtl]{margin-right:560px;margin-left:auto}.next-col-offset-fixed-xl-29[dir=rtl]{margin-right:580px;margin-left:auto}.next-col-offset-fixed-xl-30[dir=rtl]{margin-right:600px;margin-left:auto}.next-responsive-grid{box-sizing:border-box;display:grid}.next-responsive-grid *,.next-responsive-grid :after,.next-responsive-grid :before{box-sizing:border-box}.next-responsive-grid-ie{display:block}.next-form,.next-form *,.next-form :after,.next-form :before{box-sizing:border-box}.next-form-preview.next-form-item .next-form-item-label{color:#666}.next-form-preview.next-form-item .next-form-preview{color:#333}.next-form-preview.next-form-item.next-medium .next-form-item-label{font-size:14px;line-height:28px}.next-form-preview.next-form-item.next-small .next-form-item-label{font-size:12px;line-height:20px}.next-form-preview.next-form-item.next-large .next-form-item-label{font-size:16px;line-height:40px}.next-form-responsive-grid .next-form-item-control{flex:1}.next-form-responsive-grid .next-form-item{margin-bottom:0}.next-form-responsive-grid .next-form-item.next-left{display:flex}.next-form-responsive-grid.next-small .next-responsive-grid{gap:16px}.next-form-responsive-grid.next-small .next-form-item.next-left .next-form-item-label{line-height:1.4;margin-top:6px;margin-bottom:6px}.next-form-responsive-grid.next-medium .next-responsive-grid{gap:20px}.next-form-responsive-grid.next-medium .next-form-item.next-left .next-form-item-label{line-height:1.4;margin-top:9px;margin-bottom:9px}.next-form-responsive-grid.next-large .next-responsive-grid{gap:24px}.next-form-responsive-grid.next-large .next-form-item.next-left .next-form-item-label{line-height:1.4;margin-top:12px;margin-bottom:12px}.next-form-item{margin-bottom:16px}.next-form-item.has-error>.next-form-item-control>.next-form-item-help{color:#d23c26}.next-form-item.has-warning>.next-form-item-control>.next-form-item-help{color:#f1c826}.next-form-item .next-form-item-label,.next-form-item .next-form-text-align,.next-form-item p{line-height:32px}.next-form-item .next-form-text-align,.next-form-item p{margin:0}.next-form-item .next-checkbox-group,.next-form-item .next-checkbox-wrapper,.next-form-item .next-radio-group,.next-form-item .next-radio-wrapper,.next-form-item .next-rating{line-height:28px}.next-form-item .next-form-preview{font-size:14px;line-height:28px}.next-form-item .next-form-preview.next-input-textarea>p{font-size:14px;text-align:justify;min-height:19.6px;line-height:1.4;margin-top:4.2px}.next-form-item .next-form-item-label{font-size:14px}.next-form-item .next-form-item-label>label{display:inline-block;line-height:1.5}.next-form-item.next-large{margin-bottom:20px}.next-form-item.next-large .next-form-item-label,.next-form-item.next-large .next-form-text-align,.next-form-item.next-large p{line-height:40px}.next-form-item.next-large .next-checkbox-group,.next-form-item.next-large .next-checkbox-wrapper,.next-form-item.next-large .next-radio-group,.next-form-item.next-large .next-radio-wrapper,.next-form-item.next-large .next-rating{line-height:39px}.next-form-item.next-large .next-form-preview{font-size:16px;line-height:40px}.next-form-item.next-large .next-form-preview.next-input-textarea>p{font-size:16px;text-align:justify;min-height:22.4px;line-height:1.4;margin-top:8.8px}.next-form-item.next-large .next-switch{margin-top:7px}.next-form-item.next-large .next-form-item-label{font-size:16px}.next-form-item.next-small{margin-bottom:12px}.next-form-item.next-small .next-checkbox-group,.next-form-item.next-small .next-checkbox-wrapper,.next-form-item.next-small .next-form-item-label,.next-form-item.next-small .next-form-text-align,.next-form-item.next-small .next-radio-group,.next-form-item.next-small .next-radio-wrapper,.next-form-item.next-small .next-rating,.next-form-item.next-small p{line-height:24px}.next-form-item.next-small .next-form-preview{font-size:12px;line-height:20px}.next-form-item.next-small .next-form-preview.next-input-textarea>p{font-size:12px;text-align:justify;min-height:16.8px;line-height:1.4;margin-top:1.6px}.next-form-item.next-small .next-form-item-label{font-size:12px}.next-form-item.next-top>.next-form-item-label{margin-bottom:2px}.next-form-item.next-inset .next-form-item-label{padding-right:0;padding-left:0;line-height:inherit}.next-form-item-control .next-form-text-align{margin:0}.next-form-item-control>.next-input,.next-form-item-control>.next-input-group,.next-form-item-fullwidth .next-form-item-control>.next-date-picker,.next-form-item-fullwidth .next-form-item-control>.next-input,.next-form-item-fullwidth .next-form-item-control>.next-input-group,.next-form-item-fullwidth .next-form-item-control>.next-month-picker,.next-form-item-fullwidth .next-form-item-control>.next-range-picker,.next-form-item-fullwidth .next-form-item-control>.next-select,.next-form-item-fullwidth .next-form-item-control>.next-time-picker,.next-form-item-fullwidth .next-form-item-control>.next-year-picker{width:100%}.next-form-item-fullwidth .next-form-item-control>.next-date-picker2 .next-date-picker2-input input{width:inherit}.next-form-item-label{display:inline-block;vertical-align:top;color:#666;text-align:right;padding-right:12px}.next-form-item-label label[required]:before{margin-right:4px;content:"*";color:#d23c26}.next-form-item-label.has-colon label:after{content:":";position:relative;top:-.5px;margin:0 0 0 2px}.next-form-item-label.next-left{text-align:left}.next-form-item-label.next-left>label[required]:before{display:none}.next-form-item-label.next-left>label[required]:after{margin-left:4px;content:"*";color:#d23c26}.next-form-item-help{margin-top:4px;font-size:12px;line-height:1.5;color:#999}.next-form.next-inline .next-form-item{display:inline-block;vertical-align:top}.next-form.next-inline .next-form-item.next-left .next-form-item-control{display:inline-block;vertical-align:top;line-height:0}.next-form.next-inline .next-form-item:not(:last-child){margin-right:20px}.next-form.next-inline .next-form-item.next-large:not(:last-child){margin-right:24px}.next-form.next-inline .next-form-item.next-small:not(:last-child){margin-right:16px}@media screen and (min-width:0\0)and (min-resolution:0.001dpcm){.next-form-item.next-left>.next-form-item-label,.next-form.next-inline .next-form-item.next-left .next-form-item-control{display:table-cell}}.next-form[dir=rtl] .next-form-item-label{text-align:left;padding-left:12px;padding-right:0}.next-form[dir=rtl].next-inline .next-form-item:not(:last-child){margin-left:20px;margin-right:0}.next-form[dir=rtl].next-inline .next-form-item.next-large:not(:last-child){margin-left:24px;margin-right:0}.next-form[dir=rtl].next-inline .next-form-item.next-small:not(:last-child){margin-left:16px;margin-right:0}.next-avatar{position:relative;display:inline-block;overflow:hidden;color:#fff;white-space:nowrap;text-align:center;vertical-align:middle;background:#f2f2f2;width:40px;height:40px;line-height:40px;border-radius:50%}.next-avatar-image{background:transparent}.next-avatar-string{position:absolute;left:50%;transform-origin:0 center}.next-avatar-large{width:52px;height:52px;line-height:52px;border-radius:50%}.next-avatar-large-string{position:absolute;left:50%;transform-origin:0 center}.next-avatar-small{width:28px;height:28px;line-height:28px;border-radius:50%}.next-avatar-small-string{position:absolute;left:50%;transform-origin:0 center}.next-avatar-square{border-radius:3px}.next-avatar>img{display:block;width:100%;height:100%;object-fit:cover}.next-select{display:inline-block;position:relative;font-size:0;vertical-align:middle}.next-select,.next-select *,.next-select :after,.next-select :before{box-sizing:border-box}.next-select-trigger{min-width:100px;outline:0;transition:all .1s linear}.next-select-trigger .next-input-label{flex:0 0 auto;width:auto}.next-select-trigger .next-select-values{display:block;width:100%;flex:1 1 0;overflow:hidden}.next-select-trigger .next-select-values>em{font-style:inherit}.next-select-trigger .next-select-values input{padding-left:0;padding-right:0}.next-select-trigger .next-input-control{flex:0 0 auto;width:auto}.next-select-trigger .next-input-control>*{display:inline-block;width:auto}.next-select-trigger .next-input-control>.next-select-arrow{padding-right:0}.next-select-trigger .next-input.next-disabled em{color:#ccc}.next-select-trigger .next-input.next-disabled .next-select-arrow{cursor:not-allowed}.next-select-trigger .next-select-clear{display:none}.next-select-trigger.next-has-clear:hover .next-select-clear{display:inline-block}.next-select-trigger.next-has-clear:hover .next-select-arrow{display:none}.next-select .next-select-inner{display:inline-flex;align-items:center;width:100%;min-width:100px;outline:0;color:#333}.next-select .next-select-inner .next-tag{line-height:1;margin-right:4px;margin-bottom:3px;padding-left:0;padding-right:0}.next-select .next-select-inner .next-input-inner{width:auto}.next-select-trigger-search{position:relative;display:inline-block;vertical-align:top;overflow:hidden;width:100%;max-width:100%}.next-select-trigger-search>input,.next-select-trigger-search>span{display:block;font-size:inherit;font-family:inherit;letter-spacing:inherit;white-space:nowrap;overflow:hidden}.next-select-trigger-search input{position:absolute;background-color:transparent;width:100%;height:100%!important;z-index:1;left:0;border:0;outline:0;margin:0;padding:0;cursor:inherit}.next-select-trigger-search>span{position:relative;visibility:hidden;white-space:pre;max-width:100%;z-index:-1}.next-select-single.next-no-search{cursor:pointer}.next-select-single.next-has-search.next-active .next-select-values>em{display:none}.next-select-single.next-inactive .next-select-values>em+.next-select-trigger-search,.next-select-single.next-no-search .next-select-values>em+.next-select-trigger-search{width:1px;opacity:0;filter:alpha(opacity=0)}.next-select-single .next-select-values{display:inline-flex;align-items:center}.next-select-single .next-select-values>em{vertical-align:middle;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.next-select-multiple .next-select-compact{position:relative;white-space:nowrap}.next-select-multiple .next-select-compact .next-select-trigger-search{width:auto}.next-select-multiple .next-select-compact .next-select-tag-compact{position:absolute;top:0;right:0;z-index:1;padding:0 4px 0 16px;color:#333;background:linear-gradient(90deg,transparent,#fff 10px)}.next-select-multiple .next-disabled .next-select-tag-compact{background:linear-gradient(90deg,transparent,#fafafa 10px)}.next-select-multiple .next-select-values,.next-select-tag .next-select-values{margin-bottom:-3px;height:auto!important}.next-select-multiple .next-select-trigger-search,.next-select-tag .next-select-trigger-search{margin-bottom:3px}.next-select-multiple .next-tag+.next-select-trigger-search,.next-select-tag .next-tag+.next-select-trigger-search{width:auto;min-width:1px}.next-select-multiple .next-input,.next-select-tag .next-input{height:auto;align-items:start}.next-select-multiple.next-small .next-select-values,.next-select-tag.next-small .next-select-values{min-height:22px;padding-top:4px;padding-bottom:4px;line-height:14px}.next-select-multiple.next-small .next-select-values-compact,.next-select-tag.next-small .next-select-values-compact{height:24px!important}.next-select-multiple.next-small .next-tag,.next-select-tag.next-small .next-tag{border:0;padding-top:0;padding-bottom:0;height:14px}.next-select-multiple.next-small .next-tag-body,.next-select-multiple.next-small .next-tag .next-tag-body,.next-select-multiple.next-small .next-tag .next-tag-close-btn,.next-select-tag.next-small .next-tag-body,.next-select-tag.next-small .next-tag .next-tag-body,.next-select-tag.next-small .next-tag .next-tag-close-btn{line-height:14px}.next-select-multiple.next-small .next-input-control,.next-select-multiple.next-small .next-input-inner,.next-select-multiple.next-small .next-input-label,.next-select-multiple.next-small .next-select-tag-compact,.next-select-tag.next-small .next-input-control,.next-select-tag.next-small .next-input-inner,.next-select-tag.next-small .next-input-label,.next-select-tag.next-small .next-select-tag-compact{line-height:22px}.next-select-multiple.next-medium .next-select-values,.next-select-tag.next-medium .next-select-values{min-height:30px;padding-top:5px;padding-bottom:5px;line-height:20px}.next-select-multiple.next-medium .next-select-values-compact,.next-select-tag.next-medium .next-select-values-compact{height:32px!important}.next-select-multiple.next-medium .next-tag,.next-select-tag.next-medium .next-tag{padding-top:1px;padding-bottom:1px;height:20px}.next-select-multiple.next-medium .next-tag .next-tag-body,.next-select-multiple.next-medium .next-tag .next-tag-close-btn,.next-select-tag.next-medium .next-tag .next-tag-body,.next-select-tag.next-medium .next-tag .next-tag-close-btn{line-height:18px}.next-select-multiple.next-medium .next-input-control,.next-select-multiple.next-medium .next-input-inner,.next-select-multiple.next-medium .next-input-label,.next-select-multiple.next-medium .next-select-tag-compact,.next-select-tag.next-medium .next-input-control,.next-select-tag.next-medium .next-input-inner,.next-select-tag.next-medium .next-input-label,.next-select-tag.next-medium .next-select-tag-compact{line-height:30px}.next-select-multiple.next-large .next-select-values,.next-select-tag.next-large .next-select-values{min-height:38px;padding-top:7px;padding-bottom:7px;line-height:24px}.next-select-multiple.next-large .next-select-values-compact,.next-select-tag.next-large .next-select-values-compact{height:40px!important}.next-select-multiple.next-large .next-tag,.next-select-tag.next-large .next-tag{padding-top:3px;padding-bottom:3px;height:24px}.next-select-multiple.next-large .next-tag .next-tag-body,.next-select-multiple.next-large .next-tag .next-tag-close-btn,.next-select-tag.next-large .next-tag .next-tag-body,.next-select-tag.next-large .next-tag .next-tag-close-btn{line-height:18px}.next-select-multiple.next-large .next-input-control,.next-select-multiple.next-large .next-input-inner,.next-select-multiple.next-large .next-input-label,.next-select-multiple.next-large .next-select-tag-compact,.next-select-tag.next-large .next-input-control,.next-select-tag.next-large .next-input-inner,.next-select-tag.next-large .next-input-label,.next-select-tag.next-large .next-select-tag-compact{line-height:38px}.next-select-auto-complete{width:160px}.next-select-auto-complete .next-input{width:100%}.next-select-auto-complete .next-input .next-input-hint-wrap{padding-right:1px}.next-select-auto-complete .next-input .next-select-arrow{padding-left:0}.next-select.next-active .next-select-arrow .next-icon-arrow-down{transform:rotate(180deg)}.next-select .next-select-unfold-icon:before{content:""}.next-select-symbol-fold:before{content:"î½"}.next-select-arrow{cursor:pointer;width:auto!important;text-align:center;transition:all .1s linear}.next-select-popup-wrap{animation-duration:.3s;animation-timing-function:ease;padding:0}.next-select-spacing-tb{padding:0}.next-select-menu-wrapper{max-height:260px;overflow:auto;border:1px solid #e6e6e6;border-radius:3px;box-shadow:none}.next-select-menu-wrapper .next-select-menu{max-height:none;border:none}.next-select-menu{max-height:260px;overflow:auto}.next-select-menu .next-select-menu-empty-content{padding-left:8px;padding-right:8px;color:#999}.next-select-menu.next-select-auto-complete-menu.next-select-menu-empty{display:none}.next-select-menu .next-menu-item-text .next-icon{vertical-align:middle}.next-select-all{display:block;cursor:pointer;padding:0 8px;margin:0 12px 8px;border-bottom:1px solid #e6e6e6}.next-select-all:hover{color:#2580e7}.next-select-all .next-menu-icon-selected.next-icon{display:inline-block!important;top:auto;color:#209bfa}.next-select-highlight{color:#209bfa;font-size:14px}.next-select-in-ie.next-select-trigger .next-select-values{overflow:visible}.next-select-in-ie.next-select-trigger .next-input-control,.next-select-in-ie.next-select-trigger .next-input-label{width:1px}.next-select-in-ie.next-select-trigger .next-input-control>*{display:table-cell;width:1%}.next-select-in-ie.next-select-trigger .next-select-arrow{display:table-cell}.next-select-in-ie.next-select-trigger .next-select-clear{display:none}.next-select-in-ie.next-select-trigger.next-select-multiple .next-select-inner,.next-select-in-ie.next-select-trigger.next-select-tag .next-select-inner{vertical-align:top}.next-select-in-ie.next-select-trigger .next-select-inner,.next-select-in-ie.next-select-trigger.next-select-single .next-select-values{display:inline-table}.next-select-in-ie.next-select-trigger.next-select-single .next-input.next-small .next-select-values{line-height:24px}.next-select-in-ie.next-select-trigger.next-select-single .next-input.next-medium .next-select-values{line-height:32px}.next-select-in-ie.next-select-trigger.next-select-single .next-input.next-large .next-select-values{line-height:40px}.next-select-in-ie.next-select-trigger .next-select-trigger-search>span{max-width:100px}.next-select-in-ie.next-select-trigger.next-select-single.next-select-in-ie-fixwidth .next-select-values{position:relative}.next-select-in-ie.next-select-trigger.next-select-single.next-select-in-ie-fixwidth .next-select-values>em{position:absolute;display:inline-block;height:100%;line-height:1;vertical-align:middle;overflow:hidden;left:4px;right:0;top:30%}.next-select-in-ie.next-select-trigger.next-select-single.next-inactive .next-select-values>em+.next-select-trigger-search,.next-select-in-ie.next-select-trigger.next-select-single.next-no-search .next-select-values>em+.next-select-trigger-search{filter:alpha(opacity=0);font-size:0}.next-select-in-ie.next-select-trigger.next-no-search .next-select-trigger-search input{color:inherit}@media screen and (-webkit-min-device-pixel-ratio:0){.next-select-multiple .next-select-compact .next-select-tag-compact{background:linear-gradient(90deg,hsla(0,0%,100%,0),#fff 10px)}.next-select-multiple .next-disabled .next-select-tag-compact{background:linear-gradient(90deg,hsla(0,0%,100%,0),#fafafa 10px)}}.next-select.next-select-multiple[dir=rtl] .next-select-compact .next-select-tag-compact{left:0;right:auto;padding:0 16px 0 4px;background:linear-gradient(270deg,hsla(0,0%,100%,0),#fff 10px)}.next-list-header{border-bottom:1px solid #e6e6e6;color:#333}.next-list-footer{border-top:1px solid #e6e6e6;color:#666}.next-list-loading.next-loading{display:block}.next-list-empty{font-size:14px;color:#ccc;padding:32px 0;text-align:center}.next-list-items{margin:0;padding:0;list-style:none}.next-list-item{display:table;display:flex;width:100%;color:#666}.next-list-item-extra,.next-list-item-media{display:table-cell;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;min-width:1px;flex-shrink:0;vertical-align:top}.next-list-item-extra{color:#999}.next-list-item-content{display:table-cell;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;flex:1;width:100%;vertical-align:middle}.next-list-item-title{color:#333}.next-list-medium .next-list-header{padding:16px 0;font-size:20px;font-weight:700}.next-list-medium .next-list-footer{padding:16px 0}.next-list-medium .next-list-item-media{padding-right:8px}.next-list-medium .next-list-item-extra{padding-left:8px}.next-list-medium .next-list-item{font-size:14px;line-height:1.5;padding:16px 0}.next-list-medium .next-list-item-title{font-weight:400;font-size:16px;line-height:1.5}.next-list-small .next-list-header{padding:8px 0;font-size:16px;font-weight:700}.next-list-small .next-list-footer{padding:8px 0}.next-list-small .next-list-item-media{padding-right:8px}.next-list-small .next-list-item-extra{padding-left:8px}.next-list-small .next-list-item{font-size:14px;font-weight:400;line-height:1.3;padding:8px 0}.next-list-small .next-list-item-title{font-size:14px;line-height:1.5}.next-list-divider .next-list-item{border-bottom:1px solid #e6e6e6}.next-list-divider .next-list-item:last-child{border-bottom:none}.next-list[dir=rtl] .next-list-item-media{padding-left:8px;padding-right:0}.next-list[dir=rtl] .next-list-item-extra{padding-right:8px;padding-left:0}.next-list[dir=rtl] .next-list-small .next-list-item-media{padding-left:8px;padding-right:0}.next-list[dir=rtl] .next-list-small .next-list-item-extra{padding-right:8px;padding-left:0}.next-menu-btn{display:inline-block;box-shadow:none}.next-menu-btn-spacing-tb{padding:0}.next-menu-btn .next-icon{transition:transform .1s linear}.next-menu-btn .next-menu-btn-arrow:before{content:"î½"}.next-menu-btn.next-expand .next-menu-btn-arrow{transform:rotate(180deg)}.next-menu-btn-symbol-unfold:before{content:""}.next-menu-btn.next-btn-normal .next-menu-btn-arrow{color:#999}.next-menu-btn.next-btn-normal:hover .next-menu-btn-arrow{color:#333}.next-menu-btn.next-btn-secondary .next-menu-btn-arrow{color:#209bfa}.next-menu-btn.next-btn-secondary:hover .next-menu-btn-arrow{color:#fff}.next-menu-btn.next-btn-secondary.next-btn-text:hover .next-menu-btn-arrow{color:#209bfa}.next-menu-btn.next-btn-primary .next-menu-btn-arrow,.next-menu-btn.next-btn-primary:hover .next-menu-btn-arrow{color:#fff}.next-menu-btn.next-btn-text.next-btn-normal .next-menu-btn-arrow{color:#333}.next-menu-btn.next-btn-text.next-btn-normal:hover .next-menu-btn-arrow{color:#209bfa}.next-menu-btn.next-btn-text.next-btn-primary .next-menu-btn-arrow{color:#298dff}.next-menu-btn.next-btn-text.next-btn-primary:hover .next-menu-btn-arrow{color:#1274e7}.next-menu-btn.next-btn-ghost.next-btn-light .next-menu-btn-arrow{color:#333}.next-menu-btn.next-btn-ghost.next-btn-light:hover .next-menu-btn-arrow{color:#999}.next-menu-btn.next-btn-ghost.next-btn-dark .next-menu-btn-arrow,.next-menu-btn.next-btn-ghost.next-btn-dark:hover .next-menu-btn-arrow{color:#fff}.next-menu-btn.disabled .next-menu-btn-arrow,.next-menu-btn.next-btn-text.disabled .next-menu-btn-arrow,.next-menu-btn.next-btn-text[disabled] .next-menu-btn-arrow,.next-menu-btn[disabled] .next-menu-btn-arrow{color:#ccc}.next-menu-btn[disabled].next-btn-ghost.next-btn-dark .next-menu-btn-arrow{color:hsla(0,0%,100%,.4)}.next-menu-btn[disabled].next-btn-ghost.next-btn-light .next-menu-btn-arrow{color:rgba(0,0,0,.1)}.next-nav{min-width:auto;border-radius:0}.next-nav,.next-nav *,.next-nav :after,.next-nav :before{box-sizing:border-box}.next-nav-icon.next-icon{margin-right:12px;font-weight:inherit}.next-nav-icon.next-icon .next-icon-remote,.next-nav-icon.next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-nav-group-label{height:40px;line-height:40px;font-size:14px}.next-nav-item .next-menu-item-text>span,.next-nav-item .next-nav-group-label>span{opacity:1;transition:opacity .1s linear}.next-nav-item .next-menu-item-text>a{text-decoration:none;color:inherit}.next-nav-item.next-focused .next-menu-hoz-icon-arrow.next-icon,.next-nav-item.next-focused .next-menu-icon-arrow.next-icon,.next-nav-item .next-menu-hoz-icon-arrow.next-icon,.next-nav-item .next-menu-icon-arrow.next-icon,.next-nav-item.next-opened .next-menu-hoz-icon-arrow.next-icon,.next-nav-item.next-opened .next-menu-icon-arrow.next-icon,.next-nav-item.next-selected .next-menu-hoz-icon-arrow.next-icon,.next-nav-item.next-selected .next-menu-icon-arrow.next-icon,.next-nav-item:hover .next-menu-hoz-icon-arrow.next-icon,.next-nav-item:hover .next-menu-icon-arrow.next-icon{color:inherit;top:0;transform-origin:center 50%}.next-nav.next-active .next-nav-item:before{position:absolute;transition:all .3s ease;content:""}.next-nav.next-hoz{padding:0;height:44px;line-height:42px;font-size:14px}.next-nav.next-hoz .next-menu-item.next-nav-item{margin-left:0;margin-right:0;padding:0 20px;border-radius:0}.next-nav.next-hoz .next-menu-item,.next-nav.next-hoz .next-menu-sub-menu-wrapper>.next-menu-item{margin-top:0;margin-bottom:0}.next-nav.next-hoz .next-menu-item-inner{height:42px;font-size:14px}.next-nav.next-hoz .next-menu-item.next-nav-item.next-nav-with-title{line-height:1;padding:12px 8px}.next-nav.next-hoz .next-menu-item.next-nav-item.next-nav-with-title .next-menu-item-inner{height:auto;min-height:42px}.next-nav.next-hoz .next-menu-item.next-nav-item.next-nav-with-title .next-nav-text{display:block;line-height:1;margin-top:8px;overflow:hidden;text-overflow:ellipsis}.next-nav.next-hoz .next-nav-group-label .next-menu-item-inner{height:40px;line-height:40px;font-size:14px}.next-nav.next-hoz .next-menu-header{float:left;height:42px}.next-nav.next-hoz .next-menu-footer{float:right;height:42px}.next-nav.next-hoz .next-nav-item:before{width:0;left:50%;height:2px}.next-nav.next-hoz .next-nav-item:hover:before{height:0}.next-nav.next-hoz.next-top .next-nav-item:before{top:-1px}.next-nav.next-hoz.next-bottom .next-nav-item:before{bottom:-1px}.next-nav.next-hoz .next-selected.next-nav-item:before{width:100%;left:0;height:2px}.next-nav.next-ver{padding:0;transition:width .3s ease;line-height:52px;font-size:14px}.next-nav.next-ver .next-menu-item.next-nav-item{margin-left:0;margin-right:0;padding:0 16px;border-radius:0}.next-nav.next-ver .next-menu-item:not(:first-child),.next-nav.next-ver .next-menu-sub-menu-wrapper:not(:first-child)>.next-menu-item{margin-top:0}.next-nav.next-ver .next-menu-item:not(:last-child),.next-nav.next-ver .next-menu-sub-menu-wrapper:not(:last-child)>.next-menu-item{margin-bottom:0}.next-nav.next-ver .next-menu-item-inner{height:52px;font-size:14px}.next-nav.next-ver .next-menu-item.next-nav-item.next-nav-with-title{line-height:1;padding:12px 8px}.next-nav.next-ver .next-menu-item.next-nav-item.next-nav-with-title .next-menu-item-inner{height:auto;min-height:52px}.next-nav.next-ver .next-menu-item.next-nav-item.next-nav-with-title .next-nav-text{display:block;line-height:1;margin-top:8px;overflow:hidden;text-overflow:ellipsis}.next-nav.next-ver .next-nav-group-label .next-menu-item-inner{height:40px;line-height:40px;font-size:14px}.next-nav.next-ver>.next-menu-item:first-child,.next-nav.next-ver>.next-menu-sub-menu-wrapper:first-child>.next-menu-item{margin-top:0}.next-nav.next-ver>.next-menu-item:last-child,.next-nav.next-ver>.next-menu-sub-menu-wrapper:last-child>.next-menu-item{margin-bottom:0}.next-nav.next-ver .next-menu-sub-menu{line-height:52px}.next-nav.next-ver .next-menu-sub-menu .next-menu-item-inner{height:52px;font-size:14px}.next-nav.next-ver .next-nav-item:before{height:0;top:50%;width:2px}.next-nav.next-ver .next-nav-item:hover:before{width:0}.next-nav.next-ver.next-left .next-nav-item:before,.next-nav.next-ver.next-top .next-nav-item:before{left:-1px}.next-nav.next-ver.next-bottom .next-nav-item:before,.next-nav.next-ver.next-right .next-nav-item:before{right:-1px}.next-nav.next-ver .next-selected.next-nav-item:before{height:100%;top:0;width:2px}.next-nav.next-primary{border-width:0;background:#222;border-color:#222;color:#ddd;font-weight:400;box-shadow:4px 4px 8px 0 rgba(0,0,0,.12)}.next-nav.next-primary.next-hoz{line-height:44px}.next-nav.next-primary.next-hoz .next-menu-footer,.next-nav.next-primary.next-hoz .next-menu-header,.next-nav.next-primary.next-hoz .next-menu-item-inner{line-height:44px;height:44px}.next-nav.next-primary.next-hoz.next-top .next-nav-item:before{top:0}.next-nav.next-primary.next-hoz.next-bottom .next-nav-item:before{bottom:0}.next-nav.next-primary.next-ver.next-left .next-nav-item:before{left:0}.next-nav.next-primary.next-ver.next-right .next-nav-item:before{right:0}.next-nav.next-primary .next-nav-item.next-menu-item{background:#222;color:#ddd}.next-nav.next-primary .next-nav-item.next-menu-item.next-focused,.next-nav.next-primary .next-nav-item.next-menu-item:hover{background:#333;color:#fff;font-weight:400}.next-nav.next-primary .next-nav-item.next-menu-item.next-selected{background:#333;color:#fff;font-weight:700}.next-nav.next-primary .next-nav-item.next-menu-item.next-opened{background:#222;color:#fff}.next-nav.next-primary .next-nav-item.next-menu-item.next-child-selected{font-weight:700;background:transparent;color:#fff}.next-nav.next-primary .next-nav-item.next-menu-item.next-child-selected.next-nav-popup,.next-nav.next-primary .next-nav-item.next-menu-item.next-opened.next-nav-popup{color:#fff}.next-nav.next-primary .next-nav-item.next-menu-item:before,.next-nav.next-primary .next-nav-item.next-menu-item:hover:before{background:#209bfa}.next-nav.next-primary .next-menu-sub-menu .next-menu-item.next-opened{background:#222;color:#fff}.next-nav.next-primary .next-nav-group-label{color:#999;font-weight:400}.next-nav.next-primary .next-menu-sub-menu .next-menu-item{background:#151515;color:#ddd;font-weight:400}.next-nav.next-primary .next-menu-sub-menu .next-menu-item.next-focused,.next-nav.next-primary .next-menu-sub-menu .next-menu-item:hover{background:#333;color:#ddd}.next-nav.next-primary .next-menu-sub-menu .next-menu-item.next-selected{background:#333;color:#fff}.next-nav.next-primary .next-nav-item.next-menu-item.next-disabled,.next-nav.next-primary .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a{color:#ccc;cursor:not-allowed}.next-nav.next-primary .next-nav-item.next-menu-item.next-disabled .next-menu-icon-arrow,.next-nav.next-primary .next-nav-item.next-menu-item.next-disabled .next-menu-icon-selected,.next-nav.next-primary .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a .next-menu-icon-arrow,.next-nav.next-primary .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a .next-menu-icon-selected{color:#ccc}.next-nav.next-secondary{border-width:0;background:#209bfa;border-color:#209bfa;color:#fff;font-weight:400;box-shadow:4px 4px 8px 0 rgba(0,0,0,.12)}.next-nav.next-secondary.next-hoz{line-height:44px}.next-nav.next-secondary.next-hoz .next-menu-footer,.next-nav.next-secondary.next-hoz .next-menu-header,.next-nav.next-secondary.next-hoz .next-menu-item-inner{line-height:44px;height:44px}.next-nav.next-secondary.next-hoz.next-top .next-nav-item:before{top:0}.next-nav.next-secondary.next-hoz.next-bottom .next-nav-item:before{bottom:0}.next-nav.next-secondary.next-ver.next-left .next-nav-item:before{left:0}.next-nav.next-secondary.next-ver.next-right .next-nav-item:before{right:0}.next-nav.next-secondary .next-nav-item.next-menu-item{background:#209bfa;color:#fff}.next-nav.next-secondary .next-nav-item.next-menu-item.next-focused,.next-nav.next-secondary .next-nav-item.next-menu-item:hover{background:#1274e7;color:#fff;font-weight:400}.next-nav.next-secondary .next-nav-item.next-menu-item.next-selected{background:#1274e7;color:#fff;font-weight:700}.next-nav.next-secondary .next-nav-item.next-menu-item.next-opened{background:transparent;color:#fff}.next-nav.next-secondary .next-nav-item.next-menu-item.next-child-selected{font-weight:700;background:transparent;color:#fff}.next-nav.next-secondary .next-nav-item.next-menu-item.next-child-selected.next-nav-popup,.next-nav.next-secondary .next-nav-item.next-menu-item.next-opened.next-nav-popup{color:#fff}.next-nav.next-secondary .next-nav-item.next-menu-item:before,.next-nav.next-secondary .next-nav-item.next-menu-item:hover:before{background:#1274e7}.next-nav.next-secondary .next-menu-sub-menu .next-menu-item.next-opened{background:transparent;color:#fff}.next-nav.next-secondary .next-nav-group-label{color:#fff;font-weight:400}.next-nav.next-secondary .next-menu-sub-menu .next-menu-item{background:#209bfa;color:#fff;font-weight:400}.next-nav.next-secondary .next-menu-sub-menu .next-menu-item.next-focused,.next-nav.next-secondary .next-menu-sub-menu .next-menu-item.next-selected,.next-nav.next-secondary .next-menu-sub-menu .next-menu-item:hover{background:#1274e7;color:#fff}.next-nav.next-secondary .next-nav-item.next-menu-item.next-disabled,.next-nav.next-secondary .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a{color:#add9ff;cursor:not-allowed}.next-nav.next-secondary .next-nav-item.next-menu-item.next-disabled .next-menu-icon-arrow,.next-nav.next-secondary .next-nav-item.next-menu-item.next-disabled .next-menu-icon-selected,.next-nav.next-secondary .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a .next-menu-icon-arrow,.next-nav.next-secondary .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a .next-menu-icon-selected{color:#add9ff}.next-nav.next-normal{border-color:#eee;font-weight:400;box-shadow:4px 4px 8px 0 rgba(0,0,0,.12)}.next-nav.next-normal,.next-nav.next-normal .next-nav-item.next-menu-item{background:#fff;color:#666}.next-nav.next-normal .next-nav-item.next-menu-item.next-focused,.next-nav.next-normal .next-nav-item.next-menu-item:hover{background:#fff;color:#333;font-weight:500}.next-nav.next-normal .next-nav-item.next-menu-item.next-selected{background:#e4f3fe;color:#209bfa;font-weight:700}.next-nav.next-normal .next-nav-item.next-menu-item.next-opened{background:transparent;color:#333}.next-nav.next-normal .next-nav-item.next-menu-item.next-child-selected{font-weight:400;background:transparent;color:#209bfa}.next-nav.next-normal .next-nav-item.next-menu-item.next-opened.next-nav-popup{color:#333}.next-nav.next-normal .next-nav-item.next-menu-item.next-child-selected.next-nav-popup{color:#209bfa}.next-nav.next-normal .next-nav-item.next-menu-item:before{background:#209bfa}.next-nav.next-normal .next-nav-item.next-menu-item:hover:before{background:#1b84e0}.next-nav.next-normal .next-menu-sub-menu .next-menu-item.next-opened{background:transparent;color:#333}.next-nav.next-normal .next-nav-group-label{color:#999;font-weight:400}.next-nav.next-normal .next-menu-sub-menu .next-menu-item{background:#fafafa;color:#666;font-weight:400}.next-nav.next-normal .next-menu-sub-menu .next-menu-item.next-focused,.next-nav.next-normal .next-menu-sub-menu .next-menu-item:hover{background:#f9f9f9;color:#298dff}.next-nav.next-normal .next-menu-sub-menu .next-menu-item.next-selected{background:#e4f3fe;color:#209bfa}.next-nav.next-normal .next-nav-item.next-menu-item.next-disabled,.next-nav.next-normal .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a{color:#999;cursor:not-allowed}.next-nav.next-normal .next-nav-item.next-menu-item.next-disabled .next-menu-icon-arrow,.next-nav.next-normal .next-nav-item.next-menu-item.next-disabled .next-menu-icon-selected,.next-nav.next-normal .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a .next-menu-icon-arrow,.next-nav.next-normal .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a .next-menu-icon-selected{color:#999}.next-nav.next-line{background:transparent;border-color:#e6e6e6;color:#333;font-weight:400;box-shadow:none}.next-nav.next-line.next-hoz{border-right-color:transparent}.next-nav.next-line.next-hoz,.next-nav.next-line.next-ver{border-top-color:transparent;border-left-color:transparent}.next-nav.next-line.next-ver{border-bottom-color:transparent}.next-nav.next-line .next-nav-item.next-menu-item{background:transparent;color:#333}.next-nav.next-line .next-nav-item.next-menu-item.next-focused,.next-nav.next-line .next-nav-item.next-menu-item:hover{background:transparent;color:#209bfa;font-weight:400}.next-nav.next-line .next-nav-item.next-menu-item.next-selected{background:transparent;color:#209bfa;font-weight:700}.next-nav.next-line .next-nav-item.next-menu-item.next-opened{background:transparent;color:#209bfa}.next-nav.next-line .next-nav-item.next-menu-item.next-child-selected{font-weight:400;background:transparent;color:#209bfa}.next-nav.next-line .next-nav-item.next-menu-item.next-child-selected.next-nav-popup,.next-nav.next-line .next-nav-item.next-menu-item.next-opened.next-nav-popup{color:#209bfa}.next-nav.next-line .next-nav-item.next-menu-item:before,.next-nav.next-line .next-nav-item.next-menu-item:hover:before{background:#209bfa}.next-nav.next-line .next-menu-sub-menu .next-menu-item.next-opened{background:transparent;color:#209bfa}.next-nav.next-line .next-nav-group-label{color:#999;font-weight:400}.next-nav.next-line .next-menu-sub-menu .next-menu-item{background:transparent;color:#333;font-weight:400}.next-nav.next-line .next-menu-sub-menu .next-menu-item.next-focused,.next-nav.next-line .next-menu-sub-menu .next-menu-item.next-selected,.next-nav.next-line .next-menu-sub-menu .next-menu-item:hover{background:transparent;color:#209bfa}.next-nav.next-line .next-nav-item.next-menu-item.next-disabled,.next-nav.next-line .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a{color:#999;cursor:not-allowed}.next-nav.next-line .next-nav-item.next-menu-item.next-disabled .next-menu-icon-arrow,.next-nav.next-line .next-nav-item.next-menu-item.next-disabled .next-menu-icon-selected,.next-nav.next-line .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a .next-menu-icon-arrow,.next-nav.next-line .next-nav-item.next-menu-item.next-disabled .next-menu-item-text>a .next-menu-icon-selected{color:#999}.next-nav.next-icon-only.next-icon-only-text{padding-top:4px;padding-bottom:4px}.next-nav.next-icon-only.next-custom-icon-only-width{text-align:center}.next-nav.next-icon-only .next-menu-item-inner{text-overflow:clip}.next-nav.next-icon-only.next-normal .next-nav-icon.next-icon{margin-left:2px;margin-right:2px}.next-nav.next-icon-only.next-normal .next-nav-icon.next-icon .next-icon-remote,.next-nav.next-icon-only.next-normal .next-nav-icon.next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-nav.next-icon-only.next-primary .next-nav-icon.next-icon{margin-left:3px;margin-right:3px}.next-nav.next-icon-only.next-primary .next-nav-icon.next-icon .next-icon-remote,.next-nav.next-icon-only.next-primary .next-nav-icon.next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-nav.next-icon-only.next-secondary .next-nav-icon.next-icon{margin-left:3px;margin-right:3px}.next-nav.next-icon-only.next-secondary .next-nav-icon.next-icon .next-icon-remote,.next-nav.next-icon-only.next-secondary .next-nav-icon.next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-nav.next-icon-only .next-nav-icon-only-arrow.next-icon{margin-left:3px;margin-right:3px;transition:all .1s linear;transform-origin:center 50%}.next-nav.next-icon-only .next-nav-icon-only-arrow.next-icon .next-icon-remote,.next-nav.next-icon-only .next-nav-icon-only-arrow.next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-nav.next-icon-only .next-nav-item.next-opened .next-nav-icon-only-arrow.next-icon-arrow-down{transform:rotate(180deg);margin-left:3px;margin-right:3px}.next-nav.next-icon-only .next-nav-item.next-opened .next-nav-icon-only-arrow.next-icon-arrow-down .next-icon-remote,.next-nav.next-icon-only .next-nav-item.next-opened .next-nav-icon-only-arrow.next-icon-arrow-down:before{width:20px;font-size:20px;line-height:inherit}.next-nav.next-icon-only .next-menu-hoz-icon-arrow,.next-nav.next-icon-only .next-menu-icon-arrow{display:none}.next-nav-embeddable.next-normal,.next-nav-embeddable.next-primary,.next-nav-embeddable.next-secondary{height:100%;background:transparent;box-shadow:none;border:none}.next-nav-embeddable.next-normal .next-menu-sub-menu .next-menu-item,.next-nav-embeddable.next-normal .next-nav-item.next-menu-item,.next-nav-embeddable.next-primary .next-menu-sub-menu .next-menu-item,.next-nav-embeddable.next-primary .next-nav-item.next-menu-item,.next-nav-embeddable.next-secondary .next-menu-sub-menu .next-menu-item,.next-nav-embeddable.next-secondary .next-nav-item.next-menu-item{background:transparent}.next-nav-embeddable.next-normal.next-icon-only .next-nav-icon.next-icon,.next-nav-embeddable.next-primary.next-icon-only .next-nav-icon.next-icon,.next-nav-embeddable.next-secondary.next-icon-only .next-nav-icon.next-icon{margin-left:3px;margin-right:3px}.next-nav-embeddable.next-normal.next-icon-only .next-nav-icon.next-icon .next-icon-remote,.next-nav-embeddable.next-normal.next-icon-only .next-nav-icon.next-icon:before,.next-nav-embeddable.next-primary.next-icon-only .next-nav-icon.next-icon .next-icon-remote,.next-nav-embeddable.next-primary.next-icon-only .next-nav-icon.next-icon:before,.next-nav-embeddable.next-secondary.next-icon-only .next-nav-icon.next-icon .next-icon-remote,.next-nav-embeddable.next-secondary.next-icon-only .next-nav-icon.next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-nav-embeddable.next-nav.next-hoz .next-menu-item-inner,.next-nav-embeddable.next-nav.next-hoz .next-menu-sub-menu .next-menu-item,.next-nav-embeddable.next-nav.next-hoz .next-nav-item.next-menu-item{height:100%}.next-nav-embeddable,.next-nav-embeddable .next-nav-item.next-disabled,.next-nav-embeddable .next-nav-item.next-disabled .next-menu-item-text>a{background:transparent;border:none}.next-nav[dir=rtl] .next-nav-icon.next-icon{margin-left:12px;margin-right:0}.next-nav[dir=rtl] .next-nav-icon.next-icon .next-icon-remote,.next-nav[dir=rtl] .next-nav-icon.next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-nav[dir=rtl].next-hoz .next-menu-header{float:right}.next-nav[dir=rtl].next-hoz .next-menu-footer{float:left}.next-nav[dir=rtl].next-hoz .next-nav-item:before{width:0;left:50%}.next-nav[dir=rtl].next-hoz .next-selected.next-nav-item:before{width:100%;left:auto;right:0}.next-nav[dir=rtl].next-ver.next-left .next-nav-item:before{right:0;right:-1px;left:auto}.next-nav[dir=rtl].next-ver.next-right .next-nav-item:before{left:0;left:-1px;right:auto}.next-nav[dir=rtl].next-primary.next-ver.next-left .next-nav-item:before{right:0;left:auto}.next-nav[dir=rtl].next-primary.next-ver.next-right .next-nav-item:before{left:0;right:auto}.next-nav[dir=rtl].next-secondary.next-ver.next-left .next-nav-item:before{right:0;left:auto}.next-nav[dir=rtl].next-secondary.next-ver.next-right .next-nav-item:before{left:0;right:auto}.next-nav[dir=rtl] .next-nav.next-line.next-ver{border-color:transparent}.next-nav[dir=rtl].next-icon-only .next-nav-icon-only-arrow.next-icon,.next-nav[dir=rtl].next-icon-only .next-nav-icon.next-icon,.next-nav[dir=rtl].next-icon-only .next-nav-item.next-opened .next-nav-icon-only-arrow.next-icon-arrow-down{margin-left:0;margin-right:-1px}.next-nav[dir=rtl].next-icon-only .next-nav-icon-only-arrow.next-icon .next-icon-remote,.next-nav[dir=rtl].next-icon-only .next-nav-icon-only-arrow.next-icon:before,.next-nav[dir=rtl].next-icon-only .next-nav-icon.next-icon .next-icon-remote,.next-nav[dir=rtl].next-icon-only .next-nav-icon.next-icon:before,.next-nav[dir=rtl].next-icon-only .next-nav-item.next-opened .next-nav-icon-only-arrow.next-icon-arrow-down .next-icon-remote,.next-nav[dir=rtl].next-icon-only .next-nav-item.next-opened .next-nav-icon-only-arrow.next-icon-arrow-down:before{width:20px;font-size:20px;line-height:inherit}.next-number-picker{display:inline-block}.next-number-picker,.next-number-picker *,.next-number-picker :after,.next-number-picker :before{box-sizing:border-box}.next-number-picker .next-btn{padding:0!important;line-height:0!important;box-shadow:none!important}.next-number-picker-normal .next-input{width:100%}.next-number-picker-normal .next-input .next-input-control{padding-right:0;height:100%}.next-number-picker-normal:not(.next-number-picker-no-trigger) .next-input input{padding-right:2px}.next-number-picker-normal .next-btn{display:block}.next-number-picker-normal .next-btn:hover{z-index:1}.next-number-picker-normal .next-btn:first-child{border-right:none;border-top:none;height:50%;border-top-left-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.next-number-picker-normal .next-btn:last-child{border-right:none;border-bottom:none;margin-top:-1px;height:calc(50% + 1px);border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.next-number-picker-normal .next-number-picker-handler{transition:opacity .1s linear;height:100%;display:block}.next-number-picker-normal:not(.next-number-picker-show-trigger) .next-number-picker-handler{opacity:0}.next-number-picker-normal.hover .next-number-picker-handler,.next-number-picker-normal:hover .next-number-picker-handler{opacity:1}.next-number-picker-normal .next-input.next-disabled .next-number-picker-handler{opacity:0}.next-number-picker-normal .next-number-picker-up-icon:before{content:"î¥"}.next-number-picker-normal .next-number-picker-down-icon:before{content:"î½"}.next-number-picker-normal.next-small{width:68px}.next-number-picker-normal.next-small .next-btn{width:20px}.next-number-picker-normal.next-small .next-btn:first-child{border-top-right-radius:3px}.next-number-picker-normal.next-small .next-btn:last-child{border-bottom-right-radius:3px}.next-number-picker-normal.next-small .next-icon .next-icon-remote,.next-number-picker-normal.next-small .next-icon:before{width:8px;font-size:8px;line-height:inherit}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-number-picker-normal.next-small .next-icon{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-number-picker-normal.next-small .next-icon:before{width:16px;font-size:16px}}.next-number-picker-normal.next-medium{width:80px}.next-number-picker-normal.next-medium .next-btn{width:20px}.next-number-picker-normal.next-medium .next-btn:first-child{border-top-right-radius:3px}.next-number-picker-normal.next-medium .next-btn:last-child{border-bottom-right-radius:3px}.next-number-picker-normal.next-medium .next-icon .next-icon-remote,.next-number-picker-normal.next-medium .next-icon:before{width:8px;font-size:8px;line-height:inherit}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-number-picker-normal.next-medium .next-icon{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-number-picker-normal.next-medium .next-icon:before{width:16px;font-size:16px}}.next-number-picker-normal.next-large{width:80px}.next-number-picker-normal.next-large .next-btn{width:20px}.next-number-picker-normal.next-large .next-btn:first-child{border-top-right-radius:3px}.next-number-picker-normal.next-large .next-btn:last-child{border-bottom-right-radius:3px}.next-number-picker-normal.next-large .next-icon .next-icon-remote,.next-number-picker-normal.next-large .next-icon:before{width:8px;font-size:8px;line-height:inherit}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-number-picker-normal.next-large .next-icon{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-number-picker-normal.next-large .next-icon:before{width:16px;font-size:16px}}.next-number-picker-inline input{text-align:center}.next-number-picker-inline .next-input input{padding:0}.next-number-picker-inline .next-number-picker-add-icon:before{content:"î"}.next-number-picker-inline .next-number-picker-minus-icon:before{content:"î"}.next-number-picker-inline.next-small{width:68px;min-width:72px}.next-number-picker-inline.next-small .next-icon .next-icon-remote,.next-number-picker-inline.next-small .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-number-picker-inline.next-small .next-btn{height:24px}.next-number-picker-inline.next-small .next-before .next-btn{margin-right:2px;border-top-left-radius:3px;border-bottom-left-radius:3px}.next-number-picker-inline.next-small .next-after .next-btn{margin-left:2px;border-top-right-radius:3px;border-bottom-right-radius:3px}.next-number-picker-inline.next-medium{width:100px;min-width:96px}.next-number-picker-inline.next-medium .next-icon .next-icon-remote,.next-number-picker-inline.next-medium .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-number-picker-inline.next-medium .next-btn{height:32px}.next-number-picker-inline.next-medium .next-before .next-btn{margin-right:2px;border-top-left-radius:3px;border-bottom-left-radius:3px}.next-number-picker-inline.next-medium .next-after .next-btn{margin-left:2px;border-top-right-radius:3px;border-bottom-right-radius:3px}.next-number-picker-inline.next-large{width:128px;min-width:120px}.next-number-picker-inline.next-large .next-icon .next-icon-remote,.next-number-picker-inline.next-large .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-number-picker-inline.next-large .next-btn{height:40px}.next-number-picker-inline.next-large .next-before .next-btn{margin-right:2px;border-top-left-radius:3px;border-bottom-left-radius:3px}.next-number-picker-inline.next-large .next-after .next-btn{margin-left:2px;border-top-right-radius:3px;border-bottom-right-radius:3px}.next-number-picker-inline .next-btn.next-small{width:24px}.next-number-picker-inline .next-btn.next-medium{width:32px}.next-number-picker-inline .next-btn.next-large{width:40px}@-moz-document url-prefix(){.next-number-picker-normal.next-small .next-number-picker-handler{height:22px}.next-number-picker-normal.next-medium .next-number-picker-handler{height:30px}.next-number-picker-normal.next-large .next-number-picker-handler{height:38px}}.next-number-picker-normal[dir=rtl] .next-btn:first-child{border-right:1px solid #ddd;border-left:0;border-top-right-radius:0}.next-number-picker-normal[dir=rtl] .next-btn:first-child.next-large,.next-number-picker-normal[dir=rtl] .next-btn:first-child.next-medium,.next-number-picker-normal[dir=rtl] .next-btn:first-child.next-small{border-top-left-radius:3px}.next-number-picker-normal[dir=rtl] .next-btn:last-child{border-right:1px solid #ddd;border-left:0;border-bottom-right-radius:0}.next-number-picker-normal[dir=rtl] .next-btn:last-child.next-large,.next-number-picker-normal[dir=rtl] .next-btn:last-child.next-medium,.next-number-picker-normal[dir=rtl] .next-btn:last-child.next-small{border-bottom-left-radius:3px}.next-number-picker-normal[dir=rtl] .next-input .next-input-control{padding-left:0}.next-number-picker-inline[dir=rtl] .next-before .next-btn{margin-right:0}.next-number-picker-inline[dir=rtl] .next-before .next-btn.next-large,.next-number-picker-inline[dir=rtl] .next-before .next-btn.next-medium,.next-number-picker-inline[dir=rtl] .next-before .next-btn.next-small{margin-left:2px;border-top-right-radius:3px!important;border-bottom-right-radius:3px!important}.next-number-picker-inline[dir=rtl] .next-after .next-btn{margin-left:0}.next-number-picker-inline[dir=rtl] .next-after .next-btn.next-large,.next-number-picker-inline[dir=rtl] .next-after .next-btn.next-medium,.next-number-picker-inline[dir=rtl] .next-after .next-btn.next-small{margin-right:2px;border-top-left-radius:3px!important;border-bottom-left-radius:3px!important}.next-pagination[dir=rtl] .next-pagination-total{margin-right:0;margin-left:16px}.next-pagination[dir=rtl] .next-pagination-jump-go{margin-left:0;margin-right:4px}.next-pagination[dir=rtl] .next-pagination-size-selector-title{margin-right:0;margin-left:4px}.next-pagination[dir=rtl] .next-pagination-size-selector-btn.next-btn-text+.next-pagination-size-selector-btn{border-left:none;border-right:1px solid #e6e6e6}.next-pagination[dir=rtl] .next-pagination-pages+.next-pagination-size-selector,.next-pagination[dir=rtl] .next-pagination-size-selector+.next-pagination-pages{margin-left:0;margin-right:40px}.next-pagination[dir=rtl].next-start .next-pagination-pages{float:left}.next-pagination[dir=rtl].next-end .next-pagination-pages,.next-pagination[dir=rtl].next-start .next-pagination-size-selector{float:right}.next-pagination[dir=rtl].next-end .next-pagination-size-selector{float:left}.next-pagination[dir=rtl].next-small .next-pagination-list{margin:0 4px}.next-pagination[dir=rtl].next-small .next-pagination-total{line-height:24px;vertical-align:middle}.next-pagination[dir=rtl].next-small .next-pagination-item{padding:0 6px;border-width:1px;border-radius:3px}.next-pagination[dir=rtl].next-small .next-pagination-item+.next-pagination-item{margin:0 4px 0 0}.next-pagination[dir=rtl].next-small .next-pagination-ellipsis{height:24px;line-height:24px;margin-left:8px;margin-right:8px}.next-pagination[dir=rtl].next-small .next-pagination-ellipsis .next-icon-remote,.next-pagination[dir=rtl].next-small .next-pagination-ellipsis:before{width:12px;font-size:12px;line-height:inherit}.next-pagination[dir=rtl].next-small .next-pagination-display,.next-pagination[dir=rtl].next-small .next-pagination-display em,.next-pagination[dir=rtl].next-small .next-pagination-jump-text{font-size:12px}.next-pagination[dir=rtl].next-small .next-pagination-jump-input{width:28px}.next-pagination[dir=rtl].next-small .next-pagination-size-selector-title{height:24px;line-height:24px;font-size:12px;vertical-align:middle}.next-pagination[dir=rtl].next-small .next-pagination-size-selector-btn{padding:0 8px}.next-pagination[dir=rtl].next-small .next-pagination-item.next-next:not([disabled]) i,.next-pagination[dir=rtl].next-small .next-pagination-item.next-prev:not([disabled]) i{color:#666}.next-pagination[dir=rtl].next-small .next-pagination-item:hover.next-next:not([disabled]) i,.next-pagination[dir=rtl].next-small .next-pagination-item:hover.next-prev:not([disabled]) i{color:#333}.next-pagination[dir=rtl].next-medium .next-pagination-list{margin:0 4px}.next-pagination[dir=rtl].next-medium .next-pagination-total{line-height:32px;vertical-align:middle}.next-pagination[dir=rtl].next-medium .next-pagination-item{padding:0 10px;border-width:1px;border-radius:3px}.next-pagination[dir=rtl].next-medium .next-pagination-item+.next-pagination-item{margin:0 4px 0 0}.next-pagination[dir=rtl].next-medium .next-pagination-ellipsis{height:32px;line-height:32px;margin-left:8px;margin-right:8px}.next-pagination[dir=rtl].next-medium .next-pagination-ellipsis .next-icon-remote,.next-pagination[dir=rtl].next-medium .next-pagination-ellipsis:before{width:12px;font-size:12px;line-height:inherit}.next-pagination[dir=rtl].next-medium .next-pagination-display,.next-pagination[dir=rtl].next-medium .next-pagination-display em,.next-pagination[dir=rtl].next-medium .next-pagination-jump-text{font-size:14px}.next-pagination[dir=rtl].next-medium .next-pagination-jump-input{width:36px}.next-pagination[dir=rtl].next-medium .next-pagination-size-selector-title{height:32px;line-height:32px;font-size:14px;vertical-align:middle}.next-pagination[dir=rtl].next-medium .next-pagination-size-selector-btn{padding:0 12px}.next-pagination[dir=rtl].next-medium .next-pagination-item.next-next:not([disabled]) i,.next-pagination[dir=rtl].next-medium .next-pagination-item.next-prev:not([disabled]) i{color:#666}.next-pagination[dir=rtl].next-medium .next-pagination-item:hover.next-next:not([disabled]) i,.next-pagination[dir=rtl].next-medium .next-pagination-item:hover.next-prev:not([disabled]) i{color:#333}.next-pagination[dir=rtl].next-large .next-pagination-list{margin:0 8px}.next-pagination[dir=rtl].next-large .next-pagination-total{line-height:40px;vertical-align:middle}.next-pagination[dir=rtl].next-large .next-pagination-item{padding:0 15px;border-width:1px;border-radius:3px}.next-pagination[dir=rtl].next-large .next-pagination-item+.next-pagination-item{margin:0 8px 0 0}.next-pagination[dir=rtl].next-large .next-pagination-ellipsis{height:40px;line-height:40px;margin-left:8px;margin-right:8px}.next-pagination[dir=rtl].next-large .next-pagination-ellipsis .next-icon-remote,.next-pagination[dir=rtl].next-large .next-pagination-ellipsis:before{width:16px;font-size:16px;line-height:inherit}.next-pagination[dir=rtl].next-large .next-pagination-display,.next-pagination[dir=rtl].next-large .next-pagination-display em,.next-pagination[dir=rtl].next-large .next-pagination-jump-text{font-size:16px}.next-pagination[dir=rtl].next-large .next-pagination-jump-input{width:48px}.next-pagination[dir=rtl].next-large .next-pagination-size-selector-title{height:40px;line-height:40px;font-size:16px;vertical-align:middle}.next-pagination[dir=rtl].next-large .next-pagination-size-selector-btn{padding:0 16px}.next-pagination[dir=rtl].next-large .next-pagination-item.next-next:not([disabled]) i,.next-pagination[dir=rtl].next-large .next-pagination-item.next-prev:not([disabled]) i{color:#666}.next-pagination[dir=rtl].next-large .next-pagination-item:hover.next-next:not([disabled]) i,.next-pagination[dir=rtl].next-large .next-pagination-item:hover.next-prev:not([disabled]) i{color:#333}.next-pagination{font-size:0}.next-pagination,.next-pagination *,.next-pagination :after,.next-pagination :before{box-sizing:border-box}.next-pagination:after{visibility:hidden;display:block;height:0;font-size:0;content:" ";clear:both}.next-pagination-total{display:inline-block;font-size:14px;margin-right:16px}.next-pagination-pages{display:inline-block}.next-pagination-list{display:inline-block;vertical-align:top}.next-pagination .next-pagination-item:not([disabled]){display:inline-block;border-style:solid;border-color:#ddd;background:#fff;color:#333;box-shadow:none}.next-pagination .next-pagination-item{transition:none}.next-pagination .next-pagination-item.next-current{border-color:#209bfa;background:#209bfa;color:#fff;box-shadow:none}.next-pagination .next-pagination-item.next-current:focus,.next-pagination .next-pagination-item.next-current:hover{border-color:#209bfa;background:#fff;color:#209bfa;box-shadow:none}.next-pagination-ellipsis{display:inline-block;color:#999;vertical-align:top}.next-pagination-display{display:inline-block;margin:0 16px;color:#333;vertical-align:middle}.next-pagination-display em{font-style:normal;color:#209bfa}.next-pagination-jump-text{display:inline-block;vertical-align:middle;color:#999}.next-pagination-jump-input{margin:0 4px;vertical-align:top}.next-pagination-jump-go{margin-left:4px;vertical-align:top}.next-pagination-size-selector{display:inline-block;position:relative}.next-pagination-size-selector-title{margin-right:4px;color:#999}.next-pagination-size-selector-filter{display:inline-block;vertical-align:middle}.next-pagination-size-selector-dropdown{vertical-align:top;min-width:64px}.next-pagination-size-selector-dropdown .next-select-inner,.next-pagination-size-selector-popup{min-width:64px}.next-pagination-size-selector-btn.next-btn-text{height:auto;line-height:normal;color:#666;border-radius:0}.next-pagination-size-selector-btn.next-btn-text.next-current{color:#209bfa}.next-pagination-size-selector-btn.next-btn-text+.next-pagination-size-selector-btn{border-left:1px solid #e6e6e6}.next-pagination-pages+.next-pagination-size-selector,.next-pagination-size-selector+.next-pagination-pages{margin-left:40px}.next-pagination.next-hide{display:none}.next-pagination.next-start .next-pagination-pages{float:right}.next-pagination.next-end .next-pagination-pages,.next-pagination.next-start .next-pagination-size-selector{float:left}.next-pagination.next-end .next-pagination-size-selector{float:right}.next-pagination.next-small .next-pagination-list{margin:0 4px}.next-pagination.next-small .next-pagination-total{line-height:24px;vertical-align:middle}.next-pagination.next-small .next-pagination-item{padding:0 6px;border-width:1px;border-radius:3px}.next-pagination.next-small .next-pagination-item+.next-pagination-item{margin:0 0 0 4px}.next-pagination.next-small .next-pagination-ellipsis{height:24px;line-height:24px;margin-left:8px;margin-right:8px}.next-pagination.next-small .next-pagination-ellipsis .next-icon-remote,.next-pagination.next-small .next-pagination-ellipsis:before{width:12px;font-size:12px;line-height:inherit}.next-pagination.next-small .next-pagination-display,.next-pagination.next-small .next-pagination-display em,.next-pagination.next-small .next-pagination-jump-text{font-size:12px}.next-pagination.next-small .next-pagination-jump-input{width:28px}.next-pagination.next-small .next-pagination-size-selector-title{height:24px;line-height:24px;font-size:12px;vertical-align:middle}.next-pagination.next-small .next-pagination-size-selector-btn{padding:0 8px}.next-pagination.next-small .next-pagination-item.next-next:not([disabled]) i,.next-pagination.next-small .next-pagination-item.next-prev:not([disabled]) i{color:#666}.next-pagination.next-small .next-pagination-item:hover.next-next:not([disabled]) i,.next-pagination.next-small .next-pagination-item:hover.next-prev:not([disabled]) i{color:#333}.next-pagination.next-small.next-arrow-only .next-pagination-item.next-next,.next-pagination.next-small.next-arrow-only .next-pagination-item.next-prev{width:20px;padding:0}.next-pagination.next-small.next-arrow-only .next-pagination-item.next-next .next-icon,.next-pagination.next-small.next-arrow-only .next-pagination-item.next-prev .next-icon{margin:0 auto}.next-pagination.next-small.next-arrow-prev-only .next-pagination-item.next-prev{width:20px;padding:0}.next-pagination.next-small.next-arrow-prev-only .next-pagination-item.next-prev .next-icon{margin:0 auto}.next-pagination.next-small.next-no-border .next-pagination-item.next-next,.next-pagination.next-small.next-no-border .next-pagination-item.next-prev{padding:0;border:none;background-color:transparent;box-shadow:none}.next-pagination.next-small.next-no-border .next-pagination-item.next-next .next-icon,.next-pagination.next-small.next-no-border .next-pagination-item.next-prev .next-icon{margin:0}.next-pagination.next-small.next-no-border .next-pagination-item.next-next:not([disabled]):hover i,.next-pagination.next-small.next-no-border .next-pagination-item.next-prev:not([disabled]):hover i{color:#209bfa}.next-pagination.next-small.next-no-border .next-pagination-display{margin:0 8px}.next-pagination.next-small.next-mini .next-pagination-item.next-prev{margin-right:4px}.next-pagination.next-small.next-mini .next-pagination-item.next-next{margin-left:4px}.next-pagination.next-medium .next-pagination-list{margin:0 4px}.next-pagination.next-medium .next-pagination-total{line-height:32px;vertical-align:middle}.next-pagination.next-medium .next-pagination-item{padding:0 10px;border-width:1px;border-radius:3px}.next-pagination.next-medium .next-pagination-item+.next-pagination-item{margin:0 0 0 4px}.next-pagination.next-medium .next-pagination-ellipsis{height:32px;line-height:32px;margin-left:8px;margin-right:8px}.next-pagination.next-medium .next-pagination-ellipsis .next-icon-remote,.next-pagination.next-medium .next-pagination-ellipsis:before{width:12px;font-size:12px;line-height:inherit}.next-pagination.next-medium .next-pagination-display,.next-pagination.next-medium .next-pagination-display em,.next-pagination.next-medium .next-pagination-jump-text{font-size:14px}.next-pagination.next-medium .next-pagination-jump-input{width:36px}.next-pagination.next-medium .next-pagination-size-selector-title{height:32px;line-height:32px;font-size:14px;vertical-align:middle}.next-pagination.next-medium .next-pagination-size-selector-btn{padding:0 12px}.next-pagination.next-medium .next-pagination-item.next-next:not([disabled]) i,.next-pagination.next-medium .next-pagination-item.next-prev:not([disabled]) i{color:#666}.next-pagination.next-medium .next-pagination-item:hover.next-next:not([disabled]) i,.next-pagination.next-medium .next-pagination-item:hover.next-prev:not([disabled]) i{color:#333}.next-pagination.next-medium.next-arrow-only .next-pagination-item.next-next,.next-pagination.next-medium.next-arrow-only .next-pagination-item.next-prev{width:28px;padding:0}.next-pagination.next-medium.next-arrow-only .next-pagination-item.next-next .next-icon,.next-pagination.next-medium.next-arrow-only .next-pagination-item.next-prev .next-icon{margin:0 auto}.next-pagination.next-medium.next-arrow-prev-only .next-pagination-item.next-prev{width:28px;padding:0}.next-pagination.next-medium.next-arrow-prev-only .next-pagination-item.next-prev .next-icon{margin:0 auto}.next-pagination.next-medium.next-no-border .next-pagination-item.next-next,.next-pagination.next-medium.next-no-border .next-pagination-item.next-prev{padding:0;border:none;background-color:transparent;box-shadow:none}.next-pagination.next-medium.next-no-border .next-pagination-item.next-next .next-icon,.next-pagination.next-medium.next-no-border .next-pagination-item.next-prev .next-icon{margin:0}.next-pagination.next-medium.next-no-border .next-pagination-item.next-next:not([disabled]):hover i,.next-pagination.next-medium.next-no-border .next-pagination-item.next-prev:not([disabled]):hover i{color:#209bfa}.next-pagination.next-medium.next-no-border .next-pagination-display{margin:0 12px}.next-pagination.next-medium.next-mini .next-pagination-item.next-prev{margin-right:4px}.next-pagination.next-medium.next-mini .next-pagination-item.next-next{margin-left:4px}.next-pagination.next-large .next-pagination-list{margin:0 8px}.next-pagination.next-large .next-pagination-total{line-height:40px;vertical-align:middle}.next-pagination.next-large .next-pagination-item{padding:0 15px;border-width:1px;border-radius:3px}.next-pagination.next-large .next-pagination-item+.next-pagination-item{margin:0 0 0 8px}.next-pagination.next-large .next-pagination-ellipsis{height:40px;line-height:40px;margin-left:8px;margin-right:8px}.next-pagination.next-large .next-pagination-ellipsis .next-icon-remote,.next-pagination.next-large .next-pagination-ellipsis:before{width:16px;font-size:16px;line-height:inherit}.next-pagination.next-large .next-pagination-display,.next-pagination.next-large .next-pagination-display em,.next-pagination.next-large .next-pagination-jump-text{font-size:16px}.next-pagination.next-large .next-pagination-jump-input{width:48px}.next-pagination.next-large .next-pagination-size-selector-title{height:40px;line-height:40px;font-size:16px;vertical-align:middle}.next-pagination.next-large .next-pagination-size-selector-btn{padding:0 16px}.next-pagination.next-large .next-pagination-item.next-next:not([disabled]) i,.next-pagination.next-large .next-pagination-item.next-prev:not([disabled]) i{color:#666}.next-pagination.next-large .next-pagination-item:hover.next-next:not([disabled]) i,.next-pagination.next-large .next-pagination-item:hover.next-prev:not([disabled]) i{color:#333}.next-pagination.next-large.next-arrow-only .next-pagination-item.next-next,.next-pagination.next-large.next-arrow-only .next-pagination-item.next-prev{width:40px;padding:0}.next-pagination.next-large.next-arrow-only .next-pagination-item.next-next .next-icon,.next-pagination.next-large.next-arrow-only .next-pagination-item.next-prev .next-icon{margin:0 auto}.next-pagination.next-large.next-arrow-prev-only .next-pagination-item.next-prev{width:40px;padding:0}.next-pagination.next-large.next-arrow-prev-only .next-pagination-item.next-prev .next-icon{margin:0 auto}.next-pagination.next-large.next-no-border .next-pagination-item.next-next,.next-pagination.next-large.next-no-border .next-pagination-item.next-prev{padding:0;border:none;background-color:transparent;box-shadow:none}.next-pagination.next-large.next-no-border .next-pagination-item.next-next .next-icon,.next-pagination.next-large.next-no-border .next-pagination-item.next-prev .next-icon{margin:0}.next-pagination.next-large.next-no-border .next-pagination-item.next-next:not([disabled]):hover i,.next-pagination.next-large.next-no-border .next-pagination-item.next-prev:not([disabled]):hover i{color:#209bfa}.next-pagination.next-large.next-no-border .next-pagination-display{margin:0 16px}.next-pagination.next-large.next-mini .next-pagination-item.next-prev{margin-right:8px}.next-pagination.next-large.next-mini .next-pagination-item.next-next{margin-left:8px}.next-pagination-icon-prev:before{content:"î"}.next-pagination-icon-next:before{content:"î"}.next-pagination-icon-ellipsis:before{content:"î"}.next-paragraph{color:#333}.next-paragraph-short{line-height:1.5}.next-paragraph-long{line-height:1.7}.next-paragraph-medium,.next-paragraph-small{font-size:14px}.next-progress-circle[dir=rtl] .next-progress-circle-container{transform:scaleX(-1)}.next-progress-line[dir=rtl] .next-progress-line-overlay{left:auto;right:0}.next-progress-line,.next-progress-line *,.next-progress-line :after,.next-progress-line :before{box-sizing:border-box}.next-progress-line{width:100%;display:inline-block;position:relative}.next-progress-line-container{display:inline-block;width:100%;vertical-align:middle}.next-progress-line-underlay{position:relative;overflow:hidden;width:100%;background:#f5f5f5}.next-progress-line-overlay{position:absolute;left:0;top:0;transition:all .3s ease}.next-progress-line-overlay-normal{background:#209bfa}.next-progress-line-overlay-success{background:#1ad78c}.next-progress-line-overlay-error,.next-progress-line-overlay-started{background:#d23c26}.next-progress-line-overlay-middle{background:#f1c826}.next-progress-line-overlay-finishing{background:#1ad78c}.next-progress-line.next-small .next-progress-line-underlay{border-radius:12px;height:4px}.next-progress-line.next-small .next-progress-line-overlay{height:4px;border-radius:12px;top:50%;margin-top:-2px}.next-progress-line.next-small .next-progress-line-text{font-size:12px;line-height:4px}.next-progress-line.next-medium .next-progress-line-underlay{border-radius:12px;height:8px}.next-progress-line.next-medium .next-progress-line-overlay{height:8px;border-radius:12px;top:50%;margin-top:-4px}.next-progress-line.next-medium .next-progress-line-text{font-size:12px;line-height:8px}.next-progress-line.next-large .next-progress-line-underlay{border-radius:12px;height:12px}.next-progress-line.next-large .next-progress-line-overlay{height:12px;border-radius:12px;top:50%;margin-top:-6px}.next-progress-line.next-large .next-progress-line-text{font-size:14px;line-height:12px}.next-progress-line-show-info .next-progress-line-container{padding-right:60px;margin-right:-60px}.next-progress-line-show-info .next-progress-line-text{width:50px;text-align:left;margin-left:10px;vertical-align:middle;display:inline-block;color:#333}.next-progress-line-show-border .next-progress-line-underlay{border:1px solid #e6e6e6}.next-progress-line-show-border.next-small .next-progress-line-underlay{border-radius:12px;height:6px}.next-progress-line-show-border.next-small .next-progress-line-overlay{height:4px;border-radius:12px;top:50%;margin-top:-2px}.next-progress-line-show-border.next-small .next-progress-line-text{font-size:12px;line-height:6px}.next-progress-line-show-border.next-medium .next-progress-line-underlay{border-radius:12px;height:10px}.next-progress-line-show-border.next-medium .next-progress-line-overlay{height:8px;border-radius:12px;top:50%;margin-top:-4px}.next-progress-line-show-border.next-medium .next-progress-line-text{font-size:12px;line-height:10px}.next-progress-line-show-border.next-large .next-progress-line-underlay{border-radius:12px;height:14px}.next-progress-line-show-border.next-large .next-progress-line-overlay{height:12px;border-radius:12px;top:50%;margin-top:-6px}.next-progress-line-show-border.next-large .next-progress-line-text{font-size:14px;line-height:14px}.next-progress-circle,.next-progress-circle *,.next-progress-circle :after,.next-progress-circle :before{box-sizing:border-box}.next-progress-circle{position:relative;display:inline-block}.next-progress-circle-underlay{stroke-width:8px;stroke:#f5f5f5}.next-progress-circle-overlay{transition:all .3s ease;stroke-linecap:round;stroke-width:8px}.next-progress-circle-overlay-normal{stroke:#209bfa}.next-progress-circle-overlay-success{stroke:#1ad78c}.next-progress-circle-overlay-error,.next-progress-circle-overlay-started{stroke:#d23c26}.next-progress-circle-overlay-middle{stroke:#f1c826}.next-progress-circle-overlay-finishing{stroke:#1ad78c}.next-progress-circle.next-small{width:100px;height:100px;font-size:20px}.next-progress-circle.next-medium{width:116px;height:116px;font-size:24px}.next-progress-circle.next-large{width:132px;height:132px;font-size:36px}.next-progress-circle-text{display:block;position:absolute;width:100%;top:50%;left:0;text-align:center;line-height:1;-webkit-transform:translateY(-50%);transform:translateY(-50%);transition:transform .3s ease;color:#333}.next-range{width:100%;font-family:inherit;font-weight:400;font-size:inherit;line-height:inherit;vertical-align:baseline;display:flex;flex-direction:column;cursor:pointer}.next-range,.next-range *,.next-range :after,.next-range :before{box-sizing:border-box}.next-range .next-range-inner{position:relative}.next-range .next-range-inner:only-child{margin-top:auto;margin-bottom:auto}.next-range .next-range-track{position:absolute;width:100%;top:50%;border-radius:0}.next-range .next-range-selected{position:absolute;width:0;top:50%;left:0;border-radius:0}.next-range .next-range-scale{position:relative;width:100%;height:12px}.next-range .next-range-scale .next-range-scale-item{position:absolute;left:0;width:2px;border:1px solid;border-radius:0}.next-range .next-range-scale .next-range-scale-item:last-child{margin-left:-2px}.next-range .next-range-slider{position:absolute;top:50%;left:0;border-radius:50%}.next-range .next-range-slider-inner{position:absolute;top:50%;left:50%;border:1px solid #ddd;border-radius:50%;transition:transform .1s linear,border-color .1s linear}.next-range .next-range-frag.next-range-active .next-range-slider .next-range-slider-inner,.next-range .next-range-slider.next-range-slider-moving .next-range-slider-inner{border:2px solid #209bfa;box-shadow:4px 4px 8px 0 rgba(0,0,0,.12);transform:scale(1.2)}.next-range .next-range-mark{position:relative;cursor:auto}.next-range .next-range-mark .next-range-mark-text{position:absolute;left:0;transform:translateX(-50%);padding-left:2px;text-align:center}.next-range .next-range-frag{position:absolute;top:0}.next-range .next-range-frag .next-range-slider{left:0}.next-range .next-range-frag .next-range-slider:nth-child(2){left:100%}.next-range .next-range-frag .next-range-selected{width:100%}.next-range.disabled{cursor:not-allowed}.next-range.disabled .next-range-mark{cursor:auto}.next-range .next-range-track,.next-range .next-range-track:hover{background:#ddd}.next-range .next-range-selected,.next-range .next-range-selected:hover{background:#209bfa}.next-range .next-range-scale .next-range-scale-item{border-color:#ddd;background:#ddd}.next-range .next-range-scale .next-range-scale-item:hover{border-color:#ddd}.next-range .next-range-scale .next-range-scale-item.activated{border-color:#209bfa;background:#209bfa}.next-range .next-range-scale .next-range-scale-item.activated:hover{border-color:#209bfa}.next-range .next-range-slider-inner{background:#fff;border-color:#ddd}.next-range .next-range-slider-inner:hover{background:#fff;box-shadow:20px 20px 30px 0 rgba(0,0,0,.15);transform:scale(1.2)}.next-range .next-range-mark .next-range-mark-text,.next-range .next-range-mark .next-range-mark-text:hover{color:#999}.next-range .next-range-mark .next-range-mark-text.activated,.next-range .next-range-mark .next-range-mark-text.activated:hover{color:#333}.next-range.disabled .next-range-track{background:#ddd}.next-range.disabled .next-range-selected{background:#ccc}.next-range.disabled .next-range-scale-item{border-color:#ddd}.next-range.disabled .next-range-scale-item.activated{border-color:#ccc}.next-range.disabled .next-range-slider-inner{background:#eee;border-color:#eee;transform:none;box-shadow:none}.next-range.disabled .next-range-mark-text{color:#ccc}.next-range.disabled .next-range-mark-text.activated{color:#999}.next-range .next-range-selected,.next-range .next-range-track{height:4px;margin-top:-2px}.next-range .next-range-frag{margin-top:4px;height:4px}.next-range .next-range-slider{box-shadow:1px 1px 3px 0 rgba(0,0,0,.12)}.next-range .next-range-slider,.next-range .next-range-slider-inner{height:16px;width:16px;margin-top:-8px;margin-left:-8px}.next-range .next-range-mark{display:block}.next-range .next-range-mark .next-range-mark-text{font-size:14px;font-weight:400;line-height:20px;height:20px}.next-range .next-range-mark.next-range-mark-below{height:30px}.next-range .next-range-mark.next-range-mark-below .next-range-mark-text{bottom:0}.next-range .next-range-mark.next-range-mark-above{height:30px}.next-range .next-range-scale .next-range-scale-item{height:12px}.next-range.simulation-hover>.next-range-slider-inner{background:#fff;box-shadow:20px 20px 30px 0 rgba(0,0,0,.15);transform:scale(1.2)}.next-range.simulation-hover .next-range-selected{background:#209bfa}.next-range.simulation-hover .next-range-track{background:#ddd}.next-range.simulation-hover .next-range-scale-item{border-color:#ddd}.next-range.simulation-hover .next-range-scale-item.activated{border-color:#209bfa}.next-range.simulation-click>.next-range-slider-inner{border:2px solid #209bfa;box-shadow:4px 4px 8px 0 rgba(0,0,0,.12);transform:scale(1.2)}.next-range[dir=rtl] .next-range-mark{position:relative;cursor:auto}.next-range[dir=rtl] .next-range-mark .next-range-mark-text{position:absolute;right:0;transform:translateX(50%);padding-right:2px;text-align:center}.next-rating[dir=rtl] .next-rating-overlay{right:0;left:auto}.next-rating[dir=rtl] .next-rating-overlay .next-rating-icon,.next-rating[dir=rtl] .next-rating-underlay .next-rating-icon{margin-right:4px;margin-left:0}.next-rating[dir=rtl] .next-rating-overlay .next-rating-icon:last-child,.next-rating[dir=rtl] .next-rating-underlay .next-rating-icon:last-child{margin-left:4px}.next-rating{vertical-align:top;display:inline-block;position:relative}.next-rating:after{visibility:hidden;display:block;height:0;font-size:0;content:" ";clear:both}.next-rating-base,.next-rating-text{float:left}.next-rating-base-disabled,.next-rating-base-disabled .next-rating-overlay .next-rating-icon,.next-rating-base-disabled .next-rating-underlay .next-rating-icon{cursor:not-allowed}.next-rating-symbol-icon:before{content:"î"}.next-rating-underlay{white-space:nowrap;overflow:hidden}.next-rating-underlay .next-icon{color:#f2f2f2}.next-rating-stroke-mode .next-rating-underlay .next-icon{color:transparent;-webkit-text-stroke:1px #209bfa}.next-rating-overlay{white-space:nowrap;overflow:hidden;position:absolute;width:0;top:0;left:0}.next-rating-overlay .next-icon{color:#209bfa}.next-rating-overlay .next-rating-icon,.next-rating-underlay .next-rating-icon{cursor:pointer;margin-left:4px}.next-rating-overlay .next-rating-icon:last-child,.next-rating-underlay .next-rating-icon:last-child{margin-right:4px}.next-rating-overlay .next-icon,.next-rating-underlay .next-icon{transition:all .1s linear}.next-rating-overlay .next-icon.hover,.next-rating-underlay .next-icon.hover{transform:scale3d(1.1,1.1,1.1)}.next-rating-overlay .next-icon.clicked,.next-rating-underlay .next-icon.clicked{transform:scale3d(.9,.9,.9)}.next-rating-info{position:absolute;top:calc(100% + 4px);left:0;border:1px solid #f2f2f2;background:#fff;padding:4px 8px 3px;font-size:12px;white-space:nowrap}.next-rating-info:after{position:absolute;content:"";width:4px;height:4px;transform:rotate(45deg);background:#fff;border-color:#f2f2f2 transparent transparent #f2f2f2;border-style:solid;border-width:1px;top:-3px;left:4px}.next-rating.hover,.next-rating:focus .next-rating-base:not(.next-rating-base-disabled){outline:none}.next-rating.hover .next-rating-overlay .next-icon,.next-rating:focus .next-rating-base:not(.next-rating-base-disabled) .next-rating-overlay .next-icon{color:#209bfa}.next-rating-grade-low.hover .next-rating-overlay .next-icon,.next-rating-grade-low .next-rating-overlay .next-icon{color:#666}.next-rating-grade-high.hover .next-rating-overlay .next-icon,.next-rating-grade-high .next-rating-overlay .next-icon{color:#209bfa}.next-rating-small{font-size:12px}.next-rating-small .next-icon .next-icon-remote,.next-rating-small .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-rating-small .next-rating-text{margin-left:8px}.next-rating-medium{font-size:14px}.next-rating-medium .next-icon .next-icon-remote,.next-rating-medium .next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-rating-medium .next-rating-text{margin-left:12px}.next-rating-large{font-size:16px}.next-rating-large .next-icon .next-icon-remote,.next-rating-large .next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-rating-large .next-rating-text{margin-left:16px}.next-search-simple[dir=rtl].next-large .next-search-icon{margin-left:12px;margin-right:0}.next-search-simple[dir=rtl].next-medium .next-search-icon{margin-left:8px;margin-right:0}.next-search-simple[dir=rtl].next-normal .next-search-left .next-search-left-addon{border-left:1px solid #ddd;border-right:none}.next-search-simple[dir=rtl].next-dark .next-search-left{border-color:#666}.next-search-simple[dir=rtl].next-dark .next-search-left .next-search-left-addon{border-right:1px solid #ddd}.next-search-simple[dir=rtl].next-dark:hover .next-search-left{border-color:#999}.next-search-simple[dir=rtl].next-dark .next-search-icon{color:#666}.next-search-simple[dir=rtl].next-dark .next-search-icon:hover{color:#999}.next-search-normal[dir=rtl] .next-search-left{border-left:none;border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-left-radius:0;border-bottom-left-radius:0}.next-search-normal[dir=rtl] .next-search-btn.next-btn{border-radius:3px 0 0 3px!important}.next-search-normal[dir=rtl] .next-input{border-radius:0 3px 3px 0}.next-search-normal[dir=rtl].next-primary .next-input{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px}.next-search-normal[dir=rtl].next-primary .next-search-left .next-search-left-addon{border-left:1px solid #eee;border-right:none}.next-search-normal[dir=rtl].next-secondary .next-input{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px}.next-search-normal[dir=rtl].next-secondary .next-search-left .next-search-left-addon{border-left:1px solid #eee;border-right:none}.next-search-normal[dir=rtl].next-normal .next-input{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px}.next-search-normal[dir=rtl].next-normal .next-search-left .next-search-left-addon{border-left:1px solid #eee;border-right:none}.next-search-normal[dir=rtl].next-dark .next-search-left .next-search-left-addon{border-left:1px solid #209bfa;border-right:none}.next-search{width:100%;display:inline-block}.next-search,.next-search *,.next-search :after,.next-search :before{box-sizing:border-box}.next-search .next-input,.next-search .next-select{border:none;box-shadow:none}.next-search .next-select .next-input,.next-search .next-select .next-input .next-input-text-field{height:auto}.next-search .next-search-left{border-style:solid;transition:all .1s linear}.next-search .next-search-left-addon .next-input,.next-search .next-search-left-addon .next-select-trigger-search{min-height:100%;border-bottom-right-radius:0;border-top-right-radius:0}.next-search .next-search-left-addon .next-select-values{line-height:1}.next-search .next-search-left-addon.next-input-group-addon .next-select{margin:0}.next-search .next-search-left-addon+.next-search-input .next-input{border-bottom-left-radius:0;border-top-left-radius:0}.next-search .next-search-input{width:100%}.next-search .next-search-btn{box-shadow:none}.next-search .next-search-symbol-icon:before{content:"î"}.next-search-normal{width:600px}.next-search-normal .next-search-left{border-top-left-radius:3px;border-bottom-left-radius:3px}.next-search-normal .next-input{border-radius:3px 0 0 3px}.next-search-normal .next-btn{border-radius:0 3px 3px 0}.next-search-normal.next-primary .next-search-left{border-color:#209bfa}.next-search-normal.next-primary .next-search-left .next-search-left-addon{border-right:1px solid #eee}.next-search-normal.next-primary:hover .next-btn,.next-search-normal.next-primary:hover .next-search-left{border-color:#209bfa}.next-search-normal.next-primary .next-search-btn{background:#209bfa;border-color:#209bfa;color:#fff}.next-search-normal.next-primary .next-search-btn:hover{background:#1274e7;border-color:#209bfa;color:#fff}.next-search-normal.next-primary .next-search-btn .next-icon,.next-search-normal.next-primary .next-search-btn .next-icon:hover{color:#fff}.next-search-normal.next-primary.next-large{box-shadow:none}.next-search-normal.next-primary.next-large .next-search-btn,.next-search-normal.next-primary.next-large .next-search-left{border-width:1px;height:40px}.next-search-normal.next-primary.next-large .next-search-input{height:38px;overflow-y:hidden}.next-search-normal.next-primary.next-large .next-search-input input{height:38px;line-height:38px \0 }.next-search-normal.next-primary.next-large .next-select{height:38px}.next-search-normal.next-primary.next-large .next-search-btn{font-size:16px}.next-search-normal.next-primary.next-large .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-primary.next-large .next-search-btn .next-icon:before{width:24px;font-size:24px;line-height:inherit}.next-search-normal.next-primary.next-large .next-search-btn .next-search-btn-text{display:inline-block;padding-left:0}.next-search-normal.next-primary.next-medium{box-shadow:none}.next-search-normal.next-primary.next-medium .next-search-btn,.next-search-normal.next-primary.next-medium .next-search-left{border-width:1px;height:32px}.next-search-normal.next-primary.next-medium .next-search-input{height:30px;overflow-y:hidden}.next-search-normal.next-primary.next-medium .next-search-input input{height:30px;line-height:30px \0 }.next-search-normal.next-primary.next-medium .next-select{height:30px}.next-search-normal.next-primary.next-medium .next-search-btn{font-size:16px}.next-search-normal.next-primary.next-medium .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-primary.next-medium .next-search-btn .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-search-normal.next-primary.next-medium .next-search-btn .next-search-btn-text{display:inline-block;padding-left:0}.next-search-normal.next-primary .next-input{border-top-left-radius:2px;border-bottom-left-radius:2px}.next-search-normal.next-secondary .next-search-left{border-color:#ddd}.next-search-normal.next-secondary .next-search-left .next-search-left-addon{border-right:1px solid #eee}.next-search-normal.next-secondary:hover .next-btn,.next-search-normal.next-secondary:hover .next-search-left{border-color:#209bfa}.next-search-normal.next-secondary .next-search-btn{background:#209bfa;border-color:#209bfa;color:#fff}.next-search-normal.next-secondary .next-search-btn:hover{background:#1274e7;border-color:#209bfa;color:#fff}.next-search-normal.next-secondary .next-search-btn .next-icon,.next-search-normal.next-secondary .next-search-btn .next-icon:hover{color:#fff}.next-search-normal.next-secondary.next-large{box-shadow:none}.next-search-normal.next-secondary.next-large .next-search-btn,.next-search-normal.next-secondary.next-large .next-search-left{border-width:1px;height:40px}.next-search-normal.next-secondary.next-large .next-search-input{height:38px;overflow-y:hidden}.next-search-normal.next-secondary.next-large .next-search-input input{height:38px;line-height:38px \0 }.next-search-normal.next-secondary.next-large .next-select{height:38px}.next-search-normal.next-secondary.next-large .next-search-btn{font-size:16px}.next-search-normal.next-secondary.next-large .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-secondary.next-large .next-search-btn .next-icon:before{width:24px;font-size:24px;line-height:inherit}.next-search-normal.next-secondary.next-large .next-search-btn .next-search-btn-text{display:inline-block;padding-left:0}.next-search-normal.next-secondary.next-medium{box-shadow:none}.next-search-normal.next-secondary.next-medium .next-search-btn,.next-search-normal.next-secondary.next-medium .next-search-left{border-width:1px;height:32px}.next-search-normal.next-secondary.next-medium .next-search-input{height:30px;overflow-y:hidden}.next-search-normal.next-secondary.next-medium .next-search-input input{height:30px;line-height:30px \0 }.next-search-normal.next-secondary.next-medium .next-select{height:30px}.next-search-normal.next-secondary.next-medium .next-search-btn{font-size:16px}.next-search-normal.next-secondary.next-medium .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-secondary.next-medium .next-search-btn .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-search-normal.next-secondary.next-medium .next-search-btn .next-search-btn-text{display:inline-block;padding-left:0}.next-search-normal.next-secondary .next-input{border-top-left-radius:2px;border-bottom-left-radius:2px}.next-search-normal.next-normal .next-search-left{border-color:#ddd}.next-search-normal.next-normal .next-search-left .next-search-left-addon{border-right:1px solid #eee}.next-search-normal.next-normal:hover .next-btn,.next-search-normal.next-normal:hover .next-search-left{border-color:#ccc}.next-search-normal.next-normal .next-search-btn{background:#fafafa;border-color:#ddd;color:#666}.next-search-normal.next-normal .next-search-btn:hover{background:#f5f5f5;border-color:#ccc;color:#333}.next-search-normal.next-normal .next-search-btn .next-icon{color:#666}.next-search-normal.next-normal .next-search-btn .next-icon:hover{color:#333}.next-search-normal.next-normal.next-large{box-shadow:none}.next-search-normal.next-normal.next-large .next-search-btn,.next-search-normal.next-normal.next-large .next-search-left{border-width:1px;height:40px}.next-search-normal.next-normal.next-large .next-search-input{height:38px;overflow-y:hidden}.next-search-normal.next-normal.next-large .next-search-input input{height:38px;line-height:38px \0 }.next-search-normal.next-normal.next-large .next-select{height:38px}.next-search-normal.next-normal.next-large .next-search-btn{font-size:16px}.next-search-normal.next-normal.next-large .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-normal.next-large .next-search-btn .next-icon:before{width:24px;font-size:24px;line-height:inherit}.next-search-normal.next-normal.next-large .next-search-btn .next-search-btn-text{display:inline-block;padding-left:0}.next-search-normal.next-normal.next-medium{box-shadow:none}.next-search-normal.next-normal.next-medium .next-search-btn,.next-search-normal.next-normal.next-medium .next-search-left{border-width:1px;height:32px}.next-search-normal.next-normal.next-medium .next-search-input{height:30px;overflow-y:hidden}.next-search-normal.next-normal.next-medium .next-search-input input{height:30px;line-height:30px \0 }.next-search-normal.next-normal.next-medium .next-select{height:30px}.next-search-normal.next-normal.next-medium .next-search-btn{font-size:16px}.next-search-normal.next-normal.next-medium .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-normal.next-medium .next-search-btn .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-search-normal.next-normal.next-medium .next-search-btn .next-search-btn-text{display:inline-block;padding-left:0}.next-search-normal.next-normal .next-input{border-top-left-radius:2px;border-bottom-left-radius:2px}.next-search-normal.next-dark .next-search-left{border-color:#209bfa}.next-search-normal.next-dark .next-search-left .next-search-left-addon{border-right:1px solid #209bfa}.next-search-normal.next-dark:hover .next-btn,.next-search-normal.next-dark:hover .next-search-left{border-color:#209bfa}.next-search-normal.next-dark .next-search-btn{background:#209bfa;border-color:#209bfa;color:#fff}.next-search-normal.next-dark .next-search-btn:hover{background:#1274e7;border-color:#209bfa;color:#fff}.next-search-normal.next-dark .next-search-btn .next-icon,.next-search-normal.next-dark .next-search-btn .next-icon:hover,.next-search-normal.next-dark .next-select-inner,.next-search-normal.next-dark input{color:#fff}.next-search-normal.next-dark .next-input,.next-search-normal.next-dark .next-select{background:hsla(0,0%,100%,0)}.next-search-normal.next-dark.next-large{box-shadow:none}.next-search-normal.next-dark.next-large .next-search-btn,.next-search-normal.next-dark.next-large .next-search-left{border-width:1px;height:40px}.next-search-normal.next-dark.next-large .next-search-input{height:38px;overflow-y:hidden}.next-search-normal.next-dark.next-large .next-search-input input{height:38px;line-height:38px \0 }.next-search-normal.next-dark.next-large .next-select{height:38px}.next-search-normal.next-dark.next-large .next-search-btn{font-size:16px}.next-search-normal.next-dark.next-large .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-dark.next-large .next-search-btn .next-icon:before{width:24px;font-size:24px;line-height:inherit}.next-search-normal.next-dark.next-large .next-search-btn .next-search-btn-text{display:inline-block;padding-left:0}.next-search-normal.next-dark.next-medium{box-shadow:none}.next-search-normal.next-dark.next-medium .next-search-btn,.next-search-normal.next-dark.next-medium .next-search-left{border-width:1px;height:32px}.next-search-normal.next-dark.next-medium .next-search-input{height:30px;overflow-y:hidden}.next-search-normal.next-dark.next-medium .next-search-input input{height:30px;line-height:30px \0 }.next-search-normal.next-dark.next-medium .next-select{height:30px}.next-search-normal.next-dark.next-medium .next-search-btn{font-size:16px}.next-search-normal.next-dark.next-medium .next-search-btn .next-icon .next-icon-remote,.next-search-normal.next-dark.next-medium .next-search-btn .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-search-normal.next-dark.next-medium .next-search-btn .next-search-btn-text{display:inline-block;padding-left:0}.next-search-normal:not([dir=rtl]) .next-search-left{border-right:none}.next-search-simple{width:300px;box-shadow:none;border-radius:3px}.next-search-simple .next-search-icon{cursor:pointer;transition:all .1s linear}.next-search-simple .next-input,.next-search-simple .next-search-left{border-radius:3px}.next-search-simple.next-large .next-search-icon{margin-right:12px}.next-search-simple.next-medium .next-search-icon{margin-right:8px}.next-search-simple.next-normal .next-search-left{border-color:#ddd}.next-search-simple.next-normal .next-search-left .next-search-left-addon{border-right:1px solid #ddd}.next-search-simple.next-normal:hover .next-search-left{border-color:#ccc}.next-search-simple.next-normal .next-search-icon{color:#999}.next-search-simple.next-normal .next-search-icon:hover{color:#666}.next-search-simple.next-normal .next-search-left{border-width:1px}.next-search-simple.next-normal.next-large .next-search-icon .next-icon-remote,.next-search-simple.next-normal.next-large .next-search-icon:before{width:20px;font-size:20px;line-height:inherit}.next-search-simple.next-normal.next-medium .next-search-icon .next-icon-remote,.next-search-simple.next-normal.next-medium .next-search-icon:before{width:12px;font-size:12px;line-height:inherit}.next-search-simple.next-dark .next-search-left{border-color:#666}.next-search-simple.next-dark .next-search-left .next-search-left-addon{border-right:1px solid #ddd}.next-search-simple.next-dark:hover .next-search-left{border-color:#999}.next-search-simple.next-dark .next-search-icon{color:#666}.next-search-simple.next-dark .next-search-icon:hover{color:#999}.next-search-simple.next-dark .next-select-inner,.next-search-simple.next-dark input{color:#fff}.next-search-simple.next-dark .next-input,.next-search-simple.next-dark .next-select{background:hsla(0,0%,100%,0)}.next-search-simple.next-dark .next-search-left{border-width:1px}.next-search-simple.next-dark.next-large .next-search-icon .next-icon-remote,.next-search-simple.next-dark.next-large .next-search-icon:before,.next-search-simple.next-dark.next-medium .next-search-icon .next-icon-remote,.next-search-simple.next-dark.next-medium .next-search-icon:before{width:20px;font-size:20px;line-height:inherit}.next-search-simple .next-select.next-large{height:38px}.next-search-simple .next-select.next-medium{height:30px}.next-slick{position:relative;display:block;-webkit-touch-callout:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:rgba(0,0,0,0)}.next-slick,.next-slick *,.next-slick :after,.next-slick :before{box-sizing:border-box}.next-slick-initialized .next-slick-slide{display:block}.next-slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0;transform:translateZ(0)}.next-slick-list:focus{outline:none}.next-slick-list.dragging{cursor:pointer;cursor:hand}.next-slick-track{position:relative;top:0;left:0;display:block;transform:translateZ(0)}.next-slick-slide{float:left;height:100%;min-height:1px;outline:0;transition:all .1s linear}.next-slick[dir=rtl] .next-slick-slide{float:right}.next-slick-slide img{display:block}.next-slick-arrow{display:block;position:absolute;cursor:pointer;text-align:center;transition:all .1s linear}.next-slick-arrow.inner{color:#fff;background:#000;opacity:.2;padding:0;border:none}.next-slick-arrow.inner:focus,.next-slick-arrow.inner:hover{color:#fff;background:#000;opacity:.4}.next-slick-arrow.inner.disabled{color:#ccc;background:#fafafa;opacity:.5}.next-slick-arrow.outer{color:#666;background:transparent;opacity:.32;padding:0;border:none;border-radius:0}.next-slick-arrow.outer:focus,.next-slick-arrow.outer:hover{color:#333;background:transparent;opacity:.32}.next-slick-arrow.outer.disabled{color:#ccc;background:transparent;opacity:.32}.next-slick-arrow.disabled{cursor:not-allowed}.next-slick-dots{display:block;position:absolute;margin:0;padding:0}.next-slick-dots-item{position:relative;display:inline-block;cursor:pointer}.next-slick-dots-item button{cursor:pointer;border:0 solid #fff;outline:none;padding:0;height:8px;width:8px;border-radius:50%;background:rgba(0,0,0,.32)}.next-slick-dots-item button:focus,.next-slick-dots-item button:hover{background-color:rgba(0,0,0,.32);border-color:#fff}.next-slick-dots-item.active button{background:#209bfa;border-color:#fff;animation:zoom .3s cubic-bezier(.86,0,.07,1)}.next-slick-dots.hoz{width:100%;bottom:12px;left:0;text-align:center}.next-slick-dots.hoz .next-slick-dots-item{margin:0 4px}.next-slick-dots.ver{width:16px;top:0;right:20px;bottom:0;display:flex;justify-content:center;flex-direction:column}.next-slick-dots.ver .next-slick-dots-item{margin:0}.next-slick.next-slick-hoz.next-slick-outer{padding:0 24px}.next-slick.next-slick-hoz .next-slick-arrow.medium{width:28px;height:56px;line-height:56px}.next-slick.next-slick-hoz .next-slick-arrow.medium .next-icon .next-icon-remote,.next-slick.next-slick-hoz .next-slick-arrow.medium .next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-slick.next-slick-hoz .next-slick-arrow.medium.inner{top:calc(50% - 28px)}.next-slick.next-slick-hoz .next-slick-arrow.medium.inner.next-slick-prev{left:0}.next-slick.next-slick-hoz .next-slick-arrow.medium.inner.next-slick-next{right:0}.next-slick.next-slick-hoz .next-slick-arrow.medium.outer{top:calc(50% - 28px)}.next-slick.next-slick-hoz .next-slick-arrow.medium.outer.next-slick-prev{left:-4px}.next-slick.next-slick-hoz .next-slick-arrow.medium.outer.next-slick-next{right:-4px}.next-slick.next-slick-hoz .next-slick-arrow.large{width:48px;height:96px;line-height:96px}.next-slick.next-slick-hoz .next-slick-arrow.large .next-icon .next-icon-remote,.next-slick.next-slick-hoz .next-slick-arrow.large .next-icon:before{width:32px;font-size:32px;line-height:inherit}.next-slick.next-slick-hoz .next-slick-arrow.large.inner{top:calc(50% - 48px)}.next-slick.next-slick-hoz .next-slick-arrow.large.inner.next-slick-prev{left:0}.next-slick.next-slick-hoz .next-slick-arrow.large.inner.next-slick-next{right:0}.next-slick.next-slick-hoz .next-slick-arrow.large.outer{top:calc(50% - 48px)}.next-slick.next-slick-hoz .next-slick-arrow.large.outer.next-slick-prev{left:-8px}.next-slick.next-slick-hoz .next-slick-arrow.large.outer.next-slick-next{right:-8px}.next-slick.next-slick-ver.next-slick-outer{padding:24px 0}.next-slick.next-slick-ver .next-slick-slide{display:block;height:auto}.next-slick.next-slick-ver .next-slick-arrow.medium{width:56px;height:28px;line-height:28px}.next-slick.next-slick-ver .next-slick-arrow.medium .next-icon .next-icon-remote,.next-slick.next-slick-ver .next-slick-arrow.medium .next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-slick.next-slick-ver .next-slick-arrow.medium.inner{left:calc(50% - 28px)}.next-slick.next-slick-ver .next-slick-arrow.medium.inner.next-slick-prev{top:0}.next-slick.next-slick-ver .next-slick-arrow.medium.inner.next-slick-next{bottom:0}.next-slick.next-slick-ver .next-slick-arrow.medium.outer{left:calc(50% - 28px)}.next-slick.next-slick-ver .next-slick-arrow.medium.outer.next-slick-prev{top:-4px}.next-slick.next-slick-ver .next-slick-arrow.medium.outer.next-slick-next{bottom:-4px}.next-slick.next-slick-ver .next-slick-arrow.large{width:96px;height:48px;line-height:48px}.next-slick.next-slick-ver .next-slick-arrow.large .next-icon .next-icon-remote,.next-slick.next-slick-ver .next-slick-arrow.large .next-icon:before{width:32px;font-size:32px;line-height:inherit}.next-slick.next-slick-ver .next-slick-arrow.large.inner{left:calc(50% - 48px)}.next-slick.next-slick-ver .next-slick-arrow.large.inner.next-slick-prev{top:0}.next-slick.next-slick-ver .next-slick-arrow.large.inner.next-slick-next{bottom:0}.next-slick.next-slick-ver .next-slick-arrow.large.outer{left:calc(50% - 48px)}.next-slick.next-slick-ver .next-slick-arrow.large.outer.next-slick-prev{top:-16px}.next-slick.next-slick-ver .next-slick-arrow.large.outer.next-slick-next{bottom:-16px}.next-split-btn{display:inline-block;position:relative}.next-split-btn-spacing-tb{padding:0}.next-split-btn-trigger .next-icon{transition:transform .1s linear}.next-split-btn-trigger.next-expand .next-split-btn-symbol-fold{transform:rotate(180deg)}.next-split-btn-trigger.next-btn-normal:not(:disabled):not(.disabled) .next-icon{color:#999}.next-split-btn-trigger.next-small{padding-left:4px;padding-right:4px}.next-split-btn-trigger.next-medium{padding-left:8px;padding-right:8px}.next-split-btn-symbol-fold:before{content:"î½"}.next-split-btn-symbol-unfold:before{content:""}.next-step,.next-step *,.next-step:after,.next-step :after,.next-step:before,.next-step :before{box-sizing:border-box}.next-step{width:100%;position:relative;border:none}.next-step-item{position:relative;vertical-align:middle;outline:0;height:100%}.next-step-item-body{outline:0}.next-step-item-node{transition:all .1s linear}.next-step-item-node.clicked{transform:scale3d(.8,.8,.8)}.next-step-horizontal{overflow:hidden}.next-step-horizontal>.next-step-item{display:inline-block;text-align:left}.next-step-vertical>.next-step-item{display:block;text-align:center}.next-step-arrow{display:flex}.next-step-arrow .next-step-item{flex:1;height:32px;line-height:32px;margin-left:16px;margin-right:4px}.next-step-arrow .next-step-item:before{content:"";position:absolute;left:-16px;top:0;z-index:1;border:16px solid transparent}.next-step-arrow .next-step-item:after{content:"";position:absolute;right:-16px;top:0;z-index:1;border-top:16px solid transparent;border-bottom:16px solid transparent;border-left:16px solid transparent}.next-step-arrow .next-step-item .next-step-item-container{min-width:100px;height:32px;cursor:pointer}.next-step-arrow .next-step-item .next-step-item-container .next-step-item-title{height:32px;line-height:32px;font-weight:700;font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:center}.next-step-arrow>.next-step-item-wait{background:#f5f5f5}.next-step-arrow>.next-step-item-wait .next-step-item-tail-overlay{background:#000}.next-step-arrow>.next-step-item-wait .next-step-item-tail-underlay{background:#ccc}.next-step-arrow>.next-step-item-wait>.next-step-item-container .next-step-item-progress{width:32px;height:32px}.next-step-arrow>.next-step-item-wait>.next-step-item-container .next-step-item-node{color:#000}.next-step-arrow>.next-step-item-wait>.next-step-item-container .next-step-item-node-circle,.next-step-arrow>.next-step-item-wait>.next-step-item-container .next-step-item-node-dot{background:#f5f5f5;border-color:#000}.next-step-arrow>.next-step-item-wait .next-step-item-title{color:#999;word-break:break-word}.next-step-arrow>.next-step-item-wait .next-step-item-content{color:#999;font-size:12px;line-height:1.5;word-break:break-word}.next-step-arrow>.next-step-item-wait .next-step-item-node-placeholder{width:32px;height:32px;position:relative}.next-step-arrow>.next-step-item-wait .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-arrow>.next-step-item-wait .next-step-item-node-circle{display:block;width:32px;height:32px;font-size:12px;font-weight:400;line-height:30px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-arrow>.next-step-item-wait .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-arrow>.next-step-item-wait .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-arrow>.next-step-item-wait .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-arrow>.next-step-item-wait:before{border:16px solid #f5f5f5;border-left-color:transparent}.next-step-arrow>.next-step-item-wait:after{border-left-color:#f5f5f5}.next-step-arrow>.next-step-item-process{background:#209bfa}.next-step-arrow>.next-step-item-process .next-step-item-tail-overlay{background:#000}.next-step-arrow>.next-step-item-process .next-step-item-tail-underlay{background:#ccc}.next-step-arrow>.next-step-item-process>.next-step-item-container .next-step-item-progress{width:32px;height:32px}.next-step-arrow>.next-step-item-process>.next-step-item-container .next-step-item-node{color:#000}.next-step-arrow>.next-step-item-process>.next-step-item-container .next-step-item-node-circle,.next-step-arrow>.next-step-item-process>.next-step-item-container .next-step-item-node-dot{background:#209bfa;border-color:#000}.next-step-arrow>.next-step-item-process .next-step-item-title{color:#fff;word-break:break-word}.next-step-arrow>.next-step-item-process .next-step-item-content{color:#fff;font-size:12px;line-height:1.5;word-break:break-word}.next-step-arrow>.next-step-item-process .next-step-item-node-placeholder{width:32px;height:32px;position:relative}.next-step-arrow>.next-step-item-process .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-arrow>.next-step-item-process .next-step-item-node-circle{display:block;width:32px;height:32px;font-size:12px;font-weight:400;line-height:30px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-arrow>.next-step-item-process .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-arrow>.next-step-item-process .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-arrow>.next-step-item-process .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-arrow>.next-step-item-process:before{border:16px solid #209bfa;border-left-color:transparent}.next-step-arrow>.next-step-item-process:after{border-left-color:#209bfa}.next-step-arrow>.next-step-item-finish{background:#add9ff}.next-step-arrow>.next-step-item-finish .next-step-item-tail-overlay{background:#000}.next-step-arrow>.next-step-item-finish .next-step-item-tail-underlay{background:#ccc}.next-step-arrow>.next-step-item-finish>.next-step-item-container .next-step-item-progress{width:32px;height:32px}.next-step-arrow>.next-step-item-finish>.next-step-item-container .next-step-item-node{color:#000}.next-step-arrow>.next-step-item-finish>.next-step-item-container .next-step-item-node-circle,.next-step-arrow>.next-step-item-finish>.next-step-item-container .next-step-item-node-dot{background:#add9ff;border-color:#000}.next-step-arrow>.next-step-item-finish .next-step-item-title{color:#209bfa;word-break:break-word}.next-step-arrow>.next-step-item-finish .next-step-item-content{color:#209bfa;font-size:12px;line-height:1.5;word-break:break-word}.next-step-arrow>.next-step-item-finish .next-step-item-node-placeholder{width:32px;height:32px;position:relative}.next-step-arrow>.next-step-item-finish .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-arrow>.next-step-item-finish .next-step-item-node-circle{display:block;width:32px;height:32px;font-size:12px;font-weight:400;line-height:30px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-arrow>.next-step-item-finish .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-arrow>.next-step-item-finish .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-arrow>.next-step-item-finish .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-arrow>.next-step-item-finish:before{border:16px solid #add9ff;border-left-color:transparent}.next-step-arrow>.next-step-item-finish:after{border-left-color:#add9ff}.next-step-arrow .next-step-item-disabled{cursor:not-allowed;background:#fafafa}.next-step-arrow .next-step-item-disabled .next-step-item-tail-overlay{background:#000}.next-step-arrow .next-step-item-disabled .next-step-item-tail-underlay{background:#ccc}.next-step-arrow .next-step-item-disabled>.next-step-item-container .next-step-item-progress{width:32px;height:32px}.next-step-arrow .next-step-item-disabled>.next-step-item-container .next-step-item-node{color:#000}.next-step-arrow .next-step-item-disabled>.next-step-item-container .next-step-item-node-circle,.next-step-arrow .next-step-item-disabled>.next-step-item-container .next-step-item-node-dot{background:#fafafa;border-color:#000}.next-step-arrow .next-step-item-disabled .next-step-item-title{color:#ccc;word-break:break-word}.next-step-arrow .next-step-item-disabled .next-step-item-content{color:#ccc;font-size:12px;line-height:1.5;word-break:break-word}.next-step-arrow .next-step-item-disabled .next-step-item-node-placeholder{width:32px;height:32px;position:relative}.next-step-arrow .next-step-item-disabled .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-arrow .next-step-item-disabled .next-step-item-node-circle{display:block;width:32px;height:32px;font-size:12px;font-weight:400;line-height:30px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-arrow .next-step-item-disabled .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-arrow .next-step-item-disabled .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-arrow .next-step-item-disabled .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-arrow .next-step-item-disabled:before{border:16px solid #fafafa;border-left-color:transparent}.next-step-arrow .next-step-item-disabled:after{border-left-color:#fafafa}.next-step-arrow .next-step-item-disabled .next-step-item-container{cursor:not-allowed}.next-step-arrow .next-step-item-read-only,.next-step-arrow .next-step-item-read-only .next-step-item-container{cursor:default}.next-step-arrow .next-step-item-first{margin-left:0}.next-step-arrow .next-step-item-first:before{border:16px solid transparent}.next-step-arrow .next-step-item-last{margin-right:0}.next-step-arrow .next-step-item-last:after{border:16px solid transparent}.next-step-circle .next-step-item-container{display:inline-block;vertical-align:middle;position:relative;padding:0 8px}.next-step-circle .next-step-item-container .next-step-item-progress .next-progress-circle-text{color:#209bfa;font-size:14px}.next-step-circle .next-step-item-container .next-step-item-progress .next-progress-circle-underlay{stroke:#ccc;stroke-width:3px}.next-step-circle .next-step-item-container .next-step-item-progress .next-progress-circle-overlay-normal{stroke:#209bfa;stroke-width:3px}.next-step-circle .next-step-item-container .next-step-item-node-placeholder{display:inline-block}.next-step-circle>.next-step-item-wait .next-step-item-tail-overlay{background:#ddd}.next-step-circle>.next-step-item-wait .next-step-item-tail-underlay{background:#eee}.next-step-circle>.next-step-item-wait>.next-step-item-container .next-step-item-progress{width:32px;height:32px}.next-step-circle>.next-step-item-wait>.next-step-item-container .next-step-item-node{color:#666}.next-step-circle>.next-step-item-wait>.next-step-item-container .next-step-item-node-circle,.next-step-circle>.next-step-item-wait>.next-step-item-container .next-step-item-node-dot{background:#fff;border-color:#ccc}.next-step-circle>.next-step-item-wait .next-step-item-title{color:#666;word-break:break-word}.next-step-circle>.next-step-item-wait .next-step-item-content{color:#666;font-size:12px;line-height:1.5;word-break:break-word}.next-step-circle>.next-step-item-wait .next-step-item-node-placeholder{width:32px;height:32px;position:relative}.next-step-circle>.next-step-item-wait .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-circle>.next-step-item-wait .next-step-item-node-circle{display:block;width:32px;height:32px;font-size:12px;font-weight:400;line-height:30px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-circle>.next-step-item-wait .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-circle>.next-step-item-wait .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-circle>.next-step-item-wait .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-circle>.next-step-item-process .next-step-item-tail-overlay{background:#ddd}.next-step-circle>.next-step-item-process .next-step-item-tail-underlay{background:#eee}.next-step-circle>.next-step-item-process>.next-step-item-container .next-step-item-progress{width:32px;height:32px}.next-step-circle>.next-step-item-process>.next-step-item-container .next-step-item-node{color:#fff}.next-step-circle>.next-step-item-process>.next-step-item-container .next-step-item-node-circle,.next-step-circle>.next-step-item-process>.next-step-item-container .next-step-item-node-dot{background:#209bfa;border-color:#209bfa}.next-step-circle>.next-step-item-process .next-step-item-title{color:#333;word-break:break-word}.next-step-circle>.next-step-item-process .next-step-item-content{color:#333;font-size:12px;line-height:1.5;word-break:break-word}.next-step-circle>.next-step-item-process .next-step-item-node-placeholder{width:32px;height:32px;position:relative}.next-step-circle>.next-step-item-process .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-circle>.next-step-item-process .next-step-item-node-circle{display:block;width:32px;height:32px;font-size:12px;font-weight:400;line-height:30px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-circle>.next-step-item-process .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-circle>.next-step-item-process .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-circle>.next-step-item-process .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-circle>.next-step-item-finish .next-step-item-tail-overlay{background:#209bfa}.next-step-circle>.next-step-item-finish .next-step-item-tail-underlay{background:#eee}.next-step-circle>.next-step-item-finish>.next-step-item-container .next-step-item-progress{width:32px;height:32px}.next-step-circle>.next-step-item-finish>.next-step-item-container .next-step-item-node{color:#209bfa}.next-step-circle>.next-step-item-finish>.next-step-item-container .next-step-item-node-circle,.next-step-circle>.next-step-item-finish>.next-step-item-container .next-step-item-node-dot{background:#fff;border-color:#209bfa}.next-step-circle>.next-step-item-finish .next-step-item-title{color:#666;word-break:break-word}.next-step-circle>.next-step-item-finish .next-step-item-content{color:#666;font-size:12px;line-height:1.5;word-break:break-word}.next-step-circle>.next-step-item-finish .next-step-item-node-placeholder{width:32px;height:32px;position:relative}.next-step-circle>.next-step-item-finish .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-circle>.next-step-item-finish .next-step-item-node-circle{display:block;width:32px;height:32px;font-size:12px;font-weight:400;line-height:30px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-circle>.next-step-item-finish .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-circle>.next-step-item-finish .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-circle>.next-step-item-finish .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-circle .next-step-item-disabled .next-step-item-tail-overlay,.next-step-circle .next-step-item-disabled .next-step-item-tail-underlay{background:#eee}.next-step-circle .next-step-item-disabled>.next-step-item-container .next-step-item-progress{width:32px;height:32px}.next-step-circle .next-step-item-disabled>.next-step-item-container .next-step-item-node{color:#ccc}.next-step-circle .next-step-item-disabled>.next-step-item-container .next-step-item-node-circle,.next-step-circle .next-step-item-disabled>.next-step-item-container .next-step-item-node-dot{background:#fff;border-color:#eee}.next-step-circle .next-step-item-disabled .next-step-item-title{color:#ccc;word-break:break-word}.next-step-circle .next-step-item-disabled .next-step-item-content{color:#ccc;font-size:12px;line-height:1.5;word-break:break-word}.next-step-circle .next-step-item-disabled .next-step-item-node-placeholder{width:32px;height:32px;position:relative}.next-step-circle .next-step-item-disabled .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-circle .next-step-item-disabled .next-step-item-node-circle{display:block;width:32px;height:32px;font-size:12px;font-weight:400;line-height:30px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-circle .next-step-item-disabled .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-circle .next-step-item-disabled .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-circle .next-step-item-disabled .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-circle .next-step-item-disabled .next-step-item-node,.next-step-circle .next-step-item-disabled .next-step-item-node-placeholder{cursor:not-allowed}.next-step-circle .next-step-item-read-only .next-step-item-node,.next-step-circle .next-step-item-read-only .next-step-item-node-placeholder{cursor:default}.next-step-circle .next-step-item-last .next-step-item-tail{display:none}.next-step-circle.next-step-horizontal{text-align:center;white-space:nowrap}.next-step-circle.next-step-horizontal>.next-step-item .next-step-item-content,.next-step-circle.next-step-horizontal>.next-step-item .next-step-item-title{white-space:normal}.next-step-circle.next-step-horizontal>.next-step-item-wait .next-step-item-tail{display:inline-block;clear:both;width:calc(100% - 48px);vertical-align:middle}.next-step-circle.next-step-horizontal>.next-step-item-wait .next-step-item-tail .next-step-item-tail-underlay{display:block;height:1px;position:relative}.next-step-circle.next-step-horizontal>.next-step-item-wait .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:1px;transition:all .1s linear;width:100%}.next-step-circle.next-step-horizontal>.next-step-item-wait>.next-step-item-body{width:100px;left:-26px;text-align:center;position:absolute}.next-step-circle.next-step-horizontal>.next-step-item-wait>.next-step-item-body>.next-step-item-title{font-size:14px;line-height:18px;margin-top:8px;font-weight:700}.next-step-circle.next-step-horizontal>.next-step-item-wait>.next-step-item-body>.next-step-item-content{margin-top:4px}.next-step-circle.next-step-horizontal>.next-step-item-process .next-step-item-tail{display:inline-block;clear:both;width:calc(100% - 48px);vertical-align:middle}.next-step-circle.next-step-horizontal>.next-step-item-process .next-step-item-tail .next-step-item-tail-underlay{display:block;height:1px;position:relative}.next-step-circle.next-step-horizontal>.next-step-item-process .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:1px;transition:all .1s linear;width:100%}.next-step-circle.next-step-horizontal>.next-step-item-process>.next-step-item-body{width:100px;left:-26px;text-align:center;position:absolute}.next-step-circle.next-step-horizontal>.next-step-item-process>.next-step-item-body>.next-step-item-title{font-size:14px;line-height:18px;margin-top:8px;font-weight:700}.next-step-circle.next-step-horizontal>.next-step-item-process>.next-step-item-body>.next-step-item-content{margin-top:4px}.next-step-circle.next-step-horizontal>.next-step-item-finish .next-step-item-tail{display:inline-block;clear:both;width:calc(100% - 48px);vertical-align:middle}.next-step-circle.next-step-horizontal>.next-step-item-finish .next-step-item-tail .next-step-item-tail-underlay{display:block;height:1px;position:relative}.next-step-circle.next-step-horizontal>.next-step-item-finish .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:1px;transition:all .1s linear;width:100%}.next-step-circle.next-step-horizontal>.next-step-item-finish>.next-step-item-body{width:100px;left:-26px;text-align:center;position:absolute}.next-step-circle.next-step-horizontal>.next-step-item-finish>.next-step-item-body>.next-step-item-title{font-size:14px;line-height:18px;margin-top:8px;font-weight:700}.next-step-circle.next-step-horizontal>.next-step-item-finish>.next-step-item-body>.next-step-item-content{margin-top:4px}.next-step-circle.next-step-horizontal>.next-step-item-disabled .next-step-item-tail{display:inline-block;clear:both;width:calc(100% - 48px);vertical-align:middle}.next-step-circle.next-step-horizontal>.next-step-item-disabled .next-step-item-tail .next-step-item-tail-underlay{display:block;height:1px;position:relative}.next-step-circle.next-step-horizontal>.next-step-item-disabled .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:1px;transition:all .1s linear;width:100%}.next-step-circle.next-step-horizontal>.next-step-item-disabled>.next-step-item-body{width:100px;left:-26px;text-align:center;position:absolute}.next-step-circle.next-step-horizontal>.next-step-item-disabled>.next-step-item-body>.next-step-item-title{font-size:14px;line-height:18px;margin-top:8px;font-weight:700}.next-step-circle.next-step-horizontal>.next-step-item-disabled>.next-step-item-body>.next-step-item-content{margin-top:4px}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item{vertical-align:unset}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-wait .next-step-item:last-child .next-step-item-tail{display:none}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-wait .next-step-item-body{position:relative;display:inline-block;top:0;left:0;max-width:100px;overflow:hidden;vertical-align:top;text-align:left}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-wait .next-step-item-body .next-step-item-title{display:inline-block;padding-right:8px;margin-top:9px}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-wait .next-step-item-tail{width:calc(100% - 148px);position:absolute;right:0;margin-top:-1px}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-process .next-step-item:last-child .next-step-item-tail{display:none}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-process .next-step-item-body{position:relative;display:inline-block;top:0;left:0;max-width:100px;overflow:hidden;vertical-align:top;text-align:left}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-process .next-step-item-body .next-step-item-title{display:inline-block;padding-right:8px;margin-top:9px}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-process .next-step-item-tail{width:calc(100% - 148px);position:absolute;right:0;margin-top:-1px}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-finish .next-step-item:last-child .next-step-item-tail{display:none}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-finish .next-step-item-body{position:relative;display:inline-block;top:0;left:0;max-width:100px;overflow:hidden;vertical-align:top;text-align:left}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-finish .next-step-item-body .next-step-item-title{display:inline-block;padding-right:8px;margin-top:9px}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-finish .next-step-item-tail{width:calc(100% - 148px);position:absolute;right:0;margin-top:-1px}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-disabled .next-step-item:last-child .next-step-item-tail{display:none}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-disabled .next-step-item-body{position:relative;display:inline-block;top:0;left:0;max-width:100px;overflow:hidden;vertical-align:top;text-align:left}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-disabled .next-step-item-body .next-step-item-title{display:inline-block;padding-right:8px;margin-top:9px}.next-step-circle.next-step-horizontal.next-step-label-horizontal>.next-step-item-disabled .next-step-item-tail{width:calc(100% - 148px);position:absolute;right:0;margin-top:-1px}.next-step-circle.next-step-vertical{font-size:0;display:table-cell;vertical-align:middle;position:relative}.next-step-circle.next-step-vertical .next-step-item-container{padding:0}.next-step-circle.next-step-vertical>.next-step-item:last-child .next-step-item-tail{display:block;visibility:hidden}.next-step-circle.next-step-vertical>.next-step-item-wait .next-step-item-tail{width:1px;height:0;margin:8px auto}.next-step-circle.next-step-vertical>.next-step-item-wait .next-step-item-tail .next-step-item-tail-underlay{height:100%;width:1px;position:relative}.next-step-circle.next-step-vertical>.next-step-item-wait .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:100%;width:1px}.next-step-circle.next-step-vertical>.next-step-item-wait>.next-step-item-body{position:absolute;top:0;left:16px;margin-left:8px}.next-step-circle.next-step-vertical>.next-step-item-wait>.next-step-item-body>.next-step-item-title{margin-top:8px;text-align:left;font-weight:700;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-circle.next-step-vertical>.next-step-item-wait>.next-step-item-body>.next-step-item-content{margin-top:4px;min-height:8px;text-align:left;font-size:12px;line-height:1.5}.next-step-circle.next-step-vertical>.next-step-item-process .next-step-item-tail{width:1px;height:0;margin:8px auto}.next-step-circle.next-step-vertical>.next-step-item-process .next-step-item-tail .next-step-item-tail-underlay{height:100%;width:1px;position:relative}.next-step-circle.next-step-vertical>.next-step-item-process .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:100%;width:1px}.next-step-circle.next-step-vertical>.next-step-item-process>.next-step-item-body{position:absolute;top:0;left:16px;margin-left:8px}.next-step-circle.next-step-vertical>.next-step-item-process>.next-step-item-body>.next-step-item-title{margin-top:8px;text-align:left;font-weight:700;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-circle.next-step-vertical>.next-step-item-process>.next-step-item-body>.next-step-item-content{margin-top:4px;min-height:8px;text-align:left;font-size:12px;line-height:1.5}.next-step-circle.next-step-vertical>.next-step-item-finish .next-step-item-tail{width:1px;height:0;margin:8px auto}.next-step-circle.next-step-vertical>.next-step-item-finish .next-step-item-tail .next-step-item-tail-underlay{height:100%;width:1px;position:relative}.next-step-circle.next-step-vertical>.next-step-item-finish .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:100%;width:1px}.next-step-circle.next-step-vertical>.next-step-item-finish>.next-step-item-body{position:absolute;top:0;left:16px;margin-left:8px}.next-step-circle.next-step-vertical>.next-step-item-finish>.next-step-item-body>.next-step-item-title{margin-top:8px;text-align:left;font-weight:700;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-circle.next-step-vertical>.next-step-item-finish>.next-step-item-body>.next-step-item-content{margin-top:4px;min-height:8px;text-align:left;font-size:12px;line-height:1.5}.next-step-circle.next-step-vertical>.next-step-item-disabled .next-step-item-tail{width:1px;height:0;margin:8px auto}.next-step-circle.next-step-vertical>.next-step-item-disabled .next-step-item-tail .next-step-item-tail-underlay{height:100%;width:1px;position:relative}.next-step-circle.next-step-vertical>.next-step-item-disabled .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:100%;width:1px}.next-step-circle.next-step-vertical>.next-step-item-disabled>.next-step-item-body{position:absolute;top:0;left:16px;margin-left:8px}.next-step-circle.next-step-vertical>.next-step-item-disabled>.next-step-item-body>.next-step-item-title{margin-top:8px;text-align:left;font-weight:700;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-circle.next-step-vertical>.next-step-item-disabled>.next-step-item-body>.next-step-item-content{margin-top:4px;min-height:8px;text-align:left;font-size:12px;line-height:1.5}.next-step-dot .next-step-item-container{display:inline-block;vertical-align:middle;position:relative;padding:0 8px;margin-top:-1px;margin-bottom:-1px}.next-step-dot .next-step-item-container .next-step-item-node-placeholder{display:inline-block}.next-step-dot .next-step-item-container .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-dot .next-step-item-container .next-step-item-node .next-icon .next-icon-remote,.next-step-dot .next-step-item-container .next-step-item-node .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-dot>.next-step-item-wait .next-step-item-tail-overlay{background:#ddd}.next-step-dot>.next-step-item-wait .next-step-item-tail-underlay{background:#eee}.next-step-dot>.next-step-item-wait>.next-step-item-container .next-step-item-progress{width:12px;height:12px}.next-step-dot>.next-step-item-wait>.next-step-item-container .next-step-item-node{color:#999}.next-step-dot>.next-step-item-wait>.next-step-item-container .next-step-item-node-circle,.next-step-dot>.next-step-item-wait>.next-step-item-container .next-step-item-node-dot{background:#fff;border-color:#ccc}.next-step-dot>.next-step-item-wait .next-step-item-title{color:#666;word-break:break-word}.next-step-dot>.next-step-item-wait .next-step-item-content{color:#666;line-height:1.5;word-break:break-word}.next-step-dot>.next-step-item-wait .next-step-item-node-placeholder{width:12px;height:12px;position:relative}.next-step-dot>.next-step-item-wait .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-dot>.next-step-item-wait .next-step-item-node-circle{display:block;width:12px;height:12px;font-size:12px;font-weight:400;line-height:10px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-dot>.next-step-item-wait .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-dot>.next-step-item-wait .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-dot>.next-step-item-wait .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-dot>.next-step-item-wait .next-step-item-content{font-size:12px}.next-step-dot>.next-step-item-wait .next-step-item-node-dot{display:block;width:12px;height:12px;font-size:12px;line-height:10px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .3s ease,border-color .3s ease}.next-step-dot>.next-step-item-process .next-step-item-tail-overlay{background:#ddd}.next-step-dot>.next-step-item-process .next-step-item-tail-underlay{background:#eee}.next-step-dot>.next-step-item-process>.next-step-item-container .next-step-item-progress{width:12px;height:12px}.next-step-dot>.next-step-item-process>.next-step-item-container .next-step-item-node{color:#209bfa}.next-step-dot>.next-step-item-process>.next-step-item-container .next-step-item-node-circle,.next-step-dot>.next-step-item-process>.next-step-item-container .next-step-item-node-dot{background:#209bfa;border-color:#209bfa}.next-step-dot>.next-step-item-process .next-step-item-title{color:#333;word-break:break-word}.next-step-dot>.next-step-item-process .next-step-item-content{color:#333;line-height:1.5;word-break:break-word}.next-step-dot>.next-step-item-process .next-step-item-node-placeholder{width:12px;height:12px;position:relative}.next-step-dot>.next-step-item-process .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-dot>.next-step-item-process .next-step-item-node-circle{display:block;width:12px;height:12px;font-size:12px;font-weight:400;line-height:10px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-dot>.next-step-item-process .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-dot>.next-step-item-process .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-dot>.next-step-item-process .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-dot>.next-step-item-process .next-step-item-content{font-size:12px}.next-step-dot>.next-step-item-process .next-step-item-node-dot{display:block;width:12px;height:12px;font-size:12px;line-height:10px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .3s ease,border-color .3s ease}.next-step-dot>.next-step-item-finish .next-step-item-tail-overlay{background:#209bfa}.next-step-dot>.next-step-item-finish .next-step-item-tail-underlay{background:#eee}.next-step-dot>.next-step-item-finish>.next-step-item-container .next-step-item-progress{width:12px;height:12px}.next-step-dot>.next-step-item-finish>.next-step-item-container .next-step-item-node{color:#209bfa}.next-step-dot>.next-step-item-finish>.next-step-item-container .next-step-item-node-circle,.next-step-dot>.next-step-item-finish>.next-step-item-container .next-step-item-node-dot{background:#fff;border-color:#209bfa}.next-step-dot>.next-step-item-finish .next-step-item-title{color:#666;word-break:break-word}.next-step-dot>.next-step-item-finish .next-step-item-content{color:#666;line-height:1.5;word-break:break-word}.next-step-dot>.next-step-item-finish .next-step-item-node-placeholder{width:12px;height:12px;position:relative}.next-step-dot>.next-step-item-finish .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-dot>.next-step-item-finish .next-step-item-node-circle{display:block;width:12px;height:12px;font-size:12px;font-weight:400;line-height:10px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-dot>.next-step-item-finish .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-dot>.next-step-item-finish .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-dot>.next-step-item-finish .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-dot>.next-step-item-finish .next-step-item-content{font-size:12px}.next-step-dot>.next-step-item-finish .next-step-item-node-dot{display:block;width:12px;height:12px;font-size:12px;line-height:10px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .3s ease,border-color .3s ease}.next-step-dot .next-step-item-disabled .next-step-item-tail-overlay,.next-step-dot .next-step-item-disabled .next-step-item-tail-underlay{background:#eee}.next-step-dot .next-step-item-disabled>.next-step-item-container .next-step-item-progress{width:12px;height:12px}.next-step-dot .next-step-item-disabled>.next-step-item-container .next-step-item-node{color:#eee}.next-step-dot .next-step-item-disabled>.next-step-item-container .next-step-item-node-circle,.next-step-dot .next-step-item-disabled>.next-step-item-container .next-step-item-node-dot{background:#fff;border-color:#e6e6e6}.next-step-dot .next-step-item-disabled .next-step-item-title{color:#ccc;word-break:break-word}.next-step-dot .next-step-item-disabled .next-step-item-content{color:#ccc;line-height:1.5;word-break:break-word}.next-step-dot .next-step-item-disabled .next-step-item-node-placeholder{width:12px;height:12px;position:relative}.next-step-dot .next-step-item-disabled .next-step-item-node{position:relative;display:inline-block;text-align:center;cursor:pointer}.next-step-dot .next-step-item-disabled .next-step-item-node-circle{display:block;width:12px;height:12px;font-size:12px;font-weight:400;line-height:10px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .1s linear}.next-step-dot .next-step-item-disabled .next-step-item-node-circle .next-icon{animation:zoomIn .3s linear}.next-step-dot .next-step-item-disabled .next-step-item-node-circle .next-icon .next-icon-remote,.next-step-dot .next-step-item-disabled .next-step-item-node-circle .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-step-dot .next-step-item-disabled .next-step-item-content{font-size:12px}.next-step-dot .next-step-item-disabled .next-step-item-node-dot{display:block;width:12px;height:12px;font-size:12px;line-height:10px;text-align:center;border:1px solid;border-radius:50%;transition:background-color .3s ease,border-color .3s ease}.next-step-dot .next-step-item-disabled .next-step-item-node,.next-step-dot .next-step-item-disabled .next-step-item-node-placeholder{cursor:not-allowed}.next-step-dot .next-step-item-read-only .next-step-item-node,.next-step-dot .next-step-item-read-only .next-step-item-node-placeholder{cursor:default}.next-step-dot .next-step-item-last .next-step-item-tail{display:none}.next-step-dot.next-step-horizontal{text-align:center;white-space:nowrap}.next-step-dot.next-step-horizontal>.next-step-item .next-step-item-content,.next-step-dot.next-step-horizontal>.next-step-item .next-step-item-title{white-space:normal}.next-step-dot.next-step-horizontal .next-step-item-node .next-icon{vertical-align:middle}.next-step-dot.next-step-horizontal>.next-step-item-wait .next-step-item-tail{display:inline-block;clear:both;width:calc(100% - 28px);vertical-align:middle}.next-step-dot.next-step-horizontal>.next-step-item-wait .next-step-item-tail .next-step-item-tail-underlay{display:block;height:1px;position:relative}.next-step-dot.next-step-horizontal>.next-step-item-wait .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:1px;transition:all .1s linear;width:100%}.next-step-dot.next-step-horizontal>.next-step-item-wait>.next-step-item-body{width:100px;left:-36px;text-align:center;position:absolute}.next-step-dot.next-step-horizontal>.next-step-item-wait>.next-step-item-body>.next-step-item-title{font-size:14px;line-height:18px;margin-top:8px;font-weight:700}.next-step-dot.next-step-horizontal>.next-step-item-wait>.next-step-item-body>.next-step-item-content{margin-top:4px}.next-step-dot.next-step-horizontal>.next-step-item-process .next-step-item-tail{display:inline-block;clear:both;width:calc(100% - 28px);vertical-align:middle}.next-step-dot.next-step-horizontal>.next-step-item-process .next-step-item-tail .next-step-item-tail-underlay{display:block;height:1px;position:relative}.next-step-dot.next-step-horizontal>.next-step-item-process .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:1px;transition:all .1s linear;width:100%}.next-step-dot.next-step-horizontal>.next-step-item-process>.next-step-item-body{width:100px;left:-36px;text-align:center;position:absolute}.next-step-dot.next-step-horizontal>.next-step-item-process>.next-step-item-body>.next-step-item-title{font-size:14px;line-height:18px;margin-top:8px;font-weight:700}.next-step-dot.next-step-horizontal>.next-step-item-process>.next-step-item-body>.next-step-item-content{margin-top:4px}.next-step-dot.next-step-horizontal>.next-step-item-finish .next-step-item-tail{display:inline-block;clear:both;width:calc(100% - 28px);vertical-align:middle}.next-step-dot.next-step-horizontal>.next-step-item-finish .next-step-item-tail .next-step-item-tail-underlay{display:block;height:1px;position:relative}.next-step-dot.next-step-horizontal>.next-step-item-finish .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:1px;transition:all .1s linear;width:100%}.next-step-dot.next-step-horizontal>.next-step-item-finish>.next-step-item-body{width:100px;left:-36px;text-align:center;position:absolute}.next-step-dot.next-step-horizontal>.next-step-item-finish>.next-step-item-body>.next-step-item-title{font-size:14px;line-height:18px;margin-top:8px;font-weight:700}.next-step-dot.next-step-horizontal>.next-step-item-finish>.next-step-item-body>.next-step-item-content{margin-top:4px}.next-step-dot.next-step-horizontal>.next-step-item-disabled .next-step-item-tail{display:inline-block;clear:both;width:calc(100% - 28px);vertical-align:middle}.next-step-dot.next-step-horizontal>.next-step-item-disabled .next-step-item-tail .next-step-item-tail-underlay{display:block;height:1px;position:relative}.next-step-dot.next-step-horizontal>.next-step-item-disabled .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:1px;transition:all .1s linear;width:100%}.next-step-dot.next-step-horizontal>.next-step-item-disabled>.next-step-item-body{width:100px;left:-36px;text-align:center;position:absolute}.next-step-dot.next-step-horizontal>.next-step-item-disabled>.next-step-item-body>.next-step-item-title{font-size:14px;line-height:18px;margin-top:8px;font-weight:700}.next-step-dot.next-step-horizontal>.next-step-item-disabled>.next-step-item-body>.next-step-item-content{margin-top:4px}.next-step-dot.next-step-vertical{padding:0 0 0 4px;font-size:0;display:table-cell;position:relative}.next-step-dot.next-step-vertical .next-step-item-container{padding:0}.next-step-dot.next-step-vertical>.next-step-item:last-child .next-step-item-tail{display:block;visibility:hidden}.next-step-dot.next-step-vertical>.next-step-item-wait .next-step-item-tail{width:1px;height:0;margin:8px auto}.next-step-dot.next-step-vertical>.next-step-item-wait .next-step-item-tail .next-step-item-tail-underlay{height:100%;width:1px;position:relative}.next-step-dot.next-step-vertical>.next-step-item-wait .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:100%;width:1px}.next-step-dot.next-step-vertical>.next-step-item-wait>.next-step-item-body{position:absolute;top:0;left:6px;margin-left:8px}.next-step-dot.next-step-vertical>.next-step-item-wait>.next-step-item-body>.next-step-item-title{margin-top:0;font-weight:700;text-align:left;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-dot.next-step-vertical>.next-step-item-wait>.next-step-item-body>.next-step-item-content{margin-top:8px;min-height:8px;text-align:left;font-size:12px;line-height:1.5}.next-step-dot.next-step-vertical>.next-step-item-process .next-step-item-tail{width:1px;height:0;margin:8px auto}.next-step-dot.next-step-vertical>.next-step-item-process .next-step-item-tail .next-step-item-tail-underlay{height:100%;width:1px;position:relative}.next-step-dot.next-step-vertical>.next-step-item-process .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:100%;width:1px}.next-step-dot.next-step-vertical>.next-step-item-process>.next-step-item-body{position:absolute;top:0;left:6px;margin-left:8px}.next-step-dot.next-step-vertical>.next-step-item-process>.next-step-item-body>.next-step-item-title{margin-top:0;font-weight:700;text-align:left;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-dot.next-step-vertical>.next-step-item-process>.next-step-item-body>.next-step-item-content{margin-top:8px;min-height:8px;text-align:left;font-size:12px;line-height:1.5}.next-step-dot.next-step-vertical>.next-step-item-finish .next-step-item-tail{width:1px;height:0;margin:8px auto}.next-step-dot.next-step-vertical>.next-step-item-finish .next-step-item-tail .next-step-item-tail-underlay{height:100%;width:1px;position:relative}.next-step-dot.next-step-vertical>.next-step-item-finish .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:100%;width:1px}.next-step-dot.next-step-vertical>.next-step-item-finish>.next-step-item-body{position:absolute;top:0;left:6px;margin-left:8px}.next-step-dot.next-step-vertical>.next-step-item-finish>.next-step-item-body>.next-step-item-title{margin-top:0;font-weight:700;text-align:left;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-dot.next-step-vertical>.next-step-item-finish>.next-step-item-body>.next-step-item-content{margin-top:8px;min-height:8px;text-align:left;font-size:12px;line-height:1.5}.next-step-dot.next-step-vertical>.next-step-item-disabled .next-step-item-tail{width:1px;height:0;margin:8px auto}.next-step-dot.next-step-vertical>.next-step-item-disabled .next-step-item-tail .next-step-item-tail-underlay{height:100%;width:1px;position:relative}.next-step-dot.next-step-vertical>.next-step-item-disabled .next-step-item-tail .next-step-item-tail-overlay{position:absolute;top:0;height:100%;width:1px}.next-step-dot.next-step-vertical>.next-step-item-disabled>.next-step-item-body{position:absolute;top:0;left:6px;margin-left:8px}.next-step-dot.next-step-vertical>.next-step-item-disabled>.next-step-item-body>.next-step-item-title{margin-top:0;font-weight:700;text-align:left;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-dot.next-step-vertical>.next-step-item-disabled>.next-step-item-body>.next-step-item-content{margin-top:8px;min-height:8px;text-align:left;font-size:12px;line-height:1.5}.next-step-horizontal[dir=rtl]>.next-step-item{text-align:right}.next-step-arrow[dir=rtl] .next-step-item{height:32px;line-height:32px;margin-left:4px;margin-right:16px}.next-step-arrow[dir=rtl] .next-step-item:before{right:-16px;left:auto;border:16px solid transparent}.next-step-arrow[dir=rtl] .next-step-item:after{left:-32px;right:auto;border-top:16px solid transparent;border-bottom:16px solid transparent;border-right:16px solid transparent}.next-step-arrow[dir=rtl]>.next-step-item-wait{background:#f5f5f5}.next-step-arrow[dir=rtl]>.next-step-item-wait .next-step-item-node-dot{right:50%;left:auto}.next-step-arrow[dir=rtl]>.next-step-item-wait:before{border:16px solid #f5f5f5;border-right-color:transparent}.next-step-arrow[dir=rtl]>.next-step-item-wait:after{border-right-color:#f5f5f5;border-left-color:transparent}.next-step-arrow[dir=rtl]>.next-step-item-process{background:#209bfa}.next-step-arrow[dir=rtl]>.next-step-item-process .next-step-item-node-dot{right:50%;left:auto}.next-step-arrow[dir=rtl]>.next-step-item-process:before{border:16px solid #209bfa;border-right-color:transparent}.next-step-arrow[dir=rtl]>.next-step-item-process:after{border-right-color:#209bfa;border-left-color:transparent}.next-step-arrow[dir=rtl]>.next-step-item-finish{background:#add9ff}.next-step-arrow[dir=rtl]>.next-step-item-finish .next-step-item-node-dot{right:50%;left:auto}.next-step-arrow[dir=rtl]>.next-step-item-finish:before{border:16px solid #add9ff;border-right-color:transparent}.next-step-arrow[dir=rtl]>.next-step-item-finish:after{border-right-color:#add9ff;border-left-color:transparent}.next-step-arrow[dir=rtl] .next-step-item-disabled{background:#fafafa}.next-step-arrow[dir=rtl] .next-step-item-disabled .next-step-item-node-dot{right:50%;left:auto}.next-step-arrow[dir=rtl] .next-step-item-disabled:before{border:16px solid #fafafa;border-right-color:transparent}.next-step-arrow[dir=rtl] .next-step-item-disabled:after{border-right-color:#fafafa;border-left-color:transparent}.next-step-arrow[dir=rtl] .next-step-item-first{margin-right:0}.next-step-arrow[dir=rtl] .next-step-item-last{margin-left:0}.next-step-circle[dir=rtl] .next-step-item-disabled .next-step-item-node-dot,.next-step-circle[dir=rtl]>.next-step-item-finish .next-step-item-node-dot,.next-step-circle[dir=rtl]>.next-step-item-process .next-step-item-node-dot,.next-step-circle[dir=rtl]>.next-step-item-wait .next-step-item-node-dot{right:50%;left:auto}.next-step-circle[dir=rtl].next-step-horizontal>.next-step-item-disabled>.next-step-item-body,.next-step-circle[dir=rtl].next-step-horizontal>.next-step-item-finish>.next-step-item-body,.next-step-circle[dir=rtl].next-step-horizontal>.next-step-item-process>.next-step-item-body,.next-step-circle[dir=rtl].next-step-horizontal>.next-step-item-wait>.next-step-item-body{right:-26px;left:auto}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-wait .next-step-item-body{left:auto;right:0;text-align:right}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-wait .next-step-item-body .next-step-item-title{padding-left:8px;padding-right:0}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-wait .next-step-item-tail{left:0;right:auto}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-process .next-step-item-body{left:auto;right:0;text-align:right}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-process .next-step-item-body .next-step-item-title{padding-left:8px;padding-right:0}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-process .next-step-item-tail{left:0;right:auto}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-finish .next-step-item-body{left:auto;right:0;text-align:right}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-finish .next-step-item-body .next-step-item-title{padding-left:8px;padding-right:0}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-finish .next-step-item-tail{left:0;right:auto}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-disabled .next-step-item-body{left:auto;right:0;text-align:right}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-disabled .next-step-item-body .next-step-item-title{padding-left:8px;padding-right:0}.next-step-circle[dir=rtl].next-step-horizontal.next-step-label-horizontal>.next-step-item-disabled .next-step-item-tail{left:0;right:auto}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-wait>.next-step-item-body{right:16px;left:auto;margin-right:8px;margin-left:0}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-wait>.next-step-item-body>.next-step-item-title{text-align:right;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-wait>.next-step-item-body>.next-step-item-content{text-align:right}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-process>.next-step-item-body{right:16px;left:auto;margin-right:8px;margin-left:0}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-process>.next-step-item-body>.next-step-item-title{text-align:right;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-process>.next-step-item-body>.next-step-item-content{text-align:right}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-finish>.next-step-item-body{right:16px;left:auto;margin-right:8px;margin-left:0}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-finish>.next-step-item-body>.next-step-item-title{text-align:right;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-finish>.next-step-item-body>.next-step-item-content{text-align:right}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-disabled>.next-step-item-body{right:16px;left:auto;margin-right:8px;margin-left:0}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-disabled>.next-step-item-body>.next-step-item-title{text-align:right;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-circle[dir=rtl].next-step-vertical>.next-step-item-disabled>.next-step-item-body>.next-step-item-content{text-align:right}.next-step-dot[dir=rtl] .next-step-item-disabled .next-step-item-node-dot,.next-step-dot[dir=rtl]>.next-step-item-finish .next-step-item-node-dot,.next-step-dot[dir=rtl]>.next-step-item-process .next-step-item-node-dot,.next-step-dot[dir=rtl]>.next-step-item-wait .next-step-item-node-dot{right:50%;left:auto}.next-step-dot[dir=rtl].next-step-horizontal>.next-step-item-disabled>.next-step-item-body,.next-step-dot[dir=rtl].next-step-horizontal>.next-step-item-finish>.next-step-item-body,.next-step-dot[dir=rtl].next-step-horizontal>.next-step-item-process>.next-step-item-body,.next-step-dot[dir=rtl].next-step-horizontal>.next-step-item-wait>.next-step-item-body{right:-36px;left:auto}.next-step-dot[dir=rtl].next-step-vertical{padding:0 4px 0 0}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-wait>.next-step-item-body{right:6px;left:auto;margin-right:8px;margin-left:0}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-wait>.next-step-item-body>.next-step-item-title{text-align:right;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-wait>.next-step-item-body>.next-step-item-content{text-align:right}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-process>.next-step-item-body{right:6px;left:auto;margin-right:8px;margin-left:0}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-process>.next-step-item-body>.next-step-item-title{text-align:right;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-process>.next-step-item-body>.next-step-item-content{text-align:right}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-finish>.next-step-item-body{right:6px;left:auto;margin-right:8px;margin-left:0}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-finish>.next-step-item-body>.next-step-item-title{text-align:right;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-finish>.next-step-item-body>.next-step-item-content{text-align:right}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-disabled>.next-step-item-body{right:6px;left:auto;margin-right:8px;margin-left:0}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-disabled>.next-step-item-body>.next-step-item-title{text-align:right;font-family:Roboto,Helvetica Neue,Helvetica,Tahoma,Arial,PingFang SC,Microsoft YaHei;font-size:14px;line-height:1.2857142}.next-step-dot[dir=rtl].next-step-vertical>.next-step-item-disabled>.next-step-item-body>.next-step-item-content{text-align:right}.next-switch:after[dir=rtl]{content:" ";transition:all .1s linear;transform-origin:right center}.next-switch-medium[dir=rtl]:after,.next-switch-small[dir=rtl]:after{right:100%;transform:translateX(100%)}.next-switch-on[dir=rtl]>.next-switch-children{color:#fff}.next-switch-on[disabled][dir=rtl]:after{left:0;right:100%;box-shadow:1px 1px 3px 0 rgba(0,0,0,.12)}.next-switch-off[dir=rtl]:after{right:0;transform:translateX(0);box-shadow:-1px 0 3px 0 rgba(0,0,0,.12)}.next-switch-off.next-switch-small[dir=rtl]>.next-switch-children,.next-switch-off[dir=rtl]>.next-switch-children{right:auto}.next-switch{outline:none;text-align:left;cursor:pointer;vertical-align:middle;user-select:none;overflow:hidden;transition:background .1s cubic-bezier(.4,0,.2,1),border-color .1s cubic-bezier(.4,0,.2,1)}.next-switch,.next-switch *,.next-switch :after,.next-switch :before{box-sizing:border-box}.next-switch-btn{transition:all .15s cubic-bezier(.4,0,.2,1);transform-origin:left center}.next-switch:after{content:""}.next-switch-loading{pointer-events:none}.next-switch-loading .next-icon-loading{color:#209bfa;text-align:center;transform:translate(-1px,-1px)}.next-switch-loading .next-icon-loading.next-switch-inner-icon:before{vertical-align:top}.next-switch-medium{position:relative;display:inline-block;border:2px solid transparent;width:48px;height:28px;border-radius:12px}.next-switch-medium:not([disabled]):active .next-switch-btn{width:31.2px}.next-switch-medium.next-switch-on:not([disabled]):active .next-switch-btn{left:calc(100% - 31.2px)}.next-switch-medium.next-switch-auto-width{min-width:48px;width:auto;overflow:initial}.next-switch-medium:after{content:""}.next-switch-medium>.next-switch-btn{border:1px solid transparent;position:absolute;left:calc(100% - 24px);width:24px;height:24px;border-radius:12px;box-sizing:border-box}.next-switch-medium>.next-switch-children{height:24px;line-height:24px;font-size:14px}.next-switch-medium.next-switch.next-switch-on>.next-switch-children{margin:0 32px 0 8px}.next-switch-medium.next-switch.next-switch-off>.next-switch-children{margin:0 8px 0 32px}.next-switch-medium.next-switch-loading .next-icon-loading{line-height:24px;height:24px;width:24px}.next-switch-medium.next-switch-loading .next-icon-loading .next-icon-remote,.next-switch-medium.next-switch-loading .next-icon-loading:before{width:16px;font-size:16px;line-height:inherit}.next-switch-small{position:relative;display:inline-block;border:2px solid transparent;width:44px;height:24px;border-radius:12px}.next-switch-small:not([disabled]):active .next-switch-btn{width:26px}.next-switch-small.next-switch-on:not([disabled]):active .next-switch-btn{left:calc(100% - 26px)}.next-switch-small.next-switch-auto-width{min-width:44px;width:auto;overflow:initial}.next-switch-small:after{content:""}.next-switch-small>.next-switch-btn{border:1px solid transparent;position:absolute;left:calc(100% - 20px);width:20px;height:20px;border-radius:12px;box-sizing:border-box}.next-switch-small>.next-switch-children{height:20px;line-height:20px;font-size:12px}.next-switch-small.next-switch.next-switch-on>.next-switch-children{margin:0 28px 0 8px}.next-switch-small.next-switch.next-switch-off>.next-switch-children{margin:0 8px 0 28px}.next-switch-small.next-switch-loading .next-icon-loading{line-height:20px;height:20px;width:20px}.next-switch-small.next-switch-loading .next-icon-loading .next-icon-remote,.next-switch-small.next-switch-loading .next-icon-loading:before{width:12px;font-size:12px;line-height:inherit}.next-switch-on{background-color:#209bfa}.next-switch-on .next-switch-btn{box-shadow:1px 1px 3px 0 rgba(0,0,0,.12);background-color:#fff;border-color:transparent}.next-switch-on>.next-switch-children{color:#fff}.next-switch-on.hover,.next-switch-on:focus,.next-switch-on:hover{background-color:#1274e7}.next-switch-on.hover .next-switch-btn,.next-switch-on:focus .next-switch-btn,.next-switch-on:hover .next-switch-btn{background-color:#fff}.next-switch-on[disabled]{background-color:#f5f5f5;cursor:not-allowed}.next-switch-on[disabled] .next-switch-btn{right:0;box-shadow:1px 1px 3px 0 rgba(0,0,0,.12);background-color:#fafafa;border-color:transparent}.next-switch-on[disabled]>.next-switch-children{color:#ccc}.next-switch-off,.next-switch-off.hover,.next-switch-off:focus,.next-switch-off:hover{background-color:#f5f5f5;border-color:#f5f5f5}.next-switch-off .next-switch-btn{left:0;box-shadow:1px 1px 3px 0 rgba(0,0,0,.12);background-color:#fff;border-color:transparent}.next-switch-off.hover .next-switch-btn,.next-switch-off:focus .next-switch-btn,.next-switch-off:hover .next-switch-btn{background-color:#fff}.next-switch-off>.next-switch-children{color:#999}.next-switch-off[disabled]{background-color:#f5f5f5;cursor:not-allowed}.next-switch-off[disabled] .next-switch-btn{box-shadow:1px 1px 3px 0 rgba(0,0,0,.12);background-color:#fafafa;border-color:transparent}.next-switch-off[disabled]>.next-switch-children{color:#ddd}.next-tabs{width:100%}.next-tabs,.next-tabs *,.next-tabs :after,.next-tabs :before{box-sizing:border-box}.next-tabs-bar{outline:none}.next-tabs-bar-popup{overflow-y:auto;max-height:480px}.next-tabs-nav-container{position:relative}.next-tabs-nav-container:after{visibility:hidden;display:block;height:0;font-size:0;content:" ";clear:both}.next-tabs-nav-wrap{overflow:hidden}.next-tabs-nav-scroll{overflow:hidden;white-space:nowrap}.next-tabs-scrollable .next-tabs-nav-scroll{overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch}.next-tabs-scrollable .next-tabs-nav-scroll::-webkit-scrollbar{display:none!important;width:0!important;height:0!important;-webkit-appearance:none;opacity:0!important}.next-tabs-nav{display:inline-block;position:relative;transition:all .3s ease;list-style:none;padding:0;margin:0}.next-tabs-nav-appear,.next-tabs-nav-enter{animation:fadeInLeft .4s cubic-bezier(.78,.14,.15,.86);animation-fill-mode:both}.next-tabs-nav-leave{animation:fadeOutLeft .2s cubic-bezier(.78,.14,.15,.86);animation-fill-mode:both}.next-tabs-nav.next-disable-animation .next-tabs-tab:before{transition:none}.next-tabs-tab{display:inline-block;position:relative;transition:all .1s linear}.next-tabs-tab-inner{position:relative;cursor:pointer;text-decoration:none}.next-tabs-tab:before{content:"";position:absolute;transition:all .3s ease}.next-tabs-tab.active{font-weight:400}.next-tabs-tab .next-tabs-tab-close{color:#666}.next-tabs-tab .next-tabs-tab-close:hover{color:#333}.next-tabs-tab .next-tabs-tab-close:focus{outline:none}.next-tabs-tab.active .next-tabs-tab-close{color:#209bfa}.next-tabs-tab.disabled .next-tabs-tab-close{color:#e6e6e6}.next-tabs-tab:focus{outline:none}.next-tabs-tabpane{visibility:hidden;opacity:0}.next-tabs-tabpane.active{visibility:visible;opacity:1;height:auto}.next-tabs-tabpane.hidden{overflow:hidden;height:0!important;margin:0!important;padding:0!important;border:0!important}.next-tabs-btn-down,.next-tabs-btn-next,.next-tabs-btn-prev{position:absolute;top:0;cursor:pointer;padding:0;border:0;outline:none;height:100%;background:transparent;border-color:transparent}.next-tabs-btn-down,.next-tabs-btn-down.visited,.next-tabs-btn-down:link,.next-tabs-btn-down:visited,.next-tabs-btn-next,.next-tabs-btn-next.visited,.next-tabs-btn-next:link,.next-tabs-btn-next:visited,.next-tabs-btn-prev,.next-tabs-btn-prev.visited,.next-tabs-btn-prev:link,.next-tabs-btn-prev:visited{color:#666}.next-tabs-btn-down.active,.next-tabs-btn-down.hover,.next-tabs-btn-down:active,.next-tabs-btn-down:focus,.next-tabs-btn-down:hover,.next-tabs-btn-next.active,.next-tabs-btn-next.hover,.next-tabs-btn-next:active,.next-tabs-btn-next:focus,.next-tabs-btn-next:hover,.next-tabs-btn-prev.active,.next-tabs-btn-prev.hover,.next-tabs-btn-prev:active,.next-tabs-btn-prev:focus,.next-tabs-btn-prev:hover{color:#333;background:transparent;border-color:transparent;text-decoration:none}.next-tabs-btn-down.disabled,.next-tabs-btn-next.disabled,.next-tabs-btn-prev.disabled{cursor:not-allowed;color:#e6e6e6}.next-tabs-btn-next{right:8px}.next-tabs-btn-prev{right:32px}.next-tabs-btn-down{right:8px}.next-tabs .next-tab-icon-dropdown:before{content:"î½"}.next-tabs .next-tab-icon-prev:before{content:"î"}.next-tabs .next-tab-icon-next:before{content:"î"}.next-tabs-content{overflow:hidden}.next-tabs-vertical>.next-tabs-bar .next-tabs-nav{width:100%}.next-tabs-vertical>.next-tabs-bar .next-tabs-tab{display:block}.next-tabs.next-medium .next-tabs-nav-container-scrolling{padding-right:60px}.next-tabs.next-medium .next-tabs-tab-inner{font-size:14px;padding:20px 16px}.next-tabs.next-medium .next-tabs-tab-inner .next-icon{line-height:1}.next-tabs.next-medium .next-tabs-tab-inner .next-icon .next-icon-remote,.next-tabs.next-medium .next-tabs-tab-inner .next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-tabs.next-medium .next-tabs-tab-inner .next-tabs-tab-close{margin-left:8px}.next-tabs.next-medium .next-tabs-tab-inner .next-tabs-tab-close .next-icon-remote,.next-tabs.next-medium .next-tabs-tab-inner .next-tabs-tab-close:before{width:12px;font-size:12px;line-height:inherit}.next-tabs.next-medium .next-tabs-btn-down .next-icon .next-icon-remote,.next-tabs.next-medium .next-tabs-btn-down .next-icon:before,.next-tabs.next-medium .next-tabs-btn-next .next-icon .next-icon-remote,.next-tabs.next-medium .next-tabs-btn-next .next-icon:before,.next-tabs.next-medium .next-tabs-btn-prev .next-icon .next-icon-remote,.next-tabs.next-medium .next-tabs-btn-prev .next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-tabs.next-small .next-tabs-nav-container-scrolling{padding-right:56px}.next-tabs.next-small .next-tabs-tab-inner{font-size:12px;padding:8px 12px}.next-tabs.next-small .next-tabs-tab-inner .next-icon{line-height:1}.next-tabs.next-small .next-tabs-tab-inner .next-icon .next-icon-remote,.next-tabs.next-small .next-tabs-tab-inner .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-tabs.next-small .next-tabs-tab-inner .next-tabs-tab-close{margin-left:8px}.next-tabs.next-small .next-tabs-tab-inner .next-tabs-tab-close .next-icon-remote,.next-tabs.next-small .next-tabs-tab-inner .next-tabs-tab-close:before{width:8px;font-size:8px;line-height:inherit}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-tabs.next-small .next-tabs-tab-inner .next-tabs-tab-close{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-tabs.next-small .next-tabs-tab-inner .next-tabs-tab-close:before{width:16px;font-size:16px}}.next-tabs.next-small .next-tabs-btn-down .next-icon .next-icon-remote,.next-tabs.next-small .next-tabs-btn-down .next-icon:before,.next-tabs.next-small .next-tabs-btn-next .next-icon .next-icon-remote,.next-tabs.next-small .next-tabs-btn-next .next-icon:before,.next-tabs.next-small .next-tabs-btn-prev .next-icon .next-icon-remote,.next-tabs.next-small .next-tabs-btn-prev .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-tabs-pure>.next-tabs-bar{border-bottom:1px solid #e6e6e6;background-color:transparent}.next-tabs-pure>.next-tabs-bar .next-tabs-nav-container{margin-bottom:-1px;box-shadow:none}.next-tabs-pure>.next-tabs-bar .next-tabs-nav-container .next-tabs-tab{color:#666;background-color:transparent}.next-tabs-pure>.next-tabs-bar .next-tabs-nav-container .next-tabs-tab:hover{cursor:pointer;color:#333;background-color:transparent}.next-tabs-pure>.next-tabs-bar .next-tabs-nav-container .next-tabs-tab.active{z-index:1;color:#209bfa;background-color:transparent}.next-tabs-pure>.next-tabs-bar .next-tabs-nav-container .next-tabs-tab.disabled{pointer-events:none;cursor:default;color:#e6e6e6;background:transparent}.next-tabs-pure>.next-tabs-bar .next-tabs-nav-container .next-tabs-tab:before{border-radius:0;width:0;border-bottom:2px solid #209bfa;left:50%;bottom:0}.next-tabs-pure>.next-tabs-bar .next-tabs-nav-container .next-tabs-tab.active:before{width:100%;left:0}.next-tabs-wrapped>.next-tabs-bar{background:transparent}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab{color:#666;background-color:#f9f9f9}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab:hover{cursor:pointer;color:#333;background-color:#f5f5f5}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab.active{z-index:1;color:#209bfa;background-color:#fff}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab.disabled{pointer-events:none;cursor:default;color:#ccc;background:#fafafa}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab .next-tabs-tab-close{color:#666}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab .next-tabs-tab-close:hover{color:#333}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab .next-tabs-tab-close:focus{outline:none}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab.active .next-tabs-tab-close{color:#209bfa}.next-tabs-wrapped>.next-tabs-bar .next-tabs-tab.disabled .next-tabs-tab-close{color:#e6e6e6}.next-tabs-wrapped:after,.next-tabs-wrapped:before{content:"";display:table}.next-tabs-wrapped:after{clear:both}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar,.next-tabs-wrapped>.next-tabs-content{position:relative}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-nav-extra{position:absolute;top:50%;right:0;transform:translateY(-50%)}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-tab{margin-right:4px;border-radius:3px 3px 0 0;border:1px solid #e6e6e6}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-tab:hover{border-color:#ddd}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-tab.active{border-color:#e6e6e6 #e6e6e6 #fff}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-tab:before{border-radius:3px;width:0;border-top:2px solid #209bfa;left:50%;top:-1px}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-tab.active:before{width:calc(100% - 6px);left:3px}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-tab.active{border-width:1px}.next-tabs-wrapped.next-tabs-top>.next-tabs-bar:before{content:"";position:absolute;top:100%;width:100%;height:0;border-bottom:1px solid #e6e6e6;transform:translateY(-1px);display:block}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar{position:relative}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar .next-tabs-nav-extra{position:absolute;top:50%;right:0;transform:translateY(-50%)}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar .next-tabs-tab{margin-right:4px;border:1px solid #e6e6e6;border-radius:0 0 3px 3px}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar .next-tabs-tab:hover{border-color:#ddd}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar .next-tabs-tab.active{border-color:#fff #e6e6e6 #e6e6e6}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar .next-tabs-tab:before{border-radius:3px;width:0;border-bottom:2px solid #209bfa;left:50%;bottom:-1px}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar .next-tabs-tab.active:before{width:calc(100% - 6px);left:3px}.next-tabs-wrapped.next-tabs-bottom>.next-tabs-content{top:1px;border-bottom:1px solid #e6e6e6}.next-tabs-wrapped.next-tabs-left>.next-tabs-bar{float:left}.next-tabs-wrapped.next-tabs-left>.next-tabs-bar .next-tabs-tab{float:none;margin-bottom:4px;border-radius:3px 0 0 3px;border:1px solid #e6e6e6}.next-tabs-wrapped.next-tabs-left>.next-tabs-bar .next-tabs-tab:hover{border-color:#ddd}.next-tabs-wrapped.next-tabs-left>.next-tabs-bar .next-tabs-tab.active{border-color:#e6e6e6 #fff #e6e6e6 #e6e6e6}.next-tabs-wrapped.next-tabs-left>.next-tabs-bar .next-tabs-tab:before{border-radius:3px;height:0;border-left:2px solid #209bfa;top:50%;left:-1px}.next-tabs-wrapped.next-tabs-left>.next-tabs-bar .next-tabs-tab.active:before{height:calc(100% - 6px);top:3px}.next-tabs-wrapped.next-tabs-left>.next-tabs-bar .next-tabs-tab.active{border-width:1px}.next-tabs-wrapped.next-tabs-left>.next-tabs-content{right:1px;border-left:1px solid #e6e6e6}.next-tabs-wrapped.next-tabs-right>.next-tabs-bar{float:right}.next-tabs-wrapped.next-tabs-right>.next-tabs-bar .next-tabs-tab{float:none;margin-bottom:4px;border-radius:0 3px 3px 0;border:1px solid #e6e6e6}.next-tabs-wrapped.next-tabs-right>.next-tabs-bar .next-tabs-tab:hover{border-color:#ddd}.next-tabs-wrapped.next-tabs-right>.next-tabs-bar .next-tabs-tab.active{border-color:#e6e6e6 #e6e6e6 #e6e6e6 #fff}.next-tabs-wrapped.next-tabs-right>.next-tabs-bar .next-tabs-tab:before{border-radius:3px;height:0;border-right:2px solid #209bfa;top:50%;right:-1px}.next-tabs-wrapped.next-tabs-right>.next-tabs-bar .next-tabs-tab.active:before{height:calc(100% - 6px);top:3px}.next-tabs-wrapped.next-tabs-right>.next-tabs-bar .next-tabs-tab.active{border-width:1px}.next-tabs-wrapped.next-tabs-right>.next-tabs-content{right:-1px;border-right:1px solid #e6e6e6}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab{transition:background-color .1s linear;border:1px solid #ddd;border-right-color:transparent;margin-right:-1px;color:#333;background-color:#f9f9f9}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab:first-child{border-radius:3px 0 0 3px}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab:last-child{border-radius:0 3px 3px 0;border-right:1px solid #ddd}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab.active{border-right:1px solid;border-color:#209bfa}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab.disabled{border-color:#eee}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab:hover{z-index:2;border-right:1px solid;border-color:#ddd;cursor:pointer;color:#333;background-color:#f5f5f5}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab.active{z-index:1;color:#fff;background-color:#209bfa}.next-tabs-capsule>.next-tabs-bar .next-tabs-tab.disabled{pointer-events:none;cursor:default;color:#ccc;background:#fafafa}.next-tabs-text>.next-tabs-bar .next-tabs-tab{color:#666;background-color:transparent}.next-tabs-text>.next-tabs-bar .next-tabs-tab:hover{cursor:pointer;color:#333;background-color:transparent}.next-tabs-text>.next-tabs-bar .next-tabs-tab.active{z-index:1;color:#209bfa;background-color:transparent}.next-tabs-text>.next-tabs-bar .next-tabs-tab.disabled{pointer-events:none;cursor:default;color:#ccc;background:transparent}.next-tabs-text>.next-tabs-bar .next-tabs-tab:not(:last-child):after{content:"";position:absolute;right:0;top:calc(50% - 4px);width:1px;height:8px;background-color:#e6e6e6}.next-tabs-pure>.next-tabs-bar{position:relative}.next-tabs-pure>.next-tabs-bar .next-tabs-nav-extra{position:absolute;top:50%;right:0;transform:translateY(-50%)}.next-tabs-capsule>.next-tabs-bar{position:relative}.next-tabs-capsule>.next-tabs-bar .next-tabs-nav-extra{position:absolute;top:50%;right:0;transform:translateY(-50%)}.next-tabs-text>.next-tabs-bar{position:relative}.next-tabs-text>.next-tabs-bar .next-tabs-nav-extra{position:absolute;top:50%;right:0;transform:translateY(-50%)}.next-tabs[dir=rtl].next-medium .next-tabs-nav-container-scrolling{padding-left:60px;padding-right:0}.next-tabs[dir=rtl].next-medium .next-tabs-tab-close{padding-right:8px;padding-left:0}.next-tabs[dir=rtl].next-small .next-tabs-nav-container-scrolling{padding-left:56px;padding-right:0}.next-tabs[dir=rtl].next-small .next-tabs-tab-close{padding-right:8px;padding-left:0}.next-tabs[dir=rtl].next-tabs-wrapped.next-tabs-bottom>.next-tabs-bar .next-tabs-nav-extra,.next-tabs[dir=rtl].next-tabs-wrapped.next-tabs-top>.next-tabs-bar .next-tabs-nav-extra,.next-tabs[dir=rtl]>.next-tabs-bar .next-tabs-nav-extra{right:auto;left:0}.next-tabs[dir=rtl].next-tabs-capsule>.next-tabs-bar .next-tabs-tab{border:1px solid #ddd;border-left:0}.next-tabs[dir=rtl].next-tabs-capsule>.next-tabs-bar .next-tabs-tab:first-child{border-left:0;border-radius:0 3px 3px 0}.next-tabs[dir=rtl].next-tabs-capsule>.next-tabs-bar .next-tabs-tab:last-child{border-radius:3px 0 0 3px;border-left:1px solid #ddd}.next-tabs[dir=rtl].next-tabs-capsule>.next-tabs-bar .next-tabs-tab.active{margin-left:-1px;margin-right:auto;border-left:1px solid;border-color:#209bfa}.next-tabs[dir=rtl] .next-tabs-btn-next{left:8px;right:auto}.next-tabs[dir=rtl] .next-tabs-btn-prev{left:32px;right:auto}.next-tabs[dir=rtl] .next-tabs-btn-down{left:8px;right:auto}.next-tabs-text[dir=rtl]>.next-tabs-bar .next-tabs-tab:not(:last-child):after{content:"";position:absolute;left:0;right:auto}@keyframes fadeInRightForTag{0%{opacity:0;transform:rotate(45deg) translateX(20px)}to{opacity:1;transform:rotate(45deg) translateX(0)}}.next-tag>.next-tag-body{overflow:hidden;text-overflow:ellipsis}.next-tag-checkable.next-tag-level-secondary{color:#333;border-color:transparent;background-color:transparent}.next-tag-checkable.next-tag-level-secondary:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-secondary:not(.disabled):not([disabled]):hover{color:#209bfa}.next-tag-default.next-tag-level-primary{color:#666;border-color:#f5f5f5;background-color:#f5f5f5}.next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]).hover,.next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]):hover{color:#333;border-color:#f2f2f2;background-color:#f2f2f2}.next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]).hover>.next-tag-close-btn,.next-tag-default.next-tag-level-primary:not(.disabled):not([disabled]):hover>.next-tag-close-btn{color:#333}.disabled.next-tag-default.next-tag-level-primary,[disabled].next-tag-default.next-tag-level-primary{color:#ccc;border-color:#fafafa;background-color:#fafafa}.disabled.next-tag-default.next-tag-level-primary>.next-tag-close-btn,[disabled].next-tag-default.next-tag-level-primary>.next-tag-close-btn{color:#ccc}.next-tag-default.next-tag-level-primary>.next-tag-close-btn{color:#666}.next-tag-closable.next-tag-level-primary{color:#666;border-color:#f5f5f5;background-color:#f5f5f5}.next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]).hover,.next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]):hover{color:#333;border-color:#f2f2f2;background-color:#f2f2f2}.next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]).hover>.next-tag-close-btn,.next-tag-closable.next-tag-level-primary:not(.disabled):not([disabled]):hover>.next-tag-close-btn{color:#333}.disabled.next-tag-closable.next-tag-level-primary,[disabled].next-tag-closable.next-tag-level-primary{color:#ccc;border-color:#fafafa;background-color:#fafafa}.disabled.next-tag-closable.next-tag-level-primary>.next-tag-close-btn,[disabled].next-tag-closable.next-tag-level-primary>.next-tag-close-btn{color:#ccc}.next-tag-closable.next-tag-level-primary>.next-tag-close-btn{color:#666}.next-tag-checkable.next-tag-level-primary{color:#666;border-color:#f5f5f5;background-color:#f5f5f5}.next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]):hover{color:#333;border-color:#f2f2f2;background-color:#f2f2f2}.next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]).hover>.next-tag-close-btn,.next-tag-checkable.next-tag-level-primary:not(.disabled):not([disabled]):hover>.next-tag-close-btn{color:#333}.disabled.next-tag-checkable.next-tag-level-primary,[disabled].next-tag-checkable.next-tag-level-primary{color:#ccc;border-color:#fafafa;background-color:#fafafa}.disabled.next-tag-checkable.next-tag-level-primary>.next-tag-close-btn,[disabled].next-tag-checkable.next-tag-level-primary>.next-tag-close-btn{color:#ccc}.next-tag-checkable.next-tag-level-primary>.next-tag-close-btn{color:#666}.next-tag-checkable.next-tag-level-primary.checked{color:#fff;border-color:#209bfa;background-color:#209bfa}.next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]):hover{color:#fff;border-color:#1274e7;background-color:#1274e7}.next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]).hover>.next-tag-close-btn,.next-tag-checkable.next-tag-level-primary.checked:not(.disabled):not([disabled]):hover>.next-tag-close-btn{color:#fff}.disabled.next-tag-checkable.next-tag-level-primary.checked,[disabled].next-tag-checkable.next-tag-level-primary.checked{color:#ccc;border-color:#fafafa;background-color:#fafafa}.disabled.next-tag-checkable.next-tag-level-primary.checked>.next-tag-close-btn,.next-tag-checkable.next-tag-level-primary.checked>.next-tag-close-btn,[disabled].next-tag-checkable.next-tag-level-primary.checked>.next-tag-close-btn{color:#fff}.next-tag-default.next-tag-level-normal{color:#666;border-color:#ddd;background-color:transparent}.next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]).hover,.next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]):hover{color:#333;border-color:#ccc;background-color:transparent}.next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]).hover>.next-tag-close-btn,.next-tag-default.next-tag-level-normal:not(.disabled):not([disabled]):hover>.next-tag-close-btn{color:#333}.disabled.next-tag-default.next-tag-level-normal,[disabled].next-tag-default.next-tag-level-normal{color:#ccc;border-color:#eee;background-color:#fafafa}.disabled.next-tag-default.next-tag-level-normal>.next-tag-close-btn,[disabled].next-tag-default.next-tag-level-normal>.next-tag-close-btn{color:#ccc}.next-tag-default.next-tag-level-normal>.next-tag-close-btn{color:#666}.next-tag-closable.next-tag-level-normal{color:#666;border-color:#ddd;background-color:transparent}.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]).hover,.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):hover{color:#333;border-color:#ccc;background-color:transparent}.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]).hover>.next-tag-close-btn,.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):hover>.next-tag-close-btn{color:#333}.disabled.next-tag-closable.next-tag-level-normal,[disabled].next-tag-closable.next-tag-level-normal{color:#ccc;border-color:#eee;background-color:transparent}.disabled.next-tag-closable.next-tag-level-normal>.next-tag-close-btn,[disabled].next-tag-closable.next-tag-level-normal>.next-tag-close-btn{color:#ccc}.next-tag-closable.next-tag-level-normal>.next-tag-close-btn{color:#666}.next-tag-checkable.next-tag-level-normal.checked{color:#209bfa;border-color:#209bfa;background-color:transparent}.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]):hover{color:#1274e7;border-color:#1274e7;background-color:transparent}.next-tag-checkable.next-tag-level-secondary.checked{color:#209bfa;border-color:#209bfa;background-color:transparent}.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]):hover{color:#1274e7;border-color:#1274e7;background-color:transparent}.next-tag-checkable.next-tag-level-secondary.checked:before{position:absolute;content:"";-webkit-font-smoothing:antialiased;background-color:#209bfa;transform:rotate(45deg)}.next-tag-checkable.next-tag-level-secondary.checked:after{position:absolute;font-family:NextIcon;-webkit-font-smoothing:antialiased;content:"î²";transform:scale(.6);color:#fff}.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]).hover:before,.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]):hover:before{background-color:#1274e7}.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]).hover:after,.next-tag-checkable.next-tag-level-secondary.checked:not(.disabled):not([disabled]):hover:after{color:#fff}.next-tag-checkable.next-tag-level-secondary.checked:disabled:before,[disabled].next-tag-checkable.next-tag-level-secondary.checked:before{background-color:#eee}.next-tag-checkable.next-tag-level-secondary.checked:disabled:after,[disabled].next-tag-checkable.next-tag-level-secondary.checked:after{color:#fff}.next-tag-checkable.next-tag-level-normal{color:#666;border-color:#ddd;background-color:transparent}.next-tag-checkable.next-tag-level-normal:not(.disabled):not([disabled]).hover,.next-tag-checkable.next-tag-level-normal:not(.disabled):not([disabled]):hover{color:#333;border-color:#ddd;background-color:transparent}.disabled.next-tag-checkable.next-tag-level-normal,[disabled].next-tag-checkable.next-tag-level-normal{color:#ccc;border-color:#eee;background-color:#fafafa}.next-tag-checkable.next-tag-level-normal.checked:before{position:absolute;content:"";-webkit-font-smoothing:antialiased;background-color:#209bfa;transform:rotate(45deg)}.next-tag-checkable.next-tag-level-normal.checked:after{position:absolute;font-family:NextIcon;-webkit-font-smoothing:antialiased;content:"î²";transform:scale(.6);color:#fff}.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]).hover:before,.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]):hover:before{background-color:#1274e7}.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]).hover:after,.next-tag-checkable.next-tag-level-normal.checked:not(.disabled):not([disabled]):hover:after{color:#fff}.next-tag-checkable.next-tag-level-normal.checked:disabled:before,[disabled].next-tag-checkable.next-tag-level-normal.checked:before{background-color:#eee}.next-tag-checkable.next-tag-level-normal.checked:disabled:after,[disabled].next-tag-checkable.next-tag-level-normal.checked:after{color:#fff}.next-tag-closable.next-tag-level-normal:before{position:absolute;content:"";-webkit-font-smoothing:antialiased;background-color:#ddd;transform:rotate(45deg)}.next-tag-closable.next-tag-level-normal:after{position:absolute;font-family:NextIcon;-webkit-font-smoothing:antialiased;content:"î¦";transform:scale(.6);color:#fff}.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]).hover:before,.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):hover:before{background-color:#ccc}.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]).hover:after,.next-tag-closable.next-tag-level-normal:not(.disabled):not([disabled]):hover:after{color:#fff}.next-tag-closable.next-tag-level-normal:disabled:before,[disabled].next-tag-closable.next-tag-level-normal:before{background-color:#eee}.next-tag-closable.next-tag-level-normal:disabled:after,[disabled].next-tag-closable.next-tag-level-normal:after{color:#fff}.next-tag-group .next-tag-large,.next-tag-group .next-tag-medium{margin-right:8px;margin-bottom:8px}.next-tag-group .next-tag-small{margin-right:4px;margin-bottom:4px}.next-tag{display:inline-block;max-width:100%;vertical-align:middle;border-width:1px;border-radius:3px;box-shadow:none;border-style:solid;overflow:hidden;white-space:nowrap;transition:all .1s linear;font-size:0;outline:0}.next-tag,.next-tag *,.next-tag :after,.next-tag :before{box-sizing:border-box}.next-tag>.next-tag-body{position:relative;display:inline-block;height:100%;text-align:center;vertical-align:middle;max-width:100%;cursor:default}.next-tag>.next-tag-body>a{text-decoration:none;color:inherit}.next-tag>.next-tag-body>a:before{content:" ";position:absolute;display:block;top:0;left:0;right:0;bottom:0}.next-tag>.next-tag-body .next-icon{line-height:1;vertical-align:baseline}.next-tag>.next-tag-body .next-icon:before{font-size:inherit}.next-tag.next-tag-body-pointer{cursor:pointer}.next-tag.disabled,.next-tag[disabled]{cursor:not-allowed;pointer-events:none}.next-tag-blue{background-color:#4494f9;border-color:#4494f9;color:#fff}.next-tag-blue-inverse{background-color:rgba(68,148,249,.25);border-color:#4494f9;color:#4494f9}.next-tag-green{background-color:#46bc15;border-color:#46bc15;color:#fff}.next-tag-green-inverse{background-color:rgba(70,188,21,.25);border-color:#46bc15;color:#46bc15}.next-tag-orange{background-color:#ff9300;border-color:#ff9300;color:#fff}.next-tag-orange-inverse{background-color:rgba(255,147,0,.25);border-color:#ff9300;color:#ff9300}.next-tag-red{background-color:#ff3000;border-color:#ff3000;color:#fff}.next-tag-red-inverse{background-color:rgba(255,48,0,.25);border-color:#ff3000;color:#ff3000}.next-tag-turquoise{background-color:#01c1b2;border-color:#01c1b2;color:#fff}.next-tag-turquoise-inverse{background-color:rgba(1,193,178,.25);border-color:#01c1b2;color:#01c1b2}.next-tag-yellow{background-color:#fccc12;border-color:#fccc12;color:#fff}.next-tag-yellow-inverse{background-color:rgba(252,204,18,.25);border-color:#fccc12;color:#fccc12}.next-tag-large{height:40px;padding:0;line-height:38px;font-size:0}.next-tag-large>.next-tag-body{font-size:16px;padding:0 16px;min-width:48px}.next-tag-large.next-tag-closable>.next-tag-body{padding:0 0 0 16px;max-width:calc(100% - 48px)}.next-tag-large[dir=rtl].next-tag-closable>.next-tag-body{padding:0 16px 0 0}.next-tag-large.next-tag-closable>.next-tag-close-btn{margin-left:16px;padding-right:16px}.next-tag-large.next-tag-closable>.next-tag-close-btn .next-icon .next-icon-remote,.next-tag-large.next-tag-closable>.next-tag-close-btn .next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-tag-large[dir=rtl]>.next-tag-close-btn{margin-right:16px;margin-left:0;padding-right:0;padding-left:16px}.next-tag-medium{height:32px;padding:0;line-height:30px;font-size:0}.next-tag-medium>.next-tag-body{font-size:14px;padding:0 12px;min-width:40px}.next-tag-medium.next-tag-closable>.next-tag-body{padding:0 0 0 12px;max-width:calc(100% - 36px)}.next-tag-medium[dir=rtl].next-tag-closable>.next-tag-body{padding:0 12px 0 0}.next-tag-medium.next-tag-closable>.next-tag-close-btn{margin-left:12px;padding-right:12px}.next-tag-medium.next-tag-closable>.next-tag-close-btn .next-icon .next-icon-remote,.next-tag-medium.next-tag-closable>.next-tag-close-btn .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-tag-medium[dir=rtl]>.next-tag-close-btn{margin-right:12px;margin-left:0;padding-right:0;padding-left:12px}.next-tag-small{height:24px;padding:0;line-height:22px;font-size:0}.next-tag-small>.next-tag-body{font-size:12px;padding:0 8px;min-width:28px}.next-tag-small.next-tag-closable>.next-tag-body{padding:0 0 0 8px;max-width:calc(100% - 24px)}.next-tag-small[dir=rtl].next-tag-closable>.next-tag-body{padding:0 8px 0 0}.next-tag-small.next-tag-closable>.next-tag-close-btn{margin-left:8px;padding-right:8px}.next-tag-small.next-tag-closable>.next-tag-close-btn .next-icon .next-icon-remote,.next-tag-small.next-tag-closable>.next-tag-close-btn .next-icon:before{width:8px;font-size:8px;line-height:inherit}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-tag-small.next-tag-closable>.next-tag-close-btn .next-icon{transform:scale(.5);margin-left:-4px;margin-right:-4px}.next-tag-small.next-tag-closable>.next-tag-close-btn .next-icon:before{width:16px;font-size:16px}}.next-tag-small[dir=rtl]>.next-tag-close-btn{margin-right:8px;margin-left:0;padding-right:0;padding-left:8px}.next-tag-default{cursor:default}.next-tag-closable{position:relative}.next-tag-closable>.next-tag-close-btn{display:inline-block;vertical-align:middle;height:100%;text-align:center;cursor:pointer}.next-tag-checkable{cursor:pointer;position:relative;border-radius:3px}.next-tag-checkable.checked:before{animation:fadeInRightForTag .4s cubic-bezier(.78,.14,.15,.86)}.next-tag-checkable.checked:after{animation:zoomIn .4s cubic-bezier(.78,.14,.15,.86)}.next-tag-checkable.next-tag-small:not(.next-tag-level-primary):before{right:-10px;bottom:-10px;width:20px;height:20px}.next-tag-checkable.next-tag-small:not(.next-tag-level-primary):after{font-size:8px;line-height:8px;right:0;bottom:0}.next-tag-checkable.next-tag-medium:not(.next-tag-level-primary):before{right:-14px;bottom:-14px;width:28px;height:28px}.next-tag-checkable.next-tag-medium:not(.next-tag-level-primary):after{font-size:12px;line-height:12px;right:0;bottom:0}.next-tag-checkable.next-tag-large:not(.next-tag-level-primary):before{right:-18px;bottom:-18px;width:36px;height:36px}.next-tag-checkable.next-tag-large:not(.next-tag-level-primary):after{font-size:16px;line-height:16px;right:0;bottom:0}.next-tag-checkable.next-tag-level-secondary.disabled,.next-tag-checkable.next-tag-level-secondary[disabled]{color:#ccc;border-color:#eee;background-color:#fafafa}.next-tag-zoom-appear,.next-tag-zoom-enter{animation:fadeInLeft .4s cubic-bezier(.78,.14,.15,.86);animation-fill-mode:both}.next-tag-zoom-leave{animation:zoomOut .3s ease-in;animation-fill-mode:both}.next-timeline,.next-timeline *,.next-timeline:after,.next-timeline :after,.next-timeline:before,.next-timeline :before{box-sizing:border-box}.next-timeline ul{margin:0;padding:0;list-style:none}.next-timeline p{margin:0}.next-timeline-hide{display:none}.next-timeline[dir=rtl] .next-timeline-item-folder{padding-left:0;padding-right:28px}.next-timeline[dir=rtl] .next-timeline-item-dot-tail{left:auto;right:8px;border-left:none;border-right:1px dotted #e6e6e6}.next-timeline[dir=rtl] .next-timeline-item-has-left-content.next-timeline-item-folder{margin-left:0;margin-right:80px}.next-timeline[dir=rtl] .next-timeline-item-done{position:relative}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-timeline{position:absolute;left:auto;right:0;top:0;height:100%}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-node{position:relative;width:16px;height:24px;padding:4px 0;text-align:center;float:right}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-node.next-timeline-item-node-custom{width:40px;height:auto;font-size:12px;word-break:break-all;margin-right:-12px;margin-left:0;line-height:1}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-dot{display:block;position:absolute;width:8px;height:8px;border-radius:100%;top:50%;margin-top:-4px;left:50%;margin-left:-4px}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-icon{display:block;position:absolute;width:16px;height:16px;line-height:16px;border-radius:100%;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-icon .next-icon .next-icon-remote,.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-icon .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-tail{position:absolute;width:auto;height:calc(100% - 24px);top:24px;left:auto;right:8px}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-tail i{display:inline-block;vertical-align:top;height:100%;width:1px;position:relative;background:#e6e6e6;-webkit-transition:all .1s linear;transition:all .1s linear}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-content{display:inline-block;margin-right:28px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-content .next-timeline-item-title{font-size:14px;font-weight:700;line-height:1.5;margin:4px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-content .next-timeline-item-body{margin:4px 0 0;font-size:12px;line-height:1.5;color:#666;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-content .next-timeline-item-time{margin:4px 0 12px;font-size:12px;color:#999;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-done.next-timeline-item-has-left-content>.next-timeline-item-left-content{position:absolute;width:80px;display:inline-block;font-size:12px;color:#999;line-height:1.5;margin-top:4px;text-align:left;padding-left:12px;padding-right:0}.next-timeline[dir=rtl] .next-timeline-item-done.next-timeline-item-has-left-content>.next-timeline-item-left-content p{word-break:break-word}.next-timeline[dir=rtl] .next-timeline-item-done.next-timeline-item-has-left-content>.next-timeline-item-timeline{margin-right:80px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-done.next-timeline-item-has-left-content>.next-timeline-item-content{margin-right:108px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-dot{background:#ddd}.next-timeline[dir=rtl] .next-timeline-item-done .next-timeline-item-icon{background:#ddd;color:#fff}.next-timeline[dir=rtl] .next-timeline-item-process{position:relative}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-timeline{position:absolute;left:auto;right:0;top:0;height:100%}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-node{position:relative;width:16px;height:24px;padding:4px 0;text-align:center;float:right}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-node.next-timeline-item-node-custom{width:40px;height:auto;font-size:12px;word-break:break-all;margin-right:-12px;margin-left:0;line-height:1}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-dot{display:block;position:absolute;width:8px;height:8px;border-radius:100%;top:50%;margin-top:-4px;left:50%;margin-left:-4px}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-icon{display:block;position:absolute;width:16px;height:16px;line-height:16px;border-radius:100%;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-icon .next-icon .next-icon-remote,.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-icon .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-tail{position:absolute;width:auto;height:calc(100% - 24px);top:24px;left:auto;right:8px}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-tail i{display:inline-block;vertical-align:top;height:100%;width:1px;position:relative;background:#e6e6e6;-webkit-transition:all .1s linear;transition:all .1s linear}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-content{display:inline-block;margin-right:28px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-content .next-timeline-item-title{font-size:14px;font-weight:700;line-height:1.5;margin:4px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-content .next-timeline-item-body{margin:4px 0 0;font-size:12px;line-height:1.5;color:#666;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-content .next-timeline-item-time{margin:4px 0 12px;font-size:12px;color:#999;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-process.next-timeline-item-has-left-content>.next-timeline-item-left-content{position:absolute;width:80px;display:inline-block;font-size:12px;color:#999;line-height:1.5;margin-top:4px;text-align:left;padding-left:12px;padding-right:0}.next-timeline[dir=rtl] .next-timeline-item-process.next-timeline-item-has-left-content>.next-timeline-item-left-content p{word-break:break-word}.next-timeline[dir=rtl] .next-timeline-item-process.next-timeline-item-has-left-content>.next-timeline-item-timeline{margin-right:80px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-process.next-timeline-item-has-left-content>.next-timeline-item-content{margin-right:108px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-dot{background:#209bfa}.next-timeline[dir=rtl] .next-timeline-item-process .next-timeline-item-icon{background:#209bfa;color:#fff}.next-timeline[dir=rtl] .next-timeline-item-success{position:relative}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-timeline{position:absolute;left:auto;right:0;top:0;height:100%}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-node{position:relative;width:16px;height:24px;padding:4px 0;text-align:center;float:right}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-node.next-timeline-item-node-custom{width:40px;height:auto;font-size:12px;word-break:break-all;margin-right:-12px;margin-left:0;line-height:1}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-dot{display:block;position:absolute;width:8px;height:8px;border-radius:100%;top:50%;margin-top:-4px;left:50%;margin-left:-4px}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-icon{display:block;position:absolute;width:16px;height:16px;line-height:16px;border-radius:100%;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-icon .next-icon .next-icon-remote,.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-icon .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-tail{position:absolute;width:auto;height:calc(100% - 24px);top:24px;left:auto;right:8px}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-tail i{display:inline-block;vertical-align:top;height:100%;width:1px;position:relative;background:#e6e6e6;-webkit-transition:all .1s linear;transition:all .1s linear}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-content{display:inline-block;margin-right:28px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-content .next-timeline-item-title{font-size:14px;font-weight:700;line-height:1.5;margin:4px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-content .next-timeline-item-body{margin:4px 0 0;font-size:12px;line-height:1.5;color:#666;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-content .next-timeline-item-time{margin:4px 0 12px;font-size:12px;color:#999;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-success.next-timeline-item-has-left-content>.next-timeline-item-left-content{position:absolute;width:80px;display:inline-block;font-size:12px;color:#999;line-height:1.5;margin-top:4px;text-align:left;padding-left:12px;padding-right:0}.next-timeline[dir=rtl] .next-timeline-item-success.next-timeline-item-has-left-content>.next-timeline-item-left-content p{word-break:break-word}.next-timeline[dir=rtl] .next-timeline-item-success.next-timeline-item-has-left-content>.next-timeline-item-timeline{margin-right:80px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-success.next-timeline-item-has-left-content>.next-timeline-item-content{margin-right:108px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-dot{background:#1ad78c}.next-timeline[dir=rtl] .next-timeline-item-success .next-timeline-item-icon{background:#1ad78c;color:#fff}.next-timeline[dir=rtl] .next-timeline-item-error{position:relative}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-timeline{position:absolute;left:auto;right:0;top:0;height:100%}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-node{position:relative;width:16px;height:24px;padding:4px 0;text-align:center;float:right}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-node.next-timeline-item-node-custom{width:40px;height:auto;font-size:12px;word-break:break-all;margin-right:-12px;margin-left:0;line-height:1}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-dot{display:block;position:absolute;width:8px;height:8px;border-radius:100%;top:50%;margin-top:-4px;left:50%;margin-left:-4px}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-icon{display:block;position:absolute;width:16px;height:16px;line-height:16px;border-radius:100%;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-icon .next-icon .next-icon-remote,.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-icon .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-tail{position:absolute;width:auto;height:calc(100% - 24px);top:24px;left:auto;right:8px}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-tail i{display:inline-block;vertical-align:top;height:100%;width:1px;position:relative;background:#e6e6e6;-webkit-transition:all .1s linear;transition:all .1s linear}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-content{display:inline-block;margin-right:28px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-content .next-timeline-item-title{font-size:14px;font-weight:700;line-height:1.5;margin:4px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-content .next-timeline-item-body{margin:4px 0 0;font-size:12px;line-height:1.5;color:#666;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-content .next-timeline-item-time{margin:4px 0 12px;font-size:12px;color:#999;text-align:right}.next-timeline[dir=rtl] .next-timeline-item-error.next-timeline-item-has-left-content>.next-timeline-item-left-content{position:absolute;width:80px;display:inline-block;font-size:12px;color:#999;line-height:1.5;margin-top:4px;text-align:left;padding-left:12px;padding-right:0}.next-timeline[dir=rtl] .next-timeline-item-error.next-timeline-item-has-left-content>.next-timeline-item-left-content p{word-break:break-word}.next-timeline[dir=rtl] .next-timeline-item-error.next-timeline-item-has-left-content>.next-timeline-item-timeline{margin-right:80px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-error.next-timeline-item-has-left-content>.next-timeline-item-content{margin-right:108px;margin-left:0}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-dot{background:#d23c26}.next-timeline[dir=rtl] .next-timeline-item-error .next-timeline-item-icon{background:#d23c26;color:#fff}.next-timeline{margin:0;padding:0;list-style:none}.next-timeline>li{outline:0}.next-timeline-item-folder{padding-left:28px;padding-top:4px;padding-bottom:4px;font-size:12px;line-height:1.5;position:relative}.next-timeline-item-dot-tail{position:absolute;top:0;left:8px;height:100%;border:0;border-left:1px dotted #e6e6e6}.next-timeline-item-dot-tail-solid{border-style:solid}.next-timeline-item-has-left-content.next-timeline-item-folder{margin-left:80px}.next-timeline-item-done{position:relative}.next-timeline-item-done .next-timeline-item-timeline{position:absolute;left:0;top:0;height:100%}.next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-node{position:relative;width:16px;height:24px;padding:4px 0;text-align:center;float:left}.next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-node.next-timeline-item-node-custom{width:40px;height:auto;font-size:12px;word-break:break-all;margin-left:-12px;line-height:1}.next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-dot{display:block;position:absolute;width:8px;height:8px;border-radius:100%;top:50%;margin-top:-4px;left:50%;margin-left:-4px}.next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-icon{display:block;position:absolute;width:16px;height:16px;line-height:16px;border-radius:100%;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-icon .next-icon .next-icon-remote,.next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-icon .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-tail{position:absolute;width:auto;height:calc(100% - 24px);top:24px;left:8px}.next-timeline-item-done .next-timeline-item-timeline .next-timeline-item-tail i{display:inline-block;vertical-align:top;height:100%;width:1px;position:relative;background:#e6e6e6;-webkit-transition:all .1s linear;transition:all .1s linear}.next-timeline-item-done .next-timeline-item-content{display:inline-block;margin-left:28px}.next-timeline-item-done .next-timeline-item-content .next-timeline-item-title{font-size:14px;font-weight:700;line-height:1.5;margin:4px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;text-align:left}.next-timeline-item-done .next-timeline-item-content .next-timeline-item-body{margin:4px 0 0;font-size:12px;line-height:1.5;color:#666;text-align:left}.next-timeline-item-done .next-timeline-item-content .next-timeline-item-time{margin:4px 0 12px;font-size:12px;color:#999;text-align:left}.next-timeline-item-done.next-timeline-item-has-left-content>.next-timeline-item-left-content{position:absolute;width:80px;display:inline-block;font-size:12px;color:#999;line-height:1.5;margin-top:4px;text-align:right;padding-right:12px}.next-timeline-item-done.next-timeline-item-has-left-content>.next-timeline-item-left-content p{word-break:break-word}.next-timeline-item-done.next-timeline-item-has-left-content>.next-timeline-item-timeline{margin-left:80px}.next-timeline-item-done.next-timeline-item-has-left-content>.next-timeline-item-content{margin-left:108px}.next-timeline-item-done .next-timeline-item-dot{background:#ddd}.next-timeline-item-done .next-timeline-item-icon{background:#ddd;color:#fff}.next-timeline-item-process{position:relative}.next-timeline-item-process .next-timeline-item-timeline{position:absolute;left:0;top:0;height:100%}.next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-node{position:relative;width:16px;height:24px;padding:4px 0;text-align:center;float:left}.next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-node.next-timeline-item-node-custom{width:40px;height:auto;font-size:12px;word-break:break-all;margin-left:-12px;line-height:1}.next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-dot{display:block;position:absolute;width:8px;height:8px;border-radius:100%;top:50%;margin-top:-4px;left:50%;margin-left:-4px}.next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-icon{display:block;position:absolute;width:16px;height:16px;line-height:16px;border-radius:100%;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-icon .next-icon .next-icon-remote,.next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-icon .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-tail{position:absolute;width:auto;height:calc(100% - 24px);top:24px;left:8px}.next-timeline-item-process .next-timeline-item-timeline .next-timeline-item-tail i{display:inline-block;vertical-align:top;height:100%;width:1px;position:relative;background:#e6e6e6;-webkit-transition:all .1s linear;transition:all .1s linear}.next-timeline-item-process .next-timeline-item-content{display:inline-block;margin-left:28px}.next-timeline-item-process .next-timeline-item-content .next-timeline-item-title{font-size:14px;font-weight:700;line-height:1.5;margin:4px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;text-align:left}.next-timeline-item-process .next-timeline-item-content .next-timeline-item-body{margin:4px 0 0;font-size:12px;line-height:1.5;color:#666;text-align:left}.next-timeline-item-process .next-timeline-item-content .next-timeline-item-time{margin:4px 0 12px;font-size:12px;color:#999;text-align:left}.next-timeline-item-process.next-timeline-item-has-left-content>.next-timeline-item-left-content{position:absolute;width:80px;display:inline-block;font-size:12px;color:#999;line-height:1.5;margin-top:4px;text-align:right;padding-right:12px}.next-timeline-item-process.next-timeline-item-has-left-content>.next-timeline-item-left-content p{word-break:break-word}.next-timeline-item-process.next-timeline-item-has-left-content>.next-timeline-item-timeline{margin-left:80px}.next-timeline-item-process.next-timeline-item-has-left-content>.next-timeline-item-content{margin-left:108px}.next-timeline-item-process .next-timeline-item-dot{background:#209bfa}.next-timeline-item-process .next-timeline-item-icon{background:#209bfa;color:#fff}.next-timeline-item-success{position:relative}.next-timeline-item-success .next-timeline-item-timeline{position:absolute;left:0;top:0;height:100%}.next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-node{position:relative;width:16px;height:24px;padding:4px 0;text-align:center;float:left}.next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-node.next-timeline-item-node-custom{width:40px;height:auto;font-size:12px;word-break:break-all;margin-left:-12px;line-height:1}.next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-dot{display:block;position:absolute;width:8px;height:8px;border-radius:100%;top:50%;margin-top:-4px;left:50%;margin-left:-4px}.next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-icon{display:block;position:absolute;width:16px;height:16px;line-height:16px;border-radius:100%;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-icon .next-icon .next-icon-remote,.next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-icon .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-tail{position:absolute;width:auto;height:calc(100% - 24px);top:24px;left:8px}.next-timeline-item-success .next-timeline-item-timeline .next-timeline-item-tail i{display:inline-block;vertical-align:top;height:100%;width:1px;position:relative;background:#e6e6e6;-webkit-transition:all .1s linear;transition:all .1s linear}.next-timeline-item-success .next-timeline-item-content{display:inline-block;margin-left:28px}.next-timeline-item-success .next-timeline-item-content .next-timeline-item-title{font-size:14px;font-weight:700;line-height:1.5;margin:4px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;text-align:left}.next-timeline-item-success .next-timeline-item-content .next-timeline-item-body{margin:4px 0 0;font-size:12px;line-height:1.5;color:#666;text-align:left}.next-timeline-item-success .next-timeline-item-content .next-timeline-item-time{margin:4px 0 12px;font-size:12px;color:#999;text-align:left}.next-timeline-item-success.next-timeline-item-has-left-content>.next-timeline-item-left-content{position:absolute;width:80px;display:inline-block;font-size:12px;color:#999;line-height:1.5;margin-top:4px;text-align:right;padding-right:12px}.next-timeline-item-success.next-timeline-item-has-left-content>.next-timeline-item-left-content p{word-break:break-word}.next-timeline-item-success.next-timeline-item-has-left-content>.next-timeline-item-timeline{margin-left:80px}.next-timeline-item-success.next-timeline-item-has-left-content>.next-timeline-item-content{margin-left:108px}.next-timeline-item-success .next-timeline-item-dot{background:#1ad78c}.next-timeline-item-success .next-timeline-item-icon{background:#1ad78c;color:#fff}.next-timeline-item-error{position:relative}.next-timeline-item-error .next-timeline-item-timeline{position:absolute;left:0;top:0;height:100%}.next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-node{position:relative;width:16px;height:24px;padding:4px 0;text-align:center;float:left}.next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-node.next-timeline-item-node-custom{width:40px;height:auto;font-size:12px;word-break:break-all;margin-left:-12px;line-height:1}.next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-dot{display:block;position:absolute;width:8px;height:8px;border-radius:100%;top:50%;margin-top:-4px;left:50%;margin-left:-4px}.next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-icon{display:block;position:absolute;width:16px;height:16px;line-height:16px;border-radius:100%;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-icon .next-icon .next-icon-remote,.next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-icon .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-tail{position:absolute;width:auto;height:calc(100% - 24px);top:24px;left:8px}.next-timeline-item-error .next-timeline-item-timeline .next-timeline-item-tail i{display:inline-block;vertical-align:top;height:100%;width:1px;position:relative;background:#e6e6e6;-webkit-transition:all .1s linear;transition:all .1s linear}.next-timeline-item-error .next-timeline-item-content{display:inline-block;margin-left:28px}.next-timeline-item-error .next-timeline-item-content .next-timeline-item-title{font-size:14px;font-weight:700;line-height:1.5;margin:4px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;text-align:left}.next-timeline-item-error .next-timeline-item-content .next-timeline-item-body{margin:4px 0 0;font-size:12px;line-height:1.5;color:#666;text-align:left}.next-timeline-item-error .next-timeline-item-content .next-timeline-item-time{margin:4px 0 12px;font-size:12px;color:#999;text-align:left}.next-timeline-item-error.next-timeline-item-has-left-content>.next-timeline-item-left-content{position:absolute;width:80px;display:inline-block;font-size:12px;color:#999;line-height:1.5;margin-top:4px;text-align:right;padding-right:12px}.next-timeline-item-error.next-timeline-item-has-left-content>.next-timeline-item-left-content p{word-break:break-word}.next-timeline-item-error.next-timeline-item-has-left-content>.next-timeline-item-timeline{margin-left:80px}.next-timeline-item-error.next-timeline-item-has-left-content>.next-timeline-item-content{margin-left:108px}.next-timeline-item-error .next-timeline-item-dot{background:#d23c26}.next-timeline-item-error .next-timeline-item-icon{background:#d23c26;color:#fff}.next-timeline.next-alternate .next-timeline-item-left .next-timeline-item-left-content,.next-timeline.next-alternate .next-timeline-item-right .next-timeline-item-left-content{width:50%;padding-right:12px}.next-timeline.next-alternate .next-timeline-item-left .next-timeline-item-timeline,.next-timeline.next-alternate .next-timeline-item-right .next-timeline-item-timeline{margin-left:50%}.next-timeline.next-alternate .next-timeline-item-left .next-timeline-item-content,.next-timeline.next-alternate .next-timeline-item-right .next-timeline-item-content{margin-left:calc(50% + 28px)}.next-timeline.next-alternate .next-timeline-item-folder{margin-left:50%}.next-timeline.next-alternate .next-timeline-item-right .next-timeline-item-title{margin:4px 0 0;font-size:14px;font-weight:700;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;text-align:right}.next-timeline.next-alternate .next-timeline-item-right .next-timeline-item-body{margin:4px 0 0;font-size:12px;line-height:1.5;color:#666;text-align:right}.next-timeline.next-alternate .next-timeline-item-right .next-timeline-item-time{margin:4px 0 12px;font-size:12px;color:#999;text-align:right}.next-timeline.next-alternate .next-timeline-item-right .next-timeline-item-left-content{display:inline-block;position:relative}.next-timeline.next-alternate .next-timeline-item-right .next-timeline-item-left-content .next-timeline-item-title{margin-top:0}.next-timeline.next-alternate .next-timeline-item-right .next-timeline-item-content{margin-left:28px;position:absolute}.next-timeline.next-alternate .next-timeline-item-right .next-timeline-item-content .next-timeline-item-body{margin-top:4px;color:#999}.next-timeline[dir=rtl].next-alternate .next-timeline-item-left .next-timeline-item-left-content,.next-timeline[dir=rtl].next-alternate .next-timeline-item-right .next-timeline-item-left-content{width:50%;padding-left:12px}.next-timeline[dir=rtl].next-alternate .next-timeline-item-left .next-timeline-item-timeline,.next-timeline[dir=rtl].next-alternate .next-timeline-item-right .next-timeline-item-timeline{margin-right:50%}.next-timeline[dir=rtl].next-alternate .next-timeline-item-left .next-timeline-item-content,.next-timeline[dir=rtl].next-alternate .next-timeline-item-right .next-timeline-item-content{width:50%;margin-right:calc(50% + 28px)}.next-timeline[dir=rtl].next-alternate .next-timeline-item-folder{margin-right:50%}.next-timeline[dir=rtl].next-alternate .next-timeline-item-right .next-timeline-item-title{margin:0;font-size:14px;font-weight:700;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;text-align:left}.next-timeline[dir=rtl].next-alternate .next-timeline-item-right .next-timeline-item-body{margin:0;font-size:12px;line-height:1.5;color:#666;text-align:left}.next-timeline[dir=rtl].next-alternate .next-timeline-item-right .next-timeline-item-time{margin:4px 0 12px;font-size:12px;color:#999;text-align:left}.next-timeline[dir=rtl].next-alternate .next-timeline-item-right .next-timeline-item-left-content{display:inline-block;position:relative}.next-timeline[dir=rtl].next-alternate .next-timeline-item-right .next-timeline-item-content{margin-right:28px;position:absolute}.next-timeline[dir=rtl].next-alternate .next-timeline-item-right .next-timeline-item-content .next-timeline-item-body{text-align:right}.next-timeline-item-last .next-timeline-item-tail{display:none}.next-timeline-item-has-left-content{min-height:48px}.next-timeline-item-folder.next-timeline-item-has-left-content{min-height:auto}.next-transfer{display:inline-block}.next-transfer,.next-transfer *,.next-transfer :after,.next-transfer :before{box-sizing:border-box}.next-transfer-panel{display:inline-block;border:1px solid #e6e6e6;border-radius:3px;background-color:#fff;vertical-align:middle}.next-transfer-panel-header{padding:8px 20px;border-bottom:1px solid #e6e6e6;background-color:#fafafa;color:#333;font-size:14px}.next-transfer-panel-search{padding:0 4px;margin-top:8px;margin-bottom:0;width:180px}.next-transfer .next-transfer-panel-list{width:180px;height:160px;padding:0;border:none;box-shadow:none;border-radius:0;overflow-y:auto}.next-transfer-panel-not-found-container{display:table;width:100%;height:100%}.next-transfer-panel-not-found{display:table-cell;vertical-align:middle;text-align:center;color:#999;font-size:14px}.next-transfer-panel-item.next-focused{transition:background-color .1s linear}.next-transfer-panel-item:not(.next-disabled).next-simple:hover{color:#209bfa}.next-transfer-panel-item.next-insert-before:before{position:absolute;top:0;left:0;content:"";width:100%;border-top:1px solid #209bfa}.next-transfer-panel-item.next-insert-after:after{position:absolute;left:0;bottom:0;content:"";width:100%;border-bottom:1px solid #209bfa}.next-transfer-panel-footer{position:relative;padding:8px 20px;border-top:1px solid #e6e6e6;background-color:#fff;font-size:0;box-shadow:none}.next-transfer-panel-count{margin-left:4px;font-size:14px;vertical-align:middle;color:#333}.next-transfer-panel-move-all{font-size:14px;color:#209bfa;cursor:pointer}.next-transfer-panel-move-all.next-disabled{color:#ccc;cursor:not-allowed}.next-transfer-operations{display:inline-block;vertical-align:middle;margin:0 20px}.next-transfer-move.next-icon{color:#ddd}.next-transfer-move.next-icon:before{content:"î³"}.next-transfer-operation.next-btn{display:block}.next-transfer-operation.next-btn+.next-transfer-operation.next-btn{margin-top:8px}.next-transfer-operation.next-btn .next-icon .next-icon-remote,.next-transfer-operation.next-btn .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-tree,.next-tree *,.next-tree :after,.next-tree :before{box-sizing:border-box}.next-tree,.next-tree-child-tree{margin:0;padding:0;list-style:none}.next-tree-node{white-space:nowrap}.next-tree-node-inner{font-size:0;outline:none}.next-tree-node-label-wrapper{display:inline-block;margin:0 4px;vertical-align:middle}.next-tree-node-label{height:20px;line-height:20px;padding:0 4px;border-radius:3px;font-size:14px}.next-tree-node-label .next-icon{font-size:16px}.next-tree-node-label .next-icon:before{font-size:14px;width:14px;margin-right:.5em}.next-tree-node-input.next-input{margin:0 4px}.next-tree-node-indent-unit{display:inline-block;width:24px;vertical-align:middle;position:relative}.next-tree-node-indent-unit.next-line:before{content:"";position:absolute;display:inline-block;border-left:1px solid #ddd;height:28px;left:7.5px}.next-tree-switcher{position:relative;display:inline-block;vertical-align:middle;margin-right:8px}.next-tree .next-tree-unfold-icon:before{content:""}.next-tree-switcher.next-noline{width:20px;height:20px;line-height:20px;cursor:pointer}.next-tree-switcher.next-noline .next-tree-switcher-icon{transition:transform .1s linear;color:#999}.next-tree-switcher.next-noline .next-tree-switcher-icon .next-icon-remote,.next-tree-switcher.next-noline .next-tree-switcher-icon:before{width:20px;font-size:20px;line-height:inherit}.next-tree-switcher.next-noline .next-tree-fold-icon:before{content:"î½"}.next-tree-switcher.next-noline.next-close .next-tree-switcher-icon{transform:rotate(-90deg)}.next-tree-switcher.next-noline.next-close .next-tree-switcher-icon .next-icon-remote,.next-tree-switcher.next-noline.next-close .next-tree-switcher-icon:before{width:20px;font-size:20px;line-height:inherit}.next-tree-switcher.next-noline:not(.next-disabled):hover .next-tree-switcher-icon{color:#333}.next-tree-switcher.next-noline.next-disabled{cursor:not-allowed}.next-tree-switcher.next-noline.next-disabled .next-tree-switcher-icon{color:#ccc}.next-tree-switcher.next-noop-noline{width:20px;height:20px}.next-tree-switcher.next-line{width:16px;height:16px;line-height:14px;border:1px solid #ddd;border-radius:3px;background-color:#fff;cursor:pointer}.next-tree-switcher.next-line .next-tree-switcher-icon{margin-left:3px;color:#666}.next-tree-switcher.next-line .next-tree-switcher-icon .next-icon-remote,.next-tree-switcher.next-line .next-tree-switcher-icon:before{width:8px;font-size:8px;line-height:inherit}@media (-webkit-min-device-pixel-ratio:0)and (min-resolution:0.001dpcm){.next-tree-switcher.next-line .next-tree-switcher-icon{transform:scale(.5);margin-left:-1px;margin-right:-4px}.next-tree-switcher.next-line .next-tree-switcher-icon:before{width:16px;font-size:16px}}.next-tree-switcher.next-line .next-tree-switcher-fold-icon:before{content:"î"}.next-tree-switcher.next-line .next-tree-switcher-unfold-icon:before{content:"î"}.next-tree-switcher.next-line:not(.next-disabled):hover{border-color:#ccc;background-color:#f9f9f9}.next-tree-switcher.next-line:not(.next-disabled):hover .next-tree-switcher-icon{color:#333}.next-tree-switcher.next-line.next-disabled{border-color:#eee;background-color:#fff;cursor:not-allowed}.next-tree-switcher.next-line.next-disabled .next-tree-switcher-icon{color:#ccc}.next-tree-switcher.next-noop-line{width:16px;height:16px}.next-tree-switcher.next-noop-line-noroot{height:0;border-left:1px solid #ddd;border-bottom:1px solid #ddd}.next-tree-switcher.next-noop-line-noroot .next-tree-right-angle{bottom:-1px}.next-tree-switcher.next-loading.next-loading-noline{width:20px;height:20px;line-height:20px}.next-tree-switcher.next-loading.next-loading-line{width:16px;height:16px;line-height:14px;border:1px solid transparent}.next-tree-switcher.next-loading .next-tree-switcher-icon{color:#209bfa}.next-tree-switcher.next-loading .next-tree-switcher-icon .next-icon-remote,.next-tree-switcher.next-loading .next-tree-switcher-icon:before{width:20px;font-size:20px;line-height:inherit}.next-tree-right-angle{position:absolute;bottom:6.5px;left:-17.5px;display:block;width:16.5px;height:22px;border-left:1px solid #ddd;border-bottom:1px solid #ddd}.next-tree.next-label-block .next-tree-node-inner{display:flex;align-items:center;outline:none}.next-tree.next-label-block .next-tree-node-label-wrapper{flex:1 1 auto}.next-tree.next-node-indent .next-tree-node .next-tree-node{margin-left:24px}.next-tree.next-node-indent .next-tree-node-inner{padding-top:2px;padding-bottom:2px}.next-tree.next-node-indent .next-tree-node-inner:focus .next-tree-node-label{color:#333;background-color:#f9f9f9}.next-tree.next-node-indent .next-tree-node-label-wrapper{border-top:2px solid transparent;border-bottom:2px solid transparent}.next-tree.next-node-indent .next-tree-node-label{transition:color .1s linear,background-color .1s linear;cursor:default;color:#333;background-color:#fff}.next-tree.next-node-indent .next-tree-node-label-selectable{cursor:pointer}.next-tree.next-node-indent .next-tree-node-label:hover{color:#333;background-color:#f9f9f9}.next-tree.next-node-indent .next-tree-node-inner.next-selected .next-tree-node-label{color:#333;background-color:#add9ff}.next-tree.next-node-indent .next-tree-node-inner.next-disabled .next-tree-node-label,.next-tree.next-node-indent .next-tree-node-inner.next-disabled .next-tree-node-label:hover{color:#ccc;background-color:#fff;cursor:not-allowed}.next-tree.next-node-indent .next-tree-node-inner.next-drag-over .next-tree-node-label{background-color:#209bfa;color:#fff;opacity:.8}.next-tree.next-node-indent .next-tree-node-inner.next-drag-over-gap-top .next-tree-node-label-wrapper{border-top-color:#209bfa}.next-tree.next-node-indent .next-tree-node-inner.next-drag-over-gap-bottom .next-tree-node-label-wrapper{border-bottom-color:#209bfa}.next-tree.next-node-block .next-tree-node-inner{padding-top:4px;padding-bottom:4px;transition:color .1s linear,background-color .1s linear;cursor:pointer;color:#333;background-color:#fff}.next-tree.next-node-block .next-tree-node-inner:focus,.next-tree.next-node-block .next-tree-node-inner:hover{color:#333;background-color:#f9f9f9}.next-tree.next-node-block .next-tree-node-inner.next-selected{color:#333;background-color:#add9ff}.next-tree.next-node-block .next-tree-node-inner.next-disabled,.next-tree.next-node-block .next-tree-node-inner.next-disabled:hover{color:#ccc;background-color:#fff;cursor:not-allowed}.next-tree.next-show-line .next-tree-node .next-tree-node:not(:last-child){margin-left:7.5px;border-left:1px solid #ddd;padding-left:15.5px}.next-tree-node.next-filtered>.next-tree-node-inner .next-tree-node-label,.next-tree-node.next-filtered>.next-tree-node-inner .next-tree-node-label:hover{color:#209bfa}.next-tree[dir=rtl] .next-tree-switcher{margin-left:8px;margin-right:0}.next-tree[dir=rtl] .next-tree-right-angle,.next-tree[dir=rtl] .next-tree-switcher.next-noop-line-noroot{border-left:none;border-right:1px solid #ddd}.next-tree[dir=rtl] .next-tree-right-angle{left:auto;right:-17.5px}.next-tree[dir=rtl].next-show-line .next-tree-node .next-tree-node:not(:last-child){margin-left:0;margin-right:7.5px;border-left:none;border-right:1px solid #ddd;padding-left:0;padding-right:15.5px}.next-tree[dir=rtl].next-node-indent .next-tree-node .next-tree-node{margin-left:0;margin-right:24px}.next-tree-select,.next-tree-select *,.next-tree-select :after,.next-tree-select :before{box-sizing:border-box}.next-tree-select-dropdown{background:#fff;border:1px solid #e6e6e6;border-radius:3px;box-shadow:none;max-height:260px;overflow:auto}.next-tree-select-dropdown>.next-tree,.next-tree-select-dropdown>.next-tree-select-not-found,.next-tree-select-dropdown>.next-virtual-tree-container{padding:8px 20px}.next-tree-select-not-found{font-size:14px;color:#999}.next-upload-list[dir=rtl].next-upload-list-text .next-upload-list-item{padding:4px 8px 4px 40px}.next-upload-list[dir=rtl].next-upload-list-text .next-icon{left:12px;right:auto}.next-upload-list[dir=rtl].next-upload-list-image .next-icon-close{float:left;margin-left:4px;margin-right:0}.next-upload-list[dir=rtl].next-upload-list-image .next-upload-list-item-thumbnail{float:right;margin-left:8px;margin-right:0}.next-upload-list[dir=rtl].next-upload-list-image .next-upload-list-item-progress{margin-right:56px;margin-left:24px}.next-upload,.next-upload *,.next-upload :after,.next-upload :before{box-sizing:border-box}.next-upload-inner{outline:0;display:inline-block}.next-upload-inner.next-hidden{display:none}.next-upload-list{overflow:hidden}.next-upload-list,.next-upload-list *,.next-upload-list :after,.next-upload-list :before{box-sizing:border-box}.next-upload-list-item{position:relative}.next-upload-list-item.next-hidden{display:none}.next-upload-list-item-name{text-decoration:none}.next-upload.next-disabled{border-color:#eee!important;color:#ccc!important}.next-upload.next-disabled .next-icon-close{cursor:not-allowed!important}.next-upload.next-disabled .next-upload-inner *{color:#ccc!important;border-color:#eee!important;cursor:not-allowed!important}.next-upload-list-text .next-upload-list-item{background-color:#f9f9f9;padding:4px 40px 4px 8px;height:40px;line-height:32px;font-size:14px;overflow:hidden;transition:all .1s linear;border-radius:0}.next-upload-list-text .next-upload-list-item:not(:last-child){margin-bottom:4px}.next-upload-list-text .next-upload-list-item-op{position:absolute;top:0;right:12px}.next-upload-list-text .next-upload-list-item .next-icon-close{color:#999;cursor:pointer;text-align:center;transition:all .1s linear;line-height:40px}.next-upload-list-text .next-upload-list-item .next-icon-close .next-icon-remote,.next-upload-list-text .next-upload-list-item .next-icon-close:before{width:16px;font-size:16px;line-height:inherit}.next-upload-list-text .next-upload-list-item:hover{background-color:#f9f9f9}.next-upload-list-text .next-upload-list-item:hover .next-icon{color:#666}.next-upload-list-text .next-upload-list-item-name-wrap{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;margin-right:4px}.next-upload-list-text .next-upload-list-item-name{color:#333;transition:all .1s linear}.next-upload-list-text .next-upload-list-item-size{color:#999;margin-left:8px}.next-upload-list-text .next-upload-list-item-uploading{line-height:16px}.next-upload-list-text .next-upload-list-item-uploading .next-upload-list-item-progress{line-height:0;padding-top:4px;padding-bottom:4px}.next-upload-list-text .next-upload-list-item-uploading .next-upload-list-item-progress .next-progress-line-underlay{height:8px}.next-upload-list-text .next-upload-list-item-uploading .next-upload-list-item-progress .next-progress-line-overlay{height:8px;margin-top:-4px}.next-upload-list-text .next-upload-list-item-done{line-height:32px}.next-upload-list-text .next-upload-list-item-done:hover .next-upload-list-item-name,.next-upload-list-text .next-upload-list-item-done:hover .next-upload-list-item-size{color:#209bfa}.next-upload-list-text .next-upload-list-item-error{background-color:#ffece4!important}.next-upload-list-text .next-upload-list-item-error.next-upload-list-item-error-with-msg{line-height:16px}.next-upload-list-text .next-upload-list-item-error-msg{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:#d23c26}.next-upload-list-image .next-upload-list-item{box-sizing:content-box;border:1px solid #e6e6e6;background-color:#fff;padding:8px;height:48px;line-height:48px;font-size:14px;transition:all .1s linear;overflow:hidden;border-radius:0}.next-upload-list-image .next-upload-list-item:not(:last-child){margin-bottom:4px}.next-upload-list-image .next-upload-list-item:after{visibility:hidden;display:block;height:0;font-size:0;content:" ";clear:both}.next-upload-list-image .next-upload-list-item-op{float:right;margin-right:4px}.next-upload-list-image .next-upload-list-item .next-icon-close{cursor:pointer;color:#999;text-align:center}.next-upload-list-image .next-upload-list-item .next-icon-close .next-icon-remote,.next-upload-list-image .next-upload-list-item .next-icon-close:before{width:16px;font-size:16px;line-height:inherit}.next-upload-list-image .next-upload-list-item:hover{border-color:#209bfa}.next-upload-list-image .next-upload-list-item:hover .next-icon-close{color:#666}.next-upload-list-image .next-upload-list-item-name{display:block;color:#333;margin-left:56px;margin-right:24px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;transition:all .1s linear}.next-upload-list-image .next-upload-list-item-size{color:#999;margin-left:8px}.next-upload-list-image .next-upload-list-item-done:hover .next-upload-list-item-name,.next-upload-list-image .next-upload-list-item-done:hover .next-upload-list-item-size{color:#209bfa}.next-upload-list-image .next-upload-list-item-thumbnail{float:left;width:48px;height:48px;color:#ccc;border:1px solid #e6e6e6;border-radius:0;background-color:#f9f9f9;margin-right:8px;vertical-align:middle;text-align:center;overflow:hidden;box-sizing:border-box}.next-upload-list-image .next-upload-list-item-thumbnail img{width:100%;height:100%}.next-upload-list-image .next-upload-list-item-thumbnail .next-icon{display:block;margin:0;line-height:48px}.next-upload-list-image .next-upload-list-item-thumbnail .next-icon .next-icon-remote,.next-upload-list-image .next-upload-list-item-thumbnail .next-icon:before{width:24px;font-size:24px;line-height:inherit}.next-upload-list-image .next-upload-list-item-error{border-color:#d23c26!important;background-color:#fff}.next-upload-list-image .next-upload-list-item-uploading{background-color:#fff}.next-upload-list-image .next-upload-list-item-uploading .next-upload-list-item-name{height:24px;line-height:24px}.next-upload-list-image .next-upload-list-item-uploading .next-upload-list-item-progress{margin-left:56px;margin-right:24px;line-height:0;padding-top:8px;padding-bottom:8px}.next-upload-list-image .next-upload-list-item-uploading .next-upload-list-item-progress .next-progress-line-underlay{height:8px}.next-upload-list-image .next-upload-list-item-uploading .next-upload-list-item-progress .next-progress-line-overlay{height:8px;margin-top:-4px}.next-upload-list-image .next-upload-list-item-error-with-msg .next-upload-list-item-error-msg,.next-upload-list-image .next-upload-list-item-error-with-msg .next-upload-list-item-name{height:24px;line-height:24px}.next-upload-list-image .next-upload-list-item-error-with-msg .next-upload-list-item-error-msg{margin-left:56px;margin-right:24px;color:#d23c26;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.next-upload-list-card{display:inline-block}.next-upload-list-card .next-upload-list-item{vertical-align:middle;float:left}.next-upload-list-card .next-upload-list-item:not(:last-child){margin-right:12px}.next-upload-list-card .next-upload-list-item-wrapper{position:relative;border:1px solid #ddd;width:100px;height:100px;padding:0;background-color:transparent;border-radius:0;overflow:hidden}.next-upload-list-card .next-upload-list-item-thumbnail{text-align:center;width:100%;height:100%;color:#ccc;font-size:12px}.next-upload-list-card .next-upload-list-item-thumbnail img{max-width:100%;max-height:100%;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.next-upload-list-card .next-upload-list-item-thumbnail img:focus{outline:0}.next-upload-list-card .next-upload-list-item-thumbnail .next-icon{width:100%}.next-upload-list-card .next-upload-list-item-thumbnail .next-icon .next-icon-remote,.next-upload-list-card .next-upload-list-item-thumbnail .next-icon:before{width:48px;font-size:48px;line-height:inherit}.next-upload-list-card .next-upload-list-item-handler{margin-top:13px}.next-upload-list-card .next-upload-list-item-handler .next-icon-cry{margin-top:10px}.next-upload-list-card .next-upload-list-item-name{display:block;width:100px;text-align:center;margin-top:4px;font-size:12px;color:#666;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.next-upload-list-card .next-upload-list-item-progress{position:absolute;font-size:0;bottom:0;left:0;width:100%}.next-upload-list-card .next-upload-list-item-progress .next-progress-line-underlay{border-radius:0;height:8px}.next-upload-list-card .next-upload-list-item-progress .next-progress-line-overlay{border-radius:0;height:8px;margin-top:-4px}.next-upload-list-card .next-upload-list-item-uploading .next-upload-list-item-wrapper{background-color:#fafafa}.next-upload-list-card .next-upload-list-item:hover .next-upload-tool{opacity:.8}.next-upload-list-card .next-upload-list-item .next-upload-tool{position:absolute;z-index:1;background-color:rgba(0,0,0,.7);transition:all .1s linear;opacity:0;width:100%;height:28px;left:0;bottom:0;display:flex}.next-upload-list-card .next-upload-list-item .next-upload-tool .next-icon{line-height:28px;color:#fff;cursor:pointer}.next-upload-list-card .next-upload-list-item .next-upload-tool .next-icon .next-icon-remote,.next-upload-list-card .next-upload-list-item .next-upload-tool .next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-upload-list-card .next-upload-list-item .next-upload-tool-item{width:100%;text-align:center}.next-upload-list-card .next-upload-list-item .next-upload-tool-item:not(:last-child){border-right:1px solid #fff}.next-upload-list-card .next-upload-list-item .next-upload-tool-reupload{display:inline-block}.next-upload-list-card .next-upload-list-item .next-upload-card{display:flex;flex-direction:column;justify-content:center}.next-upload-list-card .next-upload-list-item-error .next-upload-list-item-wrapper{border-color:#d23c26}.next-upload-list-card.next-upload-ie9 .next-upload-tool{display:table}.next-upload-list-card.next-upload-ie9 .next-upload-tool-item{display:table-cell;width:1%}.next-upload-card,.next-upload-list-card.next-upload-ie9 .next-upload-card{display:table-cell}.next-upload-card{border:1px dashed #ddd;width:100px;height:100px;background-color:#fff;text-align:center;cursor:pointer;transition:border-color .1s linear;vertical-align:middle;border-radius:0}.next-upload-card .next-icon{color:#ddd}.next-upload-card .next-icon .next-icon-remote,.next-upload-card .next-icon:before{width:24px;font-size:24px;line-height:inherit}.next-upload-card .next-upload-add-icon:before{content:"î"}.next-upload-card .next-upload-text{font-size:14px;margin-top:12px;color:#666;outline:none}.next-upload-card:hover{border-color:#209bfa}.next-upload-card:hover .next-icon,.next-upload-card:hover .next-upload-text{color:#209bfa}.next-upload-dragable .next-upload-inner{display:block}.next-upload-dragable .next-upload-drag{border:1px dashed #ddd;transition:border-color .1s linear;cursor:pointer;border-radius:3px;background-color:transparent;text-align:center;margin-bottom:4px}.next-upload-dragable .next-upload-drag-icon{margin:20px 0 0;color:#666}.next-upload-dragable .next-upload-drag-icon .next-upload-drag-upload-icon:before{content:"î®";font-size:24px}.next-upload-dragable .next-upload-drag-text{margin:12px 0 0;font-size:14px;color:#666}.next-upload-dragable .next-upload-drag-hint{margin:4px 0 20px;font-size:12px;color:#999}.next-upload-dragable .next-upload-drag-over{border-color:#209bfa}.next-shell{position:relative;display:flex;flex-direction:column;transition:all .2s ease}.next-shell,.next-shell *,.next-shell :after,.next-shell :before{box-sizing:border-box}.next-shell-content-wrapper{overflow:auto}.next-shell-header{display:flex;width:100%;justify-content:space-between;align-items:center;z-index:9}.next-shell-header .dock-trigger,.next-shell-header .nav-trigger{outline:0;display:flex;justify-content:center;align-items:center;cursor:pointer;width:32px;height:32px}.next-shell-header .nav-trigger{margin-right:10px}.next-shell-header .dock-trigger{margin-left:10px}.next-shell-header.next-shell-fixed-header{position:sticky;top:0}.next-shell-header .next-shell-navigation{flex:1 1;display:flex;align-items:center;flex-direction:row}.next-shell-header .next-shell-action,.next-shell-header .next-shell-branding{display:flex;align-items:center}.next-shell-sub-main{flex:1 1;flex-direction:column;outline:0}.next-shell-main,.next-shell-sub-main{display:flex;height:100%;overflow:auto}.next-shell-main{flex:1 1 auto;flex-direction:row;position:relative;box-sizing:content-box;transition:all .2s ease}.next-shell-main .next-shell-content{flex:1 1 auto}.next-shell-main .next-shell-content-inner{margin:0 auto}.next-shell-main .next-shell-footer{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%}.next-shell .next-aside-navigation,.next-shell .next-aside-tooldock{display:flex}.next-shell .next-aside-navigation.fixed,.next-shell .next-aside-tooldock.fixed{position:fixed;top:0;bottom:0;z-index:1}.next-shell .next-aside-navigation.fixed{left:0}.next-shell .next-aside-tooldock.fixed{right:0}.next-shell-aside{transition:all .2s ease}.next-shell-aside .aside-trigger{cursor:pointer;outline:0;position:absolute;right:0;top:50%;width:20px;height:48px;display:flex;border:1px solid #ddd;align-items:center;justify-content:center}.next-shell-aside .local-nav-trigger{outline:0;border-left:none;transform:translate(100%,-50%);right:0}.next-shell-aside .ancillary-trigger{outline:0;transform:translate(-100%,-50%);border-right:0;left:1px}.next-shell-aside.next-aside-ancillary,.next-shell-aside.next-aside-localnavigation{position:relative}.next-shell-aside.next-shell-navigation{display:flex;flex-direction:column;justify-self:flex-start;transition:all .2s ease}.next-shell-aside.next-shell-tooldock{display:flex;flex-direction:column;align-items:center}.next-shell-aside .next-shell-tooldockitem{width:100%;text-align:center}.next-shell-aside .next-shell-localnavigation{position:relative}.next-shell-aside .next-shell-ancillary,.next-shell-aside .next-shell-localnavigation{height:100%;display:flex;flex-direction:column;justify-self:flex-start;transition:all .2s ease}.next-shell-light .next-shell-header .dock-trigger,.next-shell-light .next-shell-header .nav-trigger{background:#fff}.next-shell-light .next-shell-aside .local-nav-trigger{background:#f2f2f2}.next-shell-light .next-shell-aside .ancillary-trigger{background:#fff}.next-shell-light .next-shell-header{color:#000;height:52px;background:#fff;border-bottom:1px solid #eee;box-shadow:none;padding:0 16px}.next-shell-light .next-shell-header .next-shell-navigation{justify-content:flex-end;height:52px;line-height:52px;margin:0 48px}.next-shell-light .next-shell-task-header{width:100%;min-height:40px;background:#fff;border-bottom:1px solid #eee;box-shadow:none;padding:0;overflow:auto}.next-shell-light .next-shell-main{background:#f5f5f5}.next-shell-light .next-shell-main .next-shell-appbar{min-height:48px;background:#fff;border-bottom:1px solid #eee;box-shadow:none;padding:0 24px}.next-shell-light .next-shell-main .next-shell-content{padding:20px}.next-shell-light .next-shell-main .next-shell-footer{background:transparent;min-height:56px;color:#ccc;font-size:14px}.next-shell-light .next-shell-aside.next-shell-navigation{width:200px;background:#fff;border-right:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-light .next-shell-aside.next-shell-navigation.next-shell-collapse.next-shell-mini{width:60px}.next-shell-light .next-shell-aside.next-shell-navigation.next-shell-collapse{width:0}.next-shell-light .next-shell-aside.next-shell-tooldock{width:52px;background:#f2f2f2;border-left:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-light .next-shell-aside .next-shell-tooldockitem{padding:8px 0;color:#666;background:transparent}.next-shell-light .next-shell-aside .next-shell-tooldockitem:hover{color:#333;background:#f5f5f5}.next-shell-light .next-shell-aside .next-shell-localnavigation{width:168px;background:#f2f2f2;border-right:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-light .next-shell-aside .next-shell-localnavigation.next-shell-collapse{width:0}.next-shell-light .next-shell-aside .next-shell-ancillary{width:168px;background:#fff;border-left:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-light .next-shell-aside .next-shell-ancillary.next-shell-collapse{width:0}.next-shell-dark .next-shell-header .dock-trigger,.next-shell-dark .next-shell-header .nav-trigger{background:#222}.next-shell-dark .next-shell-aside .local-nav-trigger{background:#f2f2f2}.next-shell-dark .next-shell-aside .ancillary-trigger{background:#fff}.next-shell-dark .next-shell-header{color:#fff;height:52px;background:#222;border-bottom:1px solid #1f1f1f;box-shadow:0 1px 3px 0 rgba(0,0,0,.12);padding:0 16px}.next-shell-dark .next-shell-header .next-shell-navigation{justify-content:flex-end;height:52px;line-height:52px;margin:0 48px}.next-shell-dark .next-shell-task-header{width:100%;min-height:40px;background:#fff;border-bottom:1px solid #eee;box-shadow:none;padding:0;overflow:auto}.next-shell-dark .next-shell-main{background:#f5f5f5}.next-shell-dark .next-shell-main .next-shell-appbar{min-height:48px;background:#fff;border-bottom:1px solid #eee;box-shadow:none;padding:0 24px}.next-shell-dark .next-shell-main .next-shell-content{padding:20px}.next-shell-dark .next-shell-main .next-shell-footer{background:transparent;min-height:56px;color:#ccc;font-size:14px}.next-shell-dark .next-shell-aside.next-shell-navigation{width:200px;background:#222;border-right:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-dark .next-shell-aside.next-shell-navigation.next-shell-collapse.next-shell-mini{width:60px}.next-shell-dark .next-shell-aside.next-shell-navigation.next-shell-collapse{width:0}.next-shell-dark .next-shell-aside.next-shell-tooldock{width:52px;background:#f2f2f2;border-left:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-dark .next-shell-aside .next-shell-tooldockitem{padding:8px 0;color:#666;background:transparent}.next-shell-dark .next-shell-aside .next-shell-tooldockitem:hover{color:#333;background:#f5f5f5}.next-shell-dark .next-shell-aside .next-shell-localnavigation{width:168px;background:#f2f2f2;border-right:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-dark .next-shell-aside .next-shell-localnavigation.next-shell-collapse{width:0}.next-shell-dark .next-shell-aside .next-shell-ancillary{width:168px;background:#fff;border-left:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-dark .next-shell-aside .next-shell-ancillary.next-shell-collapse{width:0}.next-shell-brand .next-shell-header .dock-trigger,.next-shell-brand .next-shell-header .nav-trigger{background:#18263c}.next-shell-brand .next-shell-aside .local-nav-trigger{background:#f2f2f2}.next-shell-brand .next-shell-aside .ancillary-trigger{background:#fff}.next-shell-brand .next-shell-header{color:#fff;height:52px;background:#18263c;border-bottom:1px solid #eee;box-shadow:0 1px 3px 0 rgba(0,0,0,.12);padding:0 16px}.next-shell-brand .next-shell-header .next-shell-navigation{justify-content:flex-end;height:52px;line-height:52px;margin:0 48px}.next-shell-brand .next-shell-task-header{width:100%;min-height:40px;background:#fff;border-bottom:1px solid #eee;box-shadow:none;padding:0;overflow:auto}.next-shell-brand .next-shell-main{background:#f5f5f5}.next-shell-brand .next-shell-main .next-shell-appbar{min-height:48px;background:#fff;border-bottom:1px solid #eee;box-shadow:none;padding:0 24px}.next-shell-brand .next-shell-main .next-shell-content{padding:20px}.next-shell-brand .next-shell-main .next-shell-footer{background:transparent;min-height:56px;color:#ccc;font-size:14px}.next-shell-brand .next-shell-aside.next-shell-navigation{width:200px;background:#fff;border-right:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-brand .next-shell-aside.next-shell-navigation.next-shell-collapse.next-shell-mini{width:60px}.next-shell-brand .next-shell-aside.next-shell-navigation.next-shell-collapse{width:0}.next-shell-brand .next-shell-aside.next-shell-tooldock{width:52px;background:#f2f2f2;border-left:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-brand .next-shell-aside .next-shell-tooldockitem{padding:8px 0;color:#666;background:transparent}.next-shell-brand .next-shell-aside .next-shell-tooldockitem:hover{color:#333;background:#f5f5f5}.next-shell-brand .next-shell-aside .next-shell-localnavigation{width:168px;background:#f2f2f2;border-right:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-brand .next-shell-aside .next-shell-localnavigation.next-shell-collapse{width:0}.next-shell-brand .next-shell-aside .next-shell-ancillary{width:168px;background:#fff;border-left:1px solid #eee;box-shadow:none;padding:8px 0}.next-shell-brand .next-shell-aside .next-shell-ancillary.next-shell-collapse{width:0}.next-shell-header .next-shell-navigation.next-shell-nav-left{justify-content:flex-start}.next-shell-header .next-shell-navigation.next-shell-nav-right{justify-content:flex-end}.next-shell-header .next-shell-navigation.next-shell-nav-center{justify-content:center}.next-shell.next-shell-phone .next-aside-navigation{width:100%}.next-shell.next-shell-phone .next-aside-navigation.next-shell-collapse{width:0}.next-shell.next-shell-phone .next-shell-header .next-shell-navigation{display:none}.next-shell.next-shell-phone .next-shell-navigation{width:100%;height:100%;transition:height .2s ease}.next-shell.next-shell-phone .next-shell-navigation.next-shell-collapse{padding:0;height:0;transition:height .2s ease}.next-shell.next-shell-phone .next-shell-tooldock{height:52px;left:0;right:0;position:absolute;width:100%;flex-direction:row;justify-content:center}.next-shell.next-shell-phone .next-shell-tooldock.next-shell-collapse{display:none;height:0;padding:0;transition:all .2s ease}.next-shell.next-shell-phone .next-shell-aside.next-aside-ancillary,.next-shell.next-shell-tablet .next-shell-aside.next-aside-ancillary{width:0}.next-shell.next-shell-phone .next-shell-ancillary,.next-shell.next-shell-tablet .next-shell-ancillary{transform:translateX(-100%)}.next-shell.next-shell-phone .next-shell-aside.next-aside-localnavigation,.next-shell.next-shell-tablet .next-shell-aside.next-aside-localnavigation{width:0}.next-notification{width:384px;position:fixed;z-index:1010;padding:0;margin:0}.next-notification .next-message{margin-bottom:16px;overflow:hidden}.next-notification-fade-leave{animation-duration:.3s;animation-play-state:paused;animation-fill-mode:both;animation-timing-function:ease}.next-notification-fade-leave.next-notification-fade-leave-active{animation-name:NotificationFadeOut;animation-play-state:running}@keyframes NotificationFadeOut{0%{max-height:150px;margin-bottom:16px;opacity:1}to{max-height:0;margin-bottom:0;padding-top:0;padding-bottom:0;opacity:0}}.next-typography{color:#333}.next-typography-title{font-weight:600;margin-bottom:.5em}.next-typography+.next-typography-title{margin-top:1.2em}.next-typography-paragraph{color:#333;margin-bottom:1em;font-size:14px;line-height:1.5}.next-typography mark{padding:0;background:#ffe98f;color:#333}.next-typography strong{font-weight:600}.next-typography code{background-color:#f9f9f9;color:#333;border:1px solid #eee;margin:0 .2em;padding:.2em .4em .1em;font-size:85%;border-radius:3px}.next-typography ol,.next-typography ul{margin:0 0 1em;padding:0}.next-typography li{list-style-type:circle;margin:0 0 0 20px;padding:0 0 0 4px}.next-typography a{text-decoration:none}.next-typography a:link{color:#298dff}.next-typography a:visited{color:#4a83c5}.next-typography a:hover{color:#2580e7}.next-typography a:active{text-decoration:underline;color:#2580e7}h1.next-typography-title{font-size:24px}h2.next-typography-title{font-size:20px}h3.next-typography-title,h4.next-typography-title{font-size:16px}.next-divider,h5.next-typography-title,h6.next-typography-title{font-size:14px}.next-divider{margin:0;padding:0;line-height:1.5;list-style:none;font-variant:tabular-nums;font-feature-settings:"tnum";background:#e6e6e6;border-collapse:separate}.next-divider,.next-divider *,.next-divider :after,.next-divider :before{box-sizing:border-box}.next-divider-hoz{display:block;clear:both;width:100%;min-width:100%;height:1px;margin:16px 0}.next-divider-ver{position:relative;top:-.06em;display:inline-block;width:1px;background:#e6e6e6;height:.9em;margin:0 8px;vertical-align:middle}.next-divider-hoz.next-divider-with-text-center,.next-divider-hoz.next-divider-with-text-left,.next-divider-hoz.next-divider-with-text-right{display:table;margin:16px 0;color:#333;font-weight:400;font-size:16px;white-space:nowrap;text-align:center;background:transparent}.next-divider-hoz.next-divider-with-text-center:after,.next-divider-hoz.next-divider-with-text-center:before,.next-divider-hoz.next-divider-with-text-left:after,.next-divider-hoz.next-divider-with-text-left:before,.next-divider-hoz.next-divider-with-text-right:after,.next-divider-hoz.next-divider-with-text-right:before{top:50%;display:table-cell;width:50%;border-top:1px solid #e6e6e6;transform:translateY(50%);content:""}.next-divider-hoz.next-divider-with-text-center.next-divider-dashed,.next-divider-hoz.next-divider-with-text-left.next-divider-dashed,.next-divider-hoz.next-divider-with-text-right.next-divider-dashed{border-top:0}.next-divider-hoz.next-divider-with-text-center.next-divider-dashed:after,.next-divider-hoz.next-divider-with-text-center.next-divider-dashed:before,.next-divider-hoz.next-divider-with-text-left.next-divider-dashed:after,.next-divider-hoz.next-divider-with-text-left.next-divider-dashed:before,.next-divider-hoz.next-divider-with-text-right.next-divider-dashed:after,.next-divider-hoz.next-divider-with-text-right.next-divider-dashed:before{border-style:dashed none none}.next-divider-hoz.next-divider-with-text-left .next-divider-inner-text,.next-divider-hoz.next-divider-with-text-right .next-divider-inner-text{display:inline-block;padding:0 16px}.next-divider-hoz.next-divider-with-text-left:before{top:50%;width:5%}.next-divider-hoz.next-divider-with-text-left:after,.next-divider-hoz.next-divider-with-text-right:before{top:50%;width:95%}.next-divider-hoz.next-divider-with-text-right:after{top:50%;width:5%}.next-divider-inner-text{display:inline-block;padding:0 16px}.next-divider-dashed{background:none;border:dashed #e6e6e6;border-width:1px 0 0}.next-divider-dashed.next-divider-ver{border-width:0 0 0 1px}.next-box{display:flex}.next-box,.next-box *,.next-box :after,.next-box :before,.next-table{box-sizing:border-box}.next-table{position:relative;border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top:1px solid #e6e6e6;border-left:1px solid #e6e6e6}.next-table *,.next-table :after,.next-table :before{box-sizing:border-box}.next-table .next-table-header tr:first-child th:first-child{border-top-left-radius:0}.next-table .next-table-header tr:first-child th:last-child{border-top-right-radius:0}.next-table .next-table-header tr:last-child th:first-child{border-bottom-left-radius:0}.next-table .next-table-header tr:last-child th:last-child{border-bottom-right-radius:0}.next-table.next-table-layout-fixed{overflow:auto}.next-table.next-table-layout-fixed table{table-layout:fixed}.next-table.next-table-layout-auto table{table-layout:auto}.next-table.next-table-small .next-table-prerow .next-table-cell-wrapper,.next-table.next-table-small td .next-table-cell-wrapper,.next-table.next-table-small th .next-table-cell-wrapper{padding:8px}.next-table table{border-collapse:separate;border-spacing:0;width:100%;background:#fff;border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.next-table table tr:first-child td{border-top-width:0}.next-table th{padding:0;background:#f5f5f5;color:#333;text-align:left;font-weight:400;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.next-table th .next-table-cell-wrapper{padding:12px 16px;overflow:hidden;text-overflow:ellipsis;word-break:break-all}.next-table th.next-table-prerow .next-table-cell-wrapper{padding:12px 16px}.next-table th.next-table-word-break-word .next-table-cell-wrapper{word-break:break-word}.next-table th.next-table-fix-left,.next-table th.next-table-fix-right{z-index:1}.next-table-affix{z-index:1;overflow:hidden}.next-table-stickylock .next-table-affix{z-index:9}.next-table-header-resizable{position:relative}.next-table-header-resizable .next-table-resize-handler{position:absolute;right:-5px;top:0;bottom:0;width:10px;background:transparent;cursor:ew-resize}.next-table-header-resizable .next-table-resize-handler:after{position:absolute;display:block;content:" ";width:2px;height:100%;right:50%}.next-table-header-resizable .next-table-resize-handler:hover:after{z-index:1;background:#209bfa}.next-table.next-table-lock-left .next-table-header-resizable .next-table-resize-handler,.next-table.next-table-lock-right .next-table-header-resizable .next-table-resize-handler{cursor:auto}.next-table.next-table-lock-left .next-table-header-resizable .next-table-resize-handler:hover:after,.next-table.next-table-lock-right .next-table-header-resizable .next-table-resize-handler:hover:after{z-index:-1}.next-table td{padding:0;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.next-table td .next-table-cell-wrapper{padding:12px 16px;overflow:hidden;text-overflow:ellipsis;word-break:break-all}.next-table td .next-table-cell-wrapper .next-icon-arrow-down.next-table-tree-arrow,.next-table td .next-table-cell-wrapper .next-icon-arrow-right.next-table-tree-arrow,.next-table td .next-table-cell-wrapper .next-table-tree-placeholder{margin-right:8px;outline:0;cursor:pointer}.next-table td .next-table-cell-wrapper .next-icon-arrow-right.next-table-tree-arrow .next-icon-remote,.next-table td .next-table-cell-wrapper .next-icon-arrow-right.next-table-tree-arrow:before{width:12px;font-size:12px;line-height:inherit}.next-table td .next-table-cell-wrapper .next-icon-arrow-right.next-table-tree-arrow:before{content:"î"}.next-table td .next-table-cell-wrapper .next-icon-arrow-down.next-table-tree-arrow .next-icon-remote,.next-table td .next-table-cell-wrapper .next-icon-arrow-down.next-table-tree-arrow:before{width:12px;font-size:12px;line-height:inherit}.next-table td .next-table-cell-wrapper .next-icon-arrow-down.next-table-tree-arrow:before{content:"î½"}.next-table td.next-table-prerow .next-table-cell-wrapper{padding:12px 16px}.next-table td.next-table-word-break-word .next-table-cell-wrapper{word-break:break-word}.next-table .next-table-expanded .next-table-cell-wrapper,.next-table .next-table-selection .next-table-cell-wrapper{overflow:visible}.next-table.no-header table tr:first-child td{border-top-width:1px}.next-table.only-bottom-border{border-width:0}.next-table.only-bottom-border td,.next-table.only-bottom-border th{border-width:0 0 1px}.next-table.only-bottom-border table tr td:first-child,.next-table.only-bottom-border table tr th:first-child{border-left-width:0}.next-table.only-bottom-border .next-table-body tr td:last-child,.next-table.only-bottom-border .next-table-header tr th:last-child{border-right-width:0}.next-table-loading{display:block}.next-table.zebra tr:nth-child(odd) td{background:#fff}.next-table.zebra tr:nth-child(2n) td{background:#fafafa}.next-table.zebra .next-table-cell.hovered,.next-table.zebra .next-table-row.hovered td{background:#fafafa;color:#333}.next-table.zebra .next-table-row.selected td{background:#f9f9f9;color:#333}.next-table-empty{color:#ccc;padding:32px 0;text-align:center}.next-table-expanded-row>td{border-width:0 0 1px}.next-table-expanded-row>td:first-child{border-left-width:1px}.next-table-expanded-row>td:last-child{border-right-width:1px}.next-table-expanded-row:last-child>td{border-bottom-width:1px}.next-table-expanded-row .next-table{border-top:0;border-left:0}.next-table-expanded-row .next-table td,.next-table-expanded-row .next-table th{border-right:1px solid #e6e6e6}.next-table-expanded-row .next-table.only-bottom-border td,.next-table-expanded-row .next-table.only-bottom-border th{border-right:0}.next-table-expanded-row .next-table .last td{border-bottom:0}.next-table-expanded-row .next-table td.last,.next-table-expanded-row .next-table th:last-child{border-right:0}.next-table-filter-footer{margin:10px 10px 0}.next-table-filter-footer button{margin-right:5px}.next-table-row{transition:all .1s linear;background:#fff;color:#333}.next-table-row.hidden{display:none}.next-table-row.hovered{background:#fafafa;color:#333}.next-table-row.selected{background:#f9f9f9;color:#333}.next-table-cell.hovered{background:#fafafa;color:#333}.next-table-tree-placeholder{visibility:hidden}.next-table-tree-placeholder .next-icon-remote,.next-table-tree-placeholder:before{width:12px;font-size:12px;line-height:inherit}.last .next-table-expanded-row td{border-bottom-width:1px}.next-table-body,.next-table-header{overflow:auto;font-size:14px}.next-table-column-resize-proxy{position:absolute;top:0;bottom:0;width:0;border-left:2px solid #209bfa;z-index:10;display:none}.next-table-header{margin-bottom:-20px;padding-bottom:20px;border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:0;overflow:-moz-scrollbars-none;-ms-overflow-style:none;scrollbar-width:none}.next-table-header::-webkit-scrollbar{display:none}.next-table-body{font-size:14px;position:relative}.next-table-fixed{border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.next-table-fixed table{table-layout:fixed}.next-table-fixed .next-table-header{background:#f5f5f5}.next-table-fixed table tr td:first-child,.next-table-fixed table tr th:first-child{border-left-width:0}.next-table-fixed .next-table-header th{border-top-width:0}.next-table-fixed .next-table-header tr th:last-child{border-right-width:0}.next-table-fixed .next-table-body td{border-top-width:0}.next-table-fixed .next-table-body tr:last-child td{border-bottom-width:0}.next-table-fixed .next-table-body tr td:last-child{border-right-width:0}.next-table-fixed.only-bottom-border .next-table-body tr:last-child td{border-bottom-width:1px}.next-table-fixed.next-table-group table tr td:first-child,.next-table-fixed.next-table-group table tr th:first-child{border-left-width:1px}.next-table-fixed.next-table-group .next-table-header th{border-top-width:1px}.next-table-fixed.next-table-group .next-table-header tr th:last-child{border-right-width:1px}.next-table-fixed.next-table-group .next-table-body td{border-top-width:1px}.next-table-fixed.next-table-group .next-table-body tr:last-child td{border-bottom-width:1px}.next-table-fixed.next-table-group .next-table-body tr td:last-child,.next-table-fixed.next-table-lock-left .next-table-body tr td:last-child,.next-table-fixed.next-table-lock-left .next-table-header tr th:last-child{border-right-width:1px}.next-table-lock .next-table-body{overflow-x:auto;overflow-y:visible}.next-table-group{border-width:0}.next-table-group.only-bottom-border .next-table-body table,.next-table-group.only-bottom-border .next-table-header table{border-left:0}.next-table-group.only-bottom-border .next-table-body table,.next-table-group.only-bottom-border .next-table-body table.next-table-row,.next-table-group.only-bottom-border .next-table-header table{border-top:0}.next-table-group.only-bottom-border .next-table-body .next-table-group-footer td{border-bottom:0}.next-table-group .next-table-body{margin-top:8px}.next-table-group .next-table-body table{border-top:1px solid #e6e6e6;border-left:1px solid #e6e6e6;margin-bottom:8px}.next-table-group .next-table-body table tr:first-child td{border-top-width:1px}.next-table-group .next-table-body table:last-of-type{margin-bottom:0}.next-table-group .next-table-header table{border-top:1px solid #e6e6e6;border-left:1px solid #e6e6e6}.next-table-group .next-table-group-header td{background:#f5f5f5;color:#333}.next-table-group .next-table-group-header td:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.next-table-group .next-table-group-header td:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.next-table-group .next-table-group-footer td{background:#f5f5f5;color:#333}.next-table-group .next-table-group-footer td:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.next-table-group .next-table-group-footer td:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.next-table-group .next-table-row.hovered,.next-table-group .next-table-row.selected{background:#fff;color:#333}.next-table-lock{position:relative}.next-table-lock table{table-layout:fixed}.next-table-header-inner{overflow:unset}.next-table-header-fixer{content:" ";border-top-right-radius:0;border-bottom-right-radius:0;width:15px;background:inherit;position:absolute;right:0;height:100%;top:0}.next-table-wrap-empty .next-table-lock-left td,.next-table-wrap-empty .next-table-lock-right td{border:none}.next-table-wrap-empty .next-table-lock-left .next-table-empty,.next-table-wrap-empty .next-table-lock-right .next-table-empty{display:none}.next-table-wrap-empty>.next-table-inner>.next-table-body>table{table-layout:fixed}.next-table-lock-left,.next-table-lock-right{position:absolute;left:0;top:0;z-index:1;border:0;transition:box-shadow .3s ease;overflow:hidden}.next-table-lock-left table,.next-table-lock-right table{width:auto}.next-table-lock-left .next-table-body,.next-table-lock-right .next-table-body{overflow-y:scroll;overflow-x:hidden;margin-right:-20px;padding-right:0}.next-table-lock-left.shadow .next-table-body tr td:last-child,.next-table-lock-left.shadow .next-table-header tr th:last-child,.next-table-lock-right.shadow .next-table-body tr td:last-child,.next-table-lock-right.shadow .next-table-header tr th:last-child{border-right-width:0}.next-table-lock-right{right:0;left:auto}.next-table-lock-right table tr td:first-child,.next-table-lock-right table tr th:first-child{border-left-width:1px}.next-table-lock-right.shadow{box-shadow:-2px 0 3px rgba(0,0,0,.12)}.next-table-lock-left.shadow{box-shadow:2px 0 3px rgba(0,0,0,.12)}.next-table-filter{line-height:1}.next-table-sort{cursor:pointer;position:relative;width:16px;display:inline-block;line-height:1}.next-table-sort:focus{outline:0}.next-table-sort>a:before{content:" ";display:inline-block;vertical-align:middle}.next-table-sort .next-icon{position:absolute;left:-2px;color:#333}.next-table-sort .next-icon .next-icon-remote,.next-table-sort .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-table-sort .current .next-icon{color:#209bfa}.next-table-sort .next-icon-ascending{left:2px}.next-table-filter{cursor:pointer;width:20px;display:inline-block}.next-table-filter:focus{outline:0}.next-table-filter .next-icon{color:#333}.next-table-filter .next-icon .next-icon-remote,.next-table-filter .next-icon:before{width:12px;font-size:12px;line-height:inherit}.next-table-filter .next-table-filter-active{color:#209bfa}.next-table-filter-menu .next-menu-content{max-height:220px;overflow:auto}.next-table-header-icon{margin-left:8px}.next-table-expanded-ctrl{cursor:pointer}.next-table-expanded-ctrl:focus{outline:0}.next-table-expanded-ctrl.disabled{color:#999}.next-table-expanded-ctrl .next-table-expand-unfold .next-icon-remote,.next-table-expanded-ctrl .next-table-expand-unfold:before{width:12px;font-size:12px;line-height:inherit}.next-table-expanded-ctrl .next-table-expand-unfold:before{content:"î"}.next-table-expanded-ctrl .next-table-expand-fold .next-icon-remote,.next-table-expanded-ctrl .next-table-expand-fold:before{width:12px;font-size:12px;line-height:inherit}.next-table-expanded-ctrl .next-table-expand-fold:before{content:"î"}.next-table-fix-left,.next-table-fix-right{background:inherit;position:sticky;z-index:1;background-clip:padding-box}.next-table-ping-left .next-table-expanded-area .next-table-fix-left-last:after{content:none}.next-table-ping-left .next-table-expanded-area .next-table-ping-left .next-table-fix-left-last,.next-table-ping-left .next-table-fix-left-last{border-right-width:0}.next-table-ping-left .next-table-expanded-area .next-table-ping-left .next-table-fix-left-last:after,.next-table-ping-left .next-table-fix-left-last:after{box-shadow:inset 10px 0 8px -8px rgba(0,0,0,.15);position:absolute;top:0;right:0;bottom:0;width:30px;content:"";pointer-events:none;transition:box-shadow .3s,-webkit-box-shadow .3s;transform:translateX(100%)}.next-table-ping-right .next-table-expanded-area .next-table-fix-right-first:after{content:none}.next-table-ping-right .next-table-expanded-area .next-table-ping-right .next-table-fix-right-first:after,.next-table-ping-right .next-table-fix-right-first:after{box-shadow:inset -10px 0 8px -8px rgba(0,0,0,.15);position:absolute;top:0;left:0;bottom:0;width:30px;content:"";pointer-events:none;transition:box-shadow .3s,-webkit-box-shadow .3s;transform:translateX(-100%)}.next-table-fixed.next-table-scrolling-to-right:after,.next-table-lock.next-table-scrolling-to-right:after{box-shadow:inset -10px 0 8px -8px rgba(0,0,0,.15);position:absolute;top:0;right:-30px;bottom:0;width:30px;content:"";pointer-events:none;transition:box-shadow .3s,-webkit-box-shadow .3s;transform:translateX(-100%)}.next-table-fixed.only-bottom-border,.next-table-lock.only-bottom-border{border-right:0}.next-table[dir=rtl] th{text-align:right}.next-table[dir=rtl] .next-table-header-resizable .next-table-resize-handler{right:auto;left:0}.next-table[dir=rtl] td .next-table-cell-wrapper .next-icon-arrow-down.next-table-tree-arrow,.next-table[dir=rtl] td .next-table-cell-wrapper .next-icon-arrow-right.next-table-tree-arrow,.next-table[dir=rtl] td .next-table-cell-wrapper .next-table-tree-placeholder{margin-left:3px;margin-right:0;float:right}.next-table[dir=rtl] .next-table-expanded-row td:first-child{border-left-width:0;border-right-width:1px}.next-table[dir=rtl] .next-table-expanded-row td:last-child{border-left-width:1px;border-right-width:0}.next-table[dir=rtl].only-bottom-border .next-table-expanded-row td,.next-table[dir=rtl].only-bottom-border .next-table-expanded-row th{border-width:0 0 1px}.next-table[dir=rtl] .next-table-filter-footer button{margin-left:5px;margin-right:0}.next-table[dir=rtl] .next-table-lock-left,.next-table[dir=rtl] .next-table-lock-right{left:auto;right:0}.next-table[dir=rtl] .next-table-lock-right{right:auto;left:0}.next-table[dir=rtl] .next-table-lock-right table tr td:first-child,.next-table[dir=rtl] .next-table-lock-right table tr th:first-child{border-right-width:1px}.next-table[dir=rtl] .next-table-lock-right.shadow{box-shadow:2px 0 3px rgba(0,0,0,.12)}.next-table[dir=rtl] .next-table-lock-left.shadow{box-shadow:-2px 0 3px rgba(0,0,0,.12)}.next-table[dir=rtl] .next-table-sort .next-icon{right:0;left:auto}.next-table[dir=rtl] .next-table-sort .next-icon-ascending{right:4px;left:auto}.next-table[dir=rtl] .next-table-filter{margin-right:5px;margin-left:0}.next-table-fixed[dir=rtl] table tr td:first-child,.next-table-fixed[dir=rtl] table tr th:first-child{border-left-width:1px;border-right-width:0}.next-table-fixed[dir=rtl] .next-table-body tr td:last-child,.next-table-fixed[dir=rtl] .next-table-header tr th:last-child{border-left-width:1px}.next-calendar2,.next-calendar2 *,.next-calendar2 :after,.next-calendar2 :before{box-sizing:border-box}.next-calendar2 table{border-collapse:collapse;border-spacing:0}.next-calendar2 td,.next-calendar2 th{padding:0}div[dir=rtl].next-calendar2-card .next-calendar2-header-actions,div[dir=rtl].next-calendar2-fullscreen .next-calendar2-header-actions,div[dir=rtl].next-calendar2-panel .next-calendar2-header-actions{margin-right:auto;margin-left:0}div[dir=rtl].next-calendar2-card .next-calendar2-header-actions>:not(:first-child),div[dir=rtl].next-calendar2-card .next-calendar2-header-ranges>:not(:first-child),div[dir=rtl].next-calendar2-fullscreen .next-calendar2-header-actions>:not(:first-child),div[dir=rtl].next-calendar2-fullscreen .next-calendar2-header-ranges>:not(:first-child),div[dir=rtl].next-calendar2-panel .next-calendar2-header-actions>:not(:first-child),div[dir=rtl].next-calendar2-panel .next-calendar2-header-ranges>:not(:first-child){margin-right:8px;margin-left:0}div[dir=rtl].next-calendar2-fullscreen .next-calendar2-cell-value,div[dir=rtl].next-calendar2-fullscreen .next-calendar2-table th{text-align:left}div[dir=rtl].next-calendar2-fullscreen .next-calendar2-table th{padding:0 0 5px 12px}.next-calendar2{font-size:12px;user-select:none;background:#fff}.next-calendar2-header{display:flex}.next-calendar2-table{width:100%;table-layout:fixed}.next-calendar2-cell{cursor:pointer;position:relative;transition:background-color .2s,border .2s}.next-calendar2 .next-calendar2-cell-inner{color:#ccc;outline:none;min-width:24px;position:relative;border:1px solid transparent}.next-calendar2-cell-disabled:before{color:#ccc;background:#fafafa}.next-calendar2-card .next-calendar2-header-actions,.next-calendar2-fullscreen .next-calendar2-header-actions,.next-calendar2-panel .next-calendar2-header-actions{margin-left:auto}.next-calendar2-card .next-calendar2-header-actions>:not(:first-child),.next-calendar2-card .next-calendar2-header-ranges>:not(:first-child),.next-calendar2-fullscreen .next-calendar2-header-actions>:not(:first-child),.next-calendar2-fullscreen .next-calendar2-header-ranges>:not(:first-child),.next-calendar2-panel .next-calendar2-header-actions>:not(:first-child),.next-calendar2-panel .next-calendar2-header-ranges>:not(:first-child){margin-left:8px}.next-calendar2-card .next-calendar2-header-select-month,.next-calendar2-card .next-calendar2-header-select-year,.next-calendar2-fullscreen .next-calendar2-header-select-month,.next-calendar2-fullscreen .next-calendar2-header-select-year,.next-calendar2-panel .next-calendar2-header-select-month,.next-calendar2-panel .next-calendar2-header-select-year{min-width:88px}.next-calendar2-card .next-calendar2-header-select-month .next-input,.next-calendar2-card .next-calendar2-header-select-year .next-input,.next-calendar2-fullscreen .next-calendar2-header-select-month .next-input,.next-calendar2-fullscreen .next-calendar2-header-select-year .next-input,.next-calendar2-panel .next-calendar2-header-select-month .next-input,.next-calendar2-panel .next-calendar2-header-select-year .next-input{min-width:auto}.next-calendar2-card .next-calendar2-body,.next-calendar2-fullscreen .next-calendar2-body,.next-calendar2-panel .next-calendar2-body{padding:8px 0}.next-calendar2-card .next-calendar2-cell-inner,.next-calendar2-panel .next-calendar2-cell-inner{z-index:2;height:24px;line-height:22px;border-radius:2px;display:inline-block}.next-calendar2-card .next-calendar2,.next-calendar2-panel .next-calendar2{min-height:150px}.next-calendar2-card .next-calendar2-table thead>tr,.next-calendar2-panel .next-calendar2-table thead>tr{height:24px;color:#999}.next-calendar2-card .next-calendar2-table td,.next-calendar2-card .next-calendar2-table th,.next-calendar2-panel .next-calendar2-table td,.next-calendar2-panel .next-calendar2-table th{font-weight:400;text-align:center;padding:4px 0}.next-calendar2-card .next-calendar2-table th,.next-calendar2-panel .next-calendar2-table th{height:32px}.next-calendar2-card .next-calendar2-table-decade,.next-calendar2-card .next-calendar2-table-month,.next-calendar2-card .next-calendar2-table-year,.next-calendar2-panel .next-calendar2-table-decade,.next-calendar2-panel .next-calendar2-table-month,.next-calendar2-panel .next-calendar2-table-year{height:145px}.next-calendar2-card .next-calendar2-table-decade .next-calendar2-cell-inner,.next-calendar2-card .next-calendar2-table-month .next-calendar2-cell-inner,.next-calendar2-card .next-calendar2-table-year .next-calendar2-cell-inner,.next-calendar2-panel .next-calendar2-table-decade .next-calendar2-cell-inner,.next-calendar2-panel .next-calendar2-table-month .next-calendar2-cell-inner,.next-calendar2-panel .next-calendar2-table-year .next-calendar2-cell-inner{min-width:56px}.next-calendar2-card .next-calendar2-table-quarter,.next-calendar2-panel .next-calendar2-table-quarter{height:50px}.next-calendar2-card .next-calendar2-table-quarter .next-calendar2-cell-inner,.next-calendar2-panel .next-calendar2-table-quarter .next-calendar2-cell-inner{min-width:56px}.next-calendar2-card .next-calendar2-table-decade .next-calendar2-cell-inner,.next-calendar2-panel .next-calendar2-table-decade .next-calendar2-cell-inner{min-width:80px}.next-calendar2-card .next-calendar2-cell-current:not(.next-calendar2-cell-disabled):not(.next-calendar2-cell-selected):not(.next-calendar2-cell-today) .next-calendar2-cell-inner,.next-calendar2-panel .next-calendar2-cell-current:not(.next-calendar2-cell-disabled):not(.next-calendar2-cell-selected):not(.next-calendar2-cell-today) .next-calendar2-cell-inner{color:#666}.next-calendar2-card .next-calendar2-cell-current:not(.next-calendar2-cell-disabled):not(.next-calendar2-cell-selected):not(.next-calendar2-cell-today):hover:not(.next-calendar2-cell-hover) .next-calendar2-cell-inner,.next-calendar2-panel .next-calendar2-cell-current:not(.next-calendar2-cell-disabled):not(.next-calendar2-cell-selected):not(.next-calendar2-cell-today):hover:not(.next-calendar2-cell-hover) .next-calendar2-cell-inner{background:#f9f9f9}.next-calendar2-card .next-calendar2-cell-current.next-calendar2-cell-today:not(.next-calendar2-cell-disabled) .next-calendar2-cell-inner,.next-calendar2-panel .next-calendar2-cell-current.next-calendar2-cell-today:not(.next-calendar2-cell-disabled) .next-calendar2-cell-inner{color:#209bfa}.next-calendar2-card .next-calendar2-cell-current.next-calendar2-cell-selected:not(.next-calendar2-cell-disabled) .next-calendar2-cell-inner,.next-calendar2-panel .next-calendar2-cell-current.next-calendar2-cell-selected:not(.next-calendar2-cell-disabled) .next-calendar2-cell-inner{color:#fff;background:#209bfa}.next-calendar2-fullscreen .next-calendar2-cell-value,.next-calendar2-fullscreen .next-calendar2-table th{text-align:right}.next-calendar2-fullscreen .next-calendar2-table th{padding:0 12px 5px 0}.next-calendar2-fullscreen .next-calendar2-cell-inner{height:80px;border-top:2px solid #eee;margin:0 4px;padding:4px 8px 0}.next-calendar2-fullscreen td .next-calendar2-cell-inner{height:80px;border-top:2px solid #eee}.next-calendar2-fullscreen .next-calendar2-cell-disabled .next-calendar2-cell-inner{color:#ccc;background:#fafafa}.next-calendar2-fullscreen .next-calendar2-cell-current:not(.next-calendar2-cell-disabled):not(.next-calendar2-cell-selected):not(.next-calendar2-cell-today) .next-calendar2-cell-inner{color:#666}.next-calendar2-fullscreen .next-calendar2-cell-current:not(.next-calendar2-cell-disabled):not(.next-calendar2-cell-selected):not(.next-calendar2-cell-today):hover .next-calendar2-cell-inner{background-color:#f9f9f9}.next-calendar2-fullscreen .next-calendar2-cell-current.next-calendar2-cell-today .next-calendar2-cell-inner{color:#209bfa}.next-calendar2-fullscreen .next-calendar2-cell-current .next-calendar2-cell-inner{background-color:#fff}.next-calendar2-fullscreen .next-calendar2-cell-current.next-calendar2-cell-selected:not(.next-calendar2-cell-disabled) .next-calendar2-cell-inner{border-top-color:#209bfa;font-weight:700;color:#209bfa;background:#add9ff}.next-calendar2-card .next-calendar2-header{padding:8px;border-bottom:1px solid #eee}.next-calendar2-panel .next-calendar2-header{padding:0 8px;display:flex;align-items:center;border-bottom:1px solid #eee}.next-calendar2-panel .next-calendar2-header-btn{min-width:20px;line-height:20px;color:#666;font-family:inherit;vertical-align:initial;border-radius:2px}.next-calendar2-panel .next-calendar2-header-btn>span,.next-calendar2-panel .next-calendar2-header-text-field{text-align:center;font-size:14px;color:#333;font-weight:bolder;vertical-align:initial}.next-calendar2-panel .next-calendar2-header-btn:hover,.next-calendar2-panel .next-calendar2-header-btn:hover>span{color:#209bfa}.next-calendar2-panel .next-calendar2-header-left-btn:hover,.next-calendar2-panel .next-calendar2-header-right-btn:hover{background:#f9f9f9}.next-calendar2-panel .next-calendar2-header-text-field{flex:1;height:38px;line-height:38px}.next-calendar2-panel .next-calendar2-header-text-field .next-calendar2-header-btn:not(:first-child){margin-left:6px}.next-calendar2-header-select-month-popup,.next-calendar2-header-select-year-popup{min-width:auto}.next-time-picker2-menu{float:left;text-align:center;padding:8px 0}.next-time-picker2-menu:not(:last-child){border-right:1px solid #e6e6e6}.next-time-picker2-menu-title{cursor:default;height:28px;line-height:28px;font-size:12px;font-weight:400;color:#999;background:#fff}.next-time-picker2-menu ul{position:relative;overflow-y:hidden;overflow-x:auto;list-style:none;margin:0;width:54px;padding:0;font-size:12px;height:224px;scrollbar-width:none;-ms-overflow-style:none}.next-time-picker2-menu ul::-webkit-scrollbar{width:0}.next-time-picker2-menu ul:hover{overflow-y:auto}.next-time-picker2-menu ul:after{display:block;height:192px;content:""}.next-time-picker2-menu-item{cursor:pointer;height:32px;line-height:32px;transition:background .1s linear;color:#666;background:#fff;outline:none;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.next-time-picker2-menu-item:hover{color:#333;background:#f9f9f9}.next-time-picker2-menu-item.next-selected{color:#666;background:#add9ff}.next-time-picker2-menu-item.next-disabled{cursor:not-allowed;color:#ccc;background:#fafafa}.next-time-picker2-panel{box-sizing:border-box;display:flex}.next-time-picker2-panel *,.next-time-picker2-panel :after,.next-time-picker2-panel :before{box-sizing:border-box}.next-time-picker2-panel:after{visibility:hidden;display:block;height:0;font-size:0;content:" ";clear:both}.next-time-picker2-panel-header{border-bottom:1px solid #e6e6e6}.next-time-picker2-panel-input.next-input{width:100%;padding:6px;border-color:transparent;vertical-align:middle}.next-time-picker2-panel .next-time-picker2-menu{flex:1}.next-time-picker2-panel-range .next-time-picker2-panel-list:last-of-type{margin-left:20px}.next-time-picker2-footer{width:min-content;min-width:100%;box-sizing:border-box;text-align:center;border-top:1px solid #f0f0f0;padding:4px 12px;display:flex;min-height:40px;align-items:center;flex-wrap:wrap}.next-time-picker2-footer-actions{margin-left:auto}.next-time-picker2-wrapper[dir=rtl] .next-time-picker2-menu{float:right}.next-time-picker2-wrapper[dir=rtl] .next-time-picker2-menu:not(:last-child){border-right:none;border-left:1px solid #e6e6e6}.next-time-picker2{display:inline-block}.next-time-picker2,.next-time-picker2 *,.next-time-picker2 :after,.next-time-picker2 :before{box-sizing:border-box}.next-time-picker2-trigger .next-input{width:100%}.next-time-picker2-wrapper{padding:4px 0}.next-time-picker2-body{display:block;overflow:hidden;border:1px solid #e6e6e6;border-radius:3px;background:#fff;box-shadow:none}.next-time-picker2-symbol-clock-icon:before{content:"î¡"}.next-time-picker2-input{display:inline-flex;align-items:center;outline:none;box-sizing:border-box;border:1px solid #ddd;vertical-align:middle;width:inherit}.next-time-picker2-input .next-input{border:none;width:100%;height:100%}.next-time-picker2-input .next-input input{height:100%}.next-time-picker2-input.next-time-picker2-input-small{height:24px;border-radius:3px}.next-time-picker2-input.next-time-picker2-input-small .next-input-label{padding-left:8px;font-size:12px}.next-time-picker2-input.next-time-picker2-input-small .next-input-inner{font-size:12px}.next-time-picker2-input.next-time-picker2-input-small .next-input-control,.next-time-picker2-input.next-time-picker2-input-small .next-input-inner-text{padding-right:4px}.next-time-picker2-input.next-time-picker2-input-small input{height:22px;line-height:22px \0 ;padding:0 4px;font-size:12px}.next-time-picker2-input.next-time-picker2-input-small input::placeholder{font-size:12px}.next-time-picker2-input.next-time-picker2-input-small .next-input-text-field{padding:0 4px;font-size:12px;height:22px;line-height:22px}.next-time-picker2-input.next-time-picker2-input-small .next-icon .next-icon-remote,.next-time-picker2-input.next-time-picker2-input-small .next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-time-picker2-input.next-time-picker2-input-small .next-input-control{border-radius:0 3px 3px 0}.next-time-picker2-input.next-time-picker2-input-medium{height:32px;border-radius:3px}.next-time-picker2-input.next-time-picker2-input-medium .next-input-label{padding-left:8px;font-size:14px}.next-time-picker2-input.next-time-picker2-input-medium .next-input-inner{font-size:14px}.next-time-picker2-input.next-time-picker2-input-medium .next-input-control,.next-time-picker2-input.next-time-picker2-input-medium .next-input-inner-text{padding-right:8px}.next-time-picker2-input.next-time-picker2-input-medium input{height:30px;line-height:30px \0 ;padding:0 8px;font-size:14px}.next-time-picker2-input.next-time-picker2-input-medium input::placeholder{font-size:14px}.next-time-picker2-input.next-time-picker2-input-medium .next-input-text-field{padding:0 8px;font-size:14px;height:30px;line-height:30px}.next-time-picker2-input.next-time-picker2-input-medium .next-icon .next-icon-remote,.next-time-picker2-input.next-time-picker2-input-medium .next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-time-picker2-input.next-time-picker2-input-medium .next-input-control{border-radius:0 3px 3px 0}.next-time-picker2-input.next-time-picker2-input-large{height:40px;border-radius:3px}.next-time-picker2-input.next-time-picker2-input-large .next-input-label{padding-left:12px;font-size:16px}.next-time-picker2-input.next-time-picker2-input-large .next-input-inner{font-size:16px}.next-time-picker2-input.next-time-picker2-input-large .next-input-control,.next-time-picker2-input.next-time-picker2-input-large .next-input-inner-text{padding-right:8px}.next-time-picker2-input.next-time-picker2-input-large input{height:38px;line-height:38px \0 ;padding:0 12px;font-size:16px}.next-time-picker2-input.next-time-picker2-input-large input::placeholder{font-size:16px}.next-time-picker2-input.next-time-picker2-input-large .next-input-text-field{padding:0 12px;font-size:16px;height:38px;line-height:38px}.next-time-picker2-input.next-time-picker2-input-large .next-icon .next-icon-remote,.next-time-picker2-input.next-time-picker2-input-large .next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-time-picker2-input.next-time-picker2-input-large .next-input-control{border-radius:0 3px 3px 0}.next-time-picker2-input:hover{border-color:#ccc;background-color:#fff}.next-time-picker2-input.next-time-picker2-input-focus{border-color:#209bfa;background-color:#fff;box-shadow:0 0 0 2px rgba(32,155,250,.2)}.next-time-picker2-input.next-time-picker2-input-noborder{border-color:transparent!important;box-shadow:none!important}.next-time-picker2-input.next-time-picker2-input-disabled{color:#ccc;border-color:#eee;background-color:#fafafa;cursor:not-allowed}.next-time-picker2-input.next-time-picker2-input-disabled:hover{border-color:#eee;background-color:#fafafa}.next-time-picker2-input-separator{color:#ddd;font-size:12px;display:inline-block;min-width:16px;text-align:center}.next-sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;top:0;margin:-1px}.next-date-picker2-footer{width:min-content;min-width:100%;box-sizing:border-box;text-align:center;border-top:1px solid #eee;padding:4px 12px;display:flex;min-height:40px;align-items:center;flex-wrap:wrap;position:relative}.next-date-picker2-footer-preset>.next-btn{margin-right:8px}.next-date-picker2-footer-actions{margin-left:auto}.next-date-picker2-footer-preset-only{width:100%}div[dir=rtl] .next-date-picker2-footer-preset>.next-btn{margin-left:8px;margin-right:0}div[dir=rtl] .next-date-picker2-footer-actions{margin-left:0;margin-right:auto}div[dir=rtl] .next-date-picker2-wrapper .next-calendar2-cell:last-child:before{border-top-right-radius:0;border-bottom-right-radius:0;right:0;border-top-left-radius:2px;border-bottom-left-radius:2px;left:8px}div[dir=rtl] .next-date-picker2-wrapper .next-calendar2-cell:first-child:before{border-top-left-radius:0;border-bottom-left-radius:0;left:0;border-top-right-radius:2px;border-bottom-right-radius:2px;right:8px}div[dir=rtl] .next-date-time-picker-wrapper{border-right:1px solid #eee;border-left:node}div[dir=rtl] .next-date-time-picker-wrapper .next-time-picker2-menu:not(:last-child){border-left:1px solid #dcdee3;border-right:none}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-selected.next-calendar2-cell-range-begin:before{right:50%;left:0}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-selected.next-calendar2-cell-range-end:before{left:50%;right:0}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover.next-calendar2-cell-hover-begin:after,div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover:first-child:after{right:8px}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover.next-calendar2-cell-hover-begin:not(:last-child):after,div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover:first-child:not(.next-calendar2-cell-hover-end):after{left:0}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover.next-calendar2-cell-hover-end:after,div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover:last-child:after{left:8px}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover.next-calendar2-cell-hover-end:not(:first-child):after,div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover:last-child:not(.next-calendar2-cell-hover-begin):after{right:0}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover.next-calendar2-cell-selected.next-calendar2-cell-hover-begin:after{left:0;right:7px}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover.next-calendar2-cell-selected.next-calendar2-cell-hover-end:after{right:0;left:7px}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover:first-of-type:after{border-top-left-radius:0;border-bottom-left-radius:0;border-left:none;border-top-right-radius:2px;border-bottom-right-radius:2px;border-right:1px dashed #1274e7}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover:last-of-type:after{border-top-right-radius:0;border-bottom-right-radius:0;border-right:none;border-top-left-radius:2px;border-bottom-left-radius:2px;border-left:1px dashed #1274e7}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-edge-end:after,div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-edge-end:before{right:0;left:8px}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-edge-end.next-calendar2-cell-hover:after{border-top-right-radius:0;border-bottom-right-radius:0;border-right:none;border-top-left-radius:2px;border-bottom-left-radius:2px;border-left:1px dashed #1274e7}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover-begin:after{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0;border-right:1px dashed #1274e7;border-top-right-radius:2px;border-bottom-right-radius:2px}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover-end:after{border-right:none;border-top-right-radius:0;border-bottom-right-radius:0;border-left:1px dashed #1274e7;border-top-left-radius:2px;border-bottom-left-radius:2px}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-edge-end+.next-calendar2-cell-current:not(.next-calendar2-cell-disabled):after,div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-edge-end+.next-calendar2-cell-current:not(.next-calendar2-cell-disabled):before{right:8px;left:0}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-edge-end+.next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover:after{right:8px;border-top-right-radius:2px;border-bottom-right-radius:2px;border-right:1px dashed #1274e7}div[dir=rtl] .next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-edge-end+.next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover:not(.next-calendar2-cell-hover-end):not(.next-calendar2-cell-hover-begin):after{border-top-left-radius:0;border-bottom-left-radius:0;border-left:none}div[dir=rtl] .next-calendar2-table-week .next-calendar2-week-current .next-calendar2-cell.next-calendar2-cell-selected:nth-child(2):before{right:50%;left:0}div[dir=rtl] .next-calendar2-table-week .next-calendar2-week-current .next-calendar2-cell.next-calendar2-cell-selected:last-child:before{left:50%;right:0}.next-date-picker2{outline:none;display:inline-table;position:relative;width:inherit}.next-date-picker2-overlay{vertical-align:top;padding:4px 0}.next-date-picker2-overlay-range{padding:12px 0}.next-date-picker2-wrapper{box-shadow:0 4px 16px 0 rgba(0,0,0,.12);background-color:#fff;border:1px solid #eee;border-radius:3px}.next-date-picker2-wrapper .next-calendar2-panel{border-radius:3px}.next-date-picker2-wrapper .next-calendar2-body{width:272px}.next-date-picker2-wrapper .next-calendar2-cell:before{content:"";position:absolute;top:50%;right:0;left:0;z-index:1;height:24px;transform:translateY(-50%)}.next-date-picker2-wrapper .next-calendar2-cell:last-child:before{border-top-right-radius:2px;border-bottom-right-radius:2px;right:8px}.next-date-picker2-wrapper .next-calendar2-cell:first-child:before{border-top-left-radius:2px;border-bottom-left-radius:2px;left:8px}.next-date-picker2-input{display:inline-flex;align-items:center;outline:none;box-sizing:border-box;border:1px solid #ddd;vertical-align:middle;width:inherit;background-color:#fff}.next-date-picker2-input .next-input{border:none;flex-basis:100%;height:100%;width:100%}.next-date-picker2-input .next-input input{height:100%;width:auto}.next-date-picker2-input.next-date-picker2-input-small{height:24px;border-radius:3px}.next-date-picker2-input.next-date-picker2-input-small .next-input-label{padding-left:8px;font-size:12px}.next-date-picker2-input.next-date-picker2-input-small .next-input-inner{font-size:12px}.next-date-picker2-input.next-date-picker2-input-small .next-input-control,.next-date-picker2-input.next-date-picker2-input-small .next-input-inner-text{padding-right:4px}.next-date-picker2-input.next-date-picker2-input-small input{height:22px;line-height:22px \0 ;padding:0 4px;font-size:12px}.next-date-picker2-input.next-date-picker2-input-small input::placeholder{font-size:12px}.next-date-picker2-input.next-date-picker2-input-small .next-input-text-field{padding:0 4px;font-size:12px;height:22px;line-height:22px}.next-date-picker2-input.next-date-picker2-input-small .next-icon .next-icon-remote,.next-date-picker2-input.next-date-picker2-input-small .next-icon:before{width:16px;font-size:16px;line-height:inherit}.next-date-picker2-input.next-date-picker2-input-small .next-input-control{border-radius:0 3px 3px 0}.next-date-picker2-input.next-date-picker2-input-medium{height:32px;border-radius:3px}.next-date-picker2-input.next-date-picker2-input-medium .next-input-label{padding-left:8px;font-size:14px}.next-date-picker2-input.next-date-picker2-input-medium .next-input-inner{font-size:14px}.next-date-picker2-input.next-date-picker2-input-medium .next-input-control,.next-date-picker2-input.next-date-picker2-input-medium .next-input-inner-text{padding-right:8px}.next-date-picker2-input.next-date-picker2-input-medium input{height:30px;line-height:30px \0 ;padding:0 8px;font-size:14px}.next-date-picker2-input.next-date-picker2-input-medium input::placeholder{font-size:14px}.next-date-picker2-input.next-date-picker2-input-medium .next-input-text-field{padding:0 8px;font-size:14px;height:30px;line-height:30px}.next-date-picker2-input.next-date-picker2-input-medium .next-icon .next-icon-remote,.next-date-picker2-input.next-date-picker2-input-medium .next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-date-picker2-input.next-date-picker2-input-medium .next-input-control{border-radius:0 3px 3px 0}.next-date-picker2-input.next-date-picker2-input-large{height:40px;border-radius:3px}.next-date-picker2-input.next-date-picker2-input-large .next-input-label{padding-left:12px;font-size:16px}.next-date-picker2-input.next-date-picker2-input-large .next-input-inner{font-size:16px}.next-date-picker2-input.next-date-picker2-input-large .next-input-control,.next-date-picker2-input.next-date-picker2-input-large .next-input-inner-text{padding-right:8px}.next-date-picker2-input.next-date-picker2-input-large input{height:38px;line-height:38px \0 ;padding:0 12px;font-size:16px}.next-date-picker2-input.next-date-picker2-input-large input::placeholder{font-size:16px}.next-date-picker2-input.next-date-picker2-input-large .next-input-text-field{padding:0 12px;font-size:16px;height:38px;line-height:38px}.next-date-picker2-input.next-date-picker2-input-large .next-icon .next-icon-remote,.next-date-picker2-input.next-date-picker2-input-large .next-icon:before{width:20px;font-size:20px;line-height:inherit}.next-date-picker2-input.next-date-picker2-input-large .next-input-control{border-radius:0 3px 3px 0}.next-date-picker2-input:hover{border-color:#ccc;background-color:#fff}.next-date-picker2-input.next-date-picker2-input-focus{border-color:#209bfa;background-color:#fff;box-shadow:0 0 0 2px rgba(32,155,250,.2)}.next-date-picker2-input.next-date-picker2-input-noborder{border-color:transparent!important;box-shadow:none!important}.next-date-picker2-input.next-date-picker2-input-disabled{color:#ccc;border-color:#eee;background-color:#fafafa;cursor:not-allowed}.next-date-picker2-input.next-date-picker2-input-disabled:hover{border-color:#eee;background-color:#fafafa}.next-date-picker2-input-separator{color:#ddd;font-size:12px;line-height:12px;display:inline-block;min-width:16px;text-align:center}.next-date-picker2-panel,.next-range-picker2-panel{display:inline-flex}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-range-picker-left .next-calendar2-header-right-btn,.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-range-picker-right .next-calendar2-header-left-btn{visibility:hidden}.next-range-picker2-arrow{display:block;transform:translateY(-50%) rotate(-45deg);position:absolute;z-index:1;width:10px;height:10px;margin-left:16.5px;border-color:#eee #eee transparent transparent;border-style:solid;border-width:1px;transition:left .3s ease-out;background:#fff}.next-date-picker2-tl-bl .next-range-picker2-arrow{top:12.5px}.next-date-picker2-bl-tl .next-range-picker2-arrow{bottom:13px;transform:translateY(50%) rotate(135deg)}.next-date-time-picker-wrapper{border-left:1px solid #eee}.next-date-time-picker-wrapper .next-calendar2-body{padding-right:0;padding-left:0}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-disabled .next-calendar2-cell-inner{color:#ccc;background:#fafafa}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-selected:before{color:#666;background:#add9ff}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-selected .next-calendar2-cell-inner{color:#666;background:transparent}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-selected.next-calendar2-cell-range-begin .next-calendar2-cell-inner,.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-selected.next-calendar2-cell-range-end .next-calendar2-cell-inner{z-index:10;color:#fff;background:#209bfa}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-selected.next-calendar2-cell-range-begin:before{left:50%}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-selected.next-calendar2-cell-range-end:before{right:50%}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-selected.next-calendar2-cell-range-begin-single:before,.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-selected.next-calendar2-cell-range-end-single:before{display:none}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-hover:after{content:"";position:absolute;top:50%;right:0;left:0;z-index:2;height:24px;transform:translateY(-50%);border-color:#1274e7 transparent;border-style:dashed;border-width:1px}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-hover.next-calendar2-cell-hover-begin:after,.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-hover:first-child:after{left:8px}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-hover.next-calendar2-cell-hover-end:after,.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-hover:last-child:after{right:8px}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-hover.next-calendar2-cell-selected.next-calendar2-cell-hover-begin:after{left:8px}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-hover.next-calendar2-cell-selected.next-calendar2-cell-hover-end:after{right:8px}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-hover:first-of-type:after{border-top-left-radius:2px;border-bottom-left-radius:2px;border-left:1px dashed #1274e7}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-hover:last-of-type:after{border-top-right-radius:2px;border-bottom-right-radius:2px;border-right:1px dashed #1274e7}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-edge-end:after,.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-edge-end:before{right:8px}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-edge-end.next-calendar2-cell-hover:after{border-top-right-radius:2px;border-bottom-right-radius:2px;border-right:1px dashed #1274e7}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-hover-begin:after{border-top:1px dashed #1274e7;border-left:1px dashed #1274e7;border-top-left-radius:2px;border-bottom-left-radius:2px}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-current.next-calendar2-cell-hover-end:after{border-top:1px dashed #1274e7;border-right:1px dashed #1274e7;border-top-right-radius:2px;border-bottom-right-radius:2px}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-edge-end+.next-calendar2-cell-current:not(.next-calendar2-cell-disabled):after,.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-edge-end+.next-calendar2-cell-current:not(.next-calendar2-cell-disabled):before{left:8px}.next-range-picker2-panel:not(.next-range-picker2-panel-single) .next-calendar2-cell-edge-end+.next-calendar2-cell-current:not(.next-calendar2-cell-disabled).next-calendar2-cell-hover:after{border-top-left-radius:2px;border-bottom-left-radius:2px;border-left:1px dashed #1274e7}.next-calendar2-table-week .next-calendar2-cell-hover:after{display:none}.next-calendar2-table-week tr:hover .next-calendar2-cell:not(.next-calendar2-cell-disabled):not(.next-calendar2-cell-selected):before{background:#f9f9f9}.next-calendar2-table-week .next-calendar2-week-current .next-calendar2-cell.next-calendar2-cell-selected .next-calendar2-cell-inner,.next-calendar2-table-week .next-calendar2-week-current .next-calendar2-cell.next-calendar2-cell-selected:before{color:#666;background-color:#add9ff}.next-calendar2-table-week .next-calendar2-week-current .next-calendar2-cell.next-calendar2-cell-selected:last-child .next-calendar2-cell-inner,.next-calendar2-table-week .next-calendar2-week-current .next-calendar2-cell.next-calendar2-cell-selected:nth-child(2) .next-calendar2-cell-inner{color:#fff;background:#209bfa}.next-calendar2-table-week .next-calendar2-week-current .next-calendar2-cell.next-calendar2-cell-selected:nth-child(2):before{left:50%}.next-calendar2-table-week .next-calendar2-week-current .next-calendar2-cell.next-calendar2-cell-selected:last-child:before{right:50%}.next-calendar2-table-week tr:not(.next-calendar2-week-current) td.next-calendar2-cell.next-calendar2-cell-selected:not(.next-calendar2-cell-disabled) .next-calendar2-cell-inner,.next-calendar2-table-week tr:not(.next-calendar2-week-current) td.next-calendar2-cell.next-calendar2-cell-selected:not(.next-calendar2-cell-disabled):before{background-color:transparent;color:#ccc}.next-range-picker2-panel .next-calendar2-week-current .next-calendar2-cell-selected:not(.next-calendar2-cell-disabled):last-child .next-calendar2-cell-inner,.next-range-picker2-panel .next-calendar2-week-current .next-calendar2-cell-selected:not(.next-calendar2-cell-disabled):nth-child(2) .next-calendar2-cell-inner{background-color:#add9ff;color:#666}.next-range-picker2-panel .next-calendar2-week-current .next-calendar2-cell-selected:not(.next-calendar2-cell-disabled).next-calendar2-cell-week-range-begin:last-child .next-calendar2-cell-inner,.next-range-picker2-panel .next-calendar2-week-current .next-calendar2-cell-selected:not(.next-calendar2-cell-disabled).next-calendar2-cell-week-range-begin:nth-child(2) .next-calendar2-cell-inner,.next-range-picker2-panel .next-calendar2-week-current .next-calendar2-cell-selected:not(.next-calendar2-cell-disabled).next-calendar2-cell-week-range-end:last-child .next-calendar2-cell-inner,.next-range-picker2-panel .next-calendar2-week-current .next-calendar2-cell-selected:not(.next-calendar2-cell-disabled).next-calendar2-cell-week-range-end:nth-child(2) .next-calendar2-cell-inner{color:#fff;background:#209bfa}.next-icon-alibaba:before{content:"î¿"}.next-icon-ic_dashboard:before{content:"î¢"}.next-icon-ic_form:before{content:"î¡"}.next-icon-ic_formbeifen:before{content:"î "}.next-icon-ic_language:before{content:"î"}.next-icon-ic_logo:before{content:"î"}.next-icon-ic_tongzhi:before{content:"î"}.next-icon-ic_yusuanguanli:before{content:"î
"}.next-icon-taobao:before{content:"î¾"} |
New file |
| | |
| | | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 390.21"><defs><style>.cls-1{fill:#fff}.cls-2{fill:url(#æªå½åçæ¸å_7)}</style><linearGradient id="æªå½åçæ¸å_7" x1="816.73" y1="195.1" x2="1492.16" y2="195.1" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#4190ff"/><stop offset="1" stop-color="#1be1f6"/></linearGradient></defs><g id="å¾å±_2" data-name="å¾å± 2"><g id="å¾å±_1-2" data-name="å¾å± 1"><path class="cls-1" d="M1788 389.24h-175.45v-77.1H1788c7.13 0 17.72-1.53 26.06-5.83 8.08-4.17 16.35-10.47 16.35-32.72 0-21.89-8.25-28-16.31-32-7.22-3.59-17.1-5.59-27.1-5.59h-69.4c-5.4 0-33.74-.78-61.47-16.17-36.18-20.08-56.13-55.13-56.13-100.46 0-45.17 19.81-80.33 55.78-100.75a133.14 133.14 0 0 1 61.8-16.83h161.92v77.1h-161.76c-.77 0-13.5.64-24.5 7.14-7.5 4.44-16.12 11.39-16.12 33.34s8.58 28.58 16.05 32.83c9.44 5.37 20.87 6.65 24.48 6.69H1787c22.16 0 43.38 4.73 61.37 13.67 38.12 18.94 59.11 54.2 59.11 101 0 46.59-20.64 81.92-58.11 101.25-24.31 12.56-48.91 14.43-61.37 14.43zm-1498.84-3.85c-11.54 0-23.71-3.26-31.17-12.66L72.29 146.09l1 241.22H1l-1-347C0 23.94 9.41 11.27 24.9 5.87s33.65-1.38 43.85 11.47l184.74 228.57V2h72.29l1 346.76c0 16.4-9.41 29.08-24.9 34.48a38.48 38.48 0 0 1-12.72 2.15z"/><path class="cls-2" d="M937.33 390.21c-107.58 0-195.1-87.52-195.1-195.1S829.75 0 937.33 0a193.92 193.92 0 0 1 137.17 56.36l.16.15 52.64 52.64-54.52 54.52-52.56-52.56a118 118 0 1 0 .56 167.43l53.91-53.91 54.52 54.52-53.91 53.91a193.83 193.83 0 0 1-137.97 57.15z"/><path class="cls-2" d="M1379.86 390.21a194 194 0 0 1-137-56.17l-.38-.38-137.2-139.15L1241.9 57.14A193.83 193.83 0 0 1 1379.86 0C1487.44 0 1575 87.52 1575 195.1s-87.56 195.11-195.14 195.11zm-82.66-110.9a118 118 0 1 0-.76-167.67l-82.64 83.1z"/><path class="cls-1" d="M442.45 386.35L552.52 98.73a84.56 84.56 0 0 1 5.35-10.8 79.54 79.54 0 0 1 4.62 9.35l111.4 289.07h82.88L634.2 68.95A164.41 164.41 0 0 0 619 40.2C597.63 8.45 573.9 1.79 557.75 1.79c-29.44 0-49.78 21.48-61.67 39.5a172.83 172.83 0 0 0-15.37 29.34L359.64 386.35z"/><circle cx="1966.27" cy="356.47" r="33.73" fill="#1be1f6"/></g></g></svg> |
New file |
| | |
| | | <!-- |
| | | ~ Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | ~ |
| | | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| | | ~ you may not use this file except in compliance with the License. |
| | | ~ You may obtain a copy of the License at |
| | | ~ |
| | | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| | | ~ |
| | | ~ Unless required by applicable law or agreed to in writing, software |
| | | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| | | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | ~ See the License for the specific language governing permissions and |
| | | ~ limitations under the License. |
| | | --> |
| | | |
| | | <!DOCTYPE html> |
| | | |
| | | <html lang="en"> |
| | | |
| | | <head> |
| | | <meta charset="UTF-8"> |
| | | <meta name="viewport" content="width=device-width,initial-scale=1"> |
| | | <meta http-equiv="X-UA-Compatible" content="ie=edge"> |
| | | <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"> |
| | | <meta http-equiv="Pragma" content="no-cache"> |
| | | <meta http-equiv="Expires" content="0"> |
| | | <title>Nacos</title> |
| | | <link rel="shortcut icon" href="console-ui/public/img/nacos-logo.png" type="image/x-icon"> |
| | | <link rel="stylesheet" type="text/css" href="console-ui/public/css/bootstrap.css"> |
| | | <link rel="stylesheet" type="text/css" href="console-ui/public/css/console1412.css"> |
| | | <!-- ç¬¬ä¸æ¹csså¼å§ --> |
| | | <link rel="stylesheet" type="text/css" href="console-ui/public/css/codemirror.css"> |
| | | <link rel="stylesheet" type="text/css" href="console-ui/public/css/merge.css"> |
| | | <link rel="stylesheet" type="text/css" href="console-ui/public/css/icon.css"> |
| | | <link rel="stylesheet" type="text/css" href="console-ui/public/css/font-awesome.css"> |
| | | <!-- ç¬¬ä¸æ¹cssç»æ --> |
| | | <link href="./css/main.css?9f68bc0e1a07ae7085fe" rel="stylesheet"></head> |
| | | |
| | | <body> |
| | | <div id="root" style="overflow:hidden"></div> |
| | | <div id="app"></div> |
| | | <div id="other"></div> |
| | | |
| | | <!-- ç¬¬ä¸æ¹jså¼å§ --> |
| | | <script src="console-ui/public/js/jquery.js"></script> |
| | | <script src="console-ui/public/js/codemirror.js"></script> |
| | | <script src="console-ui/public/js/javascript.js"></script> |
| | | <script src="console-ui/public/js/xml.js"></script> |
| | | <script src="console-ui/public/js/codemirror.addone.fullscreen.js"></script> |
| | | <script src="console-ui/public/js/codemirror.addone.lint.js"></script> |
| | | <script src="console-ui/public/js/codemirror.lib.json-lint.js"></script> |
| | | <script src="console-ui/public/js/codemirror.addone.json-lint.js"></script> |
| | | <script src="console-ui/public/js/codemirror.lib.clike-lint.js"></script> |
| | | <script src="console-ui/public/js/diff_match_patch.js"></script> |
| | | <script src="console-ui/public/js/merge.js"></script> |
| | | <script src="console-ui/public/js/loader.js"></script> |
| | | <!-- ç¬¬ä¸æ¹jsç»æ --> |
| | | <script type="text/javascript" src="./js/main.js?9f68bc0e1a07ae7085fe"></script></body> |
| | | |
| | | </html> |
New file |
| | |
| | | !function(n){var a={};function r(e){if(a[e])return a[e].exports;var t=a[e]={i:e,l:!1,exports:{}};return n[e].call(t.exports,t,t.exports,r),t.l=!0,t.exports}r.m=n,r.c=a,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var a in t)r.d(n,a,function(e){return t[e]}.bind(null,a));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=443)}([function(e,t,n){"use strict";e.exports=n(450)},function(e,t,n){"use strict";n.d(t,"a",function(){return E}),n.d(t,"c",function(){return x}),n.d(t,"b",function(){return C});n(51);var t=n(25),u=n.n(t),s=n(72),r=n(89),d=n(61),c=n(31),t=n(106),f=n.n(t),t=n(65),p=n.n(t);function h(){var e=window.location.href,e=(localStorage.removeItem("token"),e.split("#")[0]);console.log("base_url",e),window.location="".concat(e,"#/login")}var l,m,a,o,i,g,y,v,_,b,w,M,n=window,k=(l={},{once:function(e,t){this.listen.call(this,e,t,!0)},listen:function(e,t){var n=2<arguments.length&&void 0!==arguments[2]&&arguments[2];e&&t&&(l[e]||(l[e]=[]),l[e].push({callback:t,once:n}))},listenAllTask:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var a=Array.prototype.slice.call(t),r=a[0];r&&(this.listen.apply(this,Object(d.a)(a)),m[r]&&0<m[r].length&&(a=m[r].pop(),this.trigger.apply(a.self,a.argsList)))},trigger:function(){for(var n=this,e=arguments.length,t=new Array(e),a=0;a<e;a++)t[a]=arguments[a];var r,o=Array.prototype.slice.call(t),i=o.shift();l[i]?(r=[],l[i].forEach(function(e,t){"[object Function]"===Object.prototype.toString.call(e.callback)&&(e.callback.apply(n,o),e.once||r.push(e))}),l[i]=r):(m[i]||(m[i]=[]),m[i].push({argsList:Array.prototype.slice.call(t),self:n}))},remove:function(e,n){var a;e&&l[e]&&(n?(a=[],l[e].forEach(function(e,t){e.callback!==n&&a.push(e)}),l[e]=a.length?a:null):l[e]=null)}}),S=(a=0,o={visible:!(m={}),shape:"flower",tip:"loading..."},{changeLoadingAttr:function(e){"[object Object]"===Object.prototype.toString.call(e)&&(o=Object.assign({},a,e))},openLoading:function(){a++,k.trigger("nacosLoadingEvent",Object.assign(o,{visible:!0,spinning:!0}))},closeLoading:function(){--a<=0&&(a=0,k.trigger("nacosLoadingEvent",Object.assign(o,{visible:!1,spinning:!1})))},closeAllLoading:function(){a=0,k.trigger("nacosLoadingEvent",Object.assign(o,{visible:!1,spinning:!1}))},getURISource:function(e){return e}}),E=function(e){var e=new RegExp("(^|&)".concat(e,"=([^&]*)(&|$)"),"i"),t=[];if(1<(t=1===(t=(""!==i.location.hash?i.location.hash:i.location.href).split("?")).length?i.parent.location.hash.split("?"):t).length){t=t[1].match(e);if(null!=t)return decodeURIComponent(t[2])}return null},x=(y=(g=i=n).location.href.split("#")[0],function(e,t){var n,a;e&&(a={},"string"==typeof e&&(a=Object(r.a)({},e,t)),"[object Object]"===Object.prototype.toString.call(e)&&(a=e),t=[],e=(t=g.location.hash?g.location.hash.split("?"):t)[1]&&t[1].split("&")||[],n={},e.forEach(function(e){e=e.split("=");n[e[0]]=decodeURIComponent(e[1]||"")}),n=Object.assign({},n,a),e=Object.keys(n).map(function(e){return"".concat(e,"=").concat(encodeURIComponent(n[e]||""))})||[],t[1]=e.join("&"),a=t.join("?"),g.history.replaceState?g.history.replaceState(null,"",y+a):g.location.hash=a)}),C=(n.location.href.split("#")[0],v=[],_=[],b={},w=[],(t=[]).forEach(function(e){b[e.registerName]=e}),M=function(e){e=b[e];return e?(e.methodType=w[e.method],e):null},D.handleCustomService=T,D.handleMiddleWare=L,D.NacosRealUrlMapper=M,D.serviceList=t,D.serviceMap=b,D.middleWare=function(e){return(!(1<arguments.length&&void 0!==arguments[1])||arguments[1]?_:v).push(e),this},D);function L(){for(var n=this,e=arguments.length,t=new Array(e),a=0;a<e;a++)t[a]=arguments[a];var r=t[0],o=t.slice(1),i=o.pop()||[];return r=i&&0<i.length?i.reduce(function(e,t){return"function"==typeof t&&t.apply(n,[e].concat(Object(d.a)(o)))||e},r):r}function T(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var a=t[0];if(a&&a.url&&0===a.url.indexOf("com.alibaba.")){var r,o,i=a.url,l=M(i);if(l&&l.url&&l.url.replace){if(f.a.is_preview&&l.is_mock&&a.success){i=null;try{i=JSON.parse(l.defaults)}catch(e){}return void a.success(i)}a.url=l.url.replace(/{([^\}]+)}/g,function(e,t){return a.$data[t]});try{l.is_param&&"object"===Object(s.a)(a.data)&&(a.data=Object.assign({},JSON.parse(l.params),a.data))}catch(e){}l.method&&!a.type&&(a.type=l.methodType),l.isJsonData&&"object"===Object(s.a)(a.data)&&(a.data=JSON.stringify(a.data),a.processData=!1,a.dataType="json",a.contentType="application/json");try{f.a.is_preview&&l.is_proxy&&(r=a.beforeSend,a.beforeSend=function(e){l.cookie&&e.setRequestHeader("tmpCookie",l.cookie),l.header&&e.setRequestHeader("tmpHeader",l.header),l.proxy&&e.setRequestHeader("tmpProxy",l.proxy),r&&r(e)})}catch(e){}l.autoLoading&&(o=a.complete,a.complete=function(){S.closeLoading(),"function"==typeof o&&o.apply(p.a,Array.prototype.slice.call(t))})}}return a}function D(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var a=t[0],r=t.slice(1),a=L.apply(this,[a].concat(Object(d.a)(r),[v]));if(a=T.apply(this,[a].concat(Object(d.a)(r)))){a.type&&"post"===a.type.toLowerCase()&&a.data&&"[object Object]"===Object.prototype.toString.call(a.data)&&!a.data.sec_token&&(o="XSRF-TOKEN",i="",(document.cookie&&document.cookie.split(";")||[]).forEach(function(e){var e=e.split("=")||[],e=Object(c.a)(e,2),t=e[0],t=void 0===t?"":t,e=e[1],e=void 0===e?"":e;-1!==t.trim().indexOf(o)&&(i=e)}),(l=i.trim())&&(a.data.sec_token=l)),a=L.apply(this,[a].concat(Object(d.a)(r),[_]));var o,i,l={};try{l=JSON.parse(localStorage.token)}catch(e){console.log("Token Error",localStorage.token,e),h()}var r=l.accessToken,l=void 0===r?"":r,r=a.url.split("?"),r=Object(c.a)(r,2),s=r[0],r=r[1],r=r?r.split("&"):[];return r.push("accessToken=".concat(l)),p.a.ajax(Object.assign({},a,{type:a.type,url:[s,r.join("&")].join("?"),data:a.data||"",dataType:a.dataType||"json",beforeSend:function(e){a.beforeSend&&a.beforeSend(e)},headers:{Authorization:localStorage.getItem("token")}})).then(function(e){},function(e){var t=e||{},n=t.status,t=t.responseJSON,t=void 0===t?{}:t;return t.message&&u.a.error(t.message),[401,403].includes(n)&&["unknown user!","token invalid!","token expired!"].includes(t.message)&&h(),e})}}},function(e,t,n){"use strict";t.__esModule=!0;var n=n(460),n=(n=n)&&n.__esModule?n:{default:n};t.default=n.default||function(e){for(var t=1;t<arguments.length;t++){var n,a=arguments[t];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n])}return e}},function(e,t,n){e.exports=n(497)()},function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t,n){"use strict";t.__esModule=!0;var a=d(n(2)),r=d(n(12)),o=d(n(8)),i=d(n(548)),l=d(n(571)),s=d(n(575)),u=d(n(578)),n=d(n(357));function d(e){return e&&e.__esModule?e:{default:e}}i.default.Item=o.default.config(l.default,{transform:function(e,t){var n;return"validateStatus"in e&&(t("validateStatus","validateState","Form.Item"),n=(t=e).validateStatus,t=(0,r.default)(t,["validateStatus"]),e=(0,a.default)({validateState:n},t)),e}}),i.default.Submit=s.default,i.default.Reset=u.default,i.default.Error=n.default,t.default=o.default.config(i.default,{transform:function(e,t){var n;return"direction"in e&&(t("direction","inline","Form"),n=(t=e).direction,t=(0,r.default)(t,["direction"]),"hoz"===n&&(e=(0,a.default)({inline:!0},t))),e}}),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var n=n(38),a=(n=n)&&n.__esModule?n:{default:n};t.default=function(e,t){if(e)return!t||"object"!==(void 0===t?"undefined":(0,a.default)(t))&&"function"!=typeof t?e:t;throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}},function(e,t,n){"use strict";t.__esModule=!0;var a=i(n(490)),r=i(n(494)),o=i(n(38));function i(e){return e&&e.__esModule?e:{default:e}}t.default=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+(void 0===t?"undefined":(0,o.default)(t)));e.prototype=(0,r.default)(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(a.default?(0,a.default)(e,t):e.__proto__=t)}},function(e,t,n){"use strict";t.__esModule=!0;var r=g(n(2)),o=g(n(4)),i=g(n(6)),a=g(n(7)),l=n(0),s=g(n(3)),u=n(30),d=g(n(200)),c=n(513),f=g(n(514)),p=g(n(207)),h=g(n(515)),m=g(n(155));function g(e){return e&&e.__esModule?e:{default:e}}function y(e){var t=void 0;try{(t=n(9))&&t.default&&t.default.isMoment&&(t=t.default)}catch(e){}t&&e&&t.locale(e.momentLocale)}function v(e){e&&m.default.locale(e.dateLocale||e.momentLocale)}var _,b=new h.default,s=(_=l.Component,(0,a.default)(w,_),w.prototype.getChildContext=function(){var e=this.props,t=e.prefix,n=e.locale,a=e.defaultPropsConfig,r=e.pure,o=e.warning,i=e.rtl,l=e.device,s=e.popupContainer,e=e.errorBoundary,u=this.context,d=u.nextPrefix,c=u.nextDefaultPropsConfig,f=u.nextLocale,p=u.nextPure,h=u.nextRtl,m=u.nextWarning,g=u.nextDevice,y=u.nextPopupContainer,u=u.nextErrorBoundary;return{nextPrefix:t||d,nextDefaultPropsConfig:a||c,nextLocale:n||f,nextPure:"boolean"==typeof r?r:p,nextRtl:"boolean"==typeof i?i:h,nextWarning:"boolean"==typeof o?o:m,nextDevice:l||g,nextPopupContainer:s||y,nextErrorBoundary:e||u}},w.getDerivedStateFromProps=function(e,t){return e.locale!==t.locale?(y(e.locale),v(e.locale),{locale:e.locale}):null},w.prototype.componentDidUpdate=function(){b.add(this,(0,r.default)({},b.get(this,{}),this.getChildContext()))},w.prototype.componentWillUnmount=function(){b.remove(this)},w.prototype.render=function(){return l.Children.only(this.props.children)},a=h=w,h.propTypes={prefix:s.default.string,locale:s.default.object,defaultPropsConfig:s.default.object,errorBoundary:s.default.oneOfType([s.default.bool,s.default.object]),pure:s.default.bool,warning:s.default.bool,rtl:s.default.bool,device:s.default.oneOf(["tablet","desktop","phone"]),children:s.default.any,popupContainer:s.default.any},h.defaultProps={warning:!0,errorBoundary:!1},h.contextTypes={nextPrefix:s.default.string,nextLocale:s.default.object,nextDefaultPropsConfig:s.default.object,nextPure:s.default.bool,nextRtl:s.default.bool,nextWarning:s.default.bool,nextDevice:s.default.oneOf(["tablet","desktop","phone"]),nextPopupContainer:s.default.any,nextErrorBoundary:s.default.oneOfType([s.default.bool,s.default.object])},h.childContextTypes={nextPrefix:s.default.string,nextLocale:s.default.object,nextDefaultPropsConfig:s.default.object,nextPure:s.default.bool,nextRtl:s.default.bool,nextWarning:s.default.bool,nextDevice:s.default.oneOf(["tablet","desktop","phone"]),nextPopupContainer:s.default.any,nextErrorBoundary:s.default.oneOfType([s.default.bool,s.default.object])},h.config=function(e,t){return(0,c.config)(e,t)},h.getContextProps=function(e,t){return(0,d.default)(e,b.root()||{},t)},h.clearCache=function(){b.clear()},h.initLocales=c.initLocales,h.setLanguage=c.setLanguage,h.setLocale=c.setLocale,h.setDirection=c.setDirection,h.getLanguage=c.getLanguage,h.getLocale=c.getLocale,h.getDirection=c.getDirection,h.Consumer=f.default,h.ErrorBoundary=p.default,h.getContext=function(){var e=b.root()||{};return{prefix:e.nextPrefix,locale:e.nextLocale,defaultPropsConfig:e.nextDefaultPropsConfig,pure:e.nextPure,rtl:e.nextRtl,warning:e.nextWarning,device:e.nextDevice,popupContainer:e.nextPopupContainer,errorBoundary:e.nextErrorBoundary}},a);function w(){(0,o.default)(this,w);for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];var a=(0,i.default)(this,_.call.apply(_,[this].concat(t)));return b.add(a,(0,r.default)({},b.get(a,{}),a.getChildContext())),y(a.props.locale),v(a.props.locale),a.state={locale:a.props.locale},a}s.displayName="ConfigProvider",t.default=(0,u.polyfill)(s),e.exports=t.default},function(e,t,fi){!function(di){var ci;//! moment.js |
| | | //! version : 2.29.4 |
| | | //! authors : Tim Wood, Iskren Chernev, Moment.js contributors |
| | | //! license : MIT |
| | | //! momentjs.com |
| | | di.exports=function(){"use strict";var I,R;function c(){return I.apply(null,arguments)}function A(e){I=e}function i(e){return e instanceof Array||Object.prototype.toString.call(e)==="[object Array]"}function H(e){return e!=null&&Object.prototype.toString.call(e)==="[object Object]"}function s(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function F(e){if(Object.getOwnPropertyNames)return Object.getOwnPropertyNames(e).length===0;else{var t;for(t in e)if(s(e,t))return false;return true}}function l(e){return e===void 0}function u(e){return typeof e==="number"||Object.prototype.toString.call(e)==="[object Number]"}function z(e){return e instanceof Date||Object.prototype.toString.call(e)==="[object Date]"}function W(e,t){var n=[],a,r=e.length;for(a=0;a<r;++a)n.push(t(e[a],a));return n}function V(e,t){for(var n in t)if(s(t,n))e[n]=t[n];if(s(t,"toString"))e.toString=t.toString;if(s(t,"valueOf"))e.valueOf=t.valueOf;return e}function d(e,t,n,a){return Qn(e,t,n,a,true).utc()}function B(){return{empty:false,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:false,invalidEra:null,invalidMonth:null,invalidFormat:false,userInvalidated:false,iso:false,parsedDateParts:[],era:null,meridiem:null,rfc2822:false,weekdayMismatch:false}}function f(e){if(e._pf==null)e._pf=B();return e._pf}if(Array.prototype.some)R=Array.prototype.some;else R=function(e){var t=Object(this),n=t.length>>>0,a;for(a=0;a<n;a++)if(a in t&&e.call(this,t[a],a,t))return true;return false};function U(e){if(e._isValid==null){var t=f(e),n=R.call(t.parsedDateParts,function(e){return e!=null}),a=!isNaN(e._d.getTime())&&t.overflow<0&&!t.empty&&!t.invalidEra&&!t.invalidMonth&&!t.invalidWeekday&&!t.weekdayMismatch&&!t.nullInput&&!t.invalidFormat&&!t.userInvalidated&&(!t.meridiem||t.meridiem&&n);if(e._strict)a=a&&t.charsLeftOver===0&&t.unusedTokens.length===0&&t.bigHour===undefined;if(Object.isFrozen==null||!Object.isFrozen(e))e._isValid=a;else return a}return e._isValid}function K(e){var t=d(NaN);if(e!=null)V(f(t),e);else f(t).userInvalidated=true;return t}var G=c.momentProperties=[],q=false;function $(e,t){var n,a,r,o=G.length;if(!l(t._isAMomentObject))e._isAMomentObject=t._isAMomentObject;if(!l(t._i))e._i=t._i;if(!l(t._f))e._f=t._f;if(!l(t._l))e._l=t._l;if(!l(t._strict))e._strict=t._strict;if(!l(t._tzm))e._tzm=t._tzm;if(!l(t._isUTC))e._isUTC=t._isUTC;if(!l(t._offset))e._offset=t._offset;if(!l(t._pf))e._pf=f(t);if(!l(t._locale))e._locale=t._locale;if(o>0)for(n=0;n<o;n++){a=G[n];r=t[a];if(!l(r))e[a]=r}return e}function J(e){$(this,e);this._d=new Date(e._d!=null?e._d.getTime():NaN);if(!this.isValid())this._d=new Date(NaN);if(q===false){q=true;c.updateOffset(this);q=false}}function p(e){return e instanceof J||e!=null&&e._isAMomentObject!=null}function X(e){if(c.suppressDeprecationWarnings===false&&typeof console!=="undefined"&&console.warn)console.warn("Deprecation warning: "+e)}function e(o,i){var l=true;return V(function(){if(c.deprecationHandler!=null)c.deprecationHandler(null,o);if(l){var e=[],t,n,a,r=arguments.length;for(n=0;n<r;n++){t="";if(typeof arguments[n]==="object"){t+="\n["+n+"] ";for(a in arguments[0])if(s(arguments[0],a))t+=a+": "+arguments[0][a]+", ";t=t.slice(0,-2)}else t=arguments[n];e.push(t)}X(o+"\nArguments: "+Array.prototype.slice.call(e).join("")+"\n"+(new Error).stack);l=false}return i.apply(this,arguments)},i)}var Q={},Z;function ee(e,t){if(c.deprecationHandler!=null)c.deprecationHandler(e,t);if(!Q[e]){X(t);Q[e]=true}}function h(e){return typeof Function!=="undefined"&&e instanceof Function||Object.prototype.toString.call(e)==="[object Function]"}function te(e){var t,n;for(n in e)if(s(e,n)){t=e[n];if(h(t))this[n]=t;else this["_"+n]=t}this._config=e;this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)}function ne(e,t){var n=V({},e),a;for(a in t)if(s(t,a))if(H(e[a])&&H(t[a])){n[a]={};V(n[a],e[a]);V(n[a],t[a])}else if(t[a]!=null)n[a]=t[a];else delete n[a];for(a in e)if(s(e,a)&&!s(t,a)&&H(e[a]))n[a]=V({},n[a]);return n}function ae(e){if(e!=null)this.set(e)}if(c.suppressDeprecationWarnings=false,c.deprecationHandler=null,Object.keys)Z=Object.keys;else Z=function(e){var t,n=[];for(t in e)if(s(e,t))n.push(t);return n};var re={sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"};function oe(e,t,n){var a=this._calendar[e]||this._calendar["sameElse"];return h(a)?a.call(t,n):a}function o(e,t,n){var a=""+Math.abs(e),r=t-a.length,o=e>=0;return(o?n?"+":"":"-")+Math.pow(10,Math.max(0,r)).toString().substr(1)+a}var ie=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,le=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,se={},ue={};function a(e,t,n,a){var r=a;if(typeof a==="string")r=function(){return this[a]()};if(e)ue[e]=r;if(t)ue[t[0]]=function(){return o(r.apply(this,arguments),t[1],t[2])};if(n)ue[n]=function(){return this.localeData().ordinal(r.apply(this,arguments),e)}}function de(e){if(e.match(/\[[\s\S]/))return e.replace(/^\[|\]$/g,"");return e.replace(/\\/g,"")}function ce(a){var r=a.match(ie),e,o;for(e=0,o=r.length;e<o;e++)if(ue[r[e]])r[e]=ue[r[e]];else r[e]=de(r[e]);return function(e){var t="",n;for(n=0;n<o;n++)t+=h(r[n])?r[n].call(e,a):r[n];return t}}function fe(e,t){if(!e.isValid())return e.localeData().invalidDate();t=pe(t,e.localeData());se[t]=se[t]||ce(t);return se[t](e)}function pe(e,t){var n=5;function a(e){return t.longDateFormat(e)||e}le.lastIndex=0;while(n>=0&&le.test(e)){e=e.replace(le,a);le.lastIndex=0;n-=1}return e}var he={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};function me(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];if(t||!n)return t;this._longDateFormat[e]=n.match(ie).map(function(e){if(e==="MMMM"||e==="MM"||e==="DD"||e==="dddd")return e.slice(1);return e}).join("");return this._longDateFormat[e]}var ge="Invalid date";function ye(){return this._invalidDate}var ve="%d",_e=/\d{1,2}/;function be(e){return this._ordinal.replace("%d",e)}var we={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function Me(e,t,n,a){var r=this._relativeTime[n];return h(r)?r(e,t,n,a):r.replace(/%d/i,e)}function ke(e,t){var n=this._relativeTime[e>0?"future":"past"];return h(n)?n(t):n.replace(/%s/i,t)}var Se={};function t(e,t){var n=e.toLowerCase();Se[n]=Se[n+"s"]=Se[t]=e}function m(e){return typeof e==="string"?Se[e]||Se[e.toLowerCase()]:undefined}function Ee(e){var t={},n,a;for(a in e)if(s(e,a)){n=m(a);if(n)t[n]=e[a]}return t}var xe={};function n(e,t){xe[e]=t}function Ce(e){var t=[],n;for(n in e)if(s(e,n))t.push({unit:n,priority:xe[n]});t.sort(function(e,t){return e.priority-t.priority});return t}function Le(e){return e%4===0&&e%100!==0||e%400===0}function g(e){if(e<0)return Math.ceil(e)||0;else return Math.floor(e)}function y(e){var t=+e,n=0;if(t!==0&&isFinite(t))n=g(t);return n}function Te(t,n){return function(e){if(e!=null){Oe(this,t,e);c.updateOffset(this,n);return this}else return De(this,t)}}function De(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function Oe(e,t,n){if(e.isValid()&&!isNaN(n))if(t==="FullYear"&&Le(e.year())&&e.month()===1&&e.date()===29){n=y(n);e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),ot(n,e.month()))}else e._d["set"+(e._isUTC?"UTC":"")+t](n)}function Ne(e){e=m(e);if(h(this[e]))return this[e]();return this}function Pe(e,t){if(typeof e==="object"){e=Ee(e);var n=Ce(e),a,r=n.length;for(a=0;a<r;a++)this[n[a].unit](e[n[a].unit])}else{e=m(e);if(h(this[e]))return this[e](t)}return this}var je=/\d/,r=/\d\d/,Ye=/\d{3}/,Ie=/\d{4}/,Re=/[+-]?\d{6}/,v=/\d\d?/,Ae=/\d\d\d\d?/,He=/\d\d\d\d\d\d?/,Fe=/\d{1,3}/,ze=/\d{1,4}/,We=/[+-]?\d{1,6}/,Ve=/\d+/,Be=/[+-]?\d+/,Ue=/Z|[+-]\d\d:?\d\d/gi,Ke=/Z|[+-]\d\d(?::?\d\d)?/gi,Ge=/[+-]?\d+(\.\d{1,3})?/,qe=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,$e;function _(e,n,a){$e[e]=h(n)?n:function(e,t){return e&&a?a:n}}function Je(e,t){if(!s($e,e))return new RegExp(Xe(e));return $e[e](t._strict,t._locale)}function Xe(e){return b(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,n,a,r){return t||n||a||r}))}function b(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var $e={},Qe={};function w(e,n){var t,a=n,r;if(typeof e==="string")e=[e];if(u(n))a=function(e,t){t[n]=y(e)};r=e.length;for(t=0;t<r;t++)Qe[e[t]]=a}function Ze(e,r){w(e,function(e,t,n,a){n._w=n._w||{};r(e,n._w,n,a)})}function et(e,t,n){if(t!=null&&s(Qe,e))Qe[e](t,n._a,n,e)}var M=0,k=1,S=2,E=3,x=4,C=5,tt=6,nt=7,at=8,L;function rt(e,t){return(e%t+t)%t}if(Array.prototype.indexOf)L=Array.prototype.indexOf;else L=function(e){var t;for(t=0;t<this.length;++t)if(this[t]===e)return t;return-1};function ot(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=rt(t,12);e+=(t-n)/12;return n===1?Le(e)?29:28:31-n%7%2}a("M",["MM",2],"Mo",function(){return this.month()+1}),a("MMM",0,0,function(e){return this.localeData().monthsShort(this,e)}),a("MMMM",0,0,function(e){return this.localeData().months(this,e)}),t("month","M"),n("month",8),_("M",v),_("MM",v,r),_("MMM",function(e,t){return t.monthsShortRegex(e)}),_("MMMM",function(e,t){return t.monthsRegex(e)}),w(["M","MM"],function(e,t){t[k]=y(e)-1}),w(["MMM","MMMM"],function(e,t,n,a){var r=n._locale.monthsParse(e,a,n._strict);if(r!=null)t[k]=r;else f(n).invalidMonth=e});var it="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),lt="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),st=/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,ut=qe,dt=qe;function ct(e,t){if(!e)return i(this._months)?this._months:this._months["standalone"];return i(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||st).test(t)?"format":"standalone"][e.month()]}function ft(e,t){if(!e)return i(this._monthsShort)?this._monthsShort:this._monthsShort["standalone"];return i(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[st.test(t)?"format":"standalone"][e.month()]}function pt(e,t,n){var a,r,o,i=e.toLocaleLowerCase();if(!this._monthsParse){this._monthsParse=[];this._longMonthsParse=[];this._shortMonthsParse=[];for(a=0;a<12;++a){o=d([2e3,a]);this._shortMonthsParse[a]=this.monthsShort(o,"").toLocaleLowerCase();this._longMonthsParse[a]=this.months(o,"").toLocaleLowerCase()}}if(n)if(t==="MMM"){r=L.call(this._shortMonthsParse,i);return r!==-1?r:null}else{r=L.call(this._longMonthsParse,i);return r!==-1?r:null}else if(t==="MMM"){r=L.call(this._shortMonthsParse,i);if(r!==-1)return r;r=L.call(this._longMonthsParse,i);return r!==-1?r:null}else{r=L.call(this._longMonthsParse,i);if(r!==-1)return r;r=L.call(this._shortMonthsParse,i);return r!==-1?r:null}}function ht(e,t,n){var a,r,o;if(this._monthsParseExact)return pt.call(this,e,t,n);if(!this._monthsParse){this._monthsParse=[];this._longMonthsParse=[];this._shortMonthsParse=[]}for(a=0;a<12;a++){r=d([2e3,a]);if(n&&!this._longMonthsParse[a]){this._longMonthsParse[a]=new RegExp("^"+this.months(r,"").replace(".","")+"$","i");this._shortMonthsParse[a]=new RegExp("^"+this.monthsShort(r,"").replace(".","")+"$","i")}if(!n&&!this._monthsParse[a]){o="^"+this.months(r,"")+"|^"+this.monthsShort(r,"");this._monthsParse[a]=new RegExp(o.replace(".",""),"i")}if(n&&t==="MMMM"&&this._longMonthsParse[a].test(e))return a;else if(n&&t==="MMM"&&this._shortMonthsParse[a].test(e))return a;else if(!n&&this._monthsParse[a].test(e))return a}}function mt(e,t){var n;if(!e.isValid())return e;if(typeof t==="string")if(/^\d+$/.test(t))t=y(t);else{t=e.localeData().monthsParse(t);if(!u(t))return e}n=Math.min(e.date(),ot(e.year(),t));e._d["set"+(e._isUTC?"UTC":"")+"Month"](t,n);return e}function gt(e){if(e!=null){mt(this,e);c.updateOffset(this,true);return this}else return De(this,"Month")}function yt(){return ot(this.year(),this.month())}function vt(e){if(this._monthsParseExact){if(!s(this,"_monthsRegex"))bt.call(this);if(e)return this._monthsShortStrictRegex;else return this._monthsShortRegex}else{if(!s(this,"_monthsShortRegex"))this._monthsShortRegex=ut;return this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex}}function _t(e){if(this._monthsParseExact){if(!s(this,"_monthsRegex"))bt.call(this);if(e)return this._monthsStrictRegex;else return this._monthsRegex}else{if(!s(this,"_monthsRegex"))this._monthsRegex=dt;return this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex}}function bt(){function e(e,t){return t.length-e.length}var t=[],n=[],a=[],r,o;for(r=0;r<12;r++){o=d([2e3,r]);t.push(this.monthsShort(o,""));n.push(this.months(o,""));a.push(this.months(o,""));a.push(this.monthsShort(o,""))}t.sort(e);n.sort(e);a.sort(e);for(r=0;r<12;r++){t[r]=b(t[r]);n[r]=b(n[r])}for(r=0;r<24;r++)a[r]=b(a[r]);this._monthsRegex=new RegExp("^("+a.join("|")+")","i");this._monthsShortRegex=this._monthsRegex;this._monthsStrictRegex=new RegExp("^("+n.join("|")+")","i");this._monthsShortStrictRegex=new RegExp("^("+t.join("|")+")","i")}function wt(e){return Le(e)?366:365}a("Y",0,0,function(){var e=this.year();return e<=9999?o(e,4):"+"+e}),a(0,["YY",2],0,function(){return this.year()%100}),a(0,["YYYY",4],0,"year"),a(0,["YYYYY",5],0,"year"),a(0,["YYYYYY",6,true],0,"year"),t("year","y"),n("year",1),_("Y",Be),_("YY",v,r),_("YYYY",ze,Ie),_("YYYYY",We,Re),_("YYYYYY",We,Re),w(["YYYYY","YYYYYY"],M),w("YYYY",function(e,t){t[M]=e.length===2?c.parseTwoDigitYear(e):y(e)}),w("YY",function(e,t){t[M]=c.parseTwoDigitYear(e)}),w("Y",function(e,t){t[M]=parseInt(e,10)}),c.parseTwoDigitYear=function(e){return y(e)+(y(e)>68?1900:2e3)};var Mt=Te("FullYear",true);function kt(){return Le(this.year())}function St(e,t,n,a,r,o,i){var l;if(e<100&&e>=0){l=new Date(e+400,t,n,a,r,o,i);if(isFinite(l.getFullYear()))l.setFullYear(e)}else l=new Date(e,t,n,a,r,o,i);return l}function Et(e){var t,n;if(e<100&&e>=0){n=Array.prototype.slice.call(arguments);n[0]=e+400;t=new Date(Date.UTC.apply(null,n));if(isFinite(t.getUTCFullYear()))t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function xt(e,t,n){var a=7+t-n,r=(7+Et(e,0,a).getUTCDay()-t)%7;return-r+a-1}function Ct(e,t,n,a,r){var o=(7+n-a)%7,i=xt(e,a,r),l=1+7*(t-1)+o+i,s,u;if(l<=0){s=e-1;u=wt(s)+l}else if(l>wt(e)){s=e+1;u=l-wt(e)}else{s=e;u=l}return{year:s,dayOfYear:u}}function Lt(e,t,n){var a=xt(e.year(),t,n),r=Math.floor((e.dayOfYear()-a-1)/7)+1,o,i;if(r<1){i=e.year()-1;o=r+T(i,t,n)}else if(r>T(e.year(),t,n)){o=r-T(e.year(),t,n);i=e.year()+1}else{i=e.year();o=r}return{week:o,year:i}}function T(e,t,n){var a=xt(e,t,n),r=xt(e+1,t,n);return(wt(e)-a+r)/7}function Tt(e){return Lt(e,this._week.dow,this._week.doy).week}a("w",["ww",2],"wo","week"),a("W",["WW",2],"Wo","isoWeek"),t("week","w"),t("isoWeek","W"),n("week",5),n("isoWeek",5),_("w",v),_("ww",v,r),_("W",v),_("WW",v,r),Ze(["w","ww","W","WW"],function(e,t,n,a){t[a.substr(0,1)]=y(e)});var Dt={dow:0,doy:6};function Ot(){return this._week.dow}function Nt(){return this._week.doy}function Pt(e){var t=this.localeData().week(this);return e==null?t:this.add((e-t)*7,"d")}function jt(e){var t=Lt(this,1,4).week;return e==null?t:this.add((e-t)*7,"d")}function Yt(e,t){if(typeof e!=="string")return e;if(!isNaN(e))return parseInt(e,10);e=t.weekdaysParse(e);if(typeof e==="number")return e;return null}function It(e,t){if(typeof e==="string")return t.weekdaysParse(e)%7||7;return isNaN(e)?null:e}function Rt(e,t){return e.slice(t,7).concat(e.slice(0,t))}a("d",0,"do","day"),a("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),a("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),a("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),a("e",0,0,"weekday"),a("E",0,0,"isoWeekday"),t("day","d"),t("weekday","e"),t("isoWeekday","E"),n("day",11),n("weekday",11),n("isoWeekday",11),_("d",v),_("e",v),_("E",v),_("dd",function(e,t){return t.weekdaysMinRegex(e)}),_("ddd",function(e,t){return t.weekdaysShortRegex(e)}),_("dddd",function(e,t){return t.weekdaysRegex(e)}),Ze(["dd","ddd","dddd"],function(e,t,n,a){var r=n._locale.weekdaysParse(e,a,n._strict);if(r!=null)t.d=r;else f(n).invalidWeekday=e}),Ze(["d","e","E"],function(e,t,n,a){t[a]=y(e)});var At="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Ht="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Ft="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),zt=qe,Wt=qe,Vt=qe;function Bt(e,t){var n=i(this._weekdays)?this._weekdays:this._weekdays[e&&e!==true&&this._weekdays.isFormat.test(t)?"format":"standalone"];return e===true?Rt(n,this._week.dow):e?n[e.day()]:n}function Ut(e){return e===true?Rt(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function Kt(e){return e===true?Rt(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function Gt(e,t,n){var a,r,o,i=e.toLocaleLowerCase();if(!this._weekdaysParse){this._weekdaysParse=[];this._shortWeekdaysParse=[];this._minWeekdaysParse=[];for(a=0;a<7;++a){o=d([2e3,1]).day(a);this._minWeekdaysParse[a]=this.weekdaysMin(o,"").toLocaleLowerCase();this._shortWeekdaysParse[a]=this.weekdaysShort(o,"").toLocaleLowerCase();this._weekdaysParse[a]=this.weekdays(o,"").toLocaleLowerCase()}}if(n)if(t==="dddd"){r=L.call(this._weekdaysParse,i);return r!==-1?r:null}else if(t==="ddd"){r=L.call(this._shortWeekdaysParse,i);return r!==-1?r:null}else{r=L.call(this._minWeekdaysParse,i);return r!==-1?r:null}else if(t==="dddd"){r=L.call(this._weekdaysParse,i);if(r!==-1)return r;r=L.call(this._shortWeekdaysParse,i);if(r!==-1)return r;r=L.call(this._minWeekdaysParse,i);return r!==-1?r:null}else if(t==="ddd"){r=L.call(this._shortWeekdaysParse,i);if(r!==-1)return r;r=L.call(this._weekdaysParse,i);if(r!==-1)return r;r=L.call(this._minWeekdaysParse,i);return r!==-1?r:null}else{r=L.call(this._minWeekdaysParse,i);if(r!==-1)return r;r=L.call(this._weekdaysParse,i);if(r!==-1)return r;r=L.call(this._shortWeekdaysParse,i);return r!==-1?r:null}}function qt(e,t,n){var a,r,o;if(this._weekdaysParseExact)return Gt.call(this,e,t,n);if(!this._weekdaysParse){this._weekdaysParse=[];this._minWeekdaysParse=[];this._shortWeekdaysParse=[];this._fullWeekdaysParse=[]}for(a=0;a<7;a++){r=d([2e3,1]).day(a);if(n&&!this._fullWeekdaysParse[a]){this._fullWeekdaysParse[a]=new RegExp("^"+this.weekdays(r,"").replace(".","\\.?")+"$","i");this._shortWeekdaysParse[a]=new RegExp("^"+this.weekdaysShort(r,"").replace(".","\\.?")+"$","i");this._minWeekdaysParse[a]=new RegExp("^"+this.weekdaysMin(r,"").replace(".","\\.?")+"$","i")}if(!this._weekdaysParse[a]){o="^"+this.weekdays(r,"")+"|^"+this.weekdaysShort(r,"")+"|^"+this.weekdaysMin(r,"");this._weekdaysParse[a]=new RegExp(o.replace(".",""),"i")}if(n&&t==="dddd"&&this._fullWeekdaysParse[a].test(e))return a;else if(n&&t==="ddd"&&this._shortWeekdaysParse[a].test(e))return a;else if(n&&t==="dd"&&this._minWeekdaysParse[a].test(e))return a;else if(!n&&this._weekdaysParse[a].test(e))return a}}function $t(e){if(!this.isValid())return e!=null?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();if(e!=null){e=Yt(e,this.localeData());return this.add(e-t,"d")}else return t}function Jt(e){if(!this.isValid())return e!=null?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return e==null?t:this.add(e-t,"d")}function Xt(e){if(!this.isValid())return e!=null?this:NaN;if(e!=null){var t=It(e,this.localeData());return this.day(this.day()%7?t:t-7)}else return this.day()||7}function Qt(e){if(this._weekdaysParseExact){if(!s(this,"_weekdaysRegex"))tn.call(this);if(e)return this._weekdaysStrictRegex;else return this._weekdaysRegex}else{if(!s(this,"_weekdaysRegex"))this._weekdaysRegex=zt;return this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex}}function Zt(e){if(this._weekdaysParseExact){if(!s(this,"_weekdaysRegex"))tn.call(this);if(e)return this._weekdaysShortStrictRegex;else return this._weekdaysShortRegex}else{if(!s(this,"_weekdaysShortRegex"))this._weekdaysShortRegex=Wt;return this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex}}function en(e){if(this._weekdaysParseExact){if(!s(this,"_weekdaysRegex"))tn.call(this);if(e)return this._weekdaysMinStrictRegex;else return this._weekdaysMinRegex}else{if(!s(this,"_weekdaysMinRegex"))this._weekdaysMinRegex=Vt;return this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex}}function tn(){function e(e,t){return t.length-e.length}var t=[],n=[],a=[],r=[],o,i,l,s,u;for(o=0;o<7;o++){i=d([2e3,1]).day(o);l=b(this.weekdaysMin(i,""));s=b(this.weekdaysShort(i,""));u=b(this.weekdays(i,""));t.push(l);n.push(s);a.push(u);r.push(l);r.push(s);r.push(u)}t.sort(e);n.sort(e);a.sort(e);r.sort(e);this._weekdaysRegex=new RegExp("^("+r.join("|")+")","i");this._weekdaysShortRegex=this._weekdaysRegex;this._weekdaysMinRegex=this._weekdaysRegex;this._weekdaysStrictRegex=new RegExp("^("+a.join("|")+")","i");this._weekdaysShortStrictRegex=new RegExp("^("+n.join("|")+")","i");this._weekdaysMinStrictRegex=new RegExp("^("+t.join("|")+")","i")}function nn(){return this.hours()%12||12}function an(){return this.hours()||24}function rn(e,t){a(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function on(e,t){return t._meridiemParse}function ln(e){return(e+"").toLowerCase().charAt(0)==="p"}a("H",["HH",2],0,"hour"),a("h",["hh",2],0,nn),a("k",["kk",2],0,an),a("hmm",0,0,function(){return""+nn.apply(this)+o(this.minutes(),2)}),a("hmmss",0,0,function(){return""+nn.apply(this)+o(this.minutes(),2)+o(this.seconds(),2)}),a("Hmm",0,0,function(){return""+this.hours()+o(this.minutes(),2)}),a("Hmmss",0,0,function(){return""+this.hours()+o(this.minutes(),2)+o(this.seconds(),2)}),rn("a",true),rn("A",false),t("hour","h"),n("hour",13),_("a",on),_("A",on),_("H",v),_("h",v),_("k",v),_("HH",v,r),_("hh",v,r),_("kk",v,r),_("hmm",Ae),_("hmmss",He),_("Hmm",Ae),_("Hmmss",He),w(["H","HH"],E),w(["k","kk"],function(e,t,n){var a=y(e);t[E]=a===24?0:a}),w(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e);n._meridiem=e}),w(["h","hh"],function(e,t,n){t[E]=y(e);f(n).bigHour=true}),w("hmm",function(e,t,n){var a=e.length-2;t[E]=y(e.substr(0,a));t[x]=y(e.substr(a));f(n).bigHour=true}),w("hmmss",function(e,t,n){var a=e.length-4,r=e.length-2;t[E]=y(e.substr(0,a));t[x]=y(e.substr(a,2));t[C]=y(e.substr(r));f(n).bigHour=true}),w("Hmm",function(e,t,n){var a=e.length-2;t[E]=y(e.substr(0,a));t[x]=y(e.substr(a))}),w("Hmmss",function(e,t,n){var a=e.length-4,r=e.length-2;t[E]=y(e.substr(0,a));t[x]=y(e.substr(a,2));t[C]=y(e.substr(r))});var sn,un=Te("Hours",true);function dn(e,t,n){if(e>11)return n?"pm":"PM";else return n?"am":"AM"}var cn={calendar:re,longDateFormat:he,invalidDate:ge,ordinal:ve,dayOfMonthOrdinalParse:_e,relativeTime:we,months:it,monthsShort:lt,week:Dt,weekdays:At,weekdaysMin:Ft,weekdaysShort:Ht,meridiemParse:/[ap]\.?m?\.?/i},D={},fn={},pn;function hn(e,t){var n,a=Math.min(e.length,t.length);for(n=0;n<a;n+=1)if(e[n]!==t[n])return n;return a}function mn(e){return e?e.toLowerCase().replace("_","-"):e}function gn(e){var t=0,n,a,r,o;while(t<e.length){o=mn(e[t]).split("-");n=o.length;a=mn(e[t+1]);a=a?a.split("-"):null;while(n>0){r=vn(o.slice(0,n).join("-"));if(r)return r;if(a&&a.length>=n&&hn(o,a)>=n-1)break;n--}t++}return pn}function yn(e){return e.match("^[^/\\\\]*$")!=null}function vn(t){var e=null,n;if(D[t]===undefined&&typeof di!=="undefined"&&di&&di.exports&&yn(t))try{e=pn._abbr;n=ci;fi(517)("./"+t);_n(e)}catch(e){D[t]=null}return D[t]}function _n(e,t){var n;if(e){if(l(t))n=Mn(e);else n=bn(e,t);if(n)pn=n;else if(typeof console!=="undefined"&&console.warn)console.warn("Locale "+e+" not found. Did you forget to load it?")}return pn._abbr}function bn(e,t){if(t!==null){var n,a=cn;t.abbr=e;if(D[e]!=null){ee("defineLocaleOverride","use moment.updateLocale(localeName, config) to change "+"an existing locale. moment.defineLocale(localeName, "+"config) should only be used for creating a new locale "+"See http://momentjs.com/guides/#/warnings/define-locale/ for more info.");a=D[e]._config}else if(t.parentLocale!=null)if(D[t.parentLocale]!=null)a=D[t.parentLocale]._config;else{n=vn(t.parentLocale);if(n!=null)a=n._config;else{if(!fn[t.parentLocale])fn[t.parentLocale]=[];fn[t.parentLocale].push({name:e,config:t});return null}}D[e]=new ae(ne(a,t));if(fn[e])fn[e].forEach(function(e){bn(e.name,e.config)});_n(e);return D[e]}else{delete D[e];return null}}function wn(e,t){if(t!=null){var n,a,r=cn;if(D[e]!=null&&D[e].parentLocale!=null)D[e].set(ne(D[e]._config,t));else{a=vn(e);if(a!=null)r=a._config;t=ne(r,t);if(a==null)t.abbr=e;n=new ae(t);n.parentLocale=D[e];D[e]=n}_n(e)}else if(D[e]!=null)if(D[e].parentLocale!=null){D[e]=D[e].parentLocale;if(e===_n())_n(e)}else if(D[e]!=null)delete D[e];return D[e]}function Mn(e){var t;if(e&&e._locale&&e._locale._abbr)e=e._locale._abbr;if(!e)return pn;if(!i(e)){t=vn(e);if(t)return t;e=[e]}return gn(e)}function kn(){return Z(D)}function Sn(e){var t,n=e._a;if(n&&f(e).overflow===-2){t=n[k]<0||n[k]>11?k:n[S]<1||n[S]>ot(n[M],n[k])?S:n[E]<0||n[E]>24||n[E]===24&&(n[x]!==0||n[C]!==0||n[tt]!==0)?E:n[x]<0||n[x]>59?x:n[C]<0||n[C]>59?C:n[tt]<0||n[tt]>999?tt:-1;if(f(e)._overflowDayOfYear&&(t<M||t>S))t=S;if(f(e)._overflowWeeks&&t===-1)t=nt;if(f(e)._overflowWeekday&&t===-1)t=at;f(e).overflow=t}return e}var En=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,xn=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Cn=/Z|[+-]\d\d(?::?\d\d)?/,Ln=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,false],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,false],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,false],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,false],["YYYY",/\d{4}/,false]],Tn=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Dn=/^\/?Date\((-?\d+)/i,On=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,Nn={UT:0,GMT:0,EDT:-4*60,EST:-5*60,CDT:-5*60,CST:-6*60,MDT:-6*60,MST:-7*60,PDT:-7*60,PST:-8*60};function Pn(e){var t,n,a=e._i,r=En.exec(a)||xn.exec(a),o,i,l,s,u=Ln.length,d=Tn.length;if(r){f(e).iso=true;for(t=0,n=u;t<n;t++)if(Ln[t][1].exec(r[1])){i=Ln[t][0];o=Ln[t][2]!==false;break}if(i==null){e._isValid=false;return}if(r[3]){for(t=0,n=d;t<n;t++)if(Tn[t][1].exec(r[3])){l=(r[2]||" ")+Tn[t][0];break}if(l==null){e._isValid=false;return}}if(!o&&l!=null){e._isValid=false;return}if(r[4])if(Cn.exec(r[4]))s="Z";else{e._isValid=false;return}e._f=i+(l||"")+(s||"");Un(e)}else e._isValid=false}function jn(e,t,n,a,r,o){var i=[Yn(e),lt.indexOf(t),parseInt(n,10),parseInt(a,10),parseInt(r,10)];if(o)i.push(parseInt(o,10));return i}function Yn(e){var t=parseInt(e,10);if(t<=49)return 2e3+t;else if(t<=999)return 1900+t;return t}function In(e){return e.replace(/\([^()]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").replace(/^\s\s*/,"").replace(/\s\s*$/,"")}function Rn(e,t,n){if(e){var a=Ht.indexOf(e),r=new Date(t[0],t[1],t[2]).getDay();if(a!==r){f(n).weekdayMismatch=true;n._isValid=false;return false}}return true}function An(e,t,n){if(e)return Nn[e];else if(t)return 0;else{var a=parseInt(n,10),r=a%100,o=(a-r)/100;return o*60+r}}function Hn(e){var t=On.exec(In(e._i)),n;if(t){n=jn(t[4],t[3],t[2],t[5],t[6],t[7]);if(!Rn(t[1],n,e))return;e._a=n;e._tzm=An(t[8],t[9],t[10]);e._d=Et.apply(null,e._a);e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm);f(e).rfc2822=true}else e._isValid=false}function Fn(e){var t=Dn.exec(e._i);if(t!==null){e._d=new Date(+t[1]);return}Pn(e);if(e._isValid===false)delete e._isValid;else return;Hn(e);if(e._isValid===false)delete e._isValid;else return;if(e._strict)e._isValid=false;else c.createFromInputFallback(e)}function zn(e,t,n){if(e!=null)return e;if(t!=null)return t;return n}function Wn(e){var t=new Date(c.now());if(e._useUTC)return[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()];return[t.getFullYear(),t.getMonth(),t.getDate()]}function Vn(e){var t,n,a=[],r,o,i;if(e._d)return;r=Wn(e);if(e._w&&e._a[S]==null&&e._a[k]==null)Bn(e);if(e._dayOfYear!=null){i=zn(e._a[M],r[M]);if(e._dayOfYear>wt(i)||e._dayOfYear===0)f(e)._overflowDayOfYear=true;n=Et(i,0,e._dayOfYear);e._a[k]=n.getUTCMonth();e._a[S]=n.getUTCDate()}for(t=0;t<3&&e._a[t]==null;++t)e._a[t]=a[t]=r[t];for(;t<7;t++)e._a[t]=a[t]=e._a[t]==null?t===2?1:0:e._a[t];if(e._a[E]===24&&e._a[x]===0&&e._a[C]===0&&e._a[tt]===0){e._nextDay=true;e._a[E]=0}e._d=(e._useUTC?Et:St).apply(null,a);o=e._useUTC?e._d.getUTCDay():e._d.getDay();if(e._tzm!=null)e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm);if(e._nextDay)e._a[E]=24;if(e._w&&typeof e._w.d!=="undefined"&&e._w.d!==o)f(e).weekdayMismatch=true}function Bn(e){var t,n,a,r,o,i,l,s,u;t=e._w;if(t.GG!=null||t.W!=null||t.E!=null){o=1;i=4;n=zn(t.GG,e._a[M],Lt(O(),1,4).year);a=zn(t.W,1);r=zn(t.E,1);if(r<1||r>7)s=true}else{o=e._locale._week.dow;i=e._locale._week.doy;u=Lt(O(),o,i);n=zn(t.gg,e._a[M],u.year);a=zn(t.w,u.week);if(t.d!=null){r=t.d;if(r<0||r>6)s=true}else if(t.e!=null){r=t.e+o;if(t.e<0||t.e>6)s=true}else r=o}if(a<1||a>T(n,o,i))f(e)._overflowWeeks=true;else if(s!=null)f(e)._overflowWeekday=true;else{l=Ct(n,a,r,o,i);e._a[M]=l.year;e._dayOfYear=l.dayOfYear}}function Un(e){if(e._f===c.ISO_8601){Pn(e);return}if(e._f===c.RFC_2822){Hn(e);return}e._a=[];f(e).empty=true;var t=""+e._i,n,a,r,o,i,l=t.length,s=0,u,d;r=pe(e._f,e._locale).match(ie)||[];d=r.length;for(n=0;n<d;n++){o=r[n];a=(t.match(Je(o,e))||[])[0];if(a){i=t.substr(0,t.indexOf(a));if(i.length>0)f(e).unusedInput.push(i);t=t.slice(t.indexOf(a)+a.length);s+=a.length}if(ue[o]){if(a)f(e).empty=false;else f(e).unusedTokens.push(o);et(o,a,e)}else if(e._strict&&!a)f(e).unusedTokens.push(o)}f(e).charsLeftOver=l-s;if(t.length>0)f(e).unusedInput.push(t);if(e._a[E]<=12&&f(e).bigHour===true&&e._a[E]>0)f(e).bigHour=undefined;f(e).parsedDateParts=e._a.slice(0);f(e).meridiem=e._meridiem;e._a[E]=Kn(e._locale,e._a[E],e._meridiem);u=f(e).era;if(u!==null)e._a[M]=e._locale.erasConvertYear(u,e._a[M]);Vn(e);Sn(e)}function Kn(e,t,n){var a;if(n==null)return t;if(e.meridiemHour!=null)return e.meridiemHour(t,n);else if(e.isPM!=null){a=e.isPM(n);if(a&&t<12)t+=12;if(!a&&t===12)t=0;return t}else return t}function Gn(e){var t,n,a,r,o,i,l=false,s=e._f.length;if(s===0){f(e).invalidFormat=true;e._d=new Date(NaN);return}for(r=0;r<s;r++){o=0;i=false;t=$({},e);if(e._useUTC!=null)t._useUTC=e._useUTC;t._f=e._f[r];Un(t);if(U(t))i=true;o+=f(t).charsLeftOver;o+=f(t).unusedTokens.length*10;f(t).score=o;if(!l){if(a==null||o<a||i){a=o;n=t;if(i)l=true}}else if(o<a){a=o;n=t}}V(e,n||t)}function qn(e){if(e._d)return;var t=Ee(e._i),n=t.day===undefined?t.date:t.day;e._a=W([t.year,t.month,n,t.hour,t.minute,t.second,t.millisecond],function(e){return e&&parseInt(e,10)});Vn(e)}function $n(e){var t=new J(Sn(Jn(e)));if(t._nextDay){t.add(1,"d");t._nextDay=undefined}return t}function Jn(e){var t=e._i,n=e._f;e._locale=e._locale||Mn(e._l);if(t===null||n===undefined&&t==="")return K({nullInput:true});if(typeof t==="string")e._i=t=e._locale.preparse(t);if(p(t))return new J(Sn(t));else if(z(t))e._d=t;else if(i(n))Gn(e);else if(n)Un(e);else Xn(e);if(!U(e))e._d=null;return e}function Xn(e){var t=e._i;if(l(t))e._d=new Date(c.now());else if(z(t))e._d=new Date(t.valueOf());else if(typeof t==="string")Fn(e);else if(i(t)){e._a=W(t.slice(0),function(e){return parseInt(e,10)});Vn(e)}else if(H(t))qn(e);else if(u(t))e._d=new Date(t);else c.createFromInputFallback(e)}function Qn(e,t,n,a,r){var o={};if(t===true||t===false){a=t;t=undefined}if(n===true||n===false){a=n;n=undefined}if(H(e)&&F(e)||i(e)&&e.length===0)e=undefined;o._isAMomentObject=true;o._useUTC=o._isUTC=r;o._l=n;o._i=e;o._f=t;o._strict=a;return $n(o)}function O(e,t,n,a){return Qn(e,t,n,a,false)}c.createFromInputFallback=e("value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), "+"which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are "+"discouraged. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(e){e._d=new Date(e._i+(e._useUTC?" UTC":""))}),c.ISO_8601=function(){},c.RFC_2822=function(){};var Zn=e("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=O.apply(null,arguments);if(this.isValid()&&e.isValid())return e<this?this:e;else return K()}),ea=e("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=O.apply(null,arguments);if(this.isValid()&&e.isValid())return e>this?this:e;else return K()});function ta(e,t){var n,a;if(t.length===1&&i(t[0]))t=t[0];if(!t.length)return O();n=t[0];for(a=1;a<t.length;++a)if(!t[a].isValid()||t[a][e](n))n=t[a];return n}function na(){var e=[].slice.call(arguments,0);return ta("isBefore",e)}function aa(){var e=[].slice.call(arguments,0);return ta("isAfter",e)}var ra=function(){return Date.now?Date.now():+new Date},oa=["year","quarter","month","week","day","hour","minute","second","millisecond"];function ia(e){var t,n=false,a,r=oa.length;for(t in e)if(s(e,t)&&!(L.call(oa,t)!==-1&&(e[t]==null||!isNaN(e[t]))))return false;for(a=0;a<r;++a)if(e[oa[a]]){if(n)return false;if(parseFloat(e[oa[a]])!==y(e[oa[a]]))n=true}return true}function la(){return this._isValid}function sa(){return N(NaN)}function ua(e){var t=Ee(e),n=t.year||0,a=t.quarter||0,r=t.month||0,o=t.week||t.isoWeek||0,i=t.day||0,l=t.hour||0,s=t.minute||0,u=t.second||0,d=t.millisecond||0;this._isValid=ia(t);this._milliseconds=+d+u*1e3+s*6e4+l*1e3*60*60;this._days=+i+o*7;this._months=+r+a*3+n*12;this._data={};this._locale=Mn();this._bubble()}function da(e){return e instanceof ua}function ca(e){if(e<0)return Math.round(-1*e)*-1;else return Math.round(e)}function fa(e,t,n){var a=Math.min(e.length,t.length),r=Math.abs(e.length-t.length),o=0,i;for(i=0;i<a;i++)if(n&&e[i]!==t[i]||!n&&y(e[i])!==y(t[i]))o++;return o+r}function pa(e,n){a(e,0,0,function(){var e=this.utcOffset(),t="+";if(e<0){e=-e;t="-"}return t+o(~~(e/60),2)+n+o(~~e%60,2)})}pa("Z",":"),pa("ZZ",""),_("Z",Ke),_("ZZ",Ke),w(["Z","ZZ"],function(e,t,n){n._useUTC=true;n._tzm=ma(Ke,e)});var ha=/([\+\-]|\d\d)/gi;function ma(e,t){var n=(t||"").match(e),a,r,o;if(n===null)return null;a=n[n.length-1]||[];r=(a+"").match(ha)||["-",0,0];o=+(r[1]*60)+y(r[2]);return o===0?0:r[0]==="+"?o:-o}function ga(e,t){var n,a;if(t._isUTC){n=t.clone();a=(p(e)||z(e)?e.valueOf():O(e).valueOf())-n.valueOf();n._d.setTime(n._d.valueOf()+a);c.updateOffset(n,false);return n}else return O(e).local()}function ya(e){return-Math.round(e._d.getTimezoneOffset())}function va(e,t,n){var a=this._offset||0,r;if(!this.isValid())return e!=null?this:NaN;if(e!=null){if(typeof e==="string"){e=ma(Ke,e);if(e===null)return this}else if(Math.abs(e)<16&&!n)e=e*60;if(!this._isUTC&&t)r=ya(this);this._offset=e;this._isUTC=true;if(r!=null)this.add(r,"m");if(a!==e)if(!t||this._changeInProgress)Ya(this,N(e-a,"m"),1,false);else if(!this._changeInProgress){this._changeInProgress=true;c.updateOffset(this,true);this._changeInProgress=null}return this}else return this._isUTC?a:ya(this)}function _a(e,t){if(e!=null){if(typeof e!=="string")e=-e;this.utcOffset(e,t);return this}else return-this.utcOffset()}function ba(e){return this.utcOffset(0,e)}function wa(e){if(this._isUTC){this.utcOffset(0,e);this._isUTC=false;if(e)this.subtract(ya(this),"m")}return this}function Ma(){if(this._tzm!=null)this.utcOffset(this._tzm,false,true);else if(typeof this._i==="string"){var e=ma(Ue,this._i);if(e!=null)this.utcOffset(e);else this.utcOffset(0,true)}return this}function ka(e){if(!this.isValid())return false;e=e?O(e).utcOffset():0;return(this.utcOffset()-e)%60===0}function Sa(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Ea(){if(!l(this._isDSTShifted))return this._isDSTShifted;var e={},t;$(e,this);e=Jn(e);if(e._a){t=e._isUTC?d(e._a):O(e._a);this._isDSTShifted=this.isValid()&&fa(e._a,t.toArray())>0}else this._isDSTShifted=false;return this._isDSTShifted}function xa(){return this.isValid()?!this._isUTC:false}function Ca(){return this.isValid()?this._isUTC:false}function La(){return this.isValid()?this._isUTC&&this._offset===0:false}c.updateOffset=function(){};var Ta=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,Da=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function N(e,t){var n=e,a=null,r,o,i;if(da(e))n={ms:e._milliseconds,d:e._days,M:e._months};else if(u(e)||!isNaN(+e)){n={};if(t)n[t]=+e;else n.milliseconds=+e}else if(a=Ta.exec(e)){r=a[1]==="-"?-1:1;n={y:0,d:y(a[S])*r,h:y(a[E])*r,m:y(a[x])*r,s:y(a[C])*r,ms:y(ca(a[tt]*1e3))*r}}else if(a=Da.exec(e)){r=a[1]==="-"?-1:1;n={y:Oa(a[2],r),M:Oa(a[3],r),w:Oa(a[4],r),d:Oa(a[5],r),h:Oa(a[6],r),m:Oa(a[7],r),s:Oa(a[8],r)}}else if(n==null)n={};else if(typeof n==="object"&&("from"in n||"to"in n)){i=Pa(O(n.from),O(n.to));n={};n.ms=i.milliseconds;n.M=i.months}o=new ua(n);if(da(e)&&s(e,"_locale"))o._locale=e._locale;if(da(e)&&s(e,"_isValid"))o._isValid=e._isValid;return o}function Oa(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function Na(e,t){var n={};n.months=t.month()-e.month()+(t.year()-e.year())*12;if(e.clone().add(n.months,"M").isAfter(t))--n.months;n.milliseconds=+t-+e.clone().add(n.months,"M");return n}function Pa(e,t){var n;if(!(e.isValid()&&t.isValid()))return{milliseconds:0,months:0};t=ga(t,e);if(e.isBefore(t))n=Na(e,t);else{n=Na(t,e);n.milliseconds=-n.milliseconds;n.months=-n.months}return n}function ja(r,o){return function(e,t){var n,a;if(t!==null&&!isNaN(+t)){ee(o,"moment()."+o+"(period, number) is deprecated. Please use moment()."+o+"(number, period). "+"See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.");a=e;e=t;t=a}n=N(e,t);Ya(this,n,r);return this}}function Ya(e,t,n,a){var r=t._milliseconds,o=ca(t._days),i=ca(t._months);if(!e.isValid())return;a=a==null?true:a;if(i)mt(e,De(e,"Month")+i*n);if(o)Oe(e,"Date",De(e,"Date")+o*n);if(r)e._d.setTime(e._d.valueOf()+r*n);if(a)c.updateOffset(e,o||i)}N.fn=ua.prototype,N.invalid=sa;var Ia=ja(1,"add"),Ra=ja(-1,"subtract");function Aa(e){return typeof e==="string"||e instanceof String}function Ha(e){return p(e)||z(e)||Aa(e)||u(e)||za(e)||Fa(e)||e===null||e===undefined}function Fa(e){var t=H(e)&&!F(e),n=false,a=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"],r,o,i=a.length;for(r=0;r<i;r+=1){o=a[r];n=n||s(e,o)}return t&&n}function za(t){var e=i(t),n=false;if(e)n=t.filter(function(e){return!u(e)&&Aa(t)}).length===0;return e&&n}function Wa(e){var t=H(e)&&!F(e),n=false,a=["sameDay","nextDay","lastDay","nextWeek","lastWeek","sameElse"],r,o;for(r=0;r<a.length;r+=1){o=a[r];n=n||s(e,o)}return t&&n}function Va(e,t){var n=e.diff(t,"days",true);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"}function Ba(e,t){if(arguments.length===1)if(!arguments[0]){e=undefined;t=undefined}else if(Ha(arguments[0])){e=arguments[0];t=undefined}else if(Wa(arguments[0])){t=arguments[0];e=undefined}var n=e||O(),a=ga(n,this).startOf("day"),r=c.calendarFormat(this,a)||"sameElse",o=t&&(h(t[r])?t[r].call(this,n):t[r]);return this.format(o||this.localeData().calendar(r,this,O(n)))}function Ua(){return new J(this)}function Ka(e,t){var n=p(e)?e:O(e);if(!(this.isValid()&&n.isValid()))return false;t=m(t)||"millisecond";if(t==="millisecond")return this.valueOf()>n.valueOf();else return n.valueOf()<this.clone().startOf(t).valueOf()}function Ga(e,t){var n=p(e)?e:O(e);if(!(this.isValid()&&n.isValid()))return false;t=m(t)||"millisecond";if(t==="millisecond")return this.valueOf()<n.valueOf();else return this.clone().endOf(t).valueOf()<n.valueOf()}function qa(e,t,n,a){var r=p(e)?e:O(e),o=p(t)?t:O(t);if(!(this.isValid()&&r.isValid()&&o.isValid()))return false;a=a||"()";return(a[0]==="("?this.isAfter(r,n):!this.isBefore(r,n))&&(a[1]===")"?this.isBefore(o,n):!this.isAfter(o,n))}function $a(e,t){var n=p(e)?e:O(e),a;if(!(this.isValid()&&n.isValid()))return false;t=m(t)||"millisecond";if(t==="millisecond")return this.valueOf()===n.valueOf();else{a=n.valueOf();return this.clone().startOf(t).valueOf()<=a&&a<=this.clone().endOf(t).valueOf()}}function Ja(e,t){return this.isSame(e,t)||this.isAfter(e,t)}function Xa(e,t){return this.isSame(e,t)||this.isBefore(e,t)}function Qa(e,t,n){var a,r,o;if(!this.isValid())return NaN;a=ga(e,this);if(!a.isValid())return NaN;r=(a.utcOffset()-this.utcOffset())*6e4;t=m(t);switch(t){case"year":o=Za(this,a)/12;break;case"month":o=Za(this,a);break;case"quarter":o=Za(this,a)/3;break;case"second":o=(this-a)/1e3;break;case"minute":o=(this-a)/6e4;break;case"hour":o=(this-a)/36e5;break;case"day":o=(this-a-r)/864e5;break;case"week":o=(this-a-r)/6048e5;break;default:o=this-a}return n?o:g(o)}function Za(e,t){if(e.date()<t.date())return-Za(t,e);var n=(t.year()-e.year())*12+(t.month()-e.month()),a=e.clone().add(n,"months"),r,o;if(t-a<0){r=e.clone().add(n-1,"months");o=(t-a)/(a-r)}else{r=e.clone().add(n+1,"months");o=(t-a)/(r-a)}return-(n+o)||0}function er(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")}function tr(e){if(!this.isValid())return null;var t=e!==true,n=t?this.clone().utc():this;if(n.year()<0||n.year()>9999)return fe(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ");if(h(Date.prototype.toISOString))if(t)return this.toDate().toISOString();else return new Date(this.valueOf()+this.utcOffset()*60*1e3).toISOString().replace("Z",fe(n,"Z"));return fe(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function nr(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e="moment",t="",n,a,r,o;if(!this.isLocal()){e=this.utcOffset()===0?"moment.utc":"moment.parseZone";t="Z"}n="["+e+'("]';a=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY";r="-MM-DD[T]HH:mm:ss.SSS";o=t+'[")]';return this.format(n+a+r+o)}function ar(e){if(!e)e=this.isUtc()?c.defaultFormatUtc:c.defaultFormat;var t=fe(this,e);return this.localeData().postformat(t)}function rr(e,t){if(this.isValid()&&(p(e)&&e.isValid()||O(e).isValid()))return N({to:this,from:e}).locale(this.locale()).humanize(!t);else return this.localeData().invalidDate()}function or(e){return this.from(O(),e)}function ir(e,t){if(this.isValid()&&(p(e)&&e.isValid()||O(e).isValid()))return N({from:this,to:e}).locale(this.locale()).humanize(!t);else return this.localeData().invalidDate()}function lr(e){return this.to(O(),e)}function sr(e){var t;if(e===undefined)return this._locale._abbr;else{t=Mn(e);if(t!=null)this._locale=t;return this}}c.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",c.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var ur=e("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){if(e===undefined)return this.localeData();else return this.locale(e)});function dr(){return this._locale}var cr=1e3,fr=60*cr,pr=60*fr,hr=(365*400+97)*24*pr;function mr(e,t){return(e%t+t)%t}function gr(e,t,n){if(e<100&&e>=0)return new Date(e+400,t,n)-hr;else return new Date(e,t,n).valueOf()}function yr(e,t,n){if(e<100&&e>=0)return Date.UTC(e+400,t,n)-hr;else return Date.UTC(e,t,n)}function vr(e){var t,n;e=m(e);if(e===undefined||e==="millisecond"||!this.isValid())return this;n=this._isUTC?yr:gr;switch(e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf();t-=mr(t+(this._isUTC?0:this.utcOffset()*fr),pr);break;case"minute":t=this._d.valueOf();t-=mr(t,fr);break;case"second":t=this._d.valueOf();t-=mr(t,cr);break}this._d.setTime(t);c.updateOffset(this,true);return this}function _r(e){var t,n;e=m(e);if(e===undefined||e==="millisecond"||!this.isValid())return this;n=this._isUTC?yr:gr;switch(e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf();t+=pr-mr(t+(this._isUTC?0:this.utcOffset()*fr),pr)-1;break;case"minute":t=this._d.valueOf();t+=fr-mr(t,fr)-1;break;case"second":t=this._d.valueOf();t+=cr-mr(t,cr)-1;break}this._d.setTime(t);c.updateOffset(this,true);return this}function br(){return this._d.valueOf()-(this._offset||0)*6e4}function wr(){return Math.floor(this.valueOf()/1e3)}function Mr(){return new Date(this.valueOf())}function kr(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function Sr(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function Er(){return this.isValid()?this.toISOString():null}function xr(){return U(this)}function Cr(){return V({},f(this))}function Lr(){return f(this).overflow}function Tr(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function Dr(e,t){var n,a,r,o=this._eras||Mn("en")._eras;for(n=0,a=o.length;n<a;++n){switch(typeof o[n].since){case"string":r=c(o[n].since).startOf("day");o[n].since=r.valueOf();break}switch(typeof o[n].until){case"undefined":o[n].until=+Infinity;break;case"string":r=c(o[n].until).startOf("day").valueOf();o[n].until=r.valueOf();break}}return o}function Or(e,t,n){var a,r,o=this.eras(),i,l,s;e=e.toUpperCase();for(a=0,r=o.length;a<r;++a){i=o[a].name.toUpperCase();l=o[a].abbr.toUpperCase();s=o[a].narrow.toUpperCase();if(n)switch(t){case"N":case"NN":case"NNN":if(l===e)return o[a];break;case"NNNN":if(i===e)return o[a];break;case"NNNNN":if(s===e)return o[a];break}else if([i,l,s].indexOf(e)>=0)return o[a]}}function Nr(e,t){var n=e.since<=e.until?+1:-1;if(t===undefined)return c(e.since).year();else return c(e.since).year()+(t-e.offset)*n}function Pr(){var e,t,n,a=this.localeData().eras();for(e=0,t=a.length;e<t;++e){n=this.clone().startOf("day").valueOf();if(a[e].since<=n&&n<=a[e].until)return a[e].name;if(a[e].until<=n&&n<=a[e].since)return a[e].name}return""}function jr(){var e,t,n,a=this.localeData().eras();for(e=0,t=a.length;e<t;++e){n=this.clone().startOf("day").valueOf();if(a[e].since<=n&&n<=a[e].until)return a[e].narrow;if(a[e].until<=n&&n<=a[e].since)return a[e].narrow}return""}function Yr(){var e,t,n,a=this.localeData().eras();for(e=0,t=a.length;e<t;++e){n=this.clone().startOf("day").valueOf();if(a[e].since<=n&&n<=a[e].until)return a[e].abbr;if(a[e].until<=n&&n<=a[e].since)return a[e].abbr}return""}function Ir(){var e,t,n,a,r=this.localeData().eras();for(e=0,t=r.length;e<t;++e){n=r[e].since<=r[e].until?+1:-1;a=this.clone().startOf("day").valueOf();if(r[e].since<=a&&a<=r[e].until||r[e].until<=a&&a<=r[e].since)return(this.year()-c(r[e].since).year())*n+r[e].offset}return this.year()}function Rr(e){if(!s(this,"_erasNameRegex"))Br.call(this);return e?this._erasNameRegex:this._erasRegex}function Ar(e){if(!s(this,"_erasAbbrRegex"))Br.call(this);return e?this._erasAbbrRegex:this._erasRegex}function Hr(e){if(!s(this,"_erasNarrowRegex"))Br.call(this);return e?this._erasNarrowRegex:this._erasRegex}function Fr(e,t){return t.erasAbbrRegex(e)}function zr(e,t){return t.erasNameRegex(e)}function Wr(e,t){return t.erasNarrowRegex(e)}function Vr(e,t){return t._eraYearOrdinalRegex||Ve}function Br(){var e=[],t=[],n=[],a=[],r,o,i=this.eras();for(r=0,o=i.length;r<o;++r){t.push(b(i[r].name));e.push(b(i[r].abbr));n.push(b(i[r].narrow));a.push(b(i[r].name));a.push(b(i[r].abbr));a.push(b(i[r].narrow))}this._erasRegex=new RegExp("^("+a.join("|")+")","i");this._erasNameRegex=new RegExp("^("+t.join("|")+")","i");this._erasAbbrRegex=new RegExp("^("+e.join("|")+")","i");this._erasNarrowRegex=new RegExp("^("+n.join("|")+")","i")}function Ur(e,t){a(0,[e,e.length],0,t)}function Kr(e){return Qr.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)}function Gr(e){return Qr.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)}function qr(){return T(this.year(),1,4)}function $r(){return T(this.isoWeekYear(),1,4)}function Jr(){var e=this.localeData()._week;return T(this.year(),e.dow,e.doy)}function Xr(){var e=this.localeData()._week;return T(this.weekYear(),e.dow,e.doy)}function Qr(e,t,n,a,r){var o;if(e==null)return Lt(this,a,r).year;else{o=T(e,a,r);if(t>o)t=o;return Zr.call(this,e,t,n,a,r)}}function Zr(e,t,n,a,r){var o=Ct(e,t,n,a,r),i=Et(o.year,0,o.dayOfYear);this.year(i.getUTCFullYear());this.month(i.getUTCMonth());this.date(i.getUTCDate());return this}function eo(e){return e==null?Math.ceil((this.month()+1)/3):this.month((e-1)*3+this.month()%3)}a("N",0,0,"eraAbbr"),a("NN",0,0,"eraAbbr"),a("NNN",0,0,"eraAbbr"),a("NNNN",0,0,"eraName"),a("NNNNN",0,0,"eraNarrow"),a("y",["y",1],"yo","eraYear"),a("y",["yy",2],0,"eraYear"),a("y",["yyy",3],0,"eraYear"),a("y",["yyyy",4],0,"eraYear"),_("N",Fr),_("NN",Fr),_("NNN",Fr),_("NNNN",zr),_("NNNNN",Wr),w(["N","NN","NNN","NNNN","NNNNN"],function(e,t,n,a){var r=n._locale.erasParse(e,a,n._strict);if(r)f(n).era=r;else f(n).invalidEra=e}),_("y",Ve),_("yy",Ve),_("yyy",Ve),_("yyyy",Ve),_("yo",Vr),w(["y","yy","yyy","yyyy"],M),w(["yo"],function(e,t,n,a){var r;if(n._locale._eraYearOrdinalRegex)r=e.match(n._locale._eraYearOrdinalRegex);if(n._locale.eraYearOrdinalParse)t[M]=n._locale.eraYearOrdinalParse(e,r);else t[M]=parseInt(e,10)}),a(0,["gg",2],0,function(){return this.weekYear()%100}),a(0,["GG",2],0,function(){return this.isoWeekYear()%100}),Ur("gggg","weekYear"),Ur("ggggg","weekYear"),Ur("GGGG","isoWeekYear"),Ur("GGGGG","isoWeekYear"),t("weekYear","gg"),t("isoWeekYear","GG"),n("weekYear",1),n("isoWeekYear",1),_("G",Be),_("g",Be),_("GG",v,r),_("gg",v,r),_("GGGG",ze,Ie),_("gggg",ze,Ie),_("GGGGG",We,Re),_("ggggg",We,Re),Ze(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,a){t[a.substr(0,2)]=y(e)}),Ze(["gg","GG"],function(e,t,n,a){t[a]=c.parseTwoDigitYear(e)}),a("Q",0,"Qo","quarter"),t("quarter","Q"),n("quarter",7),_("Q",je),w("Q",function(e,t){t[k]=(y(e)-1)*3}),a("D",["DD",2],"Do","date"),t("date","D"),n("date",9),_("D",v),_("DD",v,r),_("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),w(["D","DD"],S),w("Do",function(e,t){t[S]=y(e.match(v)[0])});var to=Te("Date",true);function no(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return e==null?t:this.add(e-t,"d")}a("DDD",["DDDD",3],"DDDo","dayOfYear"),t("dayOfYear","DDD"),n("dayOfYear",4),_("DDD",Fe),_("DDDD",Ye),w(["DDD","DDDD"],function(e,t,n){n._dayOfYear=y(e)}),a("m",["mm",2],0,"minute"),t("minute","m"),n("minute",14),_("m",v),_("mm",v,r),w(["m","mm"],x);var ao=Te("Minutes",false),ro=(a("s",["ss",2],0,"second"),t("second","s"),n("second",15),_("s",v),_("ss",v,r),w(["s","ss"],C),Te("Seconds",false)),oo,io;for(a("S",0,0,function(){return~~(this.millisecond()/100)}),a(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),a(0,["SSS",3],0,"millisecond"),a(0,["SSSS",4],0,function(){return this.millisecond()*10}),a(0,["SSSSS",5],0,function(){return this.millisecond()*100}),a(0,["SSSSSS",6],0,function(){return this.millisecond()*1e3}),a(0,["SSSSSSS",7],0,function(){return this.millisecond()*1e4}),a(0,["SSSSSSSS",8],0,function(){return this.millisecond()*1e5}),a(0,["SSSSSSSSS",9],0,function(){return this.millisecond()*1e6}),t("millisecond","ms"),n("millisecond",16),_("S",Fe,je),_("SS",Fe,r),_("SSS",Fe,Ye),oo="SSSS";oo.length<=9;oo+="S")_(oo,Ve);function lo(e,t){t[tt]=y(("0."+e)*1e3)}for(oo="S";oo.length<=9;oo+="S")w(oo,lo);function so(){return this._isUTC?"UTC":""}function uo(){return this._isUTC?"Coordinated Universal Time":""}io=Te("Milliseconds",false),a("z",0,0,"zoneAbbr"),a("zz",0,0,"zoneName");var P=J.prototype;if(P.add=Ia,P.calendar=Ba,P.clone=Ua,P.diff=Qa,P.endOf=_r,P.format=ar,P.from=rr,P.fromNow=or,P.to=ir,P.toNow=lr,P.get=Ne,P.invalidAt=Lr,P.isAfter=Ka,P.isBefore=Ga,P.isBetween=qa,P.isSame=$a,P.isSameOrAfter=Ja,P.isSameOrBefore=Xa,P.isValid=xr,P.lang=ur,P.locale=sr,P.localeData=dr,P.max=ea,P.min=Zn,P.parsingFlags=Cr,P.set=Pe,P.startOf=vr,P.subtract=Ra,P.toArray=kr,P.toObject=Sr,P.toDate=Mr,P.toISOString=tr,P.inspect=nr,typeof Symbol!=="undefined"&&Symbol.for!=null)P[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"};function co(e){return O(e*1e3)}function fo(){return O.apply(null,arguments).parseZone()}function po(e){return e}P.toJSON=Er,P.toString=er,P.unix=wr,P.valueOf=br,P.creationData=Tr,P.eraName=Pr,P.eraNarrow=jr,P.eraAbbr=Yr,P.eraYear=Ir,P.year=Mt,P.isLeapYear=kt,P.weekYear=Kr,P.isoWeekYear=Gr,P.quarter=P.quarters=eo,P.month=gt,P.daysInMonth=yt,P.week=P.weeks=Pt,P.isoWeek=P.isoWeeks=jt,P.weeksInYear=Jr,P.weeksInWeekYear=Xr,P.isoWeeksInYear=qr,P.isoWeeksInISOWeekYear=$r,P.date=to,P.day=P.days=$t,P.weekday=Jt,P.isoWeekday=Xt,P.dayOfYear=no,P.hour=P.hours=un,P.minute=P.minutes=ao,P.second=P.seconds=ro,P.millisecond=P.milliseconds=io,P.utcOffset=va,P.utc=ba,P.local=wa,P.parseZone=Ma,P.hasAlignedHourOffset=ka,P.isDST=Sa,P.isLocal=xa,P.isUtcOffset=Ca,P.isUtc=La,P.isUTC=La,P.zoneAbbr=so,P.zoneName=uo,P.dates=e("dates accessor is deprecated. Use date instead.",to),P.months=e("months accessor is deprecated. Use month instead",gt),P.years=e("years accessor is deprecated. Use year instead",Mt),P.zone=e("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",_a),P.isDSTShifted=e("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",Ea);var j=ae.prototype;function ho(e,t,n,a){var r=Mn(),o=d().set(a,t);return r[n](o,e)}function mo(e,t,n){if(u(e)){t=e;e=undefined}e=e||"";if(t!=null)return ho(e,t,n,"month");var a,r=[];for(a=0;a<12;a++)r[a]=ho(e,a,n,"month");return r}function go(e,t,n,a){if(typeof e==="boolean"){if(u(t)){n=t;t=undefined}t=t||""}else{t=e;n=t;e=false;if(u(t)){n=t;t=undefined}t=t||""}var r=Mn(),o=e?r._week.dow:0,i,l=[];if(n!=null)return ho(t,(n+o)%7,a,"day");for(i=0;i<7;i++)l[i]=ho(t,(i+o)%7,a,"day");return l}function yo(e,t){return mo(e,t,"months")}function vo(e,t){return mo(e,t,"monthsShort")}function _o(e,t,n){return go(e,t,n,"weekdays")}function bo(e,t,n){return go(e,t,n,"weekdaysShort")}function wo(e,t,n){return go(e,t,n,"weekdaysMin")}j.calendar=oe,j.longDateFormat=me,j.invalidDate=ye,j.ordinal=be,j.preparse=po,j.postformat=po,j.relativeTime=Me,j.pastFuture=ke,j.set=te,j.eras=Dr,j.erasParse=Or,j.erasConvertYear=Nr,j.erasAbbrRegex=Ar,j.erasNameRegex=Rr,j.erasNarrowRegex=Hr,j.months=ct,j.monthsShort=ft,j.monthsParse=ht,j.monthsRegex=_t,j.monthsShortRegex=vt,j.week=Tt,j.firstDayOfYear=Nt,j.firstDayOfWeek=Ot,j.weekdays=Bt,j.weekdaysMin=Kt,j.weekdaysShort=Ut,j.weekdaysParse=qt,j.weekdaysRegex=Qt,j.weekdaysShortRegex=Zt,j.weekdaysMinRegex=en,j.isPM=ln,j.meridiem=dn,_n("en",{eras:[{since:"0001-01-01",until:+Infinity,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-Infinity,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10,n=y(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n}}),c.lang=e("moment.lang is deprecated. Use moment.locale instead.",_n),c.langData=e("moment.langData is deprecated. Use moment.localeData instead.",Mn);var Mo=Math.abs;function ko(){var e=this._data;this._milliseconds=Mo(this._milliseconds);this._days=Mo(this._days);this._months=Mo(this._months);e.milliseconds=Mo(e.milliseconds);e.seconds=Mo(e.seconds);e.minutes=Mo(e.minutes);e.hours=Mo(e.hours);e.months=Mo(e.months);e.years=Mo(e.years);return this}function So(e,t,n,a){var r=N(t,n);e._milliseconds+=a*r._milliseconds;e._days+=a*r._days;e._months+=a*r._months;return e._bubble()}function Eo(e,t){return So(this,e,t,1)}function xo(e,t){return So(this,e,t,-1)}function Co(e){if(e<0)return Math.floor(e);else return Math.ceil(e)}function Lo(){var e=this._milliseconds,t=this._days,n=this._months,a=this._data,r,o,i,l,s;if(!(e>=0&&t>=0&&n>=0||e<=0&&t<=0&&n<=0)){e+=Co(Do(n)+t)*864e5;t=0;n=0}a.milliseconds=e%1e3;r=g(e/1e3);a.seconds=r%60;o=g(r/60);a.minutes=o%60;i=g(o/60);a.hours=i%24;t+=g(i/24);s=g(To(t));n+=s;t-=Co(Do(s));l=g(n/12);n%=12;a.days=t;a.months=n;a.years=l;return this}function To(e){return e*4800/146097}function Do(e){return e*146097/4800}function Oo(e){if(!this.isValid())return NaN;var t,n,a=this._milliseconds;e=m(e);if(e==="month"||e==="quarter"||e==="year"){t=this._days+a/864e5;n=this._months+To(t);switch(e){case"month":return n;case"quarter":return n/3;case"year":return n/12}}else{t=this._days+Math.round(Do(this._months));switch(e){case"week":return t/7+a/6048e5;case"day":return t+a/864e5;case"hour":return t*24+a/36e5;case"minute":return t*1440+a/6e4;case"second":return t*86400+a/1e3;case"millisecond":return Math.floor(t*864e5)+a;default:throw new Error("Unknown unit "+e)}}}function No(){if(!this.isValid())return NaN;return this._milliseconds+this._days*864e5+this._months%12*2592e6+y(this._months/12)*31536e6}function Po(e){return function(){return this.as(e)}}var jo=Po("ms"),Yo=Po("s"),Io=Po("m"),Ro=Po("h"),Ao=Po("d"),Ho=Po("w"),Fo=Po("M"),zo=Po("Q"),Wo=Po("y");function Vo(){return N(this)}function Bo(e){e=m(e);return this.isValid()?this[e+"s"]():NaN}function Uo(e){return function(){return this.isValid()?this._data[e]:NaN}}var Ko=Uo("milliseconds"),Go=Uo("seconds"),qo=Uo("minutes"),$o=Uo("hours"),Jo=Uo("days"),Xo=Uo("months"),Qo=Uo("years");function Zo(){return g(this.days()/7)}var ei=Math.round,ti={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function ni(e,t,n,a,r){return r.relativeTime(t||1,!!n,e,a)}function ai(e,t,n,a){var r=N(e).abs(),o=ei(r.as("s")),i=ei(r.as("m")),l=ei(r.as("h")),s=ei(r.as("d")),u=ei(r.as("M")),d=ei(r.as("w")),c=ei(r.as("y")),f=o<=n.ss&&["s",o]||o<n.s&&["ss",o]||i<=1&&["m"]||i<n.m&&["mm",i]||l<=1&&["h"]||l<n.h&&["hh",l]||s<=1&&["d"]||s<n.d&&["dd",s];if(n.w!=null)f=f||d<=1&&["w"]||d<n.w&&["ww",d];f=f||u<=1&&["M"]||u<n.M&&["MM",u]||c<=1&&["y"]||["yy",c];f[2]=t;f[3]=+e>0;f[4]=a;return ni.apply(null,f)}function ri(e){if(e===undefined)return ei;if(typeof e==="function"){ei=e;return true}return false}function oi(e,t){if(ti[e]===undefined)return false;if(t===undefined)return ti[e];ti[e]=t;if(e==="s")ti.ss=t-1;return true}function ii(e,t){if(!this.isValid())return this.localeData().invalidDate();var n=false,a=ti,r,o;if(typeof e==="object"){t=e;e=false}if(typeof e==="boolean")n=e;if(typeof t==="object"){a=Object.assign({},ti,t);if(t.s!=null&&t.ss==null)a.ss=t.s-1}r=this.localeData();o=ai(this,!n,a,r);if(n)o=r.pastFuture(+this,o);return r.postformat(o)}var li=Math.abs;function si(e){return(e>0)-(e<0)||+e}function ui(){if(!this.isValid())return this.localeData().invalidDate();var e=li(this._milliseconds)/1e3,t=li(this._days),n=li(this._months),a,r,o,i,l=this.asSeconds(),s,u,d,c;if(!l)return"P0D";a=g(e/60);r=g(a/60);e%=60;a%=60;o=g(n/12);n%=12;i=e?e.toFixed(3).replace(/\.?0+$/,""):"";s=l<0?"-":"";u=si(this._months)!==si(l)?"-":"";d=si(this._days)!==si(l)?"-":"";c=si(this._milliseconds)!==si(l)?"-":"";return s+"P"+(o?u+o+"Y":"")+(n?u+n+"M":"")+(t?d+t+"D":"")+(r||a||e?"T":"")+(r?c+r+"H":"")+(a?c+a+"M":"")+(e?c+i+"S":"")}var Y=ua.prototype;return Y.isValid=la,Y.abs=ko,Y.add=Eo,Y.subtract=xo,Y.as=Oo,Y.asMilliseconds=jo,Y.asSeconds=Yo,Y.asMinutes=Io,Y.asHours=Ro,Y.asDays=Ao,Y.asWeeks=Ho,Y.asMonths=Fo,Y.asQuarters=zo,Y.asYears=Wo,Y.valueOf=No,Y._bubble=Lo,Y.clone=Vo,Y.get=Bo,Y.milliseconds=Ko,Y.seconds=Go,Y.minutes=qo,Y.hours=$o,Y.days=Jo,Y.weeks=Zo,Y.months=Xo,Y.years=Qo,Y.humanize=ii,Y.toISOString=ui,Y.toString=ui,Y.toJSON=ui,Y.locale=sr,Y.localeData=dr,Y.toIsoString=e("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",ui),Y.lang=ur,a("X",0,0,"unix"),a("x",0,0,"valueOf"),_("x",Be),_("X",Ge),w("X",function(e,t,n){n._d=new Date(parseFloat(e)*1e3)}),w("x",function(e,t,n){n._d=new Date(y(e))}), |
| | | //! moment.js |
| | | c.version="2.29.4",A(O),c.fn=P,c.min=na,c.max=aa,c.now=ra,c.utc=d,c.unix=co,c.months=yo,c.isDate=z,c.locale=_n,c.invalid=K,c.duration=N,c.isMoment=p,c.weekdays=_o,c.parseZone=fo,c.localeData=Mn,c.isDuration=da,c.monthsShort=vo,c.weekdaysMin=wo,c.defineLocale=bn,c.updateLocale=wn,c.locales=kn,c.weekdaysShort=bo,c.normalizeUnits=m,c.relativeTimeRounding=ri,c.relativeTimeThreshold=oi,c.calendarFormat=Va,c.prototype=P,c.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},c}()}.call(this,fi(516)(e))},function(e,t,n){"use strict";t.__esModule=!0;var a=u(n(2)),r=u(n(12)),o=u(n(8)),i=u(n(360)),l=u(n(581)),s=u(n(582)),n=u(n(362));function u(e){return e&&e.__esModule?e:{default:e}}i.default.Password=o.default.config(l.default,{exportNames:["getInputNode","focus"],transform:function(e,t){var n;return"hasLimitHint"in e&&(t("hasLimitHint","showLimitHint","Input"),n=(t=e).hasLimitHint,t=(0,r.default)(t,["hasLimitHint"]),e=(0,a.default)({showLimitHint:n},t)),e}}),i.default.TextArea=o.default.config(s.default,{exportNames:["getInputNode","focus"],transform:function(e,t){var n;return"hasLimitHint"in e&&(t("hasLimitHint","showLimitHint","Input"),n=(t=e).hasLimitHint,t=(0,r.default)(t,["hasLimitHint"]),e=(0,a.default)({showLimitHint:n},t)),e}}),i.default.Group=n.default,t.default=o.default.config(i.default,{exportNames:["getInputNode","focus"],transform:function(e,t){var n;return"hasLimitHint"in e&&(t("hasLimitHint","showLimitHint","Input"),n=(t=e).hasLimitHint,t=(0,r.default)(t,["hasLimitHint"]),e=(0,a.default)({showLimitHint:n},t)),e}}),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.pickAttrs=t.datejs=t.htmlId=t.KEYCODE=t.guid=t.focus=t.support=t.str=t.obj=t.log=t.func=t.events=t.env=t.dom=void 0;var a=y(n(201)),r=y(n(204)),o=y(n(499)),i=y(n(500)),l=y(n(203)),s=y(n(96)),u=y(n(202)),d=y(n(508)),c=y(n(509)),f=y(n(510)),p=g(n(511)),h=g(n(206)),m=g(n(155)),n=g(n(512));function g(e){return e&&e.__esModule?e:{default:e}}function y(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}t.dom=a,t.env=r,t.events=o,t.func=i,t.log=l,t.obj=s,t.str=u,t.support=d,t.focus=c,t.guid=p.default,t.KEYCODE=h.default,t.htmlId=f,t.datejs=m.default,t.pickAttrs=n.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){var n,a={};for(n in e)0<=t.indexOf(n)||Object.prototype.hasOwnProperty.call(e,n)&&(a[n]=e[n]);return a}},function(e,t,n){var a; |
| | | /*! |
| | | Copyright (c) 2018 Jed Watson. |
| | | Licensed under the MIT License (MIT), see |
| | | http://jedwatson.github.io/classnames |
| | | */ |
| | | !function(){"use strict";var i={}.hasOwnProperty;function l(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var a,r=typeof n;if("string"==r||"number"==r)e.push(n);else if(Array.isArray(n))!n.length||(a=l.apply(null,n))&&e.push(a);else if("object"==r)if(n.toString===Object.prototype.toString)for(var o in n)i.call(n,o)&&n[o]&&e.push(o);else e.push(n.toString())}}return e.join(" ")}e.exports?e.exports=l.default=l:void 0!==(a=function(){return l}.apply(t,[]))&&(e.exports=a)}()},function(e,t,n){"use strict";function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}n.d(t,"a",function(){return a})},function(e,t,n){"use strict";function a(e,t){for(var n=0;n<t.length;n++){var a=t[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}}function r(e,t,n){return t&&a(e.prototype,t),n&&a(e,n),e}n.d(t,"a",function(){return r})},function(e,t,n){"use strict";function r(e){return(r=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}n.d(t,"a",function(){return a});var o=n(72),i=n(22);function a(a){return function(){var e,t,n=r(a);return e=function(){if("undefined"!=typeof Reflect&&Reflect.construct&&!Reflect.construct.sham){if("function"==typeof Proxy)return 1;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),1}catch(e){}}}()?(e=r(this).constructor,Reflect.construct(n,arguments,e)):n.apply(this,arguments),n=this,!(t=e)||"object"!==Object(o.a)(t)&&"function"!=typeof t?Object(i.a)(n):t}}},function(e,t,n){"use strict";function a(e,t){return(a=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function r(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&a(e,t)}n.d(t,"a",function(){return r})},function(e,t,n){"use strict";t.__esModule=!0;var o=r(n(2)),i=r(n(12)),a=r(n(8)),l=r(n(576)),n=r(n(577));function r(e){return e&&e.__esModule?e:{default:e}}l.default.Group=n.default,t.default=a.default.config(l.default,{transform:function(e,t){var n,a,r;return"shape"in e&&(t("shape","text | warning | ghost","Button"),n=(t=e).shape,a=t.type,t=(0,i.default)(t,["shape","type"]),r=void 0,"ghost"===n&&(r={primary:"dark",secondary:"dark",normal:"light",dark:"dark",light:"light"}[a||l.default.defaultProps.type]),e=(0,o.default)({type:"light"===a||"dark"===a||"secondary"===a&&"warning"===n?"normal":a,ghost:r,text:"text"===n,warning:"warning"===n},t)),e}}),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var i=m(n(2)),l=m(n(12)),a=m(n(4)),r=m(n(6)),o=m(n(7)),s=m(n(0)),u=m(n(8)),d=n(11),c=m(n(358)),f=m(n(359)),p=m(n(164)),h=n(580);function m(e){return e&&e.__esModule?e:{default:e}}g=s.default.Component,(0,o.default)(y,g),y.prototype.render=function(){var e=this.props,t=e.v2,e=(0,l.default)(e,["v2"]);return t?s.default.createElement(f.default,e):s.default.createElement(c.default,e)};var g,n=y;function y(){return(0,a.default)(this,y),(0,r.default)(this,g.apply(this,arguments))}function v(r,o){var e,t;if("closable"in r&&(o("closable","closeable","Dialog"),t=(e=r).closable,e=(0,l.default)(e,["closable"]),r=(0,i.default)({closeable:t},e)),"v2"in r)return t=(0,i.default)({},r),"align"in r&&(delete t.align,o("align","centered","<Dialog v2 />")),"shouldUpdatePosition"in r&&(delete t.shouldUpdatePosition,d.log.warning("Warning: [ shouldUpdatePosition ] is deprecated at [ <Dialog v2 /> ]")),"minMargin"in r&&o("minMargin","top/bottom","<Dialog v2 />"),"isFullScreen"in r&&(r.overFlowScroll=!r.isFullScreen,delete t.isFullScreen,o("isFullScreen","overFlowScroll","<Dialog v2 />")),t;return["target","offset","beforeOpen","onOpen","afterOpen","beforePosition","onPosition","cache","safeNode","wrapperClassName","container"].forEach(function(e){var t,n,a;e in r&&(o(e,"overlayProps."+e,"Dialog"),t=(n=r).overlayProps,n=(0,l.default)(n,["overlayProps"]),a=(0,i.default)(((a={})[e]=r[e],a),t||{}),delete n[e],r=(0,i.default)({overlayProps:a},n))}),r}n.displayName="Dialog",n.Inner=p.default,n.show=function(e){return!1!==u.default.getContextProps(e,"Dialog").warning&&(e=v(e,d.log.deprecated)),(0,h.show)(e)},n.alert=function(e){return!1!==u.default.getContextProps(e,"Dialog").warning&&(e=v(e,d.log.deprecated)),(0,h.alert)(e)},n.confirm=function(e){return!1!==u.default.getContextProps(e,"Dialog").warning&&(e=v(e,d.log.deprecated)),(0,h.confirm)(e)},n.success=function(e){return(0,h.success)(e)},n.error=function(e){return(0,h.error)(e)},n.notice=function(e){return(0,h.notice)(e)},n.warning=function(e){return(0,h.warning)(e)},n.help=function(e){return(0,h.help)(e)},n.withContext=h.withContext,t.default=u.default.config(n,{transform:v}),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var i=v(n(2)),l=v(n(12)),a=v(n(8)),r=v(n(638)),o=v(n(643)),s=v(n(646)),u=v(n(647)),d=v(n(648)),c=v(n(649)),f=v(n(651)),p=v(n(652)),h=v(n(653)),m=v(n(656)),g=v(n(393)),y=v(n(394));function v(e){return e&&e.__esModule?e:{default:e}}var _=n(11).env.ieVersion,n=[s.default,f.default,u.default,d.default,c.default,o.default,h.default,m.default],b=n.reduce(function(e,t){return e=t(e)},r.default),n=(f.default._typeMark="lock",d.default._typeMark="expanded",s.default._typeMark="fixed",n.reduce(function(e,t){var n=!_;return e="lock"===t._typeMark?(n?(0,p.default):(0,f.default))(e):"expanded"===t._typeMark?n?(0,d.default)(e,!0):(0,d.default)(e):"fixed"===t._typeMark?n?(0,s.default)(e,!0):(0,s.default)(e):t(e)},r.default));b.Base=r.default,b.fixed=s.default,b.lock=f.default,b.selection=u.default,b.expanded=d.default,b.tree=o.default,b.virtual=c.default,b.list=h.default,b.sticky=m.default,b.GroupHeader=g.default,b.GroupFooter=y.default,b.StickyLock=a.default.config(n,{componentName:"Table"}),t.default=a.default.config(b,{componentName:"Table",transform:function(e,t){var n,a,r,o;return"expandedRowKeys"in e&&(t("expandedRowKeys","openRowKeys","Table"),o=(r=e).expandedRowKeys,r=(0,l.default)(r,["expandedRowKeys"]),e=(0,i.default)({openRowKeys:o},r)),"onExpandedChange"in e&&(t("onExpandedChange","onRowOpen","Table"),r=(o=e).onExpandedChange,o=(0,l.default)(o,["onExpandedChange"]),e=(0,i.default)({onRowOpen:r},o)),"isLoading"in e&&(t("isLoading","loading","Table"),o=(r=e).isLoading,r=(0,l.default)(r,["isLoading"]),e=(0,i.default)({loading:o},r)),"indentSize"in e&&(t("indentSize","indent","Table"),r=(o=e).indentSize,o=(0,l.default)(o,["indentSize"]),e=(0,i.default)({indent:r},o)),"optimization"in e&&(t("optimization","pure","Table"),o=(r=e).optimization,r=(0,l.default)(r,["optimization"]),e=(0,i.default)({pure:o},r)),"getRowClassName"in e&&(t("getRowClassName","getRowProps","Table"),n=(o=e).getRowClassName,a=o.getRowProps,r=(0,l.default)(o,["getRowClassName","getRowProps"]),e=n?(0,i.default)({getRowProps:function(){return(0,i.default)({className:n.apply(void 0,arguments)},a?a.apply(void 0,arguments):{})}},r):(0,i.default)({getRowProps:a},r)),"getRowProps"in e&&(t("getRowProps","rowProps","Table in 1.15.0"),r=(o=e).getRowProps,o=(0,l.default)(o,["getRowProps"]),e=(0,i.default)({rowProps:r},o)),"getCellProps"in e&&(t("getCellProps","cellProps","Table in 1.15.0"),o=(r=e).getCellProps,t=(0,l.default)(r,["getCellProps"]),e=(0,i.default)({cellProps:o},t)),e}}),e.exports=t.default},function(e,t,n){"use strict";n.d(t,"a",function(){return o});var a=n(89);function r(t,e){var n,a=Object.keys(t);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(t),e&&(n=n.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),a.push.apply(a,n)),a}function o(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?r(Object(n),!0).forEach(function(e){Object(a.a)(t,e,n[e])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):r(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))})}return t}},function(e,t,n){"use strict";function a(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}n.d(t,"a",function(){return a})},function(e,t,n){"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(451)},function(e,t,n){"use strict";t.__esModule=!0;var a=o(n(8)),r=o(n(518)),n=o(n(343));function o(e){return e&&e.__esModule?e:{default:e}}n.default.createFromIconfontCN=r.default,t.default=a.default.config(n.default),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=s(n(8)),r=s(n(156)),o=n(528),i=s(o),l=s(n(535));function s(e){return e&&e.__esModule?e:{default:e}}r.default.show=i.default.show,r.default.success=i.default.success,r.default.warning=i.default.warning,r.default.error=i.default.error,r.default.notice=i.default.notice,r.default.help=i.default.help,r.default.loading=i.default.loading,r.default.hide=i.default.hide,r.default.withContext=o.withContext;var u=a.default.config(r.default,{componentName:"Message"}),d=(t.default=u,!1);u.config=function(e){l.default.config(e),d||(u.show=l.default.open,u.open=l.default.open,u.hide=l.default.close,u.close=l.default.close,u.destory=l.default.destory,u.success=l.default.success,u.warning=l.default.warning,u.error=l.default.error,u.notice=l.default.notice,u.help=l.default.help,u.loading=l.default.loading,d=!0)},e.exports=t.default},function(e,t,n){"use strict";n(449)},function(e,t,n){"use strict";t.__esModule=!0;var a=c(n(2)),r=c(n(4)),o=c(n(6)),i=c(n(7)),l=n(0),s=c(n(549)),u=n(11),d=n(567);function c(e){return e&&e.__esModule?e:{default:e}}f=s.default,(0,i.default)(p,f),p.useField=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};if(l.useState&&l.useMemo)return this.getUseField({useMemo:l.useMemo,useState:l.useState})(e);u.log.warning("need react version > 16.8.0")},p.prototype.validate=function(e,t){this.validateCallback(e,t)},p.prototype.reset=function(e){var t=1<arguments.length&&void 0!==arguments[1]&&arguments[1];!0===e?(u.log.deprecated("reset(true)","resetToDefault()","Field"),this.resetToDefault()):!0===t?(u.log.deprecated("reset(ns,true)","resetToDefault(ns)","Field"),this.resetToDefault(e)):this._reset(e,!1)};var f,n=p;function p(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},t=((0,r.default)(this,p),(0,a.default)({},t,{afterValidateRerender:d.scrollToFirstError,processErrorMessage:d.cloneAndAddKey})),e=(0,o.default)(this,f.call(this,e,t));return e.validate=e.validate.bind(e),e}t.default=n,e.exports=t.default},function(e,t,n){"use strict";n.d(t,"f",function(){return a}),n.d(t,"g",function(){return r}),n.d(t,"i",function(){return o}),n.d(t,"c",function(){return i}),n.d(t,"d",function(){return l}),n.d(t,"j",function(){return s}),n.d(t,"l",function(){return u}),n.d(t,"k",function(){return d}),n.d(t,"h",function(){return c}),n.d(t,"b",function(){return f}),n.d(t,"a",function(){return p}),n.d(t,"e",function(){return h});var a="docsite_language",r="LANGUAGE_SWITCH",o="__REDUX_DEVTOOLS_EXTENSION__",i="GET_STATE",l="GET_SUBSCRIBERS",s="REMOVE_SUBSCRIBERS",u="USER_LIST",d="ROLE_LIST",c="PERMISSIONS_LIST",f="GET_NAMESPACES",p="GET_CONFIGURATION",h=[10,20,30,50,100]},function(e,t,n){"use strict";t.__esModule=!0;var u=l(n(12)),a=l(n(8)),r=l(n(671)),o=l(n(677)),i=l(n(678)),n=l(n(679));function l(e){return e&&e.__esModule?e:{default:e}}function s(e,t){var n=e.shape,a=e.container,r=e.multiple,o=e.filterBy,i=e.overlay,l=e.safeNode,s=e.noFoundContent,e=(0,u.default)(e,["shape","container","multiple","filterBy","overlay","safeNode","noFoundContent"]);return"arrow-only"===n&&(t("shape=arrow-only","hasBorder=false","Select"),e.hasBorder=!1),a&&(t("container","popupContainer","Select"),e.popupContainer=a),r&&(t("multiple","mode=multiple","Select"),e.mode="multiple"),o&&(t("filterBy","filter","Select"),e.filter=o),i&&(t("overlay","popupContent","Select"),e.popupContent=i,e.autoWidth=!1),s&&(t("noFoundContent","notFoundContent","Select"),e.notFoundContent=s),l&&(t("safeNode","popupProps={safeNode}","Select"),e.popupProps={safeNode:l}),e}r.default.AutoComplete=a.default.config(o.default,{componentName:"Select"}),r.default.Option=i.default,r.default.OptionGroup=n.default,r.default.Combobox=a.default.config(r.default,{transform:function(e,t){t("Select.Combobox","<Select showSearch={true}/>","Select");t=s(e,t);return e.onInputUpdate&&(t.onSearch=e.onInputUpdate,t.showSearch=!0),t}}),t.default=a.default.config(r.default,{transform:s,exportNames:["focusInput","handleSearchClear"]}),e.exports=t.default},function(e,t,n){"use strict";function s(){var e=this.constructor.getDerivedStateFromProps(this.props,this.state);null!=e&&this.setState(e)}function u(t){this.setState(function(e){return null!=(e=this.constructor.getDerivedStateFromProps(t,e))?e:null}.bind(this))}function d(e,t){try{var n=this.props,a=this.state;this.props=e,this.state=t,this.__reactInternalSnapshotFlag=!0,this.__reactInternalSnapshot=this.getSnapshotBeforeUpdate(n,a)}finally{this.props=n,this.state=a}}function a(e){var t=e.prototype;if(!t||!t.isReactComponent)throw new Error("Can only polyfill class components");if("function"==typeof e.getDerivedStateFromProps||"function"==typeof t.getSnapshotBeforeUpdate){var n,a,r=null,o=null,i=null;if("function"==typeof t.componentWillMount?r="componentWillMount":"function"==typeof t.UNSAFE_componentWillMount&&(r="UNSAFE_componentWillMount"),"function"==typeof t.componentWillReceiveProps?o="componentWillReceiveProps":"function"==typeof t.UNSAFE_componentWillReceiveProps&&(o="UNSAFE_componentWillReceiveProps"),"function"==typeof t.componentWillUpdate?i="componentWillUpdate":"function"==typeof t.UNSAFE_componentWillUpdate&&(i="UNSAFE_componentWillUpdate"),null!==r||null!==o||null!==i)throw n=e.displayName||e.name,a="function"==typeof e.getDerivedStateFromProps?"getDerivedStateFromProps()":"getSnapshotBeforeUpdate()",Error("Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n"+n+" uses "+a+" but also contains the following legacy lifecycles:"+(null!==r?"\n "+r:"")+(null!==o?"\n "+o:"")+(null!==i?"\n "+i:"")+"\n\nThe above lifecycles should be removed. Learn more about this warning here:\nhttps://fb.me/react-async-component-lifecycle-hooks");if("function"==typeof e.getDerivedStateFromProps&&(t.componentWillMount=s,t.componentWillReceiveProps=u),"function"==typeof t.getSnapshotBeforeUpdate){if("function"!=typeof t.componentDidUpdate)throw new Error("Cannot polyfill getSnapshotBeforeUpdate() for components that do not define componentDidUpdate() on the prototype");t.componentWillUpdate=d;var l=t.componentDidUpdate;t.componentDidUpdate=function(e,t,n){n=this.__reactInternalSnapshotFlag?this.__reactInternalSnapshot:n;l.call(this,e,t,n)}}}return e}n.r(t),n.d(t,"polyfill",function(){return a}),d.__suppressDeprecationWarning=u.__suppressDeprecationWarning=s.__suppressDeprecationWarning=!0},function(e,t,n){"use strict";n.d(t,"a",function(){return r});var a=n(134);function r(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],a=!0,r=!1,o=void 0;try{for(var i,l=e[Symbol.iterator]();!(a=(i=l.next()).done)&&(n.push(i.value),!t||n.length!==t);a=!0);}catch(e){r=!0,o=e}finally{try{a||null==l.return||l.return()}finally{if(r)throw o}}return n}}(e,t)||Object(a.a)(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}},function(e,t,n){"use strict";n(43),n(540)},function(e,t,n){"use strict";t.__esModule=!0;var v=s(n(2)),a=s(n(4)),r=s(n(6)),o=s(n(7)),_=s(n(0)),i=s(n(3)),b=s(n(13)),w=s(n(62)),l=s(n(8)),M=n(11);function s(e){return e&&e.__esModule?e:{default:e}}u=_.default.Component,(0,o.default)(k,u),k.prototype.render=function(){var e=this.props,t=e.tip,n=e.visible,a=e.children,r=e.className,o=e.style,i=e.indicator,l=e.color,s=e.prefix,u=e.fullScreen,d=e.disableScroll,c=e.onVisibleChange,f=e.tipAlign,p=e.size,h=e.inline,m=e.rtl,e=e.safeNode,g=null,y=s+"loading-dot",p=(g=i||(i=l,p=(0,b.default)(((l={})[s+"loading-fusion-reactor"]=!0,l[s+"loading-medium-fusion-reactor"]="medium"===p,l)),_.default.createElement("div",{className:p,dir:m?"rtl":void 0},_.default.createElement("span",{className:y,style:{backgroundColor:i}}),_.default.createElement("span",{className:y,style:{backgroundColor:i}}),_.default.createElement("span",{className:y,style:{backgroundColor:i}}),_.default.createElement("span",{className:y,style:{backgroundColor:i}}))),(0,b.default)(((l={})[s+"loading"]=!0,l[s+"open"]=n,l[s+"loading-inline"]=h,l[r]=r,l))),y=(0,b.default)(((m={})[s+"loading-tip"]=!0,m[s+"loading-tip-fullscreen"]=u,m[s+"loading-right-tip"]="right"===f,m)),i=M.obj.pickOthers(k.propTypes,this.props),l=(0,b.default)(((h={})[s+"loading-component"]=n,h[s+"loading-wrap"]=!0,h));return u?[a,_.default.createElement(w.default,(0,v.default)({key:"overlay",hasMask:!0,align:"cc cc",safeNode:e,disableScroll:d},i,{className:r,style:o,visible:n,onRequestClose:c}),_.default.createElement("div",{className:y},_.default.createElement("div",{className:s+"loading-indicator"},g),_.default.createElement("div",{className:s+"loading-tip-content"},t),_.default.createElement("div",{className:s+"loading-tip-placeholder"},t)))]:_.default.createElement("div",(0,v.default)({className:p,style:o},i),n?_.default.createElement("div",{className:y},_.default.createElement("div",{className:s+"loading-indicator"},g),_.default.createElement("div",{className:s+"loading-tip-content"},t),_.default.createElement("div",{className:s+"loading-tip-placeholder"},t)):null,_.default.createElement("div",{className:l},n?_.default.createElement("div",{className:s+"loading-masker"}):null,a))},o=n=k,n.propTypes=(0,v.default)({},l.default.propTypes,{prefix:i.default.string,tip:i.default.any,tipAlign:i.default.oneOf(["right","bottom"]),visible:i.default.bool,onVisibleChange:i.default.func,className:i.default.string,style:i.default.object,size:i.default.oneOf(["large","medium"]),indicator:i.default.any,color:i.default.string,fullScreen:i.default.bool,disableScroll:i.default.bool,safeNode:i.default.any,children:i.default.any,inline:i.default.bool,rtl:i.default.bool}),n.defaultProps={prefix:"next-",visible:!0,onVisibleChange:M.func.noop,animate:null,tipAlign:"bottom",size:"large",inline:!0,disableScroll:!1};var u,i=o;function k(){return(0,a.default)(this,k),(0,r.default)(this,u.apply(this,arguments))}i.displayName="Loading",t.default=l.default.config(i),e.exports=t.default},function(e,t,n){"use strict";n(51);var a=n(25),r=n.n(a),o=n(72),a=n(137),a=n.n(a),i=n(415),l=n.n(i),s=n(47),u="Request error, please try again later!";function d(){var e=window.location.href,e=(localStorage.removeItem("token"),e.split("#")[0]);window.location.href="".concat(e,"#/login")}t.a=((i=a.a.create()).interceptors.request.use(function(e){var t=e.url,n=e.params,a=e.data,r=e.method,o=e.headers;if(n||(e.params={}),!t.includes("auth/users/login")){n={};try{n=JSON.parse(localStorage.token)}catch(e){console.log(e),d()}var i=n.accessToken,i=void 0===i?"":i,n=n.username,n=void 0===n?"":n;e.params.accessToken=i,t.includes("auth")||(e.params.username=n),e.headers=Object.assign({},o,{accessToken:i})}return a&&Object(s.d)(a)&&["post","put"].includes(r)&&(e.data=l.a.stringify(a),o||(e.headers={}),e.headers["Content-Type"]="application/x-www-form-urlencoded"),e},function(e){return Promise.reject(e)}),i.interceptors.response.use(function(e){var t=e.data;t.success,t.resultCode,t.resultMessage;return e.data},function(e){var t,n,a;return e.response?(t=void 0===(t=(n=e.response).data)?{}:t,n=n.status,a="HTTP ERROR: ".concat(n),"string"==typeof t?a=t:"object"===Object(o.a)(t)&&(a=t.message),r.a.error(a),[401,403].includes(n)&&["unknown user!","token invalid!","token expired!","session expired!"].includes(a)&&d(),Promise.reject(e.response)):(r.a.error(u),Promise.reject(e))}),i)},function(e,t,n){"use strict";n(75),n(51),n(32),n(43),n(541)},function(e,t,n){"use strict";n(43),n(542)},function(M,e,t){"use strict";t.d(e,"a",function(){return a}),t.d(e,"b",function(){return B});var x=t(0),C=t.n(x),d=C.a.createContext(null);function s(){return n}var n=function(e){e()};var r={notify:function(){},get:function(){return[]}};function L(t,n){var o,i=r;function l(){e.onStateChange&&e.onStateChange()}function a(){var e,a,r;o||(o=n?n.addNestedSub(l):t.subscribe(l),e=s(),r=a=null,i={clear:function(){r=a=null},notify:function(){e(function(){for(var e=a;e;)e.callback(),e=e.next})},get:function(){for(var e=[],t=a;t;)e.push(t),t=t.next;return e},subscribe:function(e){var t=!0,n=r={callback:e,next:null,prev:r};return n.prev?n.prev.next=n:a=n,function(){t&&null!==a&&(t=!1,n.next?n.next.prev=n.prev:r=n.prev,n.prev?n.prev.next=n.next:a=n.next)}}})}var e={addNestedSub:function(e){return a(),i.subscribe(e)},notifyNestedSubs:function(){i.notify()},handleChangeWrapper:l,isSubscribed:function(){return Boolean(o)},trySubscribe:a,tryUnsubscribe:function(){o&&(o(),o=void 0,i.clear(),i=r)},getListeners:function(){return i}};return e}var o="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement?x.useLayoutEffect:x.useEffect;var a=function(e){var t=e.store,n=e.context,e=e.children,a=Object(x.useMemo)(function(){var e=L(t);return{store:t,subscription:e}},[t]),r=Object(x.useMemo)(function(){return t.getState()},[t]),n=(o(function(){var e=a.subscription;return e.onStateChange=e.notifyNestedSubs,e.trySubscribe(),r!==t.getState()&&e.notifyNestedSubs(),function(){e.tryUnsubscribe(),e.onStateChange=null}},[a,r]),n||d);return C.a.createElement(n.Provider,{value:a},e)},T=t(42),D=t(54),e=t(100),c=t.n(e),O=t(412),f=["getDisplayName","methodName","renderCountProp","shouldHandleStateChanges","storeKey","withRef","forwardRef","context"],N=["reactReduxForwardedRef"],P=[],j=[null,null];function Y(e,t){e=e[1];return[t.payload,e+1]}function I(e,t,n){o(function(){return e.apply(void 0,t)},n)}function R(e,t,n,a,r,o,i){e.current=a,t.current=r,n.current=!1,o.current&&(o.current=null,i())}function A(e,a,t,r,o,i,l,s,u,d){var c,f;if(e)return c=!1,f=null,e=function(){if(!c){var e,t,n=a.getState();try{e=r(n,o.current)}catch(e){f=t=e}t||(f=null),e===i.current?l.current||u():(i.current=e,s.current=e,l.current=!0,d({type:"STORE_UPDATED",payload:{error:t}}))}},t.onStateChange=e,t.trySubscribe(),e(),function(){if(c=!0,t.tryUnsubscribe(),t.onStateChange=null,f)throw f}}var H=function(){return[null,0]};function i(k,e){var e=e=void 0===e?{}:e,t=e.getDisplayName,r=void 0===t?function(e){return"ConnectAdvanced("+e+")"}:t,t=e.methodName,o=void 0===t?"connectAdvanced":t,t=e.renderCountProp,i=void 0===t?void 0:t,t=e.shouldHandleStateChanges,S=void 0===t||t,t=e.storeKey,l=void 0===t?"store":t,t=(e.withRef,e.forwardRef),s=void 0!==t&&t,t=e.context,t=void 0===t?d:t,u=Object(D.a)(e,f),E=t;return function(b){var e=b.displayName||b.name||"Component",t=r(e),w=Object(T.a)({},u,{getDisplayName:r,methodName:o,renderCountProp:i,shouldHandleStateChanges:S,storeKey:l,displayName:t,wrappedComponentName:e,WrappedComponent:b}),e=u.pure;var M=e?x.useMemo:function(e){return e()};function n(n){var e=Object(x.useMemo)(function(){var e=n.reactReduxForwardedRef,t=Object(D.a)(n,N);return[n.context,e,t]},[n]),t=e[0],a=e[1],r=e[2],o=Object(x.useMemo)(function(){return t&&t.Consumer&&Object(O.isContextConsumer)(C.a.createElement(t.Consumer,null))?t:E},[t,E]),i=Object(x.useContext)(o),l=Boolean(n.store)&&Boolean(n.store.getState)&&Boolean(n.store.dispatch),s=(Boolean(i)&&Boolean(i.store),(l?n:i).store),u=Object(x.useMemo)(function(){return k(s.dispatch,w)},[s]),e=Object(x.useMemo)(function(){if(!S)return j;var e=L(s,l?null:i.subscription),t=e.notifyNestedSubs.bind(e);return[e,t]},[s,l,i]),d=e[0],e=e[1],c=Object(x.useMemo)(function(){return l?i:Object(T.a)({},i,{subscription:d})},[l,i,d]),f=Object(x.useReducer)(Y,P,H),p=f[0][0],f=f[1];if(p&&p.error)throw p.error;var h=Object(x.useRef)(),m=Object(x.useRef)(r),g=Object(x.useRef)(),y=Object(x.useRef)(!1),v=M(function(){return g.current&&r===m.current?g.current:u(s.getState(),r)},[s,p,r]),_=(I(R,[m,h,y,r,v,g,e]),I(A,[S,s,d,u,m,h,y,g,e,f],[s,d,u]),Object(x.useMemo)(function(){return C.a.createElement(b,Object(T.a)({},v,{ref:a}))},[a,b,v]));return Object(x.useMemo)(function(){return S?C.a.createElement(o.Provider,{value:c},_):_},[o,_,c])}var a=e?C.a.memo(n):n;return a.WrappedComponent=b,a.displayName=n.displayName=t,s?((e=C.a.forwardRef(function(e,t){return C.a.createElement(a,Object(T.a)({},e,{reactReduxForwardedRef:t}))})).displayName=t,e.WrappedComponent=b,c()(e,b)):c()(a,b)}}function l(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!=e&&t!=t}function m(e,t){if(!l(e,t)){if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;for(var r=0;r<n.length;r++)if(!Object.prototype.hasOwnProperty.call(t,n[r])||!l(e[n[r]],t[n[r]]))return!1}return!0}function u(n,a){var e,r={};for(e in n)!function(e){var t=n[e];"function"==typeof t&&(r[e]=function(){return a(t.apply(void 0,arguments))})}(e);return r}function p(r){return function(e,t){var n=r(e,t);function a(){return n}return a.dependsOnOwnProps=!1,a}}function h(e){return null!==e.dependsOnOwnProps&&void 0!==e.dependsOnOwnProps?Boolean(e.dependsOnOwnProps):1!==e.length}function g(r){return function(e,t){t.displayName;var a=function(e,t){return a.dependsOnOwnProps?a.mapToProps(e,t):a.mapToProps(e)};return a.dependsOnOwnProps=!0,a.mapToProps=function(e,t){a.mapToProps=r,a.dependsOnOwnProps=h(r);var n=a(e,t);return"function"==typeof n&&(a.mapToProps=n,a.dependsOnOwnProps=h(n),n=a(e,t)),n},a}}var y=[function(e){return"function"==typeof e?g(e):void 0},function(e){return e?void 0:p(function(e){return{dispatch:e}})},function(t){return t&&"object"==typeof t?p(function(e){return u(t,e)}):void 0}];var v=[function(e){return"function"==typeof e?g(e):void 0},function(e){return e?void 0:p(function(){return{}})}];function _(e,t,n){return Object(T.a)({},n,e,t)}var b=[function(e){return"function"==typeof e?(l=e,function(e,t){t.displayName;var a,r=t.pure,o=t.areMergedPropsEqual,i=!1;return function(e,t,n){e=l(e,t,n);return i?r&&o(e,a)||(a=e):(i=!0,a=e),a}}):void 0;var l},function(e){return e?void 0:function(){return _}}];var k=["initMapStateToProps","initMapDispatchToProps","initMergeProps"];function S(n,a,r,o){return function(e,t){return r(n(e,t),a(o,t),t)}}function E(r,o,i,l,e){var s,u,d,c,f,p=e.areStatesEqual,h=e.areOwnPropsEqual,m=e.areStatePropsEqual,n=!1;function a(e,t){var n=!h(t,u),a=!p(e,s);return s=e,u=t,n&&a?(d=r(s,u),o.dependsOnOwnProps&&(c=o(l,u)),f=i(d,c,u)):n?(r.dependsOnOwnProps&&(d=r(s,u)),o.dependsOnOwnProps&&(c=o(l,u)),f=i(d,c,u)):a?(e=r(s,u),t=!m(e,d),d=e,f=t?i(d,c,u):f):f}return function(e,t){return n?a(e,t):(d=r(s=e,u=t),c=o(l,u),f=i(d,c,u),n=!0,f)}}function F(e,t){var n=t.initMapStateToProps,a=t.initMapDispatchToProps,r=t.initMergeProps,t=Object(D.a)(t,k),n=n(e,t),a=a(e,t),r=r(e,t);return(t.pure?E:S)(n,a,r,e,t)}var z=["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"];function w(n,e,a){for(var t=e.length-1;0<=t;t--){var r=e[t](n);if(r)return r}return function(e,t){throw new Error("Invalid value of type "+typeof n+" for "+a+" argument when connecting component "+t.wrappedComponentName+".")}}function W(e,t){return e===t}function V(e){var e=void 0===e?{}:e,t=e.connectHOC,d=void 0===t?i:t,t=e.mapStateToPropsFactories,c=void 0===t?v:t,t=e.mapDispatchToPropsFactories,f=void 0===t?y:t,t=e.mergePropsFactories,p=void 0===t?b:t,t=e.selectorFactory,h=void 0===t?F:t;return function(e,t,n,a){var a=a=void 0===a?{}:a,r=a.pure,r=void 0===r||r,o=a.areStatesEqual,o=void 0===o?W:o,i=a.areOwnPropsEqual,i=void 0===i?m:i,l=a.areStatePropsEqual,l=void 0===l?m:l,s=a.areMergedPropsEqual,s=void 0===s?m:s,a=Object(D.a)(a,z),u=w(e,c,"mapStateToProps"),t=w(t,f,"mapDispatchToProps"),n=w(n,p,"mergeProps");return d(h,Object(T.a)({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:u,initMapDispatchToProps:t,initMergeProps:n,pure:r,areStatesEqual:o,areOwnPropsEqual:i,areStatePropsEqual:l,areMergedPropsEqual:s},a))}}var B=V();e=t(23);t=e.unstable_batchedUpdates,n=t},function(e,t,n){"use strict";t.__esModule=!0;var a=i(n(468)),r=i(n(480)),o="function"==typeof r.default&&"symbol"==typeof a.default?function(e){return typeof e}:function(e){return e&&"function"==typeof r.default&&e.constructor===r.default&&e!==r.default.prototype?"symbol":typeof e};function i(e){return e&&e.__esModule?e:{default:e}}t.default="function"==typeof r.default&&"symbol"===o(a.default)?function(e){return void 0===e?"undefined":o(e)}:function(e){return e&&"function"==typeof r.default&&e.constructor===r.default&&e!==r.default.prototype?"symbol":void 0===e?"undefined":o(e)}},function(e,t,n){"use strict";n(66),n(545),n(32),n(547)},function(e,t,n){"use strict";n.d(t,"a",function(){return w}),n.d(t,"b",function(){return x}),n.d(t,"c",function(){return m}),n.d(t,"d",function(){return C}),n.d(t,"e",function(){return h}),n.d(t,"f",function(){return E}),n.d(t,"g",function(){return L});function a(e){var t=Object(o.a)();return t.displayName=e,t}var r=n(58),t=n(0),l=n.n(t),s=n(55),o=n(416),u=n(57),d=n(42),t=n(184),c=n.n(t),i=(n(189),n(54)),t=n(100),f=n.n(t),p=a("Router-History"),h=a("Router"),m=function(n){function e(e){var t=n.call(this,e)||this;return t.state={location:e.history.location},t._isMounted=!1,t._pendingLocation=null,e.staticContext||(t.unlisten=e.history.listen(function(e){t._pendingLocation=e})),t}Object(r.a)(e,n),e.computeRootMatch=function(e){return{path:"/",url:"/",params:{},isExact:"/"===e}};var t=e.prototype;return t.componentDidMount=function(){var t=this;this._isMounted=!0,this.unlisten&&this.unlisten(),this.props.staticContext||(this.unlisten=this.props.history.listen(function(e){t._isMounted&&t.setState({location:e})})),this._pendingLocation&&this.setState({location:this._pendingLocation})},t.componentWillUnmount=function(){this.unlisten&&(this.unlisten(),this._isMounted=!1,this._pendingLocation=null)},t.render=function(){return l.a.createElement(h.Provider,{value:{history:this.props.history,location:this.state.location,match:e.computeRootMatch(this.state.location.pathname),staticContext:this.props.staticContext}},l.a.createElement(p.Provider,{children:this.props.children||null,value:this.props.history}))},e}(l.a.Component),g=(l.a.Component,function(e){function t(){return e.apply(this,arguments)||this}Object(r.a)(t,e);var n=t.prototype;return n.componentDidMount=function(){this.props.onMount&&this.props.onMount.call(this,this)},n.componentDidUpdate=function(e){this.props.onUpdate&&this.props.onUpdate.call(this,this,e)},n.componentWillUnmount=function(){this.props.onUnmount&&this.props.onUnmount.call(this,this)},n.render=function(){return null},t}(l.a.Component));var y={},v=1e4,_=0;function b(e,t){return void 0===t&&(t={}),"/"===(e=void 0===e?"/":e)?e:function(e){if(y[e])return y[e];var t=c.a.compile(e);return _<v&&(y[e]=t,_++),t}(e)(t,{pretty:!0})}function w(e){var r=e.computedMatch,o=e.to,e=e.push,i=void 0!==e&&e;return l.a.createElement(h.Consumer,null,function(e){e||Object(u.a)(!1);var t=e.history,e=e.staticContext,n=i?t.push:t.replace,a=Object(s.c)(r?"string"==typeof o?b(o,r.params):Object(d.a)({},o,{pathname:b(o.pathname,r.params)}):o);return e?(n(a),null):l.a.createElement(g,{onMount:function(){n(a)},onUpdate:function(e,t){t=Object(s.c)(t.to);Object(s.f)(t,Object(d.a)({},a,{key:t.key}))||n(a)},to:o})})}var M={},k=1e4,S=0;function E(o,e){var e=e="string"!=typeof(e=void 0===e?{}:e)&&!Array.isArray(e)?e:{path:e},t=e.path,n=e.exact,i=void 0!==n&&n,n=e.strict,l=void 0!==n&&n,n=e.sensitive,s=void 0!==n&&n;return[].concat(t).reduce(function(e,t){if(!t&&""!==t)return null;if(e)return e;var e=function(e,t){var n=""+t.end+t.strict+t.sensitive;if((n=M[n]||(M[n]={}))[e])return n[e];var a=[],t={regexp:c()(e,a,t),keys:a};return S<k&&(n[e]=t,S++),t}(t,{end:i,strict:l,sensitive:s}),n=e.regexp,e=e.keys,n=n.exec(o);if(!n)return null;var a=n[0],r=n.slice(1),n=o===a;return i&&!n?null:{path:t,url:"/"===t&&""===a?"/":a,isExact:n,params:e.reduce(function(e,t,n){return e[t.name]=r[n],e},{})}},null)}var x=function(e){function t(){return e.apply(this,arguments)||this}return Object(r.a)(t,e),t.prototype.render=function(){var o=this;return l.a.createElement(h.Consumer,null,function(e){e||Object(u.a)(!1);var t,n=o.props.location||e.location,a=o.props.computedMatch||(o.props.path?E(n.pathname,o.props):e.match),e=Object(d.a)({},e,{location:n,match:a}),n=o.props,a=n.children,r=n.component,n=n.render;return Array.isArray(a)&&(t=a,0===l.a.Children.count(t))&&(a=null),l.a.createElement(h.Provider,{value:e},e.match?a?"function"==typeof a?a(e):a:r?l.a.createElement(r,e):n?n(e):null:"function"==typeof a?a(e):null)})},t}(l.a.Component);l.a.Component;var C=function(e){function t(){return e.apply(this,arguments)||this}return Object(r.a)(t,e),t.prototype.render=function(){var e=this;return l.a.createElement(h.Consumer,null,function(n){n||Object(u.a)(!1);var a,r,o=e.props.location||n.location;return l.a.Children.forEach(e.props.children,function(e){var t;null==r&&l.a.isValidElement(e)&&(t=(a=e).props.path||e.props.from,r=t?E(o.pathname,Object(d.a)({},e.props,{path:t})):n.match)}),r?l.a.cloneElement(a,{location:o,computedMatch:r}):null})},t}(l.a.Component);function L(a){function e(e){var t=e.wrappedComponentRef,n=Object(i.a)(e,["wrappedComponentRef"]);return l.a.createElement(h.Consumer,null,function(e){return e||Object(u.a)(!1),l.a.createElement(a,Object(d.a)({},n,e,{ref:t}))})}var t="withRouter("+(a.displayName||a.name)+")";return e.displayName=t,e.WrappedComponent=a,f()(e,a)}l.a.useContext},function(e,t,n){"use strict";t.__esModule=!0;var o=l(n(2)),i=l(n(12)),a=l(n(8)),r=l(n(572)),n=l(n(573));function l(e){return e&&e.__esModule?e:{default:e}}r={Row:a.default.config(r.default,{transform:function(e,t){var n,a,r;return"type"in e&&(t("type","fixed | wrap | gutter","Row"),n=(t=e).type,t=(0,i.default)(t,["type"]),a=void 0,r=void(-1<(n=Array.isArray(n)?n:[n]).indexOf("fixed")&&(a=!0)),-1<n.indexOf("wrap")&&(r=!0),e=(0,o.default)({fixed:a,wrap:r},t)),e}}),Col:a.default.config(n.default)};t.default=r,e.exports=t.default},function(e,t,n){"use strict";function a(){return(a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n,a=arguments[t];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n])}return e}).apply(this,arguments)}n.d(t,"a",function(){return a})},function(e,t,n){"use strict";n(445)},function(e,t,n){"use strict";t.__esModule=!0,t.default={momentLocale:"zh-cn",Timeline:{expand:"å±å¼",fold:"æ¶èµ·"},Balloon:{close:"å
³é"},Card:{expand:"å±å¼",fold:"æ¶èµ·"},Calendar:{today:"ä»å¤©",now:"æ¤å»",ok:"ç¡®å®",clear:"æ¸
é¤",month:"æ",year:"å¹´",prevYear:"ä¸ä¸å¹´",nextYear:"ä¸ä¸å¹´",prevMonth:"ä¸ä¸ªæ",nextMonth:"ä¸ä¸ªæ",prevDecade:"ä¸åå¹´",nextDecade:"ååå¹´",yearSelectAriaLabel:"鿩年份",monthSelectAriaLabel:"éæ©æä»½"},DatePicker:{placeholder:"è¯·éæ©æ¥æ",datetimePlaceholder:"è¯·éæ©æ¥æåæ¶é´",monthPlaceholder:"è¯·éæ©æ",yearPlaceholder:"è¯·éæ©å¹´",weekPlaceholder:"è¯·éæ©å¨",now:"æ¤å»",selectTime:"éæ©æ¶é´",selectDate:"éæ©æ¥æ",ok:"ç¡®å®",clear:"æ¸
é¤",startPlaceholder:"èµ·å§æ¥æ",endPlaceholder:"ç»ææ¥æ",hour:"æ¶",minute:"å",second:"ç§"},Dialog:{close:"å
³é",ok:"ç¡®å®",cancel:"åæ¶"},Drawer:{close:"å
³é"},Message:{closeAriaLabel:"å
³é"},Pagination:{prev:"ä¸ä¸é¡µ",next:"ä¸ä¸é¡µ",goTo:"å°ç¬¬",page:"页",go:"ç¡®å®",total:"第{current}页ï¼å
±{total}页",labelPrev:"ä¸ä¸é¡µï¼å½å第{current}页",labelNext:"ä¸ä¸é¡µï¼å½å第{current}页",inputAriaLabel:"请è¾å
¥è·³è½¬å°ç¬¬å 页",selectAriaLabel:"è¯·éæ©æ¯é¡µæ¾ç¤ºå æ¡",pageSize:"æ¯é¡µæ¾ç¤ºï¼"},Input:{clear:"æ¸
é¤"},List:{empty:"æ²¡ææ°æ®"},Select:{selectPlaceholder:"è¯·éæ©",autoCompletePlaceholder:"请è¾å
¥",notFoundContent:"æ é项",maxTagPlaceholder:"已鿩 {selected}/{total} 项",selectAll:"å
¨é"},TreeSelect:{maxTagPlaceholder:"已鿩 {selected}/{total} 项",shortMaxTagPlaceholder:"已鿩 {selected} 项"},Table:{empty:"æ²¡ææ°æ®",ok:"确认",reset:"éç½®",asc:"ååº",desc:"éåº",expanded:"å·²å±å¼",folded:"å·²æå ",filter:"çé",selectAll:"å
¨é"},TimePicker:{placeholder:"è¯·éæ©æ¶é´",clear:"æ¸
é¤",hour:"æ¶",minute:"å",second:"ç§",ok:"ç¡®å®"},Transfer:{items:"项",item:"项",moveAll:"ç§»å¨å
¨é¨",searchPlaceholder:"请è¾å
¥",moveToLeft:"æ¤ééä¸å
ç´ ",moveToRight:"æäº¤éä¸å
ç´ "},Upload:{card:{cancel:"åæ¶",addPhoto:"ä¸ä¼ å¾ç",download:"ä¸è½½",delete:"å é¤"},drag:{text:"ç¹å»æè
æå¨æä»¶å°è线æ¡å
ä¸ä¼ ",hint:"æ¯æ docx, xls, PDF, rar, zip, PNG, JPG çç±»åçæä»¶"},upload:{delete:"å é¤"}},Search:{buttonText:"æç´¢"},Tag:{delete:"å é¤"},Rating:{description:"è¯åé项"},Switch:{on:"å·²æå¼",off:"å·²å
³é"},Tab:{closeAriaLabel:"å
³é"},Form:{Validate:{default:"%s æ ¡éªå¤±è´¥",required:"%s æ¯å¿
å¡«åæ®µ",format:{number:"%s 䏿¯åæ³çæ°å",email:"%s 䏿¯åæ³ç email å°å",url:"%s 䏿¯åæ³ç URL å°å",tel:"%s 䏿¯åæ³ççµè¯å·ç "},number:{length:"%s é¿åº¦å¿
é¡»æ¯ %s",min:"%s ä¸å¾å°äº %s",max:"%s ä¸å¾å¤§äº %s",minLength:"%s åæ®µå符é¿åº¦ä¸å¾å°äº %s",maxLength:"%s åæ®µå符é¿åº¦ä¸å¾è¶
è¿ %s"},string:{length:"%s é¿åº¦å¿
é¡»æ¯ %s",min:"%s ä¸å¾å°äº %s",max:"%s ä¸å¾å¤§äº %s",minLength:"%s é¿åº¦ä¸å¾å°äº %s",maxLength:"%s é¿åº¦ä¸å¾è¶
è¿ %s"},array:{length:"%s 个æ°å¿
é¡»æ¯ %s",minLength:"%s 个æ°ä¸å¾å°äº %s",maxLength:"%s 个æ°ä¸å¾è¶
è¿ %s"},pattern:"%s æ°å¼ %s ä¸å¹é
æ£å %s"}}},e.exports=t.default},function(e,t,n){"use strict";n.d(t,"m",function(){return p}),n.d(t,"j",function(){return c}),n.d(t,"c",function(){return f}),n.d(t,"g",function(){return h}),n.d(t,"k",function(){return m}),n.d(t,"l",function(){return y}),n.d(t,"i",function(){return g}),n.d(t,"b",function(){return v}),n.d(t,"f",function(){return _}),n.d(t,"h",function(){return b}),n.d(t,"a",function(){return w}),n.d(t,"e",function(){return M});function a(e){return 200===e.code&&l.a.success(e.message),e}var r=n(21),o=n(31),i=(n(51),n(25)),l=n.n(i),s=n(34),u=n(28),d={users:{totalCount:0,pageNumber:1,pagesAvailable:1,pageItems:[]},roles:{totalCount:0,pageNumber:1,pagesAvailable:1,pageItems:[]},permissions:{totalCount:0,pageNumber:1,pagesAvailable:1,pageItems:[]}},c=function(e){return function(t){return s.a.get("v1/auth/users",{params:e}).then(function(e){return t({type:u.l,data:e})})}},f=function(e){var e=Object(o.a)(e,2),t=e[0],e=e[1];return s.a.post("v1/auth/users",{username:t,password:e}).then(a)},p=function(e){return s.a.get("v1/auth/users/search",{params:{username:e}}).then(a)},h=function(e){return s.a.delete("v1/auth/users",{params:{username:e}}).then(a)},m=function(e){var e=Object(o.a)(e,2),t=e[0],e=e[1];return s.a.put("v1/auth/users",{username:t,newPassword:e}).then(a)},g=function(e){return function(t){return s.a.get("v1/auth/roles",{params:e}).then(function(e){return t({type:u.k,data:e})})}},y=function(e){return s.a.get("v1/auth/roles/search",{params:{role:e}}).then(a)},v=function(e){var e=Object(o.a)(e,2),t=e[0],e=e[1];return s.a.post("v1/auth/roles",{role:t,username:e}).then(a)},_=function(e){return s.a.delete("v1/auth/roles",{params:e}).then(a)},b=function(e){return function(t){return s.a.get("v1/auth/permissions",{params:e}).then(function(e){return t({type:u.h,data:e})})}},w=function(e){var e=Object(o.a)(e,3),t=e[0],n=e[1],e=e[2];return s.a.post("v1/auth/permissions",{role:t,resource:n,action:e}).then(a)},M=function(e){return s.a.delete("v1/auth/permissions",{params:e}).then(a)};t.d=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:d,t=1<arguments.length?arguments[1]:void 0;switch(t.type){case u.l:return Object(r.a)(Object(r.a)({},e),{},{users:Object(r.a)({},t.data)});case u.k:return Object(r.a)(Object(r.a)({},e),{},{roles:Object(r.a)({},t.data)});case u.h:return Object(r.a)(Object(r.a)({},e),{},{permissions:Object(r.a)({},t.data)});default:return e}}},function(e,t,n){"use strict";t.__esModule=!0;var n=n(696),n=(n=n)&&n.__esModule?n:{default:n};t.default=n.default,e.exports=t.default},function(e,t,n){"use strict";n.d(t,"b",function(){return o}),n.d(t,"c",function(){return i}),n.d(t,"a",function(){return l}),n.d(t,"d",function(){return s});var a=n(72),r=n(31),o=function(e,t){e=e.split("?"),e=Object(r.a)(e,2)[1],e=(void 0===e?"":e).split("&").filter(function(e){return t===e.split("=")[0]}),e=Object(r.a)(e,1)[0],e=(void 0===e?"":e).split("="),e=Object(r.a)(e,2)[1];return void 0===e?"":e},i=function(e){try{if("object"===Object(a.a)(JSON.parse(e)))return!0}catch(e){}return!1},l=function(e,t){return[e,"?",Object.keys(t).map(function(e){return[e,t[e]].join("=")}).join("&")].join("")},s=function(e){return"[object Object]"===Object.prototype.toString.call(e)}},function(e,t,n){"use strict";n(32);var a=n(18),r=n.n(a),o=n(14),i=n(15),l=n(22),s=n(17),u=n(16),a=n(0),d=n.n(a),a=n(65),c=n.n(a),a=(n(35),n(19)),f=n.n(a),p=n(89),a=(n(26),n(8)),a=n.n(a),h=n(1),m=(n(633),(0,a.a.config)(((a=function(e){Object(s.a)(n,e);var t=Object(u.a)(n);function n(e){return Object(o.a)(this,n),(e=t.call(this,e))._namespace=Object(h.a)("namespace")||"",e.state={nownamespace:window.nownamespace||e._namespace||"",namespaceList:window.namespaceList||[]},e}return Object(i.a)(n,[{key:"componentDidMount",value:function(){}},{key:"getLink",value:function(e,t){var n=this;null===window[t]?Object(h.b)({url:"com.alibaba.nacos.service.getLink",data:{linkKey:e},success:function(e){200===e.code&&(window[t]=e.data,n.setState(Object(p.a)({},t,e.data)))}}):this.setState(Object(p.a)({},t,window[t]))}},{key:"changeNameSpace",value:function(e,t){localStorage.setItem("namespace",e),this.setnamespace(e||""),Object(h.c)({namespace:e||"",namespaceShowName:t}),window.nownamespace=e,window.namespaceShowName=t,this.calleeParent(!0),this.props.setNowNameSpace&&this.props.setNowNameSpace(t,e)}},{key:"calleeParent",value:function(){this.props.namespaceCallBack&&this.props.namespaceCallBack(0<arguments.length&&void 0!==arguments[0]&&arguments[0])}},{key:"getNameSpaces",value:function(){var t=this,e=this.props.locale,n=void 0===e?{}:e;window.namespaceList&&window.namespaceList.length?this.handleNameSpaces(window.namespaceList):Object(h.b)({type:"get",url:"v1/console/namespaces",success:function(e){200===e.code?t.handleNameSpaces(e.data):f.a.alert({title:n.notice,content:e.message})},error:function(){window.namespaceList=[],t.handleNameSpaces(window.namespaceList)}})}},{key:"handleNameSpaces",value:function(e){for(var t=Object(h.a)("namespace")||"",n=(window.namespaceList=e,window.nownamespace=t,""),a=0;a<e.length;a++)if(e[a].namespace===t){n=e[a].namespaceShowName;break}window.namespaceShowName=n,Object(h.c)("namespace",t||""),localStorage.setItem("namespace",t),this.props.setNowNameSpace&&this.props.setNowNameSpace(n,t),this.setState({nownamespace:t,namespaceList:e}),this.calleeParent()}},{key:"setnamespace",value:function(e){this.setState({nownamespace:e})}},{key:"rendernamespace",value:function(e){var a=this,r=this.state.nownamespace;return e.map(function(e,t){var n=e.namespace===r?{color:"#209BFA",paddingRight:10,border:"none",fontSize:14}:{color:"#666",paddingRight:10,border:"none",fontSize:14};return d.a.createElement("div",{key:t,style:{cursor:"pointer"}},0===t?"":d.a.createElement("span",{style:{marginRight:8,color:"#999"}},"|"),d.a.createElement("span",{style:n,onClick:a.changeNameSpace.bind(a,e.namespace,e.namespaceShowName),key:t},e.namespaceShowName))})}},{key:"render",value:function(){var e=this.state.namespaceList||[],t=this.props.title||"";return d.a.createElement("div",{className:e.length?"namespacewrapper":"",style:{display:"flex",flexWrap:"wrap",alignItems:"center",marginTop:8,marginBottom:16}},t?d.a.createElement("p",{style:{height:30,lineHeight:"30px",paddingTop:0,paddingBottom:0,borderLeft:"2px solid #09c",float:"left",margin:0,paddingLeft:10}},this.props.title):"",this.rendernamespace(e))}}]),n}(d.a.Component)).displayName="NameSpaceList",a=a))||a),g=n(69),a=(n(634),function(e){Object(s.a)(a,e);var n=Object(u.a)(a);function a(e){var t;return Object(o.a)(this,a),(t=n.call(this,e)).state={instanceData:[],currRegionId:"",url:e.url||"/diamond-ops/env/domain",left:e.left,right:e.right,regionWidth:700,hideRegionList:!1},t.currRegionId="",t.styles={title:{margin:0,lineHeight:"32px",display:"inline-block",textIndent:"8px",marginRight:"8px",borderLeft:"2px solid #88b7E0",fontSize:"16px"}},t.nameSpaceList=d.a.createRef(),t.mainRef=null,t.titleRef=null,t.regionRef=null,t.extraRef=null,t.resizer=null,t.timer=null,t.handleResize=t.handleResize.bind(Object(l.a)(t)),t.handleAliyunNav=t.handleAliyunNav.bind(Object(l.a)(t)),window.viewframeSetting||(window.viewframeSetting={}),t}return Object(i.a)(a,[{key:"componentDidMount",value:function(){var e=this.nameSpaceList.current;e&&e.getInstance().getNameSpaces()}},{key:"componentWillUnmount",value:function(){c()(window).unbind("resize",this.handleResize),window.postMessage({type:"CONSOLE_HIDE_REGION"},window.location),c()(".aliyun-console-regionbar").hide()}},{key:"UNSAFE_componentWillReceiveProps",value:function(e){this.setState({url:e.url,left:e.left,right:e.right})}},{key:"handleAliyunNav",value:function(){var e=this,t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},t=t&&t.data||{},n=t.type,a=t.payload;switch(n){case"TOPBAR_SIDEBAR_DID_MOUNT":this.handleRegionListStatus(),this.changeRegionBarRegionId(this.currRegionId),setTimeout(function(){e.changeRegionBarRegionId(e.currRegionId)},1e3);break;case"CONSOLE_REGION_CHANGE":this.changeTableData(a.toRegionId)}}},{key:"handleRegionListStatus",value:function(){var e=this,t=window.globalConfig&&window.globalConfig.isParentEdas();this.setState({hideRegionList:!t&&-1===window.location.search.indexOf("hideTopbar=")},function(){return e.setRegionWidth()})}},{key:"handleResize",value:function(){var e=this;clearTimeout(this.timer),this.timer=setTimeout(function(){e.setRegionWidth()},100)}},{key:"setRegionWidth",value:function(){try{var e=c()(this.mainRef).width(),t=c()(this.titleRef).width(),n=e-c()(this.extraRef).width()-t-50;this.setState({regionWidth:100<n?n:100})}catch(e){}}},{key:"getRegionList",value:function(){var e,t=this;window._regionList?this.handleRegionList(window._regionList):((e=this.nameSpaceList.current)&&e.getInstance().getNameSpaces(),Object(h.b)({url:this.state.url,data:{},success:function(e){e&&e.data&&(window._regionList=e.data,t.handleRegionList(e.data))}}))}},{key:"handleRegionList",value:function(){for(var e=this,t="",n=(0<arguments.length&&void 0!==arguments[0]?arguments[0]:{}).envGroups,a=[],r=0;r<n.length;r++)for(var o=n[r].envs||[],a=o,i=0;i<o.length;i++)o[i].active&&(t=o[i].serverId);this.currRegionId=t||a[0]&&a[0].serverId,Object(h.c)("serverId",this.currRegionId),this.setRegionBarRegionList(a,this.currRegionId),this.changeRegionBarRegionId(this.currRegionId),setTimeout(function(){e.changeRegionBarRegionId(e.currRegionId)},1e3);var l=this.nameSpaceList.current;l&&l.getInstance().getNameSpaces(),this.setState({currRegionId:t,instanceData:a})}},{key:"changeTableData",value:function(a){var e,r;Object(h.c)("serverId",a),this.state.currRegionId!==a&&(this.currRegionId=a,e=this.state.instanceData,r=!1,window.globalConfig.isParentEdas()&&(r=!0),e.forEach(function(e){var t,n;e.serverId===a&&(t=window.location.hash.split("?")[0],r?(Object(h.c)("serverId",e.serverId),n=window.location.href,window.location.href=n):(n=e.domain+window.location.search+t,-1===t.indexOf("serverId")&&(-1===t.indexOf("?")?n+="?serverId=".concat(a):n+="&serverId=".concat(a)),window.location.href="".concat(window.location.protocol,"//").concat(n)))}))}},{key:"setRegionBarRegionList",value:function(e,t){window.viewframeSetting&&(window.viewframeSetting.regionList=e,window.postMessage({type:"TOGGLE_REGIONBAR_STATUS",payload:{regionList:e,defaultRegionId:t}},window.location))}},{key:"changeRegionBarRegionId",value:function(e){window.viewframeSetting&&(window.viewframeSetting.defaultRegionId=e),window.postMessage({type:"SET_ACTIVE_REGION_ID",payload:{defaultRegionId:e}},window.location)}},{key:"render",value:function(){var n=this;return d.a.createElement("div",{style:{marginTop:this.state.left?0:-30}},d.a.createElement("div",{ref:function(e){return n.mainRef=e},className:"clearfix"},d.a.createElement("div",{style:{overflow:"hidden"}},d.a.createElement("div",{id:"left",style:{float:"left",display:"inline-block",marginRight:20}},d.a.createElement("div",{ref:function(e){return n.titleRef=e},style:{display:"inline-block",verticalAlign:"top"}},"string"==typeof this.state.left?d.a.createElement(g.a,{title:this.state.left}):this.state.left),this.state.hideRegionList?null:d.a.createElement("div",{ref:function(e){return n.regionRef=e},style:{width:this.state.regionWidth,display:"inline-block",lineHeight:"40px",marginLeft:20}},this.state.instanceData.map(function(e,t){return d.a.createElement(r.a,{key:e.serverId,type:n.state.currRegionId===e.serverId?"primary":"normal",style:{fontSize:"12px",marginRight:10,backgroundColor:n.state.currRegionId===e.serverId?"#546478":"#D9DEE4"},onClick:n.changeTableData.bind(n,e.serverId)}," ",e.name," ")}))),d.a.createElement("div",{ref:function(e){return n.extraRef=e},style:{float:"right",display:"inline-block",paddingTop:6}},"[object Function]"===Object.prototype.toString.call(this.state.right)?this.state.right():this.state.right)),this.props.namespaceCallBack&&d.a.createElement(m,{ref:this.nameSpaceList,namespaceCallBack:this.props.namespaceCallBack,setNowNameSpace:this.props.setNowNameSpace})))}}]),a}(d.a.Component));t.a=a},function(e,t,n){"use strict";n(543)},function(e,t,n){"use strict";t.__esModule=!0;var i=h(n(2)),l=h(n(12)),a=h(n(8)),r=h(n(373)),o=h(n(374)),s=h(n(169)),u=h(n(614)),d=h(n(622)),c=h(n(375)),f=h(n(623)),p=h(n(624)),n=h(n(625));function h(e){return e&&e.__esModule?e:{default:e}}r.default.SubMenu=o.default,r.default.Item=s.default,r.default.CheckboxItem=u.default,r.default.RadioItem=d.default,r.default.PopupItem=c.default,r.default.Group=f.default,r.default.Divider=p.default,r.default.create=n.default;t.default=a.default.config(r.default,{transform:function(e,t){var n,a,r,o;return"indentSize"in e&&(t("indentSize","inlineIndent","Menu"),n=(o=e).indentSize,o=(0,l.default)(o,["indentSize"]),e=(0,i.default)({inlineIndent:n},o)),"onDeselect"in e&&(t("onDeselect","onSelect","Menu"),e.onDeselect&&(a=(n=e).onDeselect,r=n.onSelect,o=(0,l.default)(n,["onDeselect","onSelect"]),e=(0,i.default)({onSelect:function(e,t,n){n.select||a(n.key),r&&r(e,t,n)}},o))),e}}),e.exports=t.default},function(e,t,n){"use strict";n(43),n(70),n(75),n(459)},function(e,t,n){"use strict";n(43),n(70),n(75),n(448)},function(e,t,n){"use strict";t.__esModule=!0;var a,g=c(n(2)),y=c(n(12)),r=c(n(4)),o=c(n(6)),i=c(n(7)),v=c(n(13)),_=c(n(0)),l=c(n(3)),s=n(30),u=n(11),b=c(n(24)),d=c(n(8)),n=c(n(44));function c(e){return e&&e.__esModule?e:{default:e}}f=_.default.Component,(0,i.default)(p,f),p.getDerivedStateFromProps=function(e,t){return"checked"in e&&e.checked!==t.checked?{checked:!!e.checked}:null},p.prototype.onChange=function(e){var t=!this.state.checked;"checked"in this.props||this.setState({checked:t}),this.props.onChange(t,e),this.props.onClick&&this.props.onClick(e)},p.prototype.onKeyDown=function(e){e.keyCode!==u.KEYCODE.ENTER&&e.keyCode!==u.KEYCODE.SPACE||this.onChange(e),this.props.onKeyDown&&this.props.onKeyDown(e)},p.prototype.render=function(){var e=this.props,t=e.prefix,n=e.className,a=e.disabled,r=e.readOnly,o=e.size,i=e.loading,l=e.autoWidth,s=e.checkedChildren,u=e.unCheckedChildren,d=e.rtl,c=e.isPreview,f=e.renderPreview,p=e.locale,e=(0,y.default)(e,["prefix","className","disabled","readOnly","size","loading","autoWidth","checkedChildren","unCheckedChildren","rtl","isPreview","renderPreview","locale"]),h=this.state.checked,m=h?"on":"off",s=h?s:u,u=o,u=("small"!==o&&"medium"!==o&&(u="medium"),(0,v.default)(((o={})[t+"switch"]=!0,o[t+"switch-loading"]=i,o[t+"switch-"+m]=!0,o[t+"switch-"+u]=!0,o[t+"switch-auto-width"]=l,o[n]=n,o))),l=void 0,l=a||r?{disabled:!0}:{onClick:this.onChange,tabIndex:0,onKeyDown:this.onKeyDown,disabled:!1};return c?(a=(0,v.default)(n,((o={})[t+"form-preview"]=!0,o)),"renderPreview"in this.props?_.default.createElement("div",(0,g.default)({className:a},e),f(h,this.props)):_.default.createElement("p",(0,g.default)({className:a},e),s||p[m])):_.default.createElement("div",(0,g.default)({role:"switch",dir:d?"rtl":void 0,tabIndex:"0"},e,{className:u},l,{"aria-checked":h}),_.default.createElement("div",{className:t+"switch-btn"},i&&_.default.createElement(b.default,{type:"loading",className:t+"switch-inner-icon"})),_.default.createElement("div",{className:t+"switch-children"},s))},a=i=p,i.contextTypes={prefix:l.default.string},i.propTypes={prefix:l.default.string,rtl:l.default.bool,pure:l.default.bool,className:l.default.string,style:l.default.object,checkedChildren:l.default.any,unCheckedChildren:l.default.any,onChange:l.default.func,checked:l.default.bool,defaultChecked:l.default.bool,disabled:l.default.bool,loading:l.default.bool,size:l.default.oneOf(["medium","small"]),onClick:l.default.func,onKeyDown:l.default.func,isPreview:l.default.bool,renderPreview:l.default.func,autoWidth:l.default.bool,locale:l.default.object},i.defaultProps={prefix:"next-",size:"medium",disabled:!1,defaultChecked:!1,isPreview:!1,loading:!1,readOnly:!1,autoWidth:!1,onChange:function(){},locale:n.default.Switch};var f,l=a;function p(e,t){(0,r.default)(this,p);t=(0,o.default)(this,f.call(this,e,t)),e=e.checked||e.defaultChecked;return t.onChange=t.onChange.bind(t),t.onKeyDown=t.onKeyDown.bind(t),t.state={checked:e},t}l.displayName="Switch",t.default=d.default.config((0,s.polyfill)(l)),e.exports=t.default},function(e,t,n){"use strict";function a(e,t){if(null==e)return{};for(var n,a={},r=Object.keys(e),o=0;o<r.length;o++)n=r[o],0<=t.indexOf(n)||(a[n]=e[n]);return a}n.d(t,"a",function(){return a})},function(e,t,n){"use strict";n.d(t,"a",function(){return l}),n.d(t,"b",function(){return c}),n.d(t,"d",function(){return p}),n.d(t,"c",function(){return O}),n.d(t,"f",function(){return i}),n.d(t,"e",function(){return D});var E=n(42);function s(e){return"/"===e.charAt(0)}function u(e,t){for(var n=t,a=n+1,r=e.length;a<r;n+=1,a+=1)e[n]=e[a];e.pop()}var d=function(e,t){void 0===t&&(t="");var n=e&&e.split("/")||[],a=t&&t.split("/")||[],r=e&&s(e),t=t&&s(t),r=r||t;if(e&&s(e)?a=n:n.length&&(a.pop(),a=a.concat(n)),!a.length)return"/";e=!!a.length&&("."===(t=a[a.length-1])||".."===t||""===t);for(var o=0,i=a.length;0<=i;i--){var l=a[i];"."===l?u(a,i):".."===l?(u(a,i),o++):o&&(u(a,i),o--)}if(!r)for(;o--;)a.unshift("..");return!r||""===a[0]||a[0]&&s(a[0])||a.unshift(""),n=a.join("/"),e&&"/"!==n.substr(-1)&&(n+="/"),n};function o(e){return e.valueOf?e.valueOf():Object.prototype.valueOf.call(e)}var a=function n(t,a){return t===a||null!=t&&null!=a&&(Array.isArray(t)?Array.isArray(a)&&t.length===a.length&&t.every(function(e,t){return n(e,a[t])}):("object"==typeof t||"object"==typeof a)&&(e=o(t),r=o(a),e!==t||r!==a?n(e,r):Object.keys(Object.assign({},t,a)).every(function(e){return n(t[e],a[e])})));var e,r},x=n(57);function C(e){return"/"===e.charAt(0)?e:"/"+e}function r(e){return"/"===e.charAt(0)?e.substr(1):e}function L(e,t){return a=t,0===(n=e).toLowerCase().indexOf(a.toLowerCase())&&-1!=="/?#".indexOf(n.charAt(a.length))?e.substr(t.length):e;var n,a}function T(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e}function D(e){var t=e.pathname,n=e.search,e=e.hash,t=t||"/";return n&&"?"!==n&&(t+="?"===n.charAt(0)?n:"?"+n),e&&"#"!==e&&(t+="#"===e.charAt(0)?e:"#"+e),t}function O(e,t,n,a){var r,o,i,l;"string"==typeof e?(i=o="",-1!==(l=(r=(r=e)||"/").indexOf("#"))&&(i=r.substr(l),r=r.substr(0,l)),-1!==(l=r.indexOf("?"))&&(o=r.substr(l),r=r.substr(0,l)),(l={pathname:r,search:"?"===o?"":o,hash:"#"===i?"":i}).state=t):(void 0===(l=Object(E.a)({},e)).pathname&&(l.pathname=""),l.search?"?"!==l.search.charAt(0)&&(l.search="?"+l.search):l.search="",l.hash?"#"!==l.hash.charAt(0)&&(l.hash="#"+l.hash):l.hash="",void 0!==t&&void 0===l.state&&(l.state=t));try{l.pathname=decodeURI(l.pathname)}catch(e){throw e instanceof URIError?new URIError('Pathname "'+l.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):e}return n&&(l.key=n),a?l.pathname?"/"!==l.pathname.charAt(0)&&(l.pathname=d(l.pathname,a.pathname)):l.pathname=a.pathname:l.pathname||(l.pathname="/"),l}function i(e,t){return e.pathname===t.pathname&&e.search===t.search&&e.hash===t.hash&&e.key===t.key&&a(e.state,t.state)}function N(){var r=null;var a=[];return{setPrompt:function(e){return r=e,function(){r===e&&(r=null)}},confirmTransitionTo:function(e,t,n,a){null!=r?"string"==typeof(e="function"==typeof r?r(e,t):r)?"function"==typeof n?n(e,a):a(!0):a(!1!==e):a(!0)},appendListener:function(e){var t=!0;function n(){t&&e.apply(void 0,arguments)}return a.push(n),function(){t=!1,a=a.filter(function(e){return e!==n})}},notifyListeners:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];a.forEach(function(e){return e.apply(void 0,t)})}}}var P=!("undefined"==typeof window||!window.document||!window.document.createElement);function j(e,t){t(window.confirm(e))}var Y="popstate",I="hashchange";function R(){try{return window.history.state||{}}catch(e){return{}}}function l(e){void 0===e&&(e={}),P||Object(x.a)(!1);var r=window.history,o=(-1===(n=window.navigator.userAgent).indexOf("Android 2.")&&-1===n.indexOf("Android 4.0")||-1===n.indexOf("Mobile Safari")||-1!==n.indexOf("Chrome")||-1!==n.indexOf("Windows Phone"))&&(window.history&&"pushState"in window.history),t=!(-1===window.navigator.userAgent.indexOf("Trident")),n=e,a=n.forceRefresh,i=void 0!==a&&a,a=n.getUserConfirmation,l=void 0===a?j:a,a=n.keyLength,s=void 0===a?6:a,u=e.basename?T(C(e.basename)):"";function d(e){var e=e||{},t=e.key,e=e.state,n=window.location,n=n.pathname+n.search+n.hash;return O(n=u?L(n,u):n,e,t)}function c(){return Math.random().toString(36).substr(2,s)}var f=N();function p(e){Object(E.a)(S,e),S.length=r.length,f.notifyListeners(S.location,S.action)}function h(e){void 0===e.state&&-1===navigator.userAgent.indexOf("CriOS")||y(d(e.state))}function m(){y(d(R()))}var g=!1;function y(n){g?(g=!1,p()):f.confirmTransitionTo(n,"POP",l,function(e){var t;e?p({action:"POP",location:n}):(e=n,t=S.location,-1===(t=v.indexOf(t.key))&&(t=0),e=v.indexOf(e.key),(t-=e=-1===e?0:e)&&(g=!0,b(t)))})}var n=d(R()),v=[n.key];function _(e){return u+D(e)}function b(e){r.go(e)}var w=0;function M(e){1===(w+=e)&&1===e?(window.addEventListener(Y,h),t&&window.addEventListener(I,m)):0===w&&(window.removeEventListener(Y,h),t&&window.removeEventListener(I,m))}var k=!1;var S={length:r.length,action:"POP",location:n,createHref:_,push:function(e,t){var a=O(e,t,c(),S.location);f.confirmTransitionTo(a,"PUSH",l,function(e){var t,n;e&&(e=_(a),t=a.key,n=a.state,o?(r.pushState({key:t,state:n},null,e),i?window.location.href=e:(t=v.indexOf(S.location.key),(n=v.slice(0,t+1)).push(a.key),v=n,p({action:"PUSH",location:a}))):window.location.href=e)})},replace:function(e,t){var a=O(e,t,c(),S.location);f.confirmTransitionTo(a,"REPLACE",l,function(e){var t,n;e&&(e=_(a),n=a.key,t=a.state,o?(r.replaceState({key:n,state:t},null,e),i?window.location.replace(e):(-1!==(n=v.indexOf(S.location.key))&&(v[n]=a.key),p({action:"REPLACE",location:a}))):window.location.replace(e))})},go:b,goBack:function(){b(-1)},goForward:function(){b(1)},block:function(e){var t=f.setPrompt(e=void 0===e?!1:e);return k||(M(1),k=!0),function(){return k&&(k=!1,M(-1)),t()}},listen:function(e){var t=f.appendListener(e);return M(1),function(){M(-1),t()}}};return S}var b="hashchange",w={hashbang:{encodePath:function(e){return"!"===e.charAt(0)?e:"!/"+r(e)},decodePath:function(e){return"!"===e.charAt(0)?e.substr(1):e}},noslash:{encodePath:r,decodePath:C},slash:{encodePath:C,decodePath:C}};function M(e){var t=e.indexOf("#");return-1===t?e:e.slice(0,t)}function k(){var e=window.location.href,t=e.indexOf("#");return-1===t?"":e.substring(t+1)}function S(e){window.location.replace(M(window.location.href)+"#"+e)}function c(e){void 0===e&&(e={}),P||Object(x.a)(!1);var t=window.history,n=(window.navigator.userAgent.indexOf("Firefox"),e),a=n.getUserConfirmation,r=void 0===a?j:a,a=n.hashType,n=void 0===a?"slash":a,o=e.basename?T(C(e.basename)):"",a=w[n],i=a.encodePath,l=a.decodePath;function s(){var e=l(k());return O(e=o?L(e,o):e)}var u=N();function d(e){Object(E.a)(_,e),_.length=t.length,u.notifyListeners(_.location,_.action)}var c=!1,f=null;function p(){var n,e,t=k(),a=i(t);t!==a?S(a):(t=s(),a=_.location,!c&&(e=t,(a=a).pathname===e.pathname&&a.search===e.search&&a.hash===e.hash)||f===D(t)||(f=null,n=t,c?(c=!1,d()):u.confirmTransitionTo(n,"POP",r,function(e){var t;e?d({action:"POP",location:n}):(e=n,t=_.location,-1===(t=h.lastIndexOf(D(t)))&&(t=0),e=h.lastIndexOf(D(e)),(t-=e=-1===e?0:e)&&(c=!0,m(t)))})))}var e=k(),n=i(e),a=(e!==n&&S(n),s()),h=[D(a)];function m(e){t.go(e)}var g=0;function y(e){1===(g+=e)&&1===e?window.addEventListener(b,p):0===g&&window.removeEventListener(b,p)}var v=!1;var _={length:t.length,action:"POP",location:a,createHref:function(e){var t=document.querySelector("base"),n="";return(n=t&&t.getAttribute("href")?M(window.location.href):n)+"#"+i(o+D(e))},push:function(e,t){var n=O(e,void 0,void 0,_.location);u.confirmTransitionTo(n,"PUSH",r,function(e){var t;e&&(e=D(n),t=i(o+e),k()!==t?(f=e,window.location.hash=t,t=h.lastIndexOf(D(_.location)),(t=h.slice(0,t+1)).push(e),h=t,d({action:"PUSH",location:n})):d())})},replace:function(e,t){var n=O(e,void 0,void 0,_.location);u.confirmTransitionTo(n,"REPLACE",r,function(e){var t;e&&(e=D(n),t=i(o+e),k()!==t&&(f=e,S(t)),-1!==(t=h.indexOf(D(_.location)))&&(h[t]=e),d({action:"REPLACE",location:n}))})},go:m,goBack:function(){m(-1)},goForward:function(){m(1)},block:function(e){var t=u.setPrompt(e=void 0===e?!1:e);return v||(y(1),v=!0),function(){return v&&(v=!1,y(-1)),t()}},listen:function(e){var t=u.appendListener(e);return y(1),function(){y(-1),t()}}};return _}function f(e,t,n){return Math.min(Math.max(e,t),n)}function p(e){var e=e=void 0===e?{}:e,a=e.getUserConfirmation,t=e.initialEntries,t=void 0===t?["/"]:t,n=e.initialIndex,e=e.keyLength,r=void 0===e?6:e,o=N();function i(e){Object(E.a)(u,e),u.length=u.entries.length,o.notifyListeners(u.location,u.action)}function l(){return Math.random().toString(36).substr(2,r)}e=f(void 0===n?0:n,0,t.length-1),n=t.map(function(e){return O(e,void 0,"string"!=typeof e&&e.key||l())});function s(e){var t=f(u.index+e,0,u.entries.length-1),n=u.entries[t];o.confirmTransitionTo(n,"POP",a,function(e){e?i({action:"POP",location:n,index:t}):i()})}var u={length:n.length,action:"POP",location:n[e],index:e,entries:n,createHref:D,push:function(e,t){var n=O(e,t,l(),u.location);o.confirmTransitionTo(n,"PUSH",a,function(e){var t;e&&(e=u.index+1,(t=u.entries.slice(0)).length>e?t.splice(e,t.length-e,n):t.push(n),i({action:"PUSH",location:n,index:e,entries:t}))})},replace:function(e,t){var n=O(e,t,l(),u.location);o.confirmTransitionTo(n,"REPLACE",a,function(e){e&&i({action:"REPLACE",location:u.entries[u.index]=n})})},go:s,goBack:function(){s(-1)},goForward:function(){s(1)},canGo:function(e){return 0<=(e=u.index+e)&&e<u.entries.length},block:function(e){return o.setPrompt(e=void 0===e?!1:e)},listen:function(e){return o.appendListener(e)}};return u}},function(e,t,n){"use strict";var r=n(363),a=Object.prototype.toString;function o(e){return"[object Array]"===a.call(e)}function i(e){return void 0===e}function l(e){return null!==e&&"object"==typeof e}function s(e){if("[object Object]"!==a.call(e))return!1;e=Object.getPrototypeOf(e);return null===e||e===Object.prototype}function u(e){return"[object Function]"===a.call(e)}function d(e,t){if(null!=e)if(o(e="object"!=typeof e?[e]:e))for(var n=0,a=e.length;n<a;n++)t.call(null,e[n],n,e);else for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.call(null,e[r],r,e)}e.exports={isArray:o,isArrayBuffer:function(e){return"[object ArrayBuffer]"===a.call(e)},isBuffer:function(e){return null!==e&&!i(e)&&null!==e.constructor&&!i(e.constructor)&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)},isFormData:function(e){return"undefined"!=typeof FormData&&e instanceof FormData},isArrayBufferView:function(e){return e="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&e.buffer instanceof ArrayBuffer},isString:function(e){return"string"==typeof e},isNumber:function(e){return"number"==typeof e},isObject:l,isPlainObject:s,isUndefined:i,isDate:function(e){return"[object Date]"===a.call(e)},isFile:function(e){return"[object File]"===a.call(e)},isBlob:function(e){return"[object Blob]"===a.call(e)},isFunction:u,isStream:function(e){return l(e)&&u(e.pipe)},isURLSearchParams:function(e){return"undefined"!=typeof URLSearchParams&&e instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)},forEach:d,merge:function n(){var a={};function e(e,t){s(a[t])&&s(e)?a[t]=n(a[t],e):s(e)?a[t]=n({},e):o(e)?a[t]=e.slice():a[t]=e}for(var t=0,r=arguments.length;t<r;t++)d(arguments[t],e);return a},extend:function(n,e,a){return d(e,function(e,t){n[t]=a&&"function"==typeof e?r(e,a):e}),n},trim:function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")},stripBOM:function(e){return e=65279===e.charCodeAt(0)?e.slice(1):e}}},function(e,t,n){"use strict";n.d(t,"a",function(){return o});var a=!0,r="Invariant failed";function o(e,t){if(!e){if(a)throw new Error(r);e="function"==typeof t?t():t;throw new Error(e?r+": "+e:r)}}},function(e,t,n){"use strict";function a(e,t){return(a=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function r(e,t){e.prototype=Object.create(t.prototype),a(e.prototype.constructor=e,t)}n.d(t,"a",function(){return r})},function(e,t,n){"use strict";n(43),n(175),n(75),n(80),n(36),n(662)},function(e,t,n){"use strict";t.__esModule=!0;var o=l(n(2)),i=l(n(12)),a=l(n(8)),r=l(n(686)),n=l(n(689));function l(e){return e&&e.__esModule?e:{default:e}}r.default.Item=n.default,r.default.TabPane=a.default.config(n.default,{transform:function(e,t){return t("Tab.TabPane","Tab.Item","Tab"),e}}),t.default=a.default.config(r.default,{transform:function(e,t){var n,a,r;return"type"in e&&(t("type","shape","Tab"),r=(n=e).type,n=(0,i.default)(n,["type"]),e=(0,o.default)({shape:r},n)),"resDirection"in e&&(n=(r=e).resDirection,r=(0,i.default)(r,["resDirection"]),a=void 0,"horizontal"===n?(t("resDirection=horizontal","excessMode=slide","Tab"),a="slide"):"vertical"===n&&(t("resDirection=vertical","excessMode=dropdown","Tab"),a="dropdown"),e=(0,o.default)({excessMode:a},r)),"tabBarExtraContent"in e&&(t("tabBarExtraContent","extra","Tab"),a=(n=e).tabBarExtraContent,r=(0,i.default)(n,["tabBarExtraContent"]),e=(0,o.default)({extra:a},r)),e}}),e.exports=t.default},function(e,t,n){"use strict";n.d(t,"a",function(){return o});var a=n(114);var r=n(134);function o(e){return function(e){if(Array.isArray(e))return Object(a.a)(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||Object(r.a)(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}},function(e,t,n){"use strict";t.__esModule=!0;var a=y(n(2)),r=y(n(12)),o=y(n(4)),i=y(n(6)),l=y(n(7)),s=y(n(0)),u=y(n(8)),d=y(n(348)),c=y(n(531)),f=y(n(349)),p=y(n(350)),h=y(n(533)),m=y(n(534)),g=n(11);function y(e){return e&&e.__esModule?e:{default:e}}v=s.default.Component,(0,l.default)(_,v),_.prototype.saveRef=function(e){this.overlayRef=e},_.prototype.getContent=function(){return this.overlayRef?this.overlayRef.getContent():null},_.prototype.getContentNode=function(){return this.overlayRef?this.overlayRef.getContentNode():null},_.prototype.render=function(){var e=this.props,t=e.v2,e=(0,r.default)(e,["v2"]);return t?("needAdjust"in e&&(g.log.deprecated("needAdjust","needAdjust","Overlay v2"),e.autoAdjust=e.needAdjust,delete e.needAdjust),s.default.createElement(c.default,e)):s.default.createElement(d.default,(0,a.default)({},e,{ref:this.saveRef}))};var v,n=_;function _(e){(0,o.default)(this,_);e=(0,i.default)(this,v.call(this,e));return e.overlayRef=null,e.saveRef=e.saveRef.bind(e),e}n.displayName="Overlay";b=s.default.Component,(0,l.default)(w,b),w.prototype.saveRef=function(e){e&&(this.overlay=e.overlay)},w.prototype.render=function(){var e=this.props,t=e.v2,e=(0,r.default)(e,["v2"]);return t?("needAdjust"in e&&(g.log.deprecated("needAdjust","needAdjust","Popup v2"),e.autoAdjust=e.needAdjust,delete e.needAdjust),s.default.createElement(m.default,e)):s.default.createElement(h.default,(0,a.default)({},e,{ref:this.saveRef}))};var b,l=w;function w(e){(0,o.default)(this,w);e=(0,i.default)(this,b.call(this,e));return e.overlay=null,e.saveRef=e.saveRef.bind(e),e}l.displayName="Popup",n.Gateway=f.default,n.Position=p.default,n.Popup=u.default.config(l,{exportNames:["overlay"]}),t.default=u.default.config(n,{exportNames:["getContent","getContentNode"]}),e.exports=t.default},function(e,t,n){"use strict";n(43),n(109),n(126),n(80),n(32),n(158),n(52),n(632)},function(e,t,n){"use strict";n(32),n(36),n(59),n(693)},function(e,t){e.exports=jQuery},function(e,t,n){"use strict";n(544)},function(e,t,n){"use strict";t.__esModule=!0,t.setStickyStyle=t.fetchDataByPath=t.statics=void 0;var f=a(n(2)),o=a(n(38)),p=a(n(13));function a(e){return e&&e.__esModule?e:{default:e}}var r=["defaultProps","propTypes","contextTypes","childContextTypes","displayName","getDerivedStateFromProps"];t.statics=function(t,n){Object.keys(n).forEach(function(e){-1===r.indexOf(e)&&(t[e]=n[e])})},t.fetchDataByPath=function(e,t){if(!e||!t)return!1;var n=(t=t.toString()).split("."),a=void 0,t=void 0;if(n.length&&(0<=(t=n[0]).indexOf("[")?(t=t.match(/(.*)\[(.*)\]/))&&"object"===(0,o.default)(t[1])&&"object"===(0,o.default)(e[t[1]])&&(a=e[t[1]][t[2]]):a=e[n[0]],a))for(var r=1;r<n.length&&void 0!==(a=a[n[r]]);r++);return a},t.setStickyStyle=function(e,t,s){function u(e,a){return e.reduce(function(e,t,n){return n<a?e+r(t):e},0)}var d=3<arguments.length&&void 0!==arguments[3]?arguments[3]:[],c=arguments[4],o=t.length,r=(t.forEach(function(e,t){var n="left"===s&&t===o-1,a="right"===s&&0===t,r={position:"sticky"},t=d[t];-1<t&&(r[s]=t),e.className=(0,p.default)(e.className,((t={})[c+"table-fix-"+s]=!0,t[c+"table-fix-left-last"]=n,t[c+"table-fix-right-first"]=a,t)),e.style=(0,f.default)({},e.style,r),e.cellStyle=r}),function a(e){return 0<(Array.isArray(e&&e.children)&&e.children.length||0)?e.children.reduce(function(e,t,n){return e+a(t.children)},0):1});(function o(i,l){"right"===s&&i.reverse(),i.forEach(function(e,t){var n,a,r="right"===s?l-u(i,t):l+u(i,t);e.children&&(o(e.children,r),e=e,r=r,n=s,t=t===i.length-1,a={position:"sticky"},-1<(r=d[r])&&(a[n]=r),e.className=(0,p.default)(e.className,((r={})[c+"table-fix-"+n]=!0,r[c+"table-fix-left-last"]="left"===n&&t,r[c+"table-fix-right-first"]="right"===n&&t,r)),e.style=(0,f.default)({},e.style,a),e.cellStyle=a)}),"right"===s&&i.reverse()})(e,"left"===s?0:o-1)}},function(e,t,n){"use strict";n.d(t,"a",function(){return a}),n.d(t,"b",function(){return r}),n.d(t,"c",function(){return o});var a={labelCol:{fixedSpan:6},wrapperCol:{span:18}},r={true:"green",false:"red"},o={readOnly:!0}},function(e,t,n){"use strict";var a=n(14),r=n(15),o=n(17),i=n(16),l=n(21),s=n(0),u=n.n(s),s=n(37),d=n(40),c=(n(43),n(24)),f=n.n(c),c=(n(51),n(25)),p=n.n(c);function h(e){e=e,(t=document.createElement("textarea")).style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style.left="-999px",t.style.top="".concat(window.pageYOffset||document.documentElement.scrollTop,"px"),t.setAttribute("readonly",""),t.value=e;var t,e=t;document.body.appendChild(e),e.focus(),e.select(),e.setSelectionRange(0,e.value.length),document.execCommand("copy"),document.body.removeChild(e),p.a.success("Success copied!")}var m=Object(d.g)(((n=function(e){Object(o.a)(n,e);var t=Object(i.a)(n);function n(){return Object(a.a)(this,n),t.apply(this,arguments)}return Object(r.a)(n,[{key:"render",value:function(){var e=this.props,t=e.style,n=e.value,a=e.textNode,r=e.className,e=e.showIcon,o=void 0===e||e;return u.a.createElement("div",{className:r,onClick:function(){return o?"":h(n)},style:void 0===t?{}:t},a||n,o&&u.a.createElement(f.a,{title:"å¤å¶",className:"copy-icon",size:"small",type:"copy",onClick:function(){return h(n)}}))}}]),n}(u.a.Component)).displayName="Copy",c=n))||c,s=(n=Object(s.b)(function(e){return Object(l.a)({},e.locale)}),Object(d.g)(c=n(c=function(e){Object(o.a)(n,e);var t=Object(i.a)(n);function n(){return Object(a.a)(this,n),t.apply(this,arguments)}return Object(r.a)(n,[{key:"getNameSpace",value:function(e,t,n){return n?u.a.createElement("span",{style:{display:"flex",alignItems:"center",marginLeft:16}},e.NameSpace.namespaceID,u.a.createElement(m,{style:{marginLeft:16,height:32,display:"flex",alignItems:"center",background:"rgb(239, 243, 248)",padding:"0px 8px",minWidth:220},value:t})):t}},{key:"render",value:function(){var e=this.props,t=e.title,n=e.desc,a=e.nameSpace,e=e.locale;return u.a.createElement("div",{style:{display:"flex",alignItems:"center",marginTop:8,marginBottom:8}},u.a.createElement("span",{style:{fontSize:28,height:40,fontWeight:500}},t),u.a.createElement("span",{style:{marginLeft:4}},n&&"undefined"!==n?this.getNameSpace(e,n,a):""))}}]),n}(u.a.Component))||c)||c);t.a=s},function(e,t,n){"use strict";n(446)},function(e,t,n){"use strict";t.__esModule=!0;var a=l(n(2)),r=l(n(12)),o=l(n(377)),i=l(n(619)),n=l(n(8));function l(e){return e&&e.__esModule?e:{default:e}}o.default.Group=n.default.config(i.default,{transform:function(e,t){var n;return"itemDirection"in e&&(t("itemDirection","direction","Checkbox"),n=(t=e).itemDirection,t=(0,r.default)(t,["itemDirection"]),e=(0,a.default)({direction:n},t)),e}}),t.default=o.default,e.exports=t.default},function(e,t,n){"use strict";function a(e){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}n.d(t,"a",function(){return a})},function(e,t){function n(){return e.exports=n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n,a=arguments[t];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,n.apply(this,arguments)}e.exports=n,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,n){"use strict";t.__esModule=!0;var a=s(n(8)),r=n(11),o=s(n(176)),i=s(n(672)),l=s(n(673)),n=s(n(674));function s(e){return e&&e.__esModule?e:{default:e}}o=a.default.config(o.default,{transfrom:function(t,e){var n=t.shape,a=t.type;return"selectable"===n&&e("shape=selectable","Tag.Selectable","Tag"),"deletable"===n&&e("shape=deletable","Tag.Closeable","Tag"),"link"===n&&e("shape=link",'<Tag><a href="x">x</a></Tag>',"Tag"),"readonly"!==n&&"interactive"!==n||r.log.warning("Warning: [ shape="+n+" ] is deprecated at [ Tag ]"),"secondary"===a&&r.log.warning("Warning: [ type=secondary ] is deprecated at [ Tag ]"),["count","marked","value","onChange"].forEach(function(e){e in t&&r.log.warning("Warning: [ "+e+" ] is deprecated at [ Tag ]")}),("selected"in t||"defaultSelected"in t)&&r.log.warning("Warning: [ selected|defaultSelected ] is deprecated at [ Tag ], use [ checked|defaultChecked ] at [ Tag.Selectable ] instead of it"),"closed"in t&&r.log.warning("Warning: [ closed ] is deprecated at [ Tag ], use [ onClose ] at [ Tag.Closeable ] instead of it"),"onSelect"in t&&e("onSelect","<Tag.Selectable onChange/>","Tag"),"afterClose"in t&&r.log.warning("Warning: [ afterClose ] is deprecated at [ Tag ], use [ afterClose ] at [ Tag.Closeable ] instead of it"),t}});o.Group=a.default.config(i.default),o.Selectable=a.default.config(l.default),o.Closable=a.default.config(n.default),o.Closeable=o.Closable,t.default=o,e.exports=t.default},function(e,t,n){"use strict";n(70),n(447)},function(e,t){e=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=e)},function(e,t){e=e.exports={version:"2.6.12"};"number"==typeof __e&&(__e=e)},function(e,t,n){e.exports=!n(108)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t,n){"use strict";t.__esModule=!0;var a=o(n(344)),r=o(n(526)),n=o(n(527));function o(e){return e&&e.__esModule?e:{default:e}}a.default.Expand=r.default,a.default.OverlayAnimate=n.default,t.default=a.default,e.exports=t.default},function(e,t,n){"use strict";n(43),n(70),n(126),n(109),n(538)},function(e,t,n){"use strict";n.d(t,"a",function(){return r});function v(e,t){return"function"==typeof e?e(t):e}function _(e,t){return"string"==typeof e?Object(d.c)(e,null,null,t):e}function u(e){return e}var b=n(40),a=n(58),t=n(0),w=n.n(t),d=n(55),M=n(42),k=n(54),S=n(57),r=(w.a.Component,function(r){function e(){for(var e,t=arguments.length,n=new Array(t),a=0;a<t;a++)n[a]=arguments[a];return(e=r.call.apply(r,[this].concat(n))||this).history=Object(d.b)(e.props),e}return Object(a.a)(e,r),e.prototype.render=function(){return w.a.createElement(b.c,{history:this.history,children:this.props.children})},e}(w.a.Component)),c=w.a.forwardRef;function E(e){return e}var f=(c=void 0===c?u:c)(function(e,t){var n=e.innerRef,a=e.navigate,r=e.onClick,e=Object(k.a)(e,["innerRef","navigate","onClick"]),o=e.target,e=Object(M.a)({},e,{onClick:function(t){try{r&&r(t)}catch(e){throw t.preventDefault(),e}var e;t.defaultPrevented||0!==t.button||o&&"_self"!==o||((e=t).metaKey||e.altKey||e.ctrlKey||e.shiftKey)||(t.preventDefault(),a())}});return e.ref=u!==c&&t||n,w.a.createElement("a",e)}),x=c(function(e,t){var n=e.component,r=void 0===n?f:n,o=e.replace,i=e.to,l=e.innerRef,s=Object(k.a)(e,["component","replace","to","innerRef"]);return w.a.createElement(b.e.Consumer,null,function(n){n||Object(S.a)(!1);var a=n.history,e=_(v(i,n.location),n.location),e=e?a.createHref(e):"",e=Object(M.a)({},s,{href:e,navigate:function(){var e=v(i,n.location),t=Object(d.e)(n.location)===Object(d.e)(_(e));(o||t?a.replace:a.push)(e)}});return u!==c?e.ref=t||l:e.innerRef=l,w.a.createElement(r,e)})}),C=w.a.forwardRef;(C=void 0===C?E:C)(function(e,r){var t=e["aria-current"],o=void 0===t?"page":t,t=e.activeClassName,i=void 0===t?"active":t,l=e.activeStyle,s=e.className,u=e.exact,d=e.isActive,c=e.location,f=e.sensitive,p=e.strict,h=e.style,m=e.to,g=e.innerRef,y=Object(k.a)(e,["aria-current","activeClassName","activeStyle","className","exact","isActive","location","sensitive","strict","style","to","innerRef"]);return w.a.createElement(b.e.Consumer,null,function(e){e||Object(S.a)(!1);var e=c||e.location,t=_(v(m,e),e),n=t.pathname,n=n&&n.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1"),n=n?Object(b.f)(e.pathname,{path:n,exact:u,sensitive:f,strict:p}):null,e=!!(d?d(n,e):n),n="function"==typeof s?s(e):s,a="function"==typeof h?h(e):h,e=(e&&(n=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return t.filter(function(e){return e}).join(" ")}(n,i),a=Object(M.a)({},a,l)),Object(M.a)({"aria-current":e&&o||null,className:n,style:a,to:t},y));return E!==C?e.ref=r||g:e.innerRef=g,w.a.createElement(x,e)})})},function(e,t,n){"use strict";n.d(t,"b",function(){return l});var a=n(21),r=n(34),o=n(28),i={namespaces:[]},l=function(e){return function(n){return r.a.get("v1/console/namespaces",{params:e}).then(function(e){var t=e.code,e=e.data;n({type:o.b,data:200===t?e:[]})})}};t.a=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:i,t=1<arguments.length?arguments[1]:void 0;return t.type!==o.b?e:Object(a.a)(Object(a.a)({},e),{},{namespaces:t.data})}},function(e,t,n){"use strict";var i=n(21),a=n(14),r=n(15),o=n(17),l=n(16),s=n(0),u={codeLens:!0,selectOnLineNumbers:!0,roundedSelection:!1,readOnly:!1,lineNumbersMinChars:!0,theme:"vs-dark",wordWrapColumn:120,folding:!0,showFoldingControls:"always",wordWrap:"wordWrapColumn",cursorStyle:"line",automaticLayout:!0},n=(n(737),function(e){Object(o.a)(n,e);var t=Object(l.a)(n);function n(e){return Object(a.a)(this,n),(e=t.call(this,e)).nodeRef=s.createRef(),e.monacoEditor=null,e.state=void 0,e.props=void 0,e}return Object(r.a)(n,[{key:"componentWillReceiveProps",value:function(e){var t,n,a,r,o;this.monacoEditor&&(t=(o=this.props).value,n=void 0===(n=o.language)?"js":n,a=o.width,r=o.height,o=void 0===(o=o.options)?{}:o,(void 0===t?"":t)!==e.value&&this.monacoEditor.setValue(e.value||""),n!==e.language&&this.monacoEditor.editor.setModelLanguage(this.monacoEditor.getModel(),e.language),!this.monacoEditor||a===e.width&&r===e.height||this.monacoEditor.layout(),this.monacoEditor&&e.options&&o!==e.options&&this.monacoEditor.updateOptions(Object(i.a)(Object(i.a)({},u),e.options)))}},{key:"componentDidMount",value:function(){var e=this;window.monaco?this.initMoacoEditor():window.importEditor&&window.importEditor(function(){e.initMoacoEditor()})}},{key:"componentWillUnmount",value:function(){this.monacoEditor&&this.monacoEditor.dispose(),this.nodeRef=null}},{key:"initMoacoEditor",value:function(){var e=this.props,t=e.options,t=void 0===t?{}:t,n=e.language,n=void 0===n?"js":n,e=e.value,e=void 0===e?"":e;try{this.monacoEditor=window.monaco.editor.create(this.nodeRef&&this.nodeRef.current,Object(i.a)(Object(i.a)(Object(i.a)({},u),t),{},{language:n,value:e})),this.editorDidMount(this.monacoEditor)}catch(e){}}},{key:"editorDidMount",value:function(n){var a=this.props.onChange;n.onDidChangeModelContent(function(e){var t=n.getValue();"function"==typeof a&&a(t)})}},{key:"render",value:function(){var e=this.props,t=e.width,e=e.height;return s.createElement("div",{ref:this.nodeRef,style:{width:void 0===t?"100%":t,height:void 0===e?0:e}})}}]),n}(s.Component));n.displayName="MonacoEditor";t.a=n},function(e,t,n){var a=n(107),r=n(191),o=n(142),i=Object.defineProperty;t.f=n(78)?Object.defineProperty:function(e,t,n){if(a(e),t=o(t,!0),a(n),r)try{return i(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t){e.exports=function(e){return e&&e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,n){"use strict";n(43),n(698)},function(e,t,n){"use strict";t.__esModule=!0;var a=l(n(2)),r=l(n(12)),o=l(n(380)),i=l(n(621)),n=l(n(8));function l(e){return e&&e.__esModule?e:{default:e}}o.default.Group=n.default.config(i.default,{transform:function(e,t){var n;return"itemDirection"in e&&(t("itemDirection","direction","Radio"),n=(t=e).itemDirection,t=(0,r.default)(t,["itemDirection"]),e=(0,a.default)({direction:n},t)),e}}),t.default=o.default,e.exports=t.default},function(e,t,n){"use strict";function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}n.d(t,"a",function(){return a})},function(e,t,n){"use strict";n(35);var a=n(19),o=n.n(a),a=(n(32),n(18)),i=n.n(a),r=n(14),l=n(15),s=n(17),u=n(16),a=(n(26),n(8)),a=n.n(a),d=(n(66),n(41)),d=n.n(d),c=n(0),f=n.n(c),p=(n(684),d.a.Row),h=d.a.Col,d=(0,a.a.config)(((c=function(e){Object(s.a)(n,e);var t=Object(u.a)(n);function n(e){return Object(r.a)(this,n),(e=t.call(this,e)).diffeditor=f.a.createRef(),e.state={dialogvisible:!1},e}return Object(l.a)(n,[{key:"openDialog",value:function(e,t){var n=this;this.setState({dialogvisible:!0}),setTimeout(function(){n.createDiffCodeMirror(e,t)})}},{key:"closeDialog",value:function(){this.setState({dialogvisible:!1})}},{key:"createDiffCodeMirror",value:function(e,t){var n=this.diffeditor.current;n.innerHTML="",this.diffeditor=window.CodeMirror.MergeView(n,{value:e||"",readOnly:!0,origLeft:null,orig:t||"",lineNumbers:!0,mode:this.mode,theme:"xq-light",highlightDifferences:!0,connect:"align",collapseIdentical:!1,revertButtons:"function"==typeof this.props.publishConfig})}},{key:"confirmPub",value:function(){this.closeDialog(),this.props.publishConfig(this.diffeditor.editor().getValue())}},{key:"render",value:function(){var e=this.props,t=e.locale,t=void 0===t?{}:t,n=e.title,a=e.currentArea,e=e.originalArea,r=f.a.createElement(i.a,{type:"primary",onClick:this.confirmPub.bind(this)},t.publish),r=f.a.createElement("div",null," ","function"==typeof this.props.publishConfig?r:f.a.createElement(i.a,{type:"primary",onClick:this.closeDialog.bind(this)},t.back));return f.a.createElement("div",null,f.a.createElement(o.a,{title:n,style:{width:"80%"},visible:this.state.dialogvisible,footer:r,onClose:this.closeDialog.bind(this)},f.a.createElement("div",{style:{height:400}},f.a.createElement("div",null,f.a.createElement(p,null,f.a.createElement(h,{style:{textAlign:"center"}},a),f.a.createElement(h,{style:{textAlign:"center"}},e))),f.a.createElement("div",{style:{clear:"both",height:480},ref:this.diffeditor}))))}}]),n}(f.a.Component)).displayName="DiffEditorDialog",n=c))||n;t.a=d},function(e,t,n){function m(e,t,n){var a,r,o,i=e&m.F,l=e&m.G,s=e&m.S,u=e&m.P,d=e&m.B,c=e&m.W,f=l?y:y[t]||(y[t]={}),p=f[w],h=l?g:s?g[t]:(g[t]||{})[w];for(a in n=l?t:n)(r=!i&&h&&void 0!==h[a])&&b(f,a)||(o=(r?h:n)[a],f[a]=l&&"function"!=typeof h[a]?n[a]:d&&r?v(o,g):c&&h[a]==o?function(a){function e(e,t,n){if(this instanceof a){switch(arguments.length){case 0:return new a;case 1:return new a(e);case 2:return new a(e,t)}return new a(e,t,n)}return a.apply(this,arguments)}return e[w]=a[w],e}(o):u&&"function"==typeof o?v(Function.call,o):o,u&&((f.virtual||(f.virtual={}))[a]=o,e&m.R&&p&&!p[a]&&_(p,a,o)))}var g=n(76),y=n(77),v=n(190),_=n(92),b=n(85),w="prototype";m.F=1,m.G=2,m.S=4,m.P=8,m.B=16,m.W=32,m.U=64,m.R=128,e.exports=m},function(e,t,n){var a=n(84),r=n(120);e.exports=n(78)?function(e,t,n){return a.f(e,t,r(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){var a=n(194),r=n(143);e.exports=function(e){return a(r(e))}},function(e,t,n){var a=n(146)("wks"),r=n(123),o=n(76).Symbol,i="function"==typeof o;(e.exports=function(e){return a[e]||(a[e]=i&&o[e]||(i?o:r)("Symbol."+e))}).store=a},function(e,t,n){"use strict";t.__esModule=!0;var l=a(n(2)),c=a(n(38));t.typeOf=o,t.isArrayLike=i,t.isPromise=function(e){return!!e&&("object"===(void 0===e?"undefined":(0,c.default)(e))||"function"==typeof e)&&"function"==typeof e.then},t.isPlainObject=u,t.shallowEqual=function(e,t,n){if(e!==t){if(!e||!t||(void 0===e?"undefined":(0,c.default)(e))+(void 0===t?"undefined":(0,c.default)(t))!=="objectobject")return!1;var a=Object.keys(e),r=Object.keys(t),o=a.length;if(o!==r.length)return!1;for(var i="function"==typeof n,l=0;l<o;l++){var s=a[l];if(!Object.prototype.hasOwnProperty.call(t,s))return!1;var u=e[s],d=t[s],s=i?n(u,d,s):void 0;if(!1===s||void 0===s&&u!==d)return!1}}return!0},t.each=function(e,t,n){var a=-1===n,r=e.length,o=a?r-1:0;if(i(e))for(;o<r&&0<=o&&!1!==t.call(e[o],e[o],o);a?o--:o++);else for(o in e)if(e.hasOwnProperty(o)&&!1===t.call(e[o],e[o],o))break;return e},t.pickOthers=function(e,t){var n,a={},r="Array"===o(e);for(n in t)d(n,e,r)||(a[n]=t[n]);return a},t.pickProps=function(e,t){var n,a={},r="Array"===o(e);for(n in t)d(n,e,r)&&(a[n]=t[n]);return a},t.pickAttrsWith=function(e,t){var n,a={};for(n in e)n.match(t)&&(a[n]=e[n]);return a},t.isNil=r,t.deepMerge=f,t.isFunctionComponent=function(e){return"Function"===o(e)&&e.prototype&&void 0===e.prototype.isReactComponent},t.isClassComponent=function(e){return"Function"===o(e)&&e.prototype&&void 0!==e.prototype.isReactComponent},t.isReactFragment=function(e){if(r(e))return!1;if(e.type)return e.type===s.default.Fragment;return e===s.default.Fragment},t.values=function(e){if(Object.values)return Object.values(e);var t,n=[];for(t in e)e.hasOwnProperty(t)&&n.push(e[t]);return n};var s=a(n(0));function a(e){return e&&e.__esModule?e:{default:e}}function o(e){return Object.prototype.toString.call(e).replace(/\[object\s|]/g,"")}function i(e){var t=!!e&&"length"in e&&e.length;return"Array"===o(e)||0===t||"number"==typeof t&&0<t&&t-1 in e}function u(e){if("Object"!==o(e))return!1;e=e.constructor;if("function"!=typeof e)return!1;e=e.prototype;return"Object"===o(e)&&!!e.hasOwnProperty("isPrototypeOf")}var d=function(e,t,n){return n?-1<t.indexOf(e):e in t};function r(e){return null==e}function f(e){for(var t=arguments.length,n=Array(1<t?t-1:0),a=1;a<t;a++)n[a-1]=arguments[a];if(!n.length)return e;var r,o=n.shift();if(u(e)||(e={}),u(e)&&u(o))for(var i in o)u(o[i])&&!s.default.isValidElement(o[i])?(e[i]||(0,l.default)(e,((r={})[i]={},r)),u(e[i])||(e[i]=o[i]),f(e[i],o[i])):(0,l.default)(e,((r={})[i]=o[i],r));return f.apply(void 0,[e].concat(n))}},function(e,t,n){"use strict";var a=n(86),o=(Object.defineProperty(t,"__esModule",{value:!0}),t.format=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var a=1,r=t[0],o=t.length;return"function"!=typeof r?"string"!=typeof r?r:String(r).replace(l,function(e){if("%%"===e)return"%";if(o<=a)return e;switch(e){case"%s":return String(t[a++]);case"%d":return Number(t[a++]);case"%j":try{return JSON.stringify(t[a++])}catch(e){return"[Circular]"}default:return e}}):r(t.slice(1))},t.asyncMap=function(t,e,n,a){if(e.first)return s(u(t),n,a);function r(e){if(l.push(e),++i===o)return a(l)}var e=Object.keys(t),o=e.length,i=0,l=[];e.forEach(function(e){s(t[e],n,r)})},t.asyncMapPromise=function(e,t,n){return c.apply(this,arguments)},t.complementError=function(t){return function(e){return e&&e.message?(e.field=t.field,e):{message:e,field:t.field}}},t.processErrorResults=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:[],t=[],n={};for(var a=0;a<e.length;a++)!function(e){Array.isArray(e)?t=t.concat(e):t.push(e)}(e[a]);if(t.length)for(var r=0;r<t.length;r++){var o=t[r].field;o&&(n[o]=n[o]||[],n[o].push(t[r]))}else n=t=null;return{errors:t,fields:n}},a(n(160))),i=a(n(162)),l=/%[sdj%]/g;function s(n,a,r){var o=0,i=n.length;!function e(t){if(t&&t.length)r(t);else{if(t=o,o+=1,!(t<i))return r([]);a(n[t],e)}}([])}function u(n){var a=[];return Object.keys(n).forEach(function(t){Object.keys(n[t]).forEach(function(e){a.push(n[t][e])})}),a}function d(){return r.apply(this,arguments)}function r(){return(r=(0,i.default)(o.default.mark(function e(t,r){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",t.reduce(function(){var n=(0,i.default)(o.default.mark(function e(t,n){var a;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,t;case 3:a=e.sent,e.next=9;break;case 6:e.prev=6,e.t0=e.catch(0),a=e.t0;case 9:if(a&&a.length)return e.abrupt("return",a);e.next=11;break;case 11:return e.abrupt("return",r(n));case 12:case"end":return e.stop()}},e,null,[[0,6]])}));return function(e,t){return n.apply(this,arguments)}}(),Promise.resolve()));case 1:case"end":return e.stop()}},e)}))).apply(this,arguments)}function c(){return(c=(0,i.default)(o.default.mark(function e(t,n,a){var r;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(n.first)return r=u(t),e.abrupt("return",d(r,a));e.next=3;break;case 3:return r=Object.values(t),e.abrupt("return",Promise.all(r.map(function(e){return d(e,a)})));case 5:case"end":return e.stop()}},e)}))).apply(this,arguments)}},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var v=d(n(2)),a=d(n(4)),r=d(n(6)),o=d(n(7)),i=n(0),_=d(i),l=n(23),s=d(n(3)),b=d(n(13)),u=n(11);function d(e){return e&&e.__esModule?e:{default:e}}var c,f=u.func.bindCtx,w=u.obj.pickOthers,o=(c=i.Component,(0,o.default)(M,c),M.prototype.componentDidMount=function(){this.itemNode=(0,l.findDOMNode)(this);var e=this.props,t=e.parentMode,n=e.root,e=e.menu;e?this.menuNode=(0,l.findDOMNode)(e):"popup"===t?this.menuNode=this.itemNode.parentNode:(this.menuNode=(0,l.findDOMNode)(n),t=(e=n.props).prefix,n=e.header,e=e.footer,(n||e)&&(this.menuNode=this.menuNode.querySelector("."+t+"menu-content"))),this.setFocus()},M.prototype.componentDidUpdate=function(){this.props.root.props.focusable&&this.setFocus()},M.prototype.focusable=function(){var e=this.props,t=e.root,n=e.type,e=e.disabled;return t.props.focusable&&("submenu"===n||!e)},M.prototype.getFocused=function(){var e=this.props,t=e._key;return e.root.state.focusedKey===t},M.prototype.setFocus=function(){var e;this.getFocused()&&(this.focusable()&&this.itemNode.focus({preventScroll:!0}),this.menuNode&&this.menuNode.scrollHeight>this.menuNode.clientHeight&&(this.menuNode.clientHeight+this.menuNode.scrollTop<(e=this.itemNode.offsetTop+this.itemNode.offsetHeight)?this.menuNode.scrollTop=e-this.menuNode.clientHeight:this.itemNode.offsetTop<this.menuNode.scrollTop&&(this.menuNode.scrollTop=this.itemNode.offsetTop)))},M.prototype.handleClick=function(e){e.stopPropagation();var t=this.props,n=t._key,a=t.root;t.disabled?e.preventDefault():(a.handleItemClick(n,this,e),this.props.onClick&&this.props.onClick(e))},M.prototype.handleKeyDown=function(e){var t=this.props,n=t._key,a=t.root,t=t.type;this.focusable()&&(a.handleItemKeyDown(n,t,this,e),e.keyCode===u.KEYCODE.ENTER&&"submenu"!==t&&this.handleClick(e)),this.props.onKeyDown&&this.props.onKeyDown(e)},M.prototype.getTitle=function(e){if("string"==typeof e)return e},M.prototype.render=function(){var e=this.props,t=e.inlineLevel,n=e.root,a=e.replaceClassName,r=e.groupIndent,o=e.component,i=e.disabled,l=e.className,s=e.children,u=e.needIndent,d=e.parentMode,e=e._key,c=w(Object.keys(M.propTypes),this.props),f=n.props,p=f.prefix,h=f.focusable,m=f.inlineIndent,g=f.itemClassName,f=f.rtl,y=this.getFocused(),h=a?l:(0,b.default)(((a={})[p+"menu-item"]=!0,a[p+"disabled"]=i,a[p+"focused"]=!h&&y,a[g]=!!g,a[l]=!!l,a)),g=(i&&(c["aria-disabled"]=!0,c["aria-hidden"]=!0),c.tabIndex=n.state.tabbableKey===e?"0":"-1","inline"===d&&1<t&&0<m&&u&&(c.style=(0,v.default)({},c.style||{},((y={})[f?"paddingRight":"paddingLeft"]=t*m-.4*(r||0)*m+"px",y))),o),l="menuitem";return"selectMode"in n.props&&(l="option"),_.default.createElement(g,(0,v.default)({role:l,title:this.getTitle(s)},c,{className:h,onClick:this.handleClick,onKeyDown:this.handleKeyDown}),_.default.createElement("div",{className:p+"menu-item-inner"},s))},i=n=M,n.propTypes={_key:s.default.string,level:s.default.number,inlineLevel:s.default.number,groupIndent:s.default.number,root:s.default.object,menu:s.default.any,parent:s.default.object,parentMode:s.default.oneOf(["inline","popup"]),type:s.default.oneOf(["submenu","item"]),component:s.default.string,disabled:s.default.bool,className:s.default.string,onClick:s.default.func,onKeyDown:s.default.func,needIndent:s.default.bool,replaceClassName:s.default.bool},n.defaultProps={component:"li",groupIndent:0,replaceClassName:!1,needIndent:!0},i);function M(e){(0,a.default)(this,M);e=(0,r.default)(this,c.call(this,e));return f(e,["handleClick","handleKeyDown"]),e}o.displayName="Item",t.default=o,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.uid=r,t.fileToObject=function(e){e.uid||(e.uid=r());return{lastModified:e.lastModified,lastModifiedDate:e.lastModifiedDate,name:e.filename||e.name,size:e.size,type:e.type,uid:e.uid,error:e.error,percent:0,originFileObj:e}},t.getFileItem=function(t,e){var n=void 0!==t.uid?"uid":"name";return e.filter(function(e){return e[n]===t[n]})[0]},t.removeFileItem=function(t,e){var n=void 0!==t.uid?"uid":"name",a=e.filter(function(e){return e[n]!==t[n]});return a.length!==e.length?a:null},t.previewFile=function(e,t){var n=new FileReader;n.onloadend=function(){return t(n.result)},n.readAsDataURL(e)};var a=+new Date;function r(){return(a++).toString(36)}t.errorCode={EXCEED_LIMIT:"EXCEED_LIMIT",BEFOREUPLOAD_REJECT:"BEFOREUPLOAD_REJECT",RESPONSE_FAIL:"RESPONSE_FAIL"}},function(e,t,n){"use strict";var a=n(189),r={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},c={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},o={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},i={};function f(e){return a.isMemo(e)?o:i[e.$$typeof]||r}i[a.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},i[a.Memo]=o;var p=Object.defineProperty,h=Object.getOwnPropertyNames,m=Object.getOwnPropertySymbols,g=Object.getOwnPropertyDescriptor,y=Object.getPrototypeOf,v=Object.prototype;e.exports=function e(t,n,a){if("string"!=typeof n){v&&(r=y(n))&&r!==v&&e(t,r,a);for(var r,o=h(n),i=(m&&(o=o.concat(m(n))),f(t)),l=f(n),s=0;s<o.length;++s){var u=o[s];if(!(c[u]||a&&a[u]||l&&l[u]||i&&i[u])){var d=g(n,u);try{p(t,u,d)}catch(e){}}}}return t}},function(e,t,n){"use strict";n.d(t,"b",function(){return s}),n.d(t,"c",function(){return l});var a=n(21),r=n(34),o=n(28),i={version:null,standaloneMode:"",functionMode:""},l=function(e){return r.a.post("v1/auth/users/login",e)},s=function(){return function(t){return r.a.get("v1/console/server/state").then(function(e){t({type:o.c,data:{version:e.version,standaloneMode:e.standalone_mode,functionMode:e.function_mode}})}).catch(function(){t({type:o.c,data:{version:null,functionMode:null}})})}};t.a=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:i,t=1<arguments.length?arguments[1]:void 0;return t.type!==o.c?e:Object(a.a)(Object(a.a)({},e),t.data)}},function(e,t,n){"use strict";t.__esModule=!0;var r=p(n(2)),o=p(n(12)),a=p(n(8)),i=p(n(628)),l=p(n(629)),s=p(n(381)),u=p(n(383)),d=p(n(630)),c=p(n(631)),f=p(n(382)),n=p(n(384));function p(e){return e&&e.__esModule?e:{default:e}}i.default.Header=l.default,i.default.Media=u.default,i.default.Divider=d.default,i.default.Content=c.default,i.default.Actions=n.default,i.default.BulletHeader=s.default,i.default.CollaspeContent=f.default,i.default.CollapseContent=f.default,t.default=a.default.config(i.default,{transform:function(e,t){var n,a;return"titlePrefixLine"in e&&(t("titlePrefixLine","showTitleBullet","Card"),a=(n=e).titlePrefixLine,n=(0,o.default)(n,["titlePrefixLine"]),e=(0,r.default)({showTitleBullet:a},n)),"titleBottomLine"in e&&(t("titleBottomLine","showHeadDivider","Card"),n=(a=e).titleBottomLine,a=(0,o.default)(a,["titleBottomLine"]),e=(0,r.default)({showHeadDivider:n},a)),"bodyHeight"in e&&(t("bodyHeight","contentHeight","Card"),a=(n=e).bodyHeight,t=(0,o.default)(n,["bodyHeight"]),e=(0,r.default)({contentHeight:a},t)),e}}),e.exports=t.default},function(e,t,n){"use strict";var a=n(14),r=n(15),o=n(17),i=n(16),l=n(21),s=n(0),u=n.n(s),s=n(37),n=(n(695),Object(s.b)(function(e){return Object(l.a)({},e.locale)})(((n=function(e){Object(o.a)(n,e);var t=Object(i.a)(n);function n(){return Object(a.a)(this,n),t.apply(this,arguments)}return Object(r.a)(n,[{key:"render",value:function(){var e=this.props,t=e.locale,t=void 0===t?{}:t,e=e.total;return u.a.createElement("div",{className:"query_result_wrapper"},t.ConfigurationManagement.queryResults,u.a.createElement("strong",{style:{fontWeight:"bold"}}," ",e," "),t.ConfigurationManagement.articleMeetRequirements)}}]),n}(u.a.Component)).displayName="QueryResult",s=n))||s);t.a=n},function(e,t,n){"use strict";n.d(t,"a",function(){return c});var a=n(21),r=n(414),r=n.n(r),o=n(44),o=n.n(o),i={enUS:{Header:{home:"HOME",docs:"DOCS",blog:"BLOG",community:"COMMUNITY",enterprise:"ENTERPRISE EDITION",languageSwitchButton:"ä¸",logout:"logout",changePassword:"modify password",passwordRequired:"password should not be empty",usernameRequired:"username should not be empty"},Login:{login:"Login",internalSysTip1:"Internal system.",internalSysTip2:"Not exposed to the public network",submit:"Submit",pleaseInputUsername:"Please input username",pleaseInputPassword:"Please input password",invalidUsernameOrPassword:"invalid username or password",productDesc:"an easy-to-use dynamic service discovery, configuration and service management platform for building cloud native applications"},MainLayout:{nacosName:"NACOS",doesNotExist:"The page you visit does not exist",configurationManagementVirtual:"ConfigManagement",configurationManagement:"Configurations",configdetail:"Configuration Details",configsync:"Synchronize Configuration",configeditor:"Edit Configuration",newconfig:"Create Configuration",historyRollback:"Historical Versions",configRollback:"Configuration Rollback",historyDetail:"History Details",listeningToQuery:"Listening Query",serviceManagementVirtual:"ServiceManagement",serviceManagement:"Service List",subscriberList:"Subscribers",serviceDetail:"Service Details",namespace:"Namespace",clusterManagementVirtual:"ClusterManagement",clusterManagement:"Cluster Node List",authorityControl:"Authority Control",userList:"User List",roleManagement:"Role Management",privilegeManagement:"Privilege Management"},Password:{passwordNotConsistent:"The passwords are not consistent",passwordRequired:"password should not be empty",pleaseInputOldPassword:"Please input original password",pleaseInputNewPassword:"Please input new password",pleaseInputNewPasswordAgain:"Please input new password again",oldPassword:"Original password",newPassword:"New password",checkPassword:"Check password",changePassword:"modify password",invalidPassword:"Invalid original password",modifyPasswordFailed:"Modify password failed"},NameSpace:{public_tips:"public namespace ID is empty by default",namespace:"Namespaces",prompt:"Notice",namespaceDetails:"Namespace details",namespaceName:"Name",namespaceID:"ID",configuration:"Number of Configurations",description:"Description",removeNamespace:"Remove the namespace",confirmDelete:"Sure you want to delete the following namespaces?",configurationManagement:"Configurations",removeSuccess:"Remove the namespace success",deletedSuccessfully:"Deleted successfully",deletedFailure:"Delete failed",namespaceDelete:"Delete",details:"Details",edit:"Edit",namespacePublic:"public(to retain control)",pubNoData:"No results found.",namespaceAdd:"Create Namespace",namespaceNames:"Namespaces",namespaceNumber:"Namespace ID",namespaceOperation:"Actions",refresh:"Refresh"},ServiceList:{serviceList:"Service List",serviceName:"Service Name",serviceNamePlaceholder:"Enter Service Name",hiddenEmptyService:"Hidden Empty Service",query:"Search",pubNoData:"No results found.",columnServiceName:"Service Name",groupName:"Group Name",groupNamePlaceholder:"Enter Group Name",columnClusterCount:"Cluster Count",columnIpCount:"Instance Count",columnHealthyInstanceCount:"Healthy Instance Count",columnTriggerFlag:"Trigger Protection Threshold",operation:"Operation",detail:"Details",sampleCode:"Code Example",deleteAction:"Delete",prompt:"Confirm",promptDelete:"Do you want to delete the service?",create:"Create Service",subscriber:"Subscriber"},SubscriberList:{subscriberList:"Subscriber List",serviceName:"Service Name",serviceNamePlaceholder:"Enter Service Name",groupName:"Group Name",groupNamePlaceholder:"Enter Group Name",query:"Search",pubNoData:"No results found.",address:"Address",clientVersion:"Client Version",appName:"Application Name",searchServiceNamePrompt:"Service name required!"},ClusterNodeList:{clusterNodeList:"Node List",nodeIp:"NodeIp",nodeIpPlaceholder:"Please enter node Ip",query:"Search",pubNoData:"No results found.",nodeState:"NodeState",extendInfo:"NodeMetaData",operation:"Operation",leave:"Leave",confirm:"Confirm",confirmTxt:"Confirm that you want to go offline this cluster node?"},EditClusterDialog:{updateCluster:"Update Cluster",checkType:"Check Type",checkPort:"Check Port",useIpPortCheck:"Use port of IP",checkPath:"Check Path",checkHeaders:"Check Headers",metadata:"Metadata"},ServiceDetail:{serviceDetails:"Service Details",back:"Back",editCluster:"Edit Cluster",cluster:"Cluster",metadata:"Metadata",selector:"Selector",type:"Type",groupName:"Group Name",protectThreshold:"Protect Threshold",serviceName:"Service Name",editService:"Edit Service",InstanceFilter:{title:"Metadata Filter",addFilter:"Add Filter",clear:"Clear"}},EditServiceDialog:{createService:"Create Service",updateService:"Edit Service",serviceName:"Service Name",metadata:"Metadata",groupName:"Group Name",type:"Type",typeLabel:"Label",typeNone:"None",selector:"Selector",protectThreshold:"Protect Threshold",serviceNameRequired:"Please enter a service name",protectThresholdRequired:"Please enter a protect threshold"},InstanceFilter:{title:"Metadata Filter",addFilter:"Add Filter",clear:"Clear"},InstanceTable:{operation:"Operation",port:"Port",weight:"Weight",healthy:"Healthy",metadata:"Metadata",editor:"Edit",offline:"Offline",online:"Online",ephemeral:"Ephemeral"},EditInstanceDialog:{port:"Port",weight:"Weight",metadata:"Metadata",updateInstance:"Update Instance",whetherOnline:"Whether Online"},ListeningToQuery:{success:"Success",failure:"Failure",configuration:"Configuration",pubNoData:"No results found.",listenerQuery:"Listening Query",queryDimension:"Dimension",pleaseEnterTheDataId:"Enter Data ID",dataIdCanNotBeEmpty:"Data ID cannot be empty",pleaseInputGroup:"Enter Group",groupCanNotBeEmpty:"Group cannot be empty",pleaseInputIp:"Enter IP",query:"Search",articleMeetRequirements:"configuration items."},HistoryRollback:{details:"Details",rollback:"Roll Back",pubNoData:"No results found.",toConfigure:"Historical Versions (Configuration record is retained for 30 days.)",dataId:"Enter Data ID",dataIdCanNotBeEmpty:"Data ID cannot be empty",group:"Enter Group",groupCanNotBeEmpty:"Group cannot be empty",query:"Search",articleMeetRequirements:"configuration items.",lastUpdateTime:"Last Modified At",operator:"Operator",operation:"Operation",compare:"Compare",historyCompareTitle:"History Compare",historyCompareLastVersion:"Lasted Release Version",historyCompareSelectedVersion:"Selected Version"},HistoryDetail:{historyDetails:"History Details",update:"Update",insert:"Insert",deleteAction:"Delete",recipientFrom:"Collapse",moreAdvancedOptions:"Advanced Options",home:"Application",actionType:"Action Type",operator:"Operator",sourceIp:"Source IP",configureContent:"Configuration Content",back:"Back",namespace:"Namespace"},DashboardCard:{importantReminder0:"Important reminder",viewDetails1:"view details"},ConfigurationManagement:{exportBtn:"Export",questionnaire2:"questionnaire",ad:"a ACM front-end monitoring questionnaire, the time limit to receive Ali cloud voucher details shoved stamp: the",noLongerDisplay4:"no longer display",createConfiguration:"Create Configuration",removeConfiguration:"Delete Configuration",sureDelete:"Are you sure you want to delete the following configuration?",environment:"Region",configurationManagement:"Configurations",details:"Details",sampleCode:"Code Example",edit:"Edit",deleteAction:"Delete",more:"More",version:"Historical Versions",listenerQuery:"Configuration Listening Query",failedEntry:"Failed Entry",successfulEntry:"Successful Entry",unprocessedEntry:"Unprocessed Entry",pubNoData:"No results found.",configurationManagement8:"configuration management",queryResults:"Found",articleMeetRequirements:"configuration items",fuzzyd:"Add wildcard '*' for fuzzy query",defaultFuzzyd:"Default fuzzy query mode opened",fuzzyg:"Add wildcard '*' for fuzzy query",defaultFuzzyg:"Default fuzzy query mode opened",query:"Search",advancedQuery9:"Advanced Query",app1:"Enter App Name\n",tags:"Tags",pleaseEnterTag:"Enter Tag",configDetailLabel:"DetailSearch",configDetailH:"search config detail",application:"Application",operation:"Operation",export:"Export query results",newExport:"New version export query results",import:"Import",uploadBtn:"Upload File",importSucc:"The import was successful",importAbort:"Import abort",importSuccBegin:"The import was successful,with ",importSuccEnd:"configuration items imported",importFail:"Import failed",importFail403:"Unauthorized!",importDataValidationError:"No legitimate data was read, please check the imported data file.",metadataIllegal:"The imported metadata file is illegal",namespaceNotExist:"namespace does not exist",abortImport:"Abort import",skipImport:"Skip",overwriteImport:"Overwrite",importRemind:"File upload will be imported directly into the configuration, please be careful!",samePreparation:"Same preparation",targetNamespace:"Target namespace",conflictConfig:"Conflict-detected configuration items",importSuccEntries:"Successful entries: ",failureEntries:"Failure entries",unprocessedEntries:"Unprocessed entries",unrecognizedEntries:"Unrecognized entries",skippedEntries:"skipped entries",exportSelected:"Export selected configs",newExportSelected:"New version export selected configs",clone:"Clone",exportSelectedAlertTitle:"Export config",exportSelectedAlertContent:"please select the configuration to export",cloneSucc:"The clone was successful",cloneAbort:"Clone abort",cloneSuccBegin:"The clone was successful,with ",cloneSuccEntries:"Successful entries: ",cloneSuccEnd:"configuration items cloned",cloneFail:"Clone failed",getNamespaceFailed:"get the namespace failed",getNamespace403:"Without permission to access ${namespaceName} namespace!",startCloning:"Start Clone",cloningConfiguration:"Clone config",source:"Source ",configurationNumber:"Items",target:"Target",selectNamespace:"Select Namespace",selectedEntry:"| Selected Entry",cloneSelectedAlertTitle:"Clone config",cloneSelectedAlertContent:"please select the configuration to clone",delSelectedAlertTitle:"Delete config",delSelectedAlertContent:"please select the configuration to delete",delSuccessMsg:"delete successful",cloneEditableTitle:"Modify Data Id and Group (optional)",authFail:"Auth failed"},NewConfig:{newListingMain:"Create Configuration",newListing:"Create Configuration",publishFailed:"Publish failed. Make sure parameters are entered correctly.",publishFailed403:"Publish failed. No permission to create Configuration",doNotEnter:"Illegal characters not allowed",newConfig:"Data ID cannot be empty.",dataIdIsNotEmpty:"Data ID cannot exceed 255 characters in length",groupPlaceholder:"Enter your group name",moreAdvanced:"Group cannot be empty",groupNotEmpty:"Group ID cannot exceed 127 characters in length",annotation:"Notice: You are going to add configuration to a new group, please make sure that the version of Pandora which clients are using is higher than 3.4.0, otherwise this configuration may be unreadable to clients.",dataIdLength:"Collapse",collapse:"Advanced Options",tags:"Tags",pleaseEnterTag:"Enter Tag",groupIdCannotBeLonger:"Application",description:"Description",targetEnvironment:"Format",configurationFormat:"Configuration Content",configureContentsOf:"Press F1 to view in full screen",fullScreen:"Press Esc to exit",escExit:"Publish",release:"Back",confirmSyanx:"The configuration information may has a syntax error. Are you sure to submit?",dataIdExists:"Configuration already exists. Enter a new Data ID and Group name.",dataRequired:"Data cannot be empty, submission failed",namespace:"Namespace"},CloneDialog:{terminate:"Terminate",skip:"Skip",cover:"Cover",getNamespaceFailed:"get the namespace failed",selectedEntry:"| Selected Entry",homeApplication:"Home Application",tags:"tags",startCloning:"Start Clone",source:"Source ",configurationNumber:"Items",target:"Target",conflict:"Conflict",selectNamespace:"Select Namespace",configurationCloning:"Cloneï¼"},DeleteDialog:{confManagement:"Configuration Management",determine:"OK",deletetitle:"Delete Configuration",deletedSuccessfully:"Configuration deleted",deleteFailed:"Deleting configuration failed"},DiffEditorDialog:{publish:"Publish",back:"Back"},ConfigEditor:{official:"Official",production:"Production",beta:"BETA",wrong:"Error",submitFailed:"Cannot be empty, submit failed",toedittitle:"Edit Configuration",newConfigEditor:"New Config Editor",toedit:"Edit Configuration",vdchart:"Illegal characters not allowed",recipientFrom:"Data ID cannot be empty",homeApplication:"Group name cannot be empty",collapse:"Collapse",groupNotEmpty:"Advanced Options",tags:"Tags",pleaseEnterTag:"Enter Tag",targetEnvironment:"Application",description:"Description",format:"Format",configcontent:"Configuration Content",escExit:"Press F1 to view in full screen",releaseBeta:"Press Esc to exit ",release:"Beta Publish",stopPublishBeta:"Stop Beta",betaPublish:"Beta Publish",betaSwitchPrompt:"Not checked by default.",publish:"Publish",back:"Back",codeValErrorPrompt:"Configuration information may have syntax errors. Are you sure to submit?",dialogTitle:"Content Comparison",dialogCurrentArea:"Current Value",dialogOriginalArea:"Original Value",publishFailed403:"Publish failed. No operation permission",namespace:"Namespace"},EditorNameSpace:{notice:"Notice",pleaseDo:"Illegal characters not allowed",publicSpace:"OK",confirmModify:"Edit Namespace",editNamespace:"Loading...",load:"Namespace",namespace:"Namespace cannot be empty",namespaceDesc:"Namespace description cannot be empty",description:"Description"},ExportDialog:{selectedEntry:"| Selected Entry",application:"Application",tags:"Tags",exportBtn:"Export",exportConfiguration:"Export ( ",source:"Source",items:"Items"},ImportDialog:{terminate:"Terminate",skip:"Skip",overwrite:"Overwrite",zipFileFormat:"Only upload. zip file format",uploadFile:"Upload File",importLabel:"Import ( ",target:"Target",conflict:"Conflict",beSureExerciseCaution:"Caution: data will be imported directly after uploading."},ShowCodeing:{sampleCode:"Sample Code",loading:"Loading..."},SuccessDialog:{title:"Configuration Management",determine:"OK",failure:"Failed"},ConfigSync:{error:"Error",syncConfigurationMain:"Synchronize Configuration",syncConfiguration:"Synchronize Configuration Successfully",advancedOptions:"Advanced Options",collapse:"Collapse",home:"Applicationï¼",region:"Regionï¼",configuration:"Configuration Contentï¼",target:"Target Regionï¼",sync:"Synchronize",back:"Back"},NewNameSpace:{norepeat:"Duplicate namespace. Please enter a different name.",notice:"Notice",input:"Illegal characters not allowed",ok:"OK",cancel:"Cancel",newnamespce:"Create Namespace",loading:"Loading...",name:"Namespace",namespaceId:"Namespace ID(automatically generated if not filled)",namespaceIdTooLong:"The namespace ID length cannot exceed 128",namespacenotnull:"Namespace cannot be empty",namespacedescnotnull:"Namespace description cannot be empty",description:"Description",namespaceIdAlreadyExist:"namespaceId already exist",newnamespceFailedMessage:"namespaceId format is incorrect/namespaceId length greater than 128/namespaceId already exist"},NameSpaceList:{notice:"Notice"},ConfigDetail:{official:"Official",error:"Error",configurationDetails:"Configuration Details",collapse:"Collapse",more:"Advanced Options",home:"Application",tags:"Tags",description:"Description",betaRelease:"Beta Publish",configuration:"Configuration Content",back:"Back",versionComparison:"Version Comparison",dialogCurrentArea:"Current Version",dialogOriginalArea:"Previous Version",configComparison:"Config Comparison",dialogCurrentConfig:"Current Config",dialogComparedConfig:"Compared Config",configComparisonTitle:"Select Config",dataIdInput:"Please Enter Data Id",groupInput:"Please Enter Group",namespaceSelect:"Please Select namespace",configNotFind:"The Configuration is not found, Please select again",namespace:"Namespace"},ConfigRollback:{rollBack:"Roll Back",determine:"Are you sure you want to roll back",followingConfiguration:"the following configuration?",configurationRollback:"Configuration Rollback",collapse:"Collapse",more:"Advanced Options",home:"Application",actionType:"Action Type",configuration:"Configuration Content",back:"Back",rollbackSuccessful:"Rollback Successful",rollbackDelete:"Delete",update:"Update",insert:"Insert",additionalRollbackMessage:"This operation will delete the below config!",namespace:"Namespace"},UserManagement:{userManagement:"User Management",createUser:"Create user",resetPassword:"Edit",deleteUser:"Delete",deleteUserTip:"Do you want to delete this user?",username:"Username",password:"Password",operation:"Operation",refresh:"Refresh",query:"Search",defaultFuzzyd:"Default fuzzy query mode opened",fuzzyd:"Add wildcard '*' for fuzzy query"},NewUser:{createUser:"Create user",username:"Username",password:"Password",rePassword:"Repeat",usernamePlaceholder:"Please Enter Username",passwordPlaceholder:"Please Enter Password",rePasswordPlaceholder:"Please Enter Repeat Password",usernameError:"User name cannot be empty!",passwordError:"Password cannot be empty!",rePasswordError:"Repeat Password cannot be empty!",rePasswordError2:"Passwords are inconsistent!"},PasswordReset:{resetPassword:"Password Reset",username:"Username",password:"Password",rePassword:"Repeat",passwordPlaceholder:"Please Enter Password",rePasswordPlaceholder:"Please Enter Repeat Password",passwordError:"Password cannot be empty!",rePasswordError:"Repeat Password cannot be empty!",rePasswordError2:"Passwords are inconsistent!"},RolesManagement:{roleManagement:"Role management",bindingRoles:"Binding roles",role:"Role",username:"Username",operation:"Operation",deleteRole:"Delete",deleteRoleTip:"Do you want to delete this role?",refresh:"Refresh",defaultFuzzyd:"Default fuzzy query mode opened",fuzzyd:"Add wildcard '*' for fuzzy query",query:"Search"},NewRole:{bindingRoles:"Binding roles",username:"Username",role:"Role",usernamePlaceholder:"Please Enter Username",rolePlaceholder:"Please Enter Role",usernameError:"User name cannot be empty!",roleError:"Role cannot be empty!"},PermissionsManagement:{privilegeManagement:"Permissions Management",addPermission:"Add Permission",role:"Role",resource:"Resource",action:"Action",operation:"Operation",deletePermission:"Delete",deletePermissionTip:"Do you want to delete this permission?",readOnly:"read only",writeOnly:"write only",readWrite:"Read and write",refresh:"Refresh",defaultFuzzyd:"Default fuzzy query mode opened",fuzzyd:"Add wildcard '*' for fuzzy query",query:"Search"},NewPermissions:{addPermission:"Add Permission",role:"Role",resource:"Resource",action:"Action",resourcePlaceholder:"Please select resources",rolePlaceholder:"Please enter Role",actionPlaceholder:"Please select Action",resourceError:"Resource cannot be empty!",roleError:"Role cannot be empty!",actionError:"Action cannot be empty!",readOnly:"read only",writeOnly:"write only",readWrite:"Read and write"}},zhCN:{Header:{home:"é¦é¡µ",docs:"ææ¡£",blog:"å客",community:"社åº",enterprise:"Nacosä¼ä¸ç",languageSwitchButton:"En",logout:"ç»åº",changePassword:"ä¿®æ¹å¯ç "},Login:{login:"ç»å½",internalSysTip1:"å
é¨ç³»ç»ï¼ä¸å¯æ´é²å°å
¬ç½",submit:"æäº¤",pleaseInputUsername:"请è¾å
¥ç¨æ·å",pleaseInputPassword:"请è¾å
¥å¯ç ",invalidUsernameOrPassword:"ç¨æ·åæå¯ç é误",passwordRequired:"å¯ç ä¸è½ä¸ºç©º",usernameRequired:"ç¨æ·åä¸è½ä¸ºç©º",productDesc:"ä¸ä¸ªæ´æäºæå»ºäºåçåºç¨ç卿æå¡åç°ãé
置管çåæå¡ç®¡çå¹³å°"},MainLayout:{nacosName:"NACOS",doesNotExist:"æ¨è®¿é®ç页é¢ä¸åå¨",configurationManagementVirtual:"é
置管ç",configurationManagement:"é
ç½®å表",configdetail:"é
置详æ
",configsync:"忥é
ç½®",configeditor:"é
ç½®ç¼è¾",newconfig:"æ°å»ºé
ç½®",historyRollback:"åå²çæ¬",configRollback:"é
ç½®åæ»",historyDetail:"åå²è¯¦æ
",listeningToQuery:"ç嬿¥è¯¢",serviceManagementVirtual:"æå¡ç®¡ç",serviceManagement:"æå¡å表",subscriberList:"订é
è
å表",serviceDetail:"æå¡è¯¦æ
",namespace:"å½å空é´",clusterManagementVirtual:"é群管ç",clusterManagement:"èç¹å表",authorityControl:"æéæ§å¶",userList:"ç¨æ·å表",roleManagement:"è§è²ç®¡ç",privilegeManagement:"æé管ç"},Password:{passwordNotConsistent:"两次è¾å
¥å¯ç ä¸ä¸è´",passwordRequired:"å¯ç ä¸è½ä¸ºç©º",pleaseInputOldPassword:"请è¾å
¥åå§å¯ç ",pleaseInputNewPassword:"请è¾å
¥æ°å¯ç ",pleaseInputNewPasswordAgain:"è¯·åæ¬¡è¾å
¥æ°å¯ç ",oldPassword:"åå§å¯ç ",newPassword:"æ°å¯ç ",checkPassword:"忬¡è¾å
¥",changePassword:"ä¿®æ¹å¯ç ",invalidPassword:"åå§å¯ç é误",modifyPasswordFailed:"ä¿®æ¹å¯ç 失败"},NameSpace:{public_tips:"publicå½å空é´IDé»è®¤ç©º",namespace:"å½å空é´",prompt:"æç¤º",namespaceDetails:"å½å空é´è¯¦æ
",namespaceName:"å½å空é´åç§°",namespaceID:"å½å空é´ID",configuration:"é
ç½®æ°",description:"æè¿°",removeNamespace:"å é¤å½å空é´",confirmDelete:"ç¡®å®è¦å é¤ä»¥ä¸å½å空é´åï¼",configurationManagement:"é
ç½®å表",removeSuccess:"å é¤å½åç©ºé´æå",deletedSuccessfully:"å 餿å",deletedFailure:"å é¤å¤±è´¥",namespaceDelete:"å é¤",details:"详æ
",edit:"ç¼è¾",namespacePublic:"public(ä¿ç空é´)",pubNoData:"æ²¡ææ°æ®",namespaceAdd:"æ°å»ºå½å空é´",namespaceNames:"å½å空é´åç§°",namespaceNumber:"å½å空é´ID",namespaceOperation:"æä½",refresh:"å·æ°"},ServiceList:{serviceList:"æå¡å表",serviceName:"æå¡åç§°",serviceNamePlaceholder:"请è¾å
¥æå¡åç§°",hiddenEmptyService:"éè空æå¡",query:"æ¥è¯¢",pubNoData:"æ²¡ææ°æ®",columnServiceName:"æå¡å",groupName:"åç»åç§°",groupNamePlaceholder:"请è¾å
¥åç»åç§°",columnClusterCount:"é群æ°ç®",columnIpCount:"å®ä¾æ°",columnHealthyInstanceCount:"å¥åº·å®ä¾æ°",columnTriggerFlag:"触åä¿æ¤éå¼",operation:"æä½",detail:"详æ
",sampleCode:"示ä¾ä»£ç ",deleteAction:"å é¤",prompt:"æç¤º",promptDelete:"ç¡®å®è¦å é¤å½åæå¡åï¼",create:"å建æå¡",subscriber:"订é
è
"},SubscriberList:{subscriberList:"订é
è
å表",serviceName:"æå¡åç§°",serviceNamePlaceholder:"请è¾å
¥æå¡åç§°",groupName:"åç»åç§°",groupNamePlaceholder:"请è¾å
¥åç»åç§°",query:"æ¥è¯¢",pubNoData:"æ²¡ææ°æ®",address:"å°å",clientVersion:"客æ·ç«¯çæ¬",appName:"åºç¨å",searchServiceNamePrompt:"请è¾å
¥æå¡åç§°ï¼"},ClusterNodeList:{clusterNodeList:"èç¹å表",nodeIp:"èç¹Ip",nodeIpPlaceholder:"请è¾å
¥èç¹Ip",query:"æ¥è¯¢",pubNoData:"æ²¡ææ°æ®",nodeState:"èç¹ç¶æ",extendInfo:"èç¹å
æ°æ®",operation:"æä½",leave:"ä¸çº¿",confirm:"确认",confirmTxt:"确认è¦ä¸çº¿æ¤é群èç¹?"},EditClusterDialog:{updateCluster:"æ´æ°é群",checkType:"æ£æ¥ç±»å",checkPort:"æ£æ¥ç«¯å£",useIpPortCheck:"使ç¨IPç«¯å£æ£æ¥",checkPath:"æ£æ¥è·¯å¾",checkHeaders:"æ£æ¥å¤´",metadata:"å
æ°æ®"},ServiceDetail:{serviceDetails:"æå¡è¯¦æ
",back:"è¿å",editCluster:"é群é
ç½®",cluster:"é群",metadata:"å
æ°æ®",selector:"表达å¼",type:"æå¡è·¯ç±ç±»å",groupName:"åç»",protectThreshold:"ä¿æ¤éå¼",serviceName:"æå¡å",editService:"ç¼è¾æå¡",InstanceFilter:{title:"å
æ°æ®è¿æ»¤",addFilter:"æ·»å è¿æ»¤",clear:"æ¸
空"}},EditServiceDialog:{createService:"å建æå¡",updateService:"æ´æ°æå¡",serviceName:"æå¡å",metadata:"å
æ°æ®",groupName:"åç»",type:"æå¡è·¯ç±ç±»å",typeLabel:"æ ç¾",typeNone:"é»è®¤",selector:"表达å¼",protectThreshold:"ä¿æ¤éå¼",serviceNameRequired:"请è¾å
¥æå¡å",protectThresholdRequired:"请è¾å
¥ä¿æ¤éå¼"},InstanceFilter:{title:"å
æ°æ®è¿æ»¤",addFilter:"æ·»å è¿æ»¤",clear:"æ¸
空"},InstanceTable:{operation:"æä½",port:"端å£",weight:"æé",healthy:"å¥åº·ç¶æ",metadata:"å
æ°æ®",editor:"ç¼è¾",offline:"ä¸çº¿",online:"ä¸çº¿",ephemeral:"临æ¶å®ä¾"},EditInstanceDialog:{port:"端å£",weight:"æé",metadata:"å
æ°æ®",updateInstance:"ç¼è¾å®ä¾",whetherOnline:"æ¯å¦ä¸çº¿"},ListeningToQuery:{success:"æå",failure:"失败",configuration:"é
ç½®",pubNoData:"æ²¡ææ°æ®",listenerQuery:"ç嬿¥è¯¢",queryDimension:"æ¥è¯¢ç»´åº¦",pleaseEnterTheDataId:"请è¾å
¥Data ID",dataIdCanNotBeEmpty:"Data IDä¸è½ä¸ºç©º",pleaseInputGroup:"请è¾å
¥Group",groupCanNotBeEmpty:"Groupä¸è½ä¸ºç©º",pleaseInputIp:"请è¾å
¥IP",query:"æ¥è¯¢",articleMeetRequirements:"æ¡æ»¡è¶³è¦æ±çé
ç½®ã"},HistoryRollback:{details:"详æ
",rollback:"åæ»",pubNoData:"æ²¡ææ°æ®",toConfigure:"åå²çæ¬(ä¿ç30天)",dataId:"请è¾å
¥Data ID",dataIdCanNotBeEmpty:"Data IDä¸è½ä¸ºç©º",group:"请è¾å
¥Group",groupCanNotBeEmpty:"Groupä¸è½ä¸ºç©º",query:"æ¥è¯¢",articleMeetRequirements:"æ¡æ»¡è¶³è¦æ±çé
ç½®ã",lastUpdateTime:"æåæ´æ°æ¶é´",operator:"æä½äºº",operation:"æä½",compare:"æ¯è¾",historyCompareTitle:"åå²çæ¬æ¯è¾",historyCompareLastVersion:"ææ°çæ¬",historyCompareSelectedVersion:"å½åéä¸çæ¬"},HistoryDetail:{historyDetails:"åå²è¯¦æ
",update:"æ´æ°",insert:"æå
¥",deleteAction:"å é¤",recipientFrom:"æ¶èµ·",moreAdvancedOptions:"æ´å¤é«çº§é项",home:"å½å±åºç¨",actionType:"æä½ç±»å",configureContent:"é
ç½®å
容",operator:"æä½äºº",sourceIp:"æ¥æº IP",back:"è¿å",namespace:"å½å空é´"},DashboardCard:{importantReminder0:"éè¦æé",viewDetails1:"æ¥ç详æ
"},ConfigurationManagement:{exportBtn:"导åº",questionnaire2:"é®å·è°æ¥",ad:"ç ACM åç«¯çæ§è°æ¥é®å·ï¼éæ¶é¢åé¿éäºä»£éå¸\t 详æ
çæ³",noLongerDisplay4:"ä¸åæ¾ç¤º",createConfiguration:"å建é
ç½®",removeConfiguration:"å é¤é
ç½®",sureDelete:"ç¡®å®è¦å é¤ä»¥ä¸é
ç½®åï¼",environment:"å°å",configurationManagement:"é
ç½®å表",details:"详æ
",sampleCode:"示ä¾ä»£ç ",edit:"ç¼è¾",deleteAction:"å é¤",more:"æ´å¤",version:"åå²çæ¬",listenerQuery:"ç嬿¥è¯¢",failedEntry:"å¤±è´¥çæ¡ç®",successfulEntry:"æåçæ¡ç®",unprocessedEntry:"æªå¤ççæ¡ç®",pubNoData:"æ²¡ææ°æ®",configurationManagement8:"é
置管ç",queryResults:"æ¥è¯¢å°",articleMeetRequirements:"æ¡æ»¡è¶³è¦æ±çé
ç½®ã",fuzzyd:"æ·»å éé
符'*'è¿è¡æ¨¡ç³æ¥è¯¢",defaultFuzzyd:"å·²å¼å¯é»è®¤æ¨¡ç³æ¥è¯¢",fuzzyg:"æ·»å éé
符'*'è¿è¡æ¨¡ç³æ¥è¯¢",defaultFuzzyg:"å·²å¼å¯é»è®¤æ¨¡ç³æ¥è¯¢",query:"æ¥è¯¢",advancedQuery9:"é«çº§æ¥è¯¢",app1:"请è¾å
¥åºç¨å",tags:"æ ç¾",pleaseEnterTag:"请è¾å
¥æ ç¾",configDetailLabel:"é
置项æç´¢",configDetailH:"æç´¢å
·ä½é
置项",application:"å½å±åºç¨",operation:"æä½",export:"å¯¼åºæ¥è¯¢ç»æ",newExport:"æ°çå¯¼åºæ¥è¯¢ç»æ",import:"导å
¥é
ç½®",uploadBtn:"ä¸ä¼ æä»¶",importSucc:"导å
¥æå",importAbort:"导å
¥ç»æ¢",importSuccBegin:"导å
¥æå,导å
¥äº",importSuccEnd:"项é
ç½®",importFail:"导å
¥å¤±è´¥",importFail403:"没ææé!",importDataValidationError:"æªè¯»åå°åæ³æ°æ®ï¼è¯·æ£æ¥å¯¼å
¥çæ°æ®æä»¶ã",metadataIllegal:"导å
¥çå
æ°æ®æä»¶éæ³",namespaceNotExist:"namespace ä¸åå¨",abortImport:"ç»æ¢å¯¼å
¥",skipImport:"è·³è¿",overwriteImport:"è¦ç",importRemind:"æä»¶ä¸ä¼ åå°ç´æ¥å¯¼å
¥é
ç½®ï¼è¯·å¡å¿
è°¨æ
æä½ï¼",samePreparation:"ç¸åé
ç½®",targetNamespace:"ç®æ 空é´",conflictConfig:"æ£æµå°å²çªçé
置项",importSuccEntries:"æå导å
¥æ¡ç®æ°: ",failureEntries:"å¤±è´¥çæ¡ç®",unprocessedEntries:"æªå¤ççæ¡ç®",unrecognizedEntries:"æªè¯å«çæ¡ç®",skippedEntries:"è·³è¿çæ¡ç®",exportSelected:"导åºéä¸çé
ç½®",newExportSelected:"æ°ç导åºéä¸çé
ç½®",clone:"å
é",exportSelectedAlertTitle:"é
置导åº",exportSelectedAlertContent:"è¯·éæ©è¦å¯¼åºçé
ç½®",cloneSucc:"å
éæå",cloneAbort:"å
éç»æ¢",cloneSuccBegin:"å
éæå,å
éäº",cloneSuccEntries:"æåå
éæ¡ç®æ°: ",cloneSuccEnd:"项é
ç½®",cloneFail:"å
é失败",getNamespaceFailed:"è·åå½å空é´å¤±è´¥",getNamespace403:"没æ ${namespaceName} å½å空é´çè®¿é®æéï¼",startCloning:"å¼å§å
é",cloningConfiguration:"å
éé
ç½®",source:"æºç©ºé´",configurationNumber:"é
ç½®æ°é",target:"ç®æ 空é´",selectNamespace:"è¯·éæ©å½å空é´",selectedEntry:"| éä¸çæ¡ç®",cloneSelectedAlertTitle:"é
ç½®å
é",cloneSelectedAlertContent:"è¯·éæ©è¦å
éçé
ç½®",delSelectedAlertTitle:"é
ç½®å é¤",delSelectedAlertContent:"è¯·éæ©è¦å é¤çé
ç½®",delSuccessMsg:"å 餿å",cloneEditableTitle:"ä¿®æ¹ Data Id å Group (å¯éæä½)",authFail:"æé认è¯å¤±è´¥"},NewConfig:{newListingMain:"æ°å»ºé
ç½®",newListing:"æ°å»ºé
ç½®",publishFailed:"åå¸å¤±è´¥ãè¯·æ£æ¥åæ°æ¯å¦æ£ç¡®ã",publishFailed403:"åå¸å¤±è´¥,è¯·æ£æ¥æ¯å¦ææéæ°å¢é
ç½®",doNotEnter:"ä¸å
è®¸éæ³å符",newConfig:"Data ID ä¸è½ä¸ºç©º",dataIdIsNotEmpty:"Data ID é¿åº¦ä¸è½è¶
è¿255å符",groupPlaceholder:"请è¾å
¥Groupåç§°",moreAdvanced:"Groupä¸è½ä¸ºç©º",groupNotEmpty:"Group IDé¿åº¦ä¸è½è¶
è¿127å符",annotation:"æ³¨æ¨æ£å¨å¾ä¸ä¸ªèªå®ä¹åç»æ°å¢é
ç½®ï¼è¯·ç¡®ä¿å®¢æ·ç«¯ä½¿ç¨çPandoraçæ¬é«äº3.4.0ï¼å¦åå¯è½è¯»åä¸å°è¯¥é
ç½®ã",dataIdLength:"æ¶èµ·",collapse:"æ´å¤é«çº§é项",tags:"æ ç¾",pleaseEnterTag:"请è¾å
¥æ ç¾",groupIdCannotBeLonger:"å½å±åºç¨",description:"æè¿°",targetEnvironment:"é
ç½®æ ¼å¼",configurationFormat:"é
ç½®å
容",configureContentsOf:"æF1æ¾ç¤ºå
¨å±",fullScreen:"æEscéåºå
¨å±",escExit:"åå¸",release:"è¿å",confirmSyanx:"é
置信æ¯å¯è½æè¯æ³é误, ç¡®å®æäº¤å?",dataIdExists:"é
置已åå¨, è¯è¯å«çdataidågroupçç»åå§",dataRequired:"æ°æ®ä¸è½ä¸ºç©º, æäº¤å¤±è´¥",namespace:"å½å空é´"},CloneDialog:{terminate:"ç»æ¢å
é",skip:"è·³è¿",cover:"è¦ç",getNamespaceFailed:"è·åå½å空é´å¤±è´¥",selectedEntry:"| éä¸çæ¡ç®",homeApplication:"å½å±åºç¨",tags:"æ ç¾",startCloning:"å¼å§å
é",source:"æºç©ºé´",configurationNumber:"é
ç½®æ°é",target:"ç®æ 空é´",conflict:"ç¸åé
ç½®",selectNamespace:"è¯·éæ©å½å空é´",configurationCloning:"é
ç½®å
éï¼"},DeleteDialog:{confManagement:"é
置管ç",determine:"ç¡®å®",deletetitle:"å é¤é
ç½®",deletedSuccessfully:"å é¤é
ç½®æå",deleteFailed:"å é¤é
置失败"},DiffEditorDialog:{publish:"确认åå¸",back:"è¿å"},ConfigEditor:{official:"æ£å¼",production:"æ£å¼",beta:"BETA",wrong:"é误",submitFailed:"ä¸è½ä¸ºç©º, æäº¤å¤±è´¥",toedittitle:"ç¼è¾é
ç½®",toedit:"ç¼è¾é
ç½®",newConfigEditor:"æ°å»ºé
ç½®",vdchart:"请å¿è¾å
¥éæ³å符",recipientFrom:"Data IDä¸è½ä¸ºç©º",homeApplication:"Groupä¸è½ä¸ºç©º",collapse:"æ¶èµ·",groupNotEmpty:"æ´å¤é«çº§é项",tags:"æ ç¾",pleaseEnterTag:"请è¾å
¥æ ç¾",targetEnvironment:"å½å±åºç¨",description:"æè¿°",format:"é
ç½®æ ¼å¼",configcontent:"é
ç½®å
容",escExit:"æF1æ¾ç¤ºå
¨å±",releaseBeta:"æEscéåºå
¨å±",release:"åå¸Beta",stopPublishBeta:"忢Beta",betaPublish:"Betaåå¸",betaSwitchPrompt:"é»è®¤ä¸è¦å¾éã",publish:"åå¸",back:"è¿å",codeValErrorPrompt:"é
置信æ¯å¯è½æè¯æ³é误, ç¡®å®æäº¤å?",dialogTitle:"å
容æ¯è¾",dialogCurrentArea:"å½åå¼",dialogOriginalArea:"åå§å¼",publishFailed403:"åå¸å¤±è´¥,è¯·æ£æ¥æ¯å¦ææé",namespace:"å½å空é´"},EditorNameSpace:{notice:"æç¤º",pleaseDo:"请å¿è¾å
¥éæ³å符",publicSpace:"确认修æ¹",confirmModify:"ç¼è¾å½å空é´",editNamespace:"å è½½ä¸...",load:"å½å空é´å",namespace:"å½å空é´ä¸è½ä¸ºç©º",namespaceDesc:"å½åç©ºé´æè¿°ä¸è½ä¸ºç©º",description:"æè¿°"},ExportDialog:{selectedEntry:"| éä¸çæ¡ç®",application:"å½å±åºç¨",tags:"æ ç¾",exportBtn:"导åº",exportConfiguration:"导åºé
ç½®ï¼",source:"æºç©ºé´",items:"é
ç½®æ°é"},ImportDialog:{terminate:"ç»æ¢å¯¼å
¥",skip:"è·³è¿",overwrite:"è¦ç",zipFileFormat:"åªè½ä¸ä¼ .zipæ ¼å¼çæä»¶",uploadFile:"ä¸ä¼ æä»¶",importLabel:"导å
¥é
ç½® ( ",target:"ç®æ 空é´",conflict:"ç¸åé
ç½®",beSureExerciseCaution:"æä»¶ä¸ä¼ åå°ç´æ¥å¯¼å
¥é
ç½®ï¼è¯·å¡å¿
è°¨æ
æä½"},ShowCodeing:{sampleCode:"示ä¾ä»£ç ",loading:"å è½½ä¸..."},SuccessDialog:{title:"é
置管ç",determine:"ç¡®å®",failure:"失败"},ConfigSync:{error:"é误",syncConfigurationMain:"忥é
ç½®",syncConfiguration:"忥é
ç½®æå",advancedOptions:"æ´å¤é«çº§é项",collapse:"æ¶èµ·",home:"å½å±åºç¨",region:"æå±å°å",configuration:"é
ç½®å
容",target:"ç®æ å°å",sync:"忥",back:"è¿å"},NewNameSpace:{norepeat:"å½å空é´åç§°ä¸è½éå¤",notice:"æç¤º",input:"请å¿è¾å
¥éæ³å符",ok:"ç¡®å®",cancel:"åæ¶",newnamespce:"æ°å»ºå½å空é´",loading:"å è½½ä¸...",name:"å½å空é´å",namespaceId:"å½å空é´ID(ä¸å¡«åèªå¨çæ)",namespaceIdTooLong:"å½å空é´IDé¿åº¦ä¸è½è¶
è¿128",namespacenotnull:"å½å空é´ä¸è½ä¸ºç©º",namespacedescnotnull:"å½åç©ºé´æè¿°ä¸è½ä¸ºç©º",description:"æè¿°",namespaceIdAlreadyExist:"namespaceIdå·²åå¨",newnamespceFailedMessage:"namespaceIdæ ¼å¼ä¸æ£ç¡®/namespaceIdé¿åº¦å¤§äº128/namespaceIdå·²åå¨"},NameSpaceList:{notice:"æç¤º"},ConfigDetail:{official:"æ£å¼",error:"é误",configurationDetails:"é
置详æ
",collapse:"æ¶èµ·",more:"æ´å¤é«çº§é项",home:"å½å±åºç¨",tags:"æ ç¾",description:"æè¿°",betaRelease:"Betaåå¸",configuration:"é
ç½®å
容",back:"è¿å",versionComparison:"çæ¬å¯¹æ¯",dialogCurrentArea:"å½åçæ¬",dialogOriginalArea:"ä¸ä¸çæ¬",configComparison:"é
置对æ¯",dialogCurrentConfig:"å½åé
ç½®",dialogComparedConfig:"被æ¯è¾é
ç½®",configComparisonTitle:"éæ©é
ç½®",dataIdInput:"请è¾å
¥Data Id",groupInput:"请è¾å
¥Group",namespaceSelect:"è¯·éæ©å½å空é´",configNotFind:"æªæ¥è¯¢å°æå®é
ç½®,è¯·éæ°éæ©",namespace:"å½å空é´"},ConfigRollback:{rollBack:"åæ»é
ç½®",determine:"ç¡®å®è¦",followingConfiguration:"以ä¸é
ç½®åï¼",configurationRollback:"é
ç½®åæ»",collapse:"æ¶èµ·",more:"æ´å¤é«çº§é项",home:"å½å±åºç¨",actionType:"æä½ç±»å",configuration:"é
ç½®å
容",back:"è¿å",rollbackSuccessful:"åæ»æå",rollbackDelete:"å é¤",update:"æ´æ°",insert:"æå
¥",additionalRollbackMessage:"æ¤æä½å°å é¤ä»¥ä¸é
ç½®ï¼",namespace:"å½å空é´"},UserManagement:{userManagement:"ç¨æ·ç®¡ç",createUser:"åå»ºç¨æ·",resetPassword:"ä¿®æ¹",deleteUser:"å é¤",deleteUserTip:"æ¯å¦è¦å é¤è¯¥ç¨æ·ï¼",username:"ç¨æ·å",password:"å¯ç ",operation:"æä½",refresh:"å·æ°",query:"æ¥è¯¢",defaultFuzzyd:"å·²å¼å¯é»è®¤æ¨¡ç³æ¥è¯¢",fuzzyd:"æ·»å éé
符'*'è¿è¡æ¨¡ç³æ¥è¯¢"},NewUser:{createUser:"åå»ºç¨æ·",username:"ç¨æ·å",password:"å¯ç ",rePassword:"确认å¯ç ",usernamePlaceholder:"请è¾å
¥ç¨æ·å",passwordPlaceholder:"请è¾å
¥å¯ç ",rePasswordPlaceholder:"请è¾å
¥ç¡®è®¤å¯ç ",usernameError:"ç¨æ·åä¸è½ä¸ºç©ºï¼",passwordError:"å¯ç ä¸è½ä¸ºç©º!",rePasswordError:"确认å¯ç ä¸è½ä¸ºç©º!",rePasswordError2:"两次è¾å
¥å¯ç ä¸ä¸è´!"},PasswordReset:{resetPassword:"å¯ç éç½®",username:"ç¨æ·å",password:"å¯ç ",rePassword:"确认å¯ç ",passwordError:"å¯ç ä¸è½ä¸ºç©ºï¼",passwordPlaceholder:"请è¾å
¥å¯ç ",rePasswordPlaceholder:"请è¾å
¥ç¡®è®¤å¯ç ",rePasswordError:"确认å¯ç ä¸è½ä¸ºç©º!",rePasswordError2:"两次è¾å
¥å¯ç ä¸ä¸è´!"},RolesManagement:{roleManagement:"è§è²ç®¡ç",bindingRoles:"ç»å®è§è²",role:"è§è²å",username:"ç¨æ·å",operation:"æä½",deleteRole:"å é¤",deleteRoleTip:"æ¯å¦è¦å é¤è¯¥è§è²ï¼",refresh:"å·æ°",defaultFuzzyd:"å·²å¼å¯é»è®¤æ¨¡ç³æ¥è¯¢",fuzzyd:"æ·»å éé
符'*'è¿è¡æ¨¡ç³æ¥è¯¢",query:"æ¥è¯¢"},NewRole:{bindingRoles:"ç»å®è§è²",username:"ç¨æ·å",role:"è§è²å",usernamePlaceholder:"请è¾å
¥ç¨æ·å",rolePlaceholder:"请è¾å
¥è§è²å",usernameError:"ç¨æ·åä¸è½ä¸ºç©ºï¼",roleError:"è§è²åä¸è½ä¸ºç©º!"},PermissionsManagement:{privilegeManagement:"æé管ç",addPermission:"æ·»å æé",role:"è§è²å",resource:"èµæº",action:"å¨ä½",operation:"æä½",deletePermission:"å é¤",deletePermissionTip:"æ¯å¦è¦å é¤è¯¥æéï¼",readOnly:"åªè¯»",writeOnly:"åªå",readWrite:"读å",refresh:"å·æ°",defaultFuzzyd:"å·²å¼å¯é»è®¤æ¨¡ç³æ¥è¯¢",fuzzyd:"æ·»å éé
符'*'è¿è¡æ¨¡ç³æ¥è¯¢",query:"æ¥è¯¢"},NewPermissions:{addPermission:"æ·»å æé",role:"è§è²å",resource:"èµæº",action:"å¨ä½",resourcePlaceholder:"è¯·éæ©èµæº",rolePlaceholder:"请è¾å
¥è§è²å",actionPlaceholder:"è¯·éæ©å¨ä½",resourceError:"èµæºä¸è½ä¸ºç©ºï¼",roleError:"è§è²åä¸è½ä¸ºç©º!",actionError:"å¨ä½ä¸è½ä¸ºç©º!",readOnly:"åªè¯»",writeOnly:"åªå",readWrite:"读å"}}},l=n(28),s=Object.assign({},r.a,i.enUS),u=Object.assign({},o.a,i.zhCN),d={language:"en-us",locale:s},c=function(n){return function(e){var t="zh-CN"===n?"zh-CN":"en-US";localStorage.setItem(l.f,t),e({type:l.g,language:t,locale:"zh-CN"==t?u:s})}};t.b=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:d,t=1<arguments.length?arguments[1]:void 0;return t.type!==l.g?e:Object(a.a)(Object(a.a)({},e),t)}},function(e,t,n){"use strict";n(35);var a=n(19),r=n.n(a),a=(n(43),n(24)),o=n.n(a),a=(n(32),n(18)),i=n.n(a),l=n(14),s=n(15),u=n(17),d=n(16),a=(n(26),n(8)),a=n.n(a),c=(n(66),n(41)),c=n.n(c),f=n(0),p=n.n(f),h=(n(663),c.a.Row),m=c.a.Col,c=(0,a.a.config)(((f=function(e){Object(u.a)(n,e);var t=Object(d.a)(n);function n(e){return Object(l.a)(this,n),(e=t.call(this,e)).state={visible:!1,title:"",maintitle:"",content:"",isok:!0,dataId:"",group:""},e}return Object(s.a)(n,[{key:"componentDidMount",value:function(){this.initData()}},{key:"initData",value:function(){var e=this.props.locale;this.setState({title:(void 0===e?{}:e).title})}},{key:"openDialog",value:function(e){this.props.unpushtrace&&(e.title=""),this.setState({visible:!0,maintitle:e.maintitle,title:e.title,content:e.content,isok:e.isok,dataId:e.dataId,group:e.group,message:e.message})}},{key:"closeDialog",value:function(){this.setState({visible:!1})}},{key:"render",value:function(){var e=this.props.locale,e=void 0===e?{}:e,t=p.a.createElement("div",{style:{textAlign:"right"}},p.a.createElement(i.a,{type:"primary",onClick:this.closeDialog.bind(this)},e.determine));return p.a.createElement("div",null,p.a.createElement(r.a,{visible:this.state.visible,footer:t,style:{width:555},onCancel:this.closeDialog.bind(this),onClose:this.closeDialog.bind(this),title:this.state.maintitle||this.state.title},p.a.createElement("div",null,p.a.createElement(h,null,p.a.createElement(m,{span:"4",style:{paddingTop:16}},this.state.isok?p.a.createElement(o.a,{type:"success-filling",style:{color:"green"},size:"xl"}):p.a.createElement(o.a,{type:"delete-filling",style:{color:"red"},size:"xl"})),p.a.createElement(m,{span:"20"},p.a.createElement("div",null,this.state.isok?p.a.createElement("h3",null,this.state.title):p.a.createElement("h3",null,this.state.title," ",e.failure),p.a.createElement("p",null,p.a.createElement("span",{style:{color:"#999",marginRight:5}},"Data ID"),p.a.createElement("span",{style:{color:"#c7254e"}},this.state.dataId)),p.a.createElement("p",null,p.a.createElement("span",{style:{color:"#999",marginRight:5}},"Group"),p.a.createElement("span",{style:{color:"#c7254e"}},this.state.group)),this.state.isok?"":p.a.createElement("p",{style:{color:"red"}},this.state.message)))))))}}]),n}(p.a.Component)).displayName="SuccessDialog",n=f))||n;t.a=c},function(e,t){e.exports={server:"",PAGESIZE:15,TIMERDEFAULT:"5s",TIMEDURINT:2e3,is_preview:!1,projectName:"nacos",defaultLanguage:"zh-cn","en-us":{pageMenu:[{key:"home",text:"HOME",link:"https://nacos.io/en-us/index.html"},{key:"docs",text:"DOCS",link:"https://nacos.io/en-us/docs/quick-start.html"},{key:"blog",text:"BLOG",link:"https://nacos.io/en-us/blog"},{key:"community",text:"COMMUNITY",link:"https://nacos.io/en-us/community"},{key:"enterprise",text:"ENTERPRISE EDITION",link:"https://cn.aliyun.com/product/aliware/mse?spm=nacos-website.topbar.0.0.0"}],disclaimer:{title:"Vision",content:"By providing an easy-to-use service infrastructure such as dynamic service discovery, service configuration, service sharing and management and etc., Nacos help users better construct, deliver and manage their own service platform, reuse and composite business service faster and deliver value of business innovation more quickly so as to win market for users in the era of cloud native and in all cloud environments, such as private, mixed, or public clouds."},documentation:{title:"Documentation",list:[{text:"Overview",link:"/en-us/docs/what-is-nacos.html"},{text:"Quick start",link:"/en-us/docs/quick-start.html"},{text:"Developer guide",link:"/en-us/docs/contributing.html"}]},resources:{title:"Resources",list:[{text:"Community",link:"/en-us/community/index.html"}]},copyright:"@ 2018 The Nacos Authors | An Alibaba Middleware (Aliware) Project"},"zh-cn":{pageMenu:[{key:"home",text:"é¦é¡µ",link:"https://nacos.io/zh-cn/"},{key:"docs",text:"ææ¡£",link:"https://nacos.io/zh-cn/docs/what-is-nacos.html"},{key:"blog",text:"å客",link:"https://nacos.io/zh-cn/blog/index.html"},{key:"community",text:"社åº",link:"https://nacos.io/zh-cn/community/index.html"},{key:"enterprise",text:"Nacosä¼ä¸ç",link:"https://cn.aliyun.com/product/aliware/mse?spm=nacos-website.topbar.0.0.0"}],disclaimer:{title:"æ¿æ¯",content:"Nacos éè¿æä¾ç®åæç¨ç卿æå¡åç°ãæå¡é
ç½®ãæå¡å
±äº«ä¸ç®¡ççæå¡åºç¡è®¾æ½ï¼å¸®å©ç¨æ·å¨äºåçæ¶ä»£ï¼å¨ç§æäºãæ··åäºæè
å
¬æäºçææäºç¯å¢ä¸ï¼æ´å¥½çæå»ºã交ä»ã管çèªå·±çå¾®æå¡å¹³å°ï¼æ´å¿«çå¤ç¨åç»åä¸å¡æå¡ï¼æ´å¿«ç交ä»åä¸åæ°çä»·å¼ï¼ä»èä¸ºç¨æ·èµ¢å¾å¸åºã"},documentation:{title:"ææ¡£",list:[{text:"æ¦è§",link:"/zh-cn/docs/what-is-nacos.html"},{text:"å¿«éå¼å§",link:"/zh-cn/docs/quick-start.html"},{text:"å¼åè
æå",link:"/zh-cn/docs/contributing.html"}]},resources:{title:"èµæº",list:[{text:"社åº",link:"/zh-cn/community/index.html"}]},copyright:"@ 2018 The Nacos Authors | An Alibaba Middleware (Aliware) Project"}}},function(e,t,n){var a=n(93);e.exports=function(e){if(a(e))return e;throw TypeError(e+" is not an object!")}},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t,n){"use strict";n(43),n(70),n(537)},function(e,t,n){var i=n(161).default;function l(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(l=function(e){return e?n:t})(e)}e.exports=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==i(e)&&"function"!=typeof e)return{default:e};if((t=l(t))&&t.has(e))return t.get(e);var n,a,r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&((a=o?Object.getOwnPropertyDescriptor(e,n):null)&&(a.get||a.set)?Object.defineProperty(r,n,a):r[n]=e[n]);return r.default=e,t&&t.set(e,r),r},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){function n(e,t){var n,a,r,o,i,l,s,u,d;for(null==t&&(t=""),r="",i=e.length,l=null,o=a=0;o<i;){if("\\"===(n=e.charAt(o)))r+=e.slice(o,+(o+1)+1||9e9),o++;else if("("===n)if(o<i-2)if("(?:"===(u=e.slice(o,+(o+2)+1||9e9)))o+=2,r+=u;else if("(?<"===u)for(a++,o+=2,s="";o+1<i;){if(">"===(d=e.charAt(o+1))){r+="(",o++,0<s.length&&((l=null==l?{}:l)[s]=a);break}s+=d,o++}else r+=n,a++;else r+=n;else r+=n;o++}this.rawRegex=e,this.cleanedRegex=r,this.regex=new RegExp(this.cleanedRegex,"g"+t.replace("g","")),this.mapping=l}n.prototype.regex=null,n.prototype.rawRegex=null,n.prototype.cleanedRegex=null,n.prototype.mapping=null,n.prototype.exec=function(e){var t,n,a,r;if(this.regex.lastIndex=0,null==(n=this.regex.exec(e)))return null;if(null!=this.mapping)for(a in r=this.mapping)t=r[a],n[a]=n[t];return n},n.prototype.test=function(e){return this.regex.lastIndex=0,this.regex.test(e)},n.prototype.replace=function(e,t){return this.regex.lastIndex=0,e.replace(this.regex,t)},n.prototype.replaceAll=function(e,t,n){var a;for(null==n&&(n=0),a=this.regex.lastIndex=0;this.regex.test(e)&&(0===n||a<n);)this.regex.lastIndex=0,e=e.replace(this.regex,t),a++;return[e,a]},e.exports=n},function(e,t,s){var n,a={}.hasOwnProperty;function r(){}n=s(111),r.REGEX_LEFT_TRIM_BY_CHAR={},r.REGEX_RIGHT_TRIM_BY_CHAR={},r.REGEX_SPACES=/\s+/g,r.REGEX_DIGITS=/^\d+$/,r.REGEX_OCTAL=/[^0-7]/gi,r.REGEX_HEXADECIMAL=/[^a-f0-9]/gi,r.PATTERN_DATE=new n("^(?<year>[0-9][0-9][0-9][0-9])-(?<month>[0-9][0-9]?)-(?<day>[0-9][0-9]?)(?:(?:[Tt]|[ \t]+)(?<hour>[0-9][0-9]?):(?<minute>[0-9][0-9]):(?<second>[0-9][0-9])(?:.(?<fraction>[0-9]*))?(?:[ \t]*(?<tz>Z|(?<tz_sign>[-+])(?<tz_hour>[0-9][0-9]?)(?::(?<tz_minute>[0-9][0-9]))?))?)?$","i"),r.LOCAL_TIMEZONE_OFFSET=60*(new Date).getTimezoneOffset()*1e3,r.trim=function(e,t){var n,a;return null==(n=this.REGEX_LEFT_TRIM_BY_CHAR[t=null==t?"\\s":t])&&(this.REGEX_LEFT_TRIM_BY_CHAR[t]=n=new RegExp("^"+t+t+"*")),n.lastIndex=0,null==(a=this.REGEX_RIGHT_TRIM_BY_CHAR[t])&&(this.REGEX_RIGHT_TRIM_BY_CHAR[t]=a=new RegExp(t+""+t+"*$")),a.lastIndex=0,e.replace(n,"").replace(a,"")},r.ltrim=function(e,t){var n;return null==(n=this.REGEX_LEFT_TRIM_BY_CHAR[t=null==t?"\\s":t])&&(this.REGEX_LEFT_TRIM_BY_CHAR[t]=n=new RegExp("^"+t+t+"*")),n.lastIndex=0,e.replace(n,"")},r.rtrim=function(e,t){var n;return null==(n=this.REGEX_RIGHT_TRIM_BY_CHAR[t=null==t?"\\s":t])&&(this.REGEX_RIGHT_TRIM_BY_CHAR[t]=n=new RegExp(t+""+t+"*$")),n.lastIndex=0,e.replace(n,"")},r.isEmpty=function(e){return!e||""===e||"0"===e||e instanceof Array&&0===e.length||this.isEmptyObject(e)},r.isEmptyObject=function(t){var n;return t instanceof Object&&0===function(){var e=[];for(n in t)a.call(t,n)&&e.push(n);return e}().length},r.subStrCount=function(e,t,n,a){var r,o,i,l,s=0;for(e=""+e,t=""+t,null!=n&&(e=e.slice(n)),n=(e=null!=a?e.slice(0,a):e).length,l=t.length,r=o=0,i=n;0<=i?o<i:i<o;r=0<=i?++o:--o)t===e.slice(r,l)&&(s++,r+=l-1);return s},r.isDigits=function(e){return this.REGEX_DIGITS.lastIndex=0,this.REGEX_DIGITS.test(e)},r.octDec=function(e){return this.REGEX_OCTAL.lastIndex=0,parseInt((e+"").replace(this.REGEX_OCTAL,""),8)},r.hexDec=function(e){return this.REGEX_HEXADECIMAL.lastIndex=0,"0x"===((e=this.trim(e))+"").slice(0,2)&&(e=(e+"").slice(2)),parseInt((e+"").replace(this.REGEX_HEXADECIMAL,""),16)},r.utf8chr=function(e){var t=String.fromCharCode;return(e%=2097152)<128?t(e):e<2048?t(192|e>>6)+t(128|63&e):e<65536?t(224|e>>12)+t(128|e>>6&63)+t(128|63&e):t(240|e>>18)+t(128|e>>12&63)+t(128|e>>6&63)+t(128|63&e)},r.parseBoolean=function(e,t){var n;return null==t&&(t=!0),"string"==typeof e?(n=e.toLowerCase(),!(!t&&"no"===n)&&("0"!==n&&("false"!==n&&""!==n))):!!e},r.isNumeric=function(e){return this.REGEX_SPACES.lastIndex=0,"number"==typeof e||"string"==typeof e&&!isNaN(e)&&""!==e.replace(this.REGEX_SPACES,"")},r.stringToDate=function(e){var t,n,a,r,o,i,l,s,u;if(null==e||!e.length)return null;if(!(e=this.PATTERN_DATE.exec(e)))return null;if(u=parseInt(e.year,10),i=parseInt(e.month,10)-1,n=parseInt(e.day,10),null==e.hour)return t=new Date(Date.UTC(u,i,n));if(r=parseInt(e.hour,10),o=parseInt(e.minute,10),l=parseInt(e.second,10),null!=e.fraction){for(a=e.fraction.slice(0,3);a.length<3;)a+="0";a=parseInt(a,10)}else a=0;return null!=e.tz&&(s=6e4*(60*parseInt(e.tz_hour,10)+(null!=e.tz_minute?parseInt(e.tz_minute,10):0)),"-"===e.tz_sign&&(s*=-1)),t=new Date(Date.UTC(u,i,n,r,o,l,a)),s&&t.setTime(t.getTime()-s),t},r.strRepeat=function(e,t){for(var n="",a=0;a<t;)n+=e,a++;return n},r.getStringFromFile=function(e,n){var t,a,r,o,i,l;if(null==n&&(n=null),l=null,"undefined"!=typeof window&&null!==window)if(window.XMLHttpRequest)l=new XMLHttpRequest;else if(window.ActiveXObject)for(a=0,r=(i=["Msxml2.XMLHTTP.6.0","Msxml2.XMLHTTP.3.0","Msxml2.XMLHTTP","Microsoft.XMLHTTP"]).length;a<r;a++){o=i[a];try{l=new ActiveXObject(o)}catch(e){}}return null!=l?null!=n?(l.onreadystatechange=function(){if(4===l.readyState)return 200===l.status||0===l.status?n(l.responseText):n(null)},l.open("GET",e,!0),l.send(null)):(l.open("GET",e,!1),l.send(null),200===l.status||0===l.status?l.responseText:null):(t=s(666),null!=n?t.readFile(e,function(e,t){return n(e?null:String(t))}):null!=(t=t.readFileSync(e))?String(t):null)},e.exports=r},function(e,t,n){"use strict";t.__esModule=!0;var a=r(n(8)),n=r(n(613));function r(e){return e&&e.__esModule?e:{default:e}}t.default=a.default.config(n.default,{transform:function(e,t){return"triggerType"in e&&-1<(Array.isArray(e.triggerType)?[].concat(e.triggerType):[e.triggerType]).indexOf("focus")&&t("triggerType[focus]","triggerType[hover, click]","Balloon"),e}}),e.exports=t.default},function(e,t,n){"use strict";function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n<t;n++)a[n]=e[n];return a}n.d(t,"a",function(){return a})},function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,a={},r=Object.keys(e),o=0;o<r.length;o++)n=r[o],0<=t.indexOf(n)||(a[n]=e[n]);return a},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,n){"use strict";n.d(t,"b",function(){return l}),n.d(t,"c",function(){return s});var a=n(21),r=n(34),o=n(28),i={configurations:[]},l=function(e){return function(t){return r.a.get("v1/cs/configs",{params:e}).then(function(e){return t({type:o.a,data:e})})}},s=function(e){return function(t){return r.a.get("v2/cs/config/searchDetail",{params:e}).then(function(e){return t({type:o.a,data:e})})}};t.a=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:i,t=1<arguments.length?arguments[1]:void 0;return t.type!==o.a?e:Object(a.a)(Object(a.a)({},e),{},{configurations:t.data})}},function(e,t,n){"use strict";t.__esModule=!0;var a=r(n(727)),n=r(n(406));function r(e){return e&&e.__esModule?e:{default:e}}a.default.Panel=n.default,t.default=a.default,e.exports=t.default},function(e,t,n){"use strict";n.d(t,"b",function(){return l}),n.d(t,"c",function(){return s});var a=n(21),r=n(34),o=n(28),i={subscribers:{}},l=function(e){return function(t){return r.a.get("v1/ns/service/subscribers",{params:e}).then(function(e){t({type:o.d,data:e})})}},s=function(){return function(e){return e({type:o.j})}};t.a=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:i,t=1<arguments.length?arguments[1]:void 0;switch(t.type){case o.d:return Object(a.a)(Object(a.a)({},e),t.data);case o.j:return Object(a.a)(Object(a.a)({},e),{},{subscribers:{}});default:return e}}},function(e,t,n){"use strict";function o(t,e){var n,a=Object.keys(t);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(t),e&&(n=n.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),a.push.apply(a,n)),a}function i(a){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?o(Object(r),!0).forEach(function(e){var t,n;t=a,n=r[e=e],e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n}):Object.getOwnPropertyDescriptors?Object.defineProperties(a,Object.getOwnPropertyDescriptors(r)):o(Object(r)).forEach(function(e){Object.defineProperty(a,e,Object.getOwnPropertyDescriptor(r,e))})}return a}function f(e){return"Minified Redux error #"+e+"; visit https://redux.js.org/Errors?code="+e+" for the full message or use the non-minified dev environment for full errors. "}n.d(t,"a",function(){return s}),n.d(t,"b",function(){return r}),n.d(t,"c",function(){return l}),n.d(t,"d",function(){return g});function a(){return Math.random().toString(36).substring(7).split("").join(".")}var p="function"==typeof Symbol&&Symbol.observable||"@@observable",h={INIT:"@@redux/INIT"+a(),REPLACE:"@@redux/REPLACE"+a(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+a()}};function m(e){if("object"==typeof e&&null!==e){for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}}function g(e,t,n){if("function"==typeof t&&"function"==typeof n||"function"==typeof n&&"function"==typeof arguments[3])throw new Error(f(0));if("function"==typeof t&&void 0===n&&(n=t,t=void 0),void 0!==n){if("function"!=typeof n)throw new Error(f(1));return n(g)(e,t)}if("function"!=typeof e)throw new Error(f(2));var a=e,r=t,o=[],i=o,l=!1;function s(){i===o&&(i=o.slice())}function u(){if(l)throw new Error(f(3));return r}function d(t){if("function"!=typeof t)throw new Error(f(4));if(l)throw new Error(f(5));var n=!0;return s(),i.push(t),function(){if(n){if(l)throw new Error(f(6));n=!1,s();var e=i.indexOf(t);i.splice(e,1),o=null}}}function c(e){if(!m(e))throw new Error(f(7));if(void 0===e.type)throw new Error(f(8));if(l)throw new Error(f(9));try{l=!0,r=a(r,e)}finally{l=!1}for(var t=o=i,n=0;n<t.length;n++)(0,t[n])();return e}return c({type:h.INIT}),(n={dispatch:c,subscribe:d,getState:u,replaceReducer:function(e){if("function"!=typeof e)throw new Error(f(10));a=e,c({type:h.REPLACE})}})[p]=function(){var n=d,e={subscribe:function(e){if("object"!=typeof e||null===e)throw new Error(f(11));function t(){e.next&&e.next(u())}return t(),{unsubscribe:n(t)}}};return e[p]=function(){return this},e},n}function r(e){for(var t=Object.keys(e),s={},n=0;n<t.length;n++){var a=t[n];"function"==typeof e[a]&&(s[a]=e[a])}var u,r,d=Object.keys(s);try{r=s,Object.keys(r).forEach(function(e){e=r[e];if(void 0===e(void 0,{type:h.INIT}))throw new Error(f(12));if(void 0===e(void 0,{type:h.PROBE_UNKNOWN_ACTION()}))throw new Error(f(13))})}catch(e){u=e}return function(e,t){if(void 0===e&&(e={}),u)throw u;for(var n=!1,a={},r=0;r<d.length;r++){var o=d[r],i=s[o],l=e[o],i=i(l,t);if(void 0===i)throw t&&t.type,new Error(f(14));a[o]=i,n=n||i!==l}return(n=n||d.length!==Object.keys(e).length)?a:e}}function l(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return 0===t.length?function(e){return e}:1===t.length?t[0]:t.reduce(function(e,t){return function(){return e(t.apply(void 0,arguments))}})}function s(){for(var e=arguments.length,o=new Array(e),t=0;t<e;t++)o[t]=arguments[t];return function(r){return function(){var e=r.apply(void 0,arguments),t=function(){throw new Error(f(15))},n={getState:e.getState,dispatch:function(){return t.apply(void 0,arguments)}},a=o.map(function(e){return e(n)}),t=l.apply(void 0,a)(e.dispatch);return i(i({},e),{},{dispatch:t})}}}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,n){var a=n(193),r=n(147);e.exports=Object.keys||function(e){return a(e,r)}},function(e,t){e.exports=!0},function(e,t){var n=0,a=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+a).toString(36))}},function(e,t){t.f={}.propertyIsEnumerable},function(e,t,n){"use strict";t.__esModule=!0,t.default=function(t,e){if(!t)return null;if("string"==typeof t)return document.getElementById(t);if("function"==typeof t)try{t=t(e)}catch(e){t=null}if(!t)return null;try{return(0,a.findDOMNode)(t)}catch(e){return t}};var a=n(23);e.exports=t.default},function(e,t,n){"use strict";n(70),n(536)},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var x=s(n(2)),C=s(n(38)),L=s(n(12)),o=s(n(4)),i=s(n(6)),a=s(n(7)),T=s(n(0)),r=s(n(3)),D=s(n(13)),O=s(n(128)),N=s(n(129)),l=n(11);function s(e){return e&&e.__esModule?e:{default:e}}function u(){}d=T.default.Component,(0,a.default)(c,d),c.prototype.componentDidMount=function(){l.events.on(window,"resize",this.setEmptyDomStyle)},c.prototype.componentDidUpdate=function(){this.setEmptyDomStyle()},c.prototype.componentWillUnmount=function(){l.events.off(window,"resize",this.setEmptyDomStyle)},c.prototype.render=function(){var o=this,e=this.props,i=e.prefix,t=e.className,n=e.children,a=e.component,l=e.colGroup,r=e.loading,s=e.emptyContent,u=e.components,d=e.getCellProps,c=e.primaryKey,f=e.getRowProps,p=e.dataSource,h=e.cellRef,m=e.columns,g=(e.rowRef,e.onRowClick,e.onRowMouseEnter,e.onRowMouseLeave,e.onBodyMouseOver,e.onBodyMouseOut,e.locale),y=e.pure,v=e.expandedIndexSimulate,_=e.tableEl,b=e.rtl,w=e.crossline,e=(e.tableWidth,(0,L.default)(e,["prefix","className","children","component","colGroup","loading","emptyContent","components","getCellProps","primaryKey","getRowProps","dataSource","cellRef","columns","rowRef","onRowClick","onRowMouseEnter","onRowMouseLeave","onBodyMouseOver","onBodyMouseOut","locale","pure","expandedIndexSimulate","tableEl","rtl","crossline","tableWidth"])),M=+(_&&_.clientWidth)-1||"100%",k=u.Row,S=void 0===k?O.default:k,k=u.Cell,E=void 0===k?N.default:k,u=r?T.default.createElement("span",null," "):s||g.empty,k=T.default.createElement("tr",null,T.default.createElement("td",{colSpan:m.length},T.default.createElement("div",{ref:this.getEmptyNode,className:i+"table-empty",style:{position:"sticky",left:0,overflow:"hidden",width:M}},u))),r=("div"===a&&(k=T.default.createElement("table",{role:"table"},T.default.createElement("tbody",null,k))),p.length?k=p.map(function(e,t){var n={},a="object"===(void 0===e?"undefined":(0,C.default)(e))&&"__rowIndex"in e?e.__rowIndex:t,r=(n=(n=v?e.__expanded?{}:f(e,t/2):f(e,a))||{}).className,r=(0,D.default)(((t={first:0===t,last:t===p.length-1})[r]=r,t)),t=e.__expanded?"expanded":"";return T.default.createElement(S,(0,x.default)({key:(e[c]||(0===e[c]?0:a))+t},n,{ref:o.getRowRef.bind(o,t?a+"_expanded":a),colGroup:l,rtl:b,columns:m,primaryKey:c,record:e,rowIndex:a,__rowIndex:a,prefix:i,pure:y,cellRef:h,getCellProps:d,className:r,Cell:E,tableEl:_,onClick:o.onRowClick,locale:g,onMouseEnter:o.onRowMouseEnter,onMouseLeave:o.onRowMouseLeave}))}):this.setEmptyDomStyle(),w?{onMouseOver:this.onBodyMouseOver,onMouseOut:this.onBodyMouseOut}:{});return T.default.createElement(a,(0,x.default)({className:t},e,r),k,n)},a=n=c,n.propTypes={loading:r.default.bool,emptyContent:r.default.any,tableEl:r.default.any,prefix:r.default.string,pure:r.default.bool,components:r.default.object,getCellProps:r.default.func,cellRef:r.default.func,primaryKey:r.default.oneOfType([r.default.symbol,r.default.string]),getRowProps:r.default.func,rowRef:r.default.func,dataSource:r.default.array,children:r.default.any,className:r.default.string,component:r.default.string,colGroup:r.default.object,columns:r.default.array,onRowClick:r.default.func,onRowMouseEnter:r.default.func,onRowMouseLeave:r.default.func,onBodyMouseOver:r.default.func,onBodyMouseOut:r.default.func,locale:r.default.object,crossline:r.default.bool,tableWidth:r.default.number},n.defaultProps={loading:!1,prefix:"next-",components:{},getCellProps:u,cellRef:u,primaryKey:"id",getRowProps:u,rowRef:u,dataSource:[],component:"tbody",columns:[]};var d,r=a;function c(){var e,a;(0,o.default)(this,c);for(var t=arguments.length,n=Array(t),r=0;r<t;r++)n[r]=arguments[r];return(e=a=(0,i.default)(this,d.call.apply(d,[this].concat(n)))).getRowRef=function(e,t){a.props.rowRef(e,t)},a.onRowClick=function(e,t,n){a.props.onRowClick(e,t,n)},a.onRowMouseEnter=function(e,t,n){a.props.onRowMouseEnter(e,t,n)},a.onRowMouseLeave=function(e,t,n){a.props.onRowMouseLeave(e,t,n)},a.onBodyMouseOver=function(e){a.props.onBodyMouseOver(e)},a.onBodyMouseOut=function(e){a.props.onBodyMouseOut(e)},a.getEmptyNode=function(e){a.emptyNode=e},a.setEmptyDomStyle=function(){var e=a.props.tableEl,t=l.dom.getStyle(e,"borderLeftWidth"),e=e&&e.getBoundingClientRect().width;l.dom.setStyle(a.emptyNode,{width:e-t-1||"100%"})},(0,i.default)(a,e)}r.displayName="Body",t.default=r,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var S=u(n(2)),E=u(n(12)),o=u(n(4)),i=u(n(6)),a=u(n(7)),x=u(n(0)),l=n(23),r=u(n(3)),C=u(n(13)),s=n(11),L=n(67);function u(e){return e&&e.__esModule?e:{default:e}}function d(){}c=x.default.Component,(0,a.default)(f,c),f.prototype.shouldComponentUpdate=function(e){return!e.pure||!s.obj.shallowEqual(this.props,e)},f.prototype.onRowHover=function(e,t,n,a){var r=this.props,o=r.onMouseEnter,r=r.onMouseLeave,i=(0,l.findDOMNode)(this);n?(o(e,t,a),i&&s.dom.addClass(i,"hovered")):(r(e,t,a),i&&s.dom.removeClass(i,"hovered"))},f.prototype.renderCells=function(d,c){var f=this,e=this.props,p=e.Cell,h=e.columns,m=e.getCellProps,g=e.cellRef,y=e.prefix,v=e.primaryKey,_=e.__rowIndex,b=e.pure,w=e.locale,M=e.rtl,k=(c=void 0!==c?c:this.props.rowIndex,this.context.lockType);return h.map(function(e,t){var n,a=e.dataIndex,r=e.align,o=(e.alignHeader,e.width),i=(e.colSpan,e.style,e.cellStyle),l=e.__colIndex,s=(0,E.default)(e,["dataIndex","align","alignHeader","width","colSpan","style","cellStyle","__colIndex"]),u="__colIndex"in e?l:t,l=(0,L.fetchDataByPath)(d,a),t=m(c,u,a,d)||{};if(f.context.notRenderCellIndex){a=f.context.notRenderCellIndex.map(function(e){return e.toString()}).indexOf([c,u].toString());if(-1<a)return f.context.notRenderCellIndex.splice(a,1),null}(t.colSpan&&1<t.colSpan||t.rowSpan&&1<t.rowSpan)&&f._getNotRenderCellIndex(u,c,t.colSpan||1,t.rowSpan||1);a=t.className,e=(0,C.default)(((n={first:"right"!==k&&0===u,last:"left"!==k&&(u===h.length-1||u+t.colSpan===h.length)})[e.className]=e.className,n[a]=a,n)),a=(0,S.default)({},t.style,i);return x.default.createElement(p,(0,S.default)({key:_+"-"+u},s,t,{style:a,"data-next-table-col":u,"data-next-table-row":c,ref:function(e){return g(_,u,e)},prefix:y,pure:b,primaryKey:v,record:d,className:e,value:l,colIndex:u,rowIndex:c,align:r,locale:w,rtl:M,width:o}))})},f.prototype._getNotRenderCellIndex=function(e,t,n,a){for(var r=n,o=a,i=[],l=0;l<r;l++)for(var s=0;s<o;s++)i.push([t+s,e+l]);[].push.apply(this.context.notRenderCellIndex,i)},f.prototype.render=function(){var e,t=this.props,n=t.prefix,a=t.className,r=(t.onClick,t.onMouseEnter,t.onMouseLeave,t.columns,t.Cell,t.getCellProps,t.rowIndex,t.record),o=(t.__rowIndex,t.children),i=(t.primaryKey,t.cellRef,t.colGroup,t.pure,t.locale,t.expandedIndexSimulate,t.tableEl,t.rtl,t.wrapper),t=(0,E.default)(t,["prefix","className","onClick","onMouseEnter","onMouseLeave","columns","Cell","getCellProps","rowIndex","record","__rowIndex","children","primaryKey","cellRef","colGroup","pure","locale","expandedIndexSimulate","tableEl","rtl","wrapper"]),n=(0,C.default)(((e={})[n+"table-row"]=!0,e[a]=a,e));return i(x.default.createElement("tr",(0,S.default)({className:n,role:"row"},t,{onClick:this.onClick,onMouseEnter:this.onMouseEnter,onMouseLeave:this.onMouseLeave}),this.renderCells(r),o))},a=n=f,n.propTypes={prefix:r.default.string,pure:r.default.bool,primaryKey:r.default.oneOfType([r.default.symbol,r.default.string]),className:r.default.string,columns:r.default.array,record:r.default.any,Cell:r.default.func,rowIndex:r.default.number,getCellProps:r.default.func,onClick:r.default.func,onMouseEnter:r.default.func,onMouseLeave:r.default.func,children:r.default.any,cellRef:r.default.func,colGroup:r.default.object,locale:r.default.object,wrapper:r.default.func},n.defaultProps={prefix:"next-",primaryKey:"id",columns:[],record:{},getCellProps:d,onClick:d,onMouseEnter:d,onMouseLeave:d,cellRef:d,colGroup:{},wrapper:function(e){return e}},n.contextTypes={notRenderCellIndex:r.default.array,lockType:r.default.oneOf(["left","right"])};var c,n=a;function f(){var e,r;(0,o.default)(this,f);for(var t=arguments.length,n=Array(t),a=0;a<t;a++)n[a]=arguments[a];return(e=r=(0,i.default)(this,c.call.apply(c,[this].concat(n)))).onClick=function(e){var t=r.props,n=t.record,t=t.rowIndex;r.props.onClick(n,t,e)},r.onMouseEnter=function(e){var t=r.props,n=t.record,a=t.rowIndex,t=t.__rowIndex;r.onRowHover(n,t||a,!0,e)},r.onMouseLeave=function(e){var t=r.props,n=t.record,a=t.rowIndex,t=t.__rowIndex;r.onRowHover(n,t||a,!1,e)},(0,i.default)(r,e)}n.displayName="Row",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var _=l(n(2)),b=l(n(12)),a=l(n(4)),r=l(n(6)),o=l(n(7)),w=l(n(0)),i=l(n(3)),M=l(n(13)),k=n(11);function l(e){return e&&e.__esModule?e:{default:e}}s=w.default.Component,(0,o.default)(u,s),u.prototype.shouldComponentUpdate=function(e){return!e.pure||!k.obj.shallowEqual(this.props,e)},u.prototype.render=function(){var e=this.props,t=e.prefix,n=e.className,a=e.cell,r=e.value,o=(e.resizable,e.asyncResizable,e.colIndex,e.rowIndex),i=e.__colIndex,l=e.record,s=e.context,u=e.align,d=e.style,d=void 0===d?{}:d,c=e.component,f=e.children,p=(e.title,e.width,e.innerStyle),h=(e.primaryKey,e.__normalized,e.filterMode,e.filterMenuProps,e.filterProps,e.filters,e.sortable,e.sortDirections,e.lock,e.pure,e.locale,e.expandedIndexSimulate,e.rtl),m=e.isIconLeft,g=(e.type,e.htmlTitle),y=e.wordBreak,e=(0,b.default)(e,["prefix","className","cell","value","resizable","asyncResizable","colIndex","rowIndex","__colIndex","record","context","align","style","component","children","title","width","innerStyle","primaryKey","__normalized","filterMode","filterMenuProps","filterProps","filters","sortable","sortDirections","lock","pure","locale","expandedIndexSimulate","rtl","isIconLeft","type","htmlTitle","wordBreak"]),d=(0,_.default)({},d),v={value:r,index:o,record:l,context:s},r=(w.default.isValidElement(a)?a=w.default.cloneElement(a,v):"function"==typeof a&&(a=a(r,o,l,s)),u&&(d.textAlign=u,h&&(d.textAlign="left"===u?"right":"right"===u?"left":u)),(0,M.default)(((v={})[t+"table-cell"]=!0,v[t+"table-word-break-"+y]=!!y,v[n]=n,v)));return w.default.createElement(c,(0,_.default)({},(0,k.pickAttrs)(e),{className:r,style:d,role:"gridcell"}),w.default.createElement("div",{className:t+"table-cell-wrapper",ref:this.props.getCellDomRef,style:p,title:g,"data-next-table-col":i,"data-next-table-row":o},m?f:a,m?a:f))},o=n=u,n.propTypes={prefix:i.default.string,pure:i.default.bool,primaryKey:i.default.oneOfType([i.default.symbol,i.default.string]),className:i.default.string,record:i.default.any,value:i.default.any,isIconLeft:i.default.bool,colIndex:i.default.number,rowIndex:i.default.number,__colIndex:i.default.oneOfType([i.default.number,i.default.string]),title:i.default.any,width:i.default.oneOfType([i.default.number,i.default.string]),context:i.default.any,cell:i.default.oneOfType([i.default.element,i.default.node,i.default.func]),align:i.default.oneOf(["left","center","right"]),component:i.default.oneOf(["td","th","div"]),children:i.default.any,style:i.default.object,innerStyle:i.default.object,filterMode:i.default.oneOf(["single","multiple"]),filterMenuProps:i.default.object,filterProps:i.default.object,filters:i.default.array,sortable:i.default.bool,sortDirections:i.default.arrayOf(i.default.oneOf(["desc","asc","default"])),lock:i.default.any,type:i.default.oneOf(["header","body"]),resizable:i.default.bool,asyncResizable:i.default.bool,__normalized:i.default.bool},n.defaultProps={component:"td",type:"body",isIconLeft:!1,cell:function(e){return e},prefix:"next-"};var s,i=o;function u(){return(0,a.default)(this,u),(0,r.default)(this,s.apply(this,arguments))}i.displayName="Cell",t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var l=f(n(2)),s=f(n(12)),a=f(n(4)),r=f(n(6)),o=f(n(7)),u=f(n(0)),i=n(23),d=f(n(3)),c=f(n(385));function f(e){return e&&e.__esModule?e:{default:e}}p=u.default.Component,(0,o.default)(h,p),h.prototype.componentDidMount=function(){this.context.getNode("header",(0,i.findDOMNode)(this))},h.prototype.render=function(){var e=this.props,t=e.prefix,n=e.className,a=e.colGroup,r=e.tableWidth,e=(0,s.default)(e,["prefix","className","colGroup","tableWidth"]),o=this.context,i=o.onFixedScrollSync,o=o.lockType;return u.default.createElement("div",{className:n,onScroll:i},u.default.createElement("div",{className:t+"table-header-inner",style:{overflow:"unset"}},u.default.createElement("table",{style:{width:r}},a,u.default.createElement(c.default,(0,l.default)({},e,{prefix:t})))),!o&&u.default.createElement("div",{className:t+"table-header-fixer",style:{position:"absolute",right:0}}))},o=n=h,n.propTypes={children:d.default.any,prefix:d.default.string,className:d.default.string,colGroup:d.default.any,tableWidth:d.default.number},n.contextTypes={getNode:d.default.func,onFixedScrollSync:d.default.func,lockType:d.default.oneOf(["left","right"])};var p,n=o;function h(){return(0,a.default)(this,h),(0,r.default)(this,p.apply(this,arguments))}n.displayName="FixedHeader",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=l(n(4)),r=l(n(6)),o=l(n(7)),i=l(n(0)),n=l(n(3));function l(e){return e&&e.__esModule?e:{default:e}}s=i.default.Component,(0,o.default)(u,s),u.prototype.render=function(){var e=this.props,t=e.children,n=e.wrapperContent,e=e.prefix;return i.default.createElement("div",{className:e+"table-inner"},t,n)},u.propTypes={children:n.default.any,prefix:n.default.string,colGroup:n.default.any,wrapperContent:n.default.any};var s,o=u;function u(){return(0,a.default)(this,u),(0,r.default)(this,s.apply(this,arguments))}o.displayName="FixedWrapper",t.default=o,e.exports=t.default},function(e,t,n){"use strict";n(43),n(75),n(80),n(683)},function(e,L,t){"use strict";t.r(L),function(e){var a="undefined"!=typeof Map?Map:(Object.defineProperty(t.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),t.prototype.get=function(e){e=r(this.__entries__,e),e=this.__entries__[e];return e&&e[1]},t.prototype.set=function(e,t){var n=r(this.__entries__,e);~n?this.__entries__[n][1]=t:this.__entries__.push([e,t])},t.prototype.delete=function(e){var t=this.__entries__,e=r(t,e);~e&&t.splice(e,1)},t.prototype.has=function(e){return!!~r(this.__entries__,e)},t.prototype.clear=function(){this.__entries__.splice(0)},t.prototype.forEach=function(e,t){void 0===t&&(t=null);for(var n=0,a=this.__entries__;n<a.length;n++){var r=a[n];e.call(t,r[1],r[0])}},t);function r(e,n){var a=-1;return e.some(function(e,t){return e[0]===n&&(a=t,!0)}),a}function t(){this.__entries__=[]}var n="undefined"!=typeof window&&"undefined"!=typeof document&&window.document===document,o=void 0!==e&&e.Math===Math?e:"undefined"!=typeof self&&self.Math===Math?self:"undefined"!=typeof window&&window.Math===Math?window:Function("return this")(),s="function"==typeof requestAnimationFrame?requestAnimationFrame.bind(o):function(e){return setTimeout(function(){return e(Date.now())},1e3/60)},u=2;var i=["top","right","bottom","left","width","height","size","weight"],l="undefined"!=typeof MutationObserver,d=(c.prototype.addObserver=function(e){~this.observers_.indexOf(e)||this.observers_.push(e),this.connected_||this.connect_()},c.prototype.removeObserver=function(e){var t=this.observers_,e=t.indexOf(e);~e&&t.splice(e,1),!t.length&&this.connected_&&this.disconnect_()},c.prototype.refresh=function(){this.updateObservers_()&&this.refresh()},c.prototype.updateObservers_=function(){var e=this.observers_.filter(function(e){return e.gatherActive(),e.hasActive()});return e.forEach(function(e){return e.broadcastActive()}),0<e.length},c.prototype.connect_=function(){n&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),l?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},c.prototype.disconnect_=function(){n&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},c.prototype.onTransitionEnd_=function(e){var e=e.propertyName,t=void 0===e?"":e;i.some(function(e){return!!~t.indexOf(e)})&&this.refresh()},c.getInstance=function(){return this.instance_||(this.instance_=new c),this.instance_},c.instance_=null,c);function c(){function e(){o&&(o=!1,a()),i&&n()}function t(){s(e)}function n(){var e=Date.now();if(o){if(e-l<u)return;i=!0}else i=!(o=!0),setTimeout(t,r);l=e}var a,r,o,i,l;this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=(a=this.refresh.bind(this),i=o=!(r=20),l=0,n)}var f=function(e,t){for(var n=0,a=Object.keys(t);n<a.length;n++){var r=a[n];Object.defineProperty(e,r,{value:t[r],enumerable:!1,writable:!1,configurable:!0})}return e},p=function(e){return e&&e.ownerDocument&&e.ownerDocument.defaultView||o},h=b(0,0,0,0);function m(e){return parseFloat(e)||0}function g(n){for(var e=[],t=1;t<arguments.length;t++)e[t-1]=arguments[t];return e.reduce(function(e,t){return e+m(n["border-"+t+"-width"])},0)}function y(e){var t=e.clientWidth,n=e.clientHeight;if(!t&&!n)return h;var a=p(e).getComputedStyle(e),r=function(e){for(var t={},n=0,a=["top","right","bottom","left"];n<a.length;n++){var r=a[n],o=e["padding-"+r];t[r]=m(o)}return t}(a),o=r.left+r.right,i=r.top+r.bottom,l=m(a.width),s=m(a.height);return"border-box"===a.boxSizing&&(Math.round(l+o)!==t&&(l-=g(a,"left","right")+o),Math.round(s+i)!==n&&(s-=g(a,"top","bottom")+i)),e!==p(e).document.documentElement&&(a=Math.round(l+o)-t,e=Math.round(s+i)-n,1!==Math.abs(a)&&(l-=a),1!==Math.abs(e)&&(s-=e)),b(r.left,r.top,l,s)}var v="undefined"!=typeof SVGGraphicsElement?function(e){return e instanceof p(e).SVGGraphicsElement}:function(e){return e instanceof p(e).SVGElement&&"function"==typeof e.getBBox};function _(e){return n?v(e)?b(0,0,(t=(t=e).getBBox()).width,t.height):y(e):h;var t}function b(e,t,n,a){return{x:e,y:t,width:n,height:a}}M.prototype.isActive=function(){var e=_(this.target);return(this.contentRect_=e).width!==this.broadcastWidth||e.height!==this.broadcastHeight},M.prototype.broadcastRect=function(){var e=this.contentRect_;return this.broadcastWidth=e.width,this.broadcastHeight=e.height,e};var w=M;function M(e){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=b(0,0,0,0),this.target=e}var k=function(e,t){n=(t=t).x,a=t.y,o=t.width,t=t.height,r="undefined"!=typeof DOMRectReadOnly?DOMRectReadOnly:Object,r=Object.create(r.prototype),f(r,{x:n,y:a,width:o,height:t,top:a,right:n+o,bottom:t+a,left:n});var n,a,r,o=r;f(this,{target:e,contentRect:o})},S=(E.prototype.observe=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof p(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var t=this.observations_;t.has(e)||(t.set(e,new w(e)),this.controller_.addObserver(this),this.controller_.refresh())}},E.prototype.unobserve=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof p(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var t=this.observations_;t.has(e)&&(t.delete(e),t.size||this.controller_.removeObserver(this))}},E.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},E.prototype.gatherActive=function(){var t=this;this.clearActive(),this.observations_.forEach(function(e){e.isActive()&&t.activeObservations_.push(e)})},E.prototype.broadcastActive=function(){var e,t;this.hasActive()&&(e=this.callbackCtx_,t=this.activeObservations_.map(function(e){return new k(e.target,e.broadcastRect())}),this.callback_.call(e,t,e),this.clearActive())},E.prototype.clearActive=function(){this.activeObservations_.splice(0)},E.prototype.hasActive=function(){return 0<this.activeObservations_.length},E);function E(e,t,n){if(this.activeObservations_=[],this.observations_=new a,"function"!=typeof e)throw new TypeError("The callback provided as parameter 1 is not a function.");this.callback_=e,this.controller_=t,this.callbackCtx_=n}var x=new("undefined"!=typeof WeakMap?WeakMap:a),C=function e(t){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var n=d.getInstance(),t=new S(t,n,this);x.set(this,t)},e=(["observe","unobserve","disconnect"].forEach(function(t){C.prototype[t]=function(){var e;return(e=x.get(this))[t].apply(e,arguments)}}),void 0!==o.ResizeObserver?o.ResizeObserver:C);L.default=e}.call(this,t(351))},function(e,t,n){"use strict";n.d(t,"a",function(){return r});var a=n(114);function r(e,t){if(e){if("string"==typeof e)return Object(a.a)(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Object(a.a)(e,t):void 0}}},function(e,t,n){"use strict";n(158);var a=n(113),f=n.n(a),a=(n(80),n(50)),p=n.n(a),i=n(31),l=n(14),s=n(15),u=n(17),d=n(16),a=(n(26),n(8)),a=n.n(a),r=n(21),o=n(0),h=n.n(o),o=n(40),c=n(37),m=n(106),g=n.n(m),m=n(104),y=n(136),v=n(45),o=(n(611),n=Object(c.b)(function(e){return Object(r.a)({},e.locale)},{changeLanguage:m.a}),c=a.a.config,Object(o.g)(a=n(a=c(((m=function(e){Object(u.a)(o,e);var r=Object(d.a)(o);function o(){var n;Object(l.a)(this,o);for(var e=arguments.length,t=new Array(e),a=0;a<e;a++)t[a]=arguments[a];return(n=r.call.apply(r,[this].concat(t))).state={passwordResetUser:""},n.switchLang=function(){var e=n.props,t=e.language;(0,e.changeLanguage)("en-US"===(void 0===t?"en-US":t)?"zh-CN":"en-US")},n.logout=function(){window.localStorage.clear(),n.props.history.push("/login")},n.changePassword=function(){n.setState({passwordResetUser:n.getUsername(),passwordResetUserVisible:!0})},n.getUsername=function(){var e=window.localStorage.getItem("token");if(e){e=e.split("."),e=Object(i.a)(e,2)[1],e=(void 0===e?"":e).replace("-","+").replace("_","/");try{return JSON.parse(decodeURIComponent(escape(window.atob(e)))).sub}catch(e){delete localStorage.token,location.reload()}}return""},n.indexAction=function(){n.props.history.push("/")},n}return Object(s.a)(o,[{key:"render",value:function(){var e=this,t=this.props,n=t.locale,n=void 0===n?{}:n,a=t.language,a=void 0===a?"en-us":a,t=t.location.pathname,r=n.home,o=n.docs,i=n.blog,l=n.community,s=n.enterprise,u=n.languageSwitchButton,d=this.state,c=d.passwordResetUser,c=void 0===c?"":c,d=d.passwordResetUserVisible,d=void 0!==d&&d,a="https://nacos.io/".concat(a.toLocaleLowerCase(),"/"),r=[{id:1,title:r,link:a},{id:2,title:o,link:"".concat(a,"docs/what-is-nacos.html")},{id:3,title:i,link:"".concat(a,"blog/index.html")},{id:4,title:l,link:"".concat(a,"community/index.html")},{id:5,title:s,link:"https://cn.aliyun.com/product/aliware/mse?spm=nacos-website.topbar.0.0.0"}];return h.a.createElement(h.a.Fragment,null,h.a.createElement("header",{className:"header-container header-container-primary"},h.a.createElement("div",{className:"header-body"},h.a.createElement("a",{href:"#",onClick:this.indexAction,rel:"noopener noreferrer"},h.a.createElement("img",{src:"img/logo-2000-390.svg",className:"logo",alt:g.a.name,title:g.a.name})),"/login"!==t&&h.a.createElement(f.a,{trigger:h.a.createElement("div",{className:"logout"},this.getUsername())},h.a.createElement(p.a,null,h.a.createElement(p.a.Item,{onClick:this.logout},n.logout),h.a.createElement(p.a.Item,{onClick:this.changePassword},n.changePassword))),h.a.createElement("span",{className:"language-switch language-switch-primary",onClick:this.switchLang},u),h.a.createElement("div",{className:"header-menu header-menu-open"},h.a.createElement("ul",null,r.map(function(e){return h.a.createElement("li",{key:e.id,className:"menu-item menu-item-primary"},h.a.createElement("a",{href:e.link,target:"_blank",rel:"noopener noreferrer"},e.title))}))))),h.a.createElement(y.a,{visible:d,username:c,onOk:function(e){return Object(v.k)(e).then(function(e){return e})},onCancel:function(){return e.setState({passwordResetUser:void 0,passwordResetUserVisible:!1})}}))}}]),o}(h.a.Component)).displayName="Header",a=m))||a)||a)||a);t.a=o},function(e,t,n){"use strict";n(35);var a=n(19),l=n.n(a),a=(n(36),n(10)),s=n.n(a),i=n(61),u=n(31),a=(n(49),n(27)),d=n.n(a),c=n(14),f=n(15),p=n(22),h=n(17),m=n(16),a=(n(26),n(8)),a=n.n(a),r=(n(39),n(5)),g=n.n(r),r=n(0),y=n.n(r),v=(n(159),g.a.Item),_={labelCol:{fixedSpan:4},wrapperCol:{span:19}},a=(0,a.a.config)(((r=function(e){Object(h.a)(o,e);var r=Object(m.a)(o);function o(){var e;Object(c.a)(this,o);for(var t=arguments.length,n=new Array(t),a=0;a<t;a++)n[a]=arguments[a];return(e=r.call.apply(r,[this].concat(n))).field=new d.a(Object(p.a)(e)),e}return Object(f.a)(o,[{key:"check",value:function(){var n=this,e=this.props.locale,a={password:e.passwordError,rePassword:e.rePasswordError},t=Object.keys(a).map(function(e){var t=n.field.getValue(e);return t||n.field.setError(e,a[e]),t});if(2!==t.filter(function(e){return e}).length)return null;var r=["password","rePassword"].map(function(e){return n.field.getValue(e)}),r=Object(u.a)(r,2);return r[0]!==r[1]?(this.field.setError("rePassword",e.rePasswordError2),null):[this.props.username].concat(Object(i.a)(t))}},{key:"render",value:function(){var t=this,e=this.props.locale,n=this.field.getError,a=this.props,r=a.username,o=a.onOk,i=a.onCancel,a=a.visible;return y.a.createElement(y.a.Fragment,null,y.a.createElement(l.a,{title:e.resetPassword,visible:a,onOk:function(){var e=t.check();e&&o(e).then(function(){return i()})},onClose:i,onCancel:i,afterClose:function(){return t.field.reset()}},y.a.createElement(g.a,Object.assign({style:{width:400}},_,{field:this.field}),y.a.createElement(v,{label:e.username,required:!0},y.a.createElement("p",null,r)),y.a.createElement(v,{label:e.password,required:!0,help:n("password")},y.a.createElement(s.a,{name:"password",htmlType:"password",placeholder:e.passwordPlaceholder})),y.a.createElement(v,{label:e.rePassword,required:!0,help:n("rePassword")},y.a.createElement(s.a,{name:"rePassword",htmlType:"password",placeholder:e.rePasswordPlaceholder})))))}}]),o}(y.a.Component)).displayName="PasswordReset",n=r))||n;t.a=a},function(e,t,n){e.exports=n(583)},function(e,t,n){"use strict";var a=n(417);function c(e){for(var t,n=e.length,a=0,r=n,o=!1,i=!1;a<n;){if(("="===(t=e[a])||":"===t)&&!i){r=a+1,o=!0;break}if((" "===t||"\t"===t||"\f"===t)&&!i){r=a+1;break}i="\\"===t&&!i,a++}for(;r<n;){if(" "!==(t=e[r])&&"\t"!==t&&"\f"!==t){if(o||"="!==t&&":"!==t)break;o=!0}r++}return l(e,0,a)&&l(e,r,n)}function l(e,t,n){if(n<=t)return!1;for(var a,r=0;r<e.length;)if("\\"===e[r++]){if(!function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:"";return"abfnrt\\\"'0! #:=u".includes(e)}(a=e[r++]))return!1;if("u"===a){if(null===e.slice(r,r+4).join("").match(/^[a-f0-9]{4}$/i))return!1;r+=4}}return!0}t.a={validateJson:function(e){try{return!!JSON.parse(e)}catch(e){return!1}},validateXml:function(e){try{var t;return"undefined"!=typeof DOMParser?0===((new window.DOMParser).parseFromString(e,"application/xml").getElementsByTagName("parsererror")||{}).length:void 0!==window.ActiveXObject?((t=new window.ActiveXObject("Microsoft.XMLDOM")).async="false",t.loadXML(e),t):void 0}catch(e){return!1}},validateYaml:function(e){try{return a.parse(e)}catch(e){return!1}},validateProperties:function(){for(var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:"",t=!0,n=!1,a=!0,r=!1,o=!1,i=!1,l=!1,s=[],u=0;u<e.length;u++){var d=e[u];if(!i||(i=!1,"\n"!==d)){if(a){if(" "===d||"\t"===d||"\f"===d)continue;if(!o&&("\r"===d||"\n"===d))continue;a=o=!1}if(t&&(t=!1,"#"===d||"!"===d))n=!0;else if("\n"!==d&&"\r"!==d)s.push(d),r="\\"===d&&!r;else if(n||0===s.length)a=!(n=!(t=!0)),s=[];else if(r)s.pop(),o=a=!(r=!1),"\r"===d&&(i=!0);else{if(!c(s))return!1;s=[],a=t=l=!0}}}return 0<s.length&&!n?c(s):l},validate:function(e){var t=e.content,e=e.type,n={json:this.validateJson,xml:this.validateXml,"text/html":this.validateXml,html:this.validateXml,properties:this.validateProperties,yaml:this.validateYaml};return!n[e]||n[e](t)}}},function(e,t,n){"use strict";t.__esModule=!0;var i=s(n(2)),l=s(n(12)),a=s(n(8)),r=s(n(680)),o=s(n(681)),n=s(n(178));function s(e){return e&&e.__esModule?e:{default:e}}r.default.Tooltip=a.default.config(o.default,{transform:function(e,t){var n;return"text"in e&&(t("text","children","Tooltip"),n=(t=e).text,t=(0,l.default)(t,["text"]),e=(0,i.default)({children:n},t)),e}}),r.default.Inner=n.default,t.default=a.default.config(r.default,{transform:function(e,t){var n,a,r,o;return e.alignment&&(t("alignment","alignEdge","Balloon"),n=(o=e).alignment,o=(0,l.default)(o,["alignment"]),e=(0,i.default)({alignEdge:"edge"===n},o)),e.onCloseClick&&(t("onCloseClick",'onVisibleChange(visible, [type = "closeClick"])',"Balloon"),a=(n=e).onCloseClick,r=n.onVisibleChange,o=(0,l.default)(n,["onCloseClick","onVisibleChange"]),e=(0,i.default)({onVisibleChange:function(e,t){"closeClick"===t&&a(),r&&r(e,t)}},o)),e}}),e.exports=t.default},function(e,t,n){"use strict";n(35);var a=n(19),f=n.n(a),a=(n(59),n(29)),p=n.n(a),h=n(21),a=(n(39),n(5)),m=n.n(a),a=(n(36),n(10)),g=n.n(a),a=(n(51),n(25)),l=n.n(a),r=n(14),o=n(15),i=n(22),s=n(17),u=n(16),a=(n(26),n(8)),a=n.n(a),d=n(0),y=n.n(d),c=n(1),v=n(68),_=n(83),a=(0,a.a.config)(((d=function(e){Object(s.a)(n,e);var t=Object(u.a)(n);function n(e){return Object(r.a)(this,n),(e=t.call(this,e)).getFormItemLayout=function(){return{labelCol:{span:6},wrapperCol:{span:14}}},e.state={isCreate:!1,editService:{},editServiceDialogVisible:!1,errors:{name:{},protectThreshold:{}},selectorTypes:[]},e.show=e.show.bind(Object(i.a)(e)),e}return Object(o.a)(n,[{key:"show",value:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},t=e.metadata,t=void 0===t?{}:t,n=e.name;Object.keys(t).length&&(e.metadataText=JSON.stringify(t,null,"\t")),this.setState({editService:e,editServiceDialogVisible:!0,isCreate:!n}),this.getSelectorTypes()}},{key:"hide",value:function(){this.setState({editServiceDialogVisible:!1})}},{key:"validator",value:function(e){var t,n=this.props.locale,n=void 0===n?{}:n,a=Object.assign({},this.state.errors),r={name:n.serviceNameRequired,protectThreshold:n.protectThresholdRequired};for(t in 0===e.protectThreshold&&(e.protectThreshold="0"),e)if(!e[t])return a[t]={validateState:"error",help:r[t]},this.setState({errors:a}),!1;return!0}},{key:"onConfirm",value:function(){var t=this,n=this.state.isCreate,e=Object.assign({},this.state.editService),a=e.name,r=e.protectThreshold,o=e.groupName,i=e.metadataText,i=void 0===i?"":i,e=e.selector;this.validator({name:a,protectThreshold:r})&&(Object(c.b)({method:n?"POST":"PUT",url:"v1/ns/service",data:{serviceName:a,groupName:o||"DEFAULT_GROUP",protectThreshold:r,metadata:i,selector:JSON.stringify(e)},dataType:"text",beforeSend:function(){return t.setState({loading:!0})},success:function(e){"ok"!==e?l.a.error(e):n?t.props.queryServiceList():t.props.getServiceDetail()},error:function(e){return l.a.error(e.responseText||e.statusText)},complete:function(){return t.setState({loading:!1})}}),this.hide())}},{key:"onChangeCluster",value:function(t){var n=this,e=this.state.editService,e=void 0===e?{}:e,a=Object.assign({},this.state.errors);["name","protectThreshold"].forEach(function(e){t[e]&&(a[e]={},n.setState({errors:a}))}),this.setState({editService:Object.assign({},e,t)})}},{key:"getSelectorTypes",value:function(){var t=this;Object(c.b)({method:"GET",url:"v1/ns/service/selector/types",success:function(e){200!==e.code?l.a.error(e.message):t.setState({selectorTypes:e.data})}})}},{key:"render",value:function(){var t=this,e=this.props.locale,e=void 0===e?{}:e,n=this.state,a=n.isCreate,r=n.editService,o=n.editServiceDialogVisible,i=n.errors,n=n.selectorTypes,l=r.name,s=r.protectThreshold,u=r.groupName,d=r.metadataText,r=r.selector,c=void 0===r?{type:"none"}:r,r=this.getFormItemLayout();return y.a.createElement(f.a,{className:"service-detail-edit-dialog",title:a?e.createService:e.updateService,visible:o,onOk:function(){return t.onConfirm()},onCancel:function(){return t.hide()},onClose:function(){return t.hide()}},y.a.createElement(m.a,v.a,y.a.createElement(m.a.Item,Object.assign({required:a},r,{label:"".concat(e.serviceName)},i.name),a?y.a.createElement(g.a,{value:l,onChange:function(e){return t.onChangeCluster({name:e})}}):y.a.createElement("p",null,l)),y.a.createElement(m.a.Item,Object.assign({required:!0},r,{label:"".concat(e.protectThreshold)},i.protectThreshold),y.a.createElement(g.a,{value:s,onChange:function(e){return t.onChangeCluster({protectThreshold:e})}})),y.a.createElement(m.a.Item,Object.assign({},r,{label:"".concat(e.groupName)}),y.a.createElement(g.a,{defaultValue:u,placeholder:"DEFAULT_GROUP",readOnly:!a,onChange:function(e){return t.onChangeCluster({groupName:e})}})),y.a.createElement(m.a.Item,Object.assign({label:"".concat(e.metadata)},r),y.a.createElement(_.a,{language:"json",width:"100%",height:200,value:d,onChange:function(e){return t.onChangeCluster({metadataText:e})}})),y.a.createElement(m.a.Item,Object.assign({label:"".concat(e.type)},r),y.a.createElement(p.a,{className:"full-width",defaultValue:c.type,onChange:function(e){return t.onChangeCluster({selector:Object(h.a)(Object(h.a)({},c),{},{type:e})})}},n.map(function(e){return y.a.createElement(p.a.Option,{value:e},e)}))),"none"!==c.type&&y.a.createElement(m.a.Item,Object.assign({label:"".concat(e.selector)},r),y.a.createElement(g.a.TextArea,{value:c.expression,onChange:function(e){return t.onChangeCluster({selector:Object(h.a)(Object(h.a)({},c),{},{expression:e})})}}))))}}]),n}(y.a.Component)).displayName="EditServiceDialog",n=d))||n;t.a=a},,function(e,t,n){var r=n(93);e.exports=function(e,t){if(!r(e))return e;var n,a;if(t&&"function"==typeof(n=e.toString)&&!r(a=n.call(e))||"function"==typeof(n=e.valueOf)&&!r(a=n.call(e))||!t&&"function"==typeof(n=e.toString)&&!r(a=n.call(e)))return a;throw TypeError("Can't convert object to primitive value")}},function(e,t){e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},function(e,t){var n=Math.ceil,a=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(0<e?a:n)(e)}},function(e,t,n){var a=n(146)("keys"),r=n(123);e.exports=function(e){return a[e]||(a[e]=r(e))}},function(e,t,n){var a=n(77),r=n(76),o="__core-js_shared__",i=r[o]||(r[o]={});(e.exports=function(e,t){return i[e]||(i[e]=void 0!==t?t:{})})("versions",[]).push({version:a.version,mode:n(122)?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,n){var a=n(143);e.exports=function(e){return Object(a(e))}},function(e,t){e.exports={}},function(e,t,n){function a(){}var r=n(107),o=n(473),i=n(147),l=n(145)("IE_PROTO"),s="prototype",u=function(){var e=n(192)("iframe"),t=i.length;for(e.style.display="none",n(474).appendChild(e),e.src="javascript:",(e=e.contentWindow.document).open(),e.write("<script>document.F=Object<\/script>"),e.close(),u=e.F;t--;)delete u[s][i[t]];return u()};e.exports=Object.create||function(e,t){var n;return null!==e?(a[s]=r(e),n=new a,a[s]=null,n[l]=e):n=u(),void 0===t?n:o(n,t)}},function(e,t,n){var a=n(84).f,r=n(85),o=n(95)("toStringTag");e.exports=function(e,t,n){e&&!r(e=n?e:e.prototype,o)&&a(e,o,{configurable:!0,value:t})}},function(e,t,n){t.f=n(95)},function(e,t,n){var a=n(76),r=n(77),o=n(122),i=n(153),l=n(84).f;e.exports=function(e){var t=r.Symbol||(r.Symbol=!o&&a.Symbol||{});"_"==e.charAt(0)||e in t||l(t,e,{value:i.f(e)})}},function(e,t,n){"use strict";t.__esModule=!0;var a=d(n(205)),r=d(n(501)),o=d(n(502)),i=d(n(503)),l=d(n(504)),s=d(n(505)),u=d(n(506));function d(e){return e&&e.__esModule?e:{default:e}}n(507),a.default.extend(s.default),a.default.extend(l.default),a.default.extend(r.default),a.default.extend(o.default),a.default.extend(i.default),a.default.extend(u.default),a.default.locale("zh-cn");n=a.default;n.isSelf=a.default.isDayjs,a.default.localeData(),t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var v=c(n(2)),o=c(n(4)),i=c(n(6)),a=c(n(7)),r=n(0),_=c(r),l=c(n(3)),s=n(30),b=c(n(13)),u=c(n(44)),w=c(n(24)),M=c(n(79)),d=c(n(8)),k=n(11);function c(e){return e&&e.__esModule?e:{default:e}}function f(){}p=r.Component,(0,a.default)(S,p),S.getDerivedStateFromProps=function(e){return"visible"in e?{visible:e.visible}:{}},S.prototype.render=function(){var e,t=this.props,n=t.prefix,a=(t.pure,t.className),r=t.style,o=t.type,i=t.shape,l=t.size,s=t.title,u=t.children,d=(t.defaultVisible,t.visible,t.iconType),c=t.closeable,f=(t.onClose,t.afterClose),p=t.animation,h=t.rtl,t=t.locale,m=(0,v.default)({},k.obj.pickOthers(Object.keys(S.propTypes),this.props)),g=this.state.visible,y=n+"message",o=(0,b.default)(((e={})[y]=!0,e[n+"message-"+o]=o,e[""+n+i]=i,e[""+n+l]=l,e[n+"title-content"]=!!s,e[n+"only-content"]=!s&&!!u,e[a]=a,e)),i=g?_.default.createElement("div",(0,v.default)({role:"alert",style:r},m,{className:o,dir:h?"rtl":void 0}),c?_.default.createElement("a",{role:"button","aria-label":t.closeAriaLabel,className:y+"-close",onClick:this.onClose},_.default.createElement(w.default,{type:"close"})):null,!1!==d?_.default.createElement(w.default,{className:y+"-symbol "+(!d&&y+"-symbol-icon"),type:d}):null,s?_.default.createElement("div",{className:y+"-title"},s):null,u?_.default.createElement("div",{className:y+"-content"},u):null):null;return p?_.default.createElement(M.default.Expand,{animationAppear:!1,afterLeave:f},i):i},r=n=S,n.propTypes={prefix:l.default.string,pure:l.default.bool,className:l.default.string,style:l.default.object,type:l.default.oneOf(["success","warning","error","notice","help","loading"]),shape:l.default.oneOf(["inline","addon","toast"]),size:l.default.oneOf(["medium","large"]),title:l.default.node,children:l.default.node,defaultVisible:l.default.bool,visible:l.default.bool,iconType:l.default.oneOfType([l.default.string,l.default.bool]),closeable:l.default.bool,onClose:l.default.func,afterClose:l.default.func,animation:l.default.bool,locale:l.default.object,rtl:l.default.bool},n.defaultProps={prefix:"next-",pure:!1,type:"success",shape:"inline",size:"medium",defaultVisible:!0,closeable:!1,onClose:f,afterClose:f,animation:!0,locale:u.default.Message};var p,a=r;function S(){var e,t;(0,o.default)(this,S);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,p.call.apply(p,[this].concat(a)))).state={visible:void 0===t.props.visible?t.props.defaultVisible:t.props.visible},t.onClose=function(){"visible"in t.props||t.setState({visible:!1}),t.props.onClose(!1)},(0,i.default)(t,e)}a.displayName="Message",t.default=d.default.config((0,s.polyfill)(a)),e.exports=t.default},function(e,t,n){"use strict";var a=i(n(519)),r=i(n(523)),o=i(n(347)),n=i(n(345));function i(e){return e&&e.__esModule?e:{default:e}}e.exports={Transition:n.default,TransitionGroup:o.default,ReplaceTransition:r.default,CSSTransition:a.default}},function(e,t,n){"use strict";n(75),n(539)},function(e,t,n){},function(e,t,n){n=n(550)();e.exports=n;try{regeneratorRuntime=n}catch(e){"object"==typeof globalThis?globalThis.regeneratorRuntime=n:Function("r","regeneratorRuntime = r")(n)}},function(t,e){function n(e){return t.exports=n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t.exports.__esModule=!0,t.exports.default=t.exports,n(e)}t.exports=n,t.exports.__esModule=!0,t.exports.default=t.exports},function(e,t){function s(e,t,n,a,r,o,i){try{var l=e[o](i),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(a,r)}e.exports=function(l){return function(){var e=this,i=arguments;return new Promise(function(t,n){var a=l.apply(e,i);function r(e){s(a,t,n,r,o,"next",e)}function o(e){s(a,t,n,r,o,"throw",e)}r(void 0)})}},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var u=m(n(2)),a=m(n(4)),r=m(n(6)),o=m(n(7)),i=n(0),d=m(i),l=m(n(3)),c=m(n(13)),s=m(n(18)),f=m(n(24)),p=m(n(44)),h=n(11);function m(e){return e&&e.__esModule?e:{default:e}}function g(){}var y,v=h.func.makeChain,_=h.obj.pickOthers,o=(y=i.Component,(0,o.default)(b,y),b.prototype.componentDidUpdate=function(){var e,t=this.props,n=t.maxHeight,a=t.height,n=void 0===a?n:a,a=t.v2;this.bodyNode&&a&&n&&"auto"!==n&&(t={},e=a=0,a=(a=this.headerNode?this.headerNode.getBoundingClientRect().height:a)+(e=this.footerNode?this.footerNode.getBoundingClientRect().height:e),t.minHeight=a,(e=n)&&"string"==typeof n&&(e.match(/calc|vh/)?(t.maxHeight="calc("+n+" - "+a+"px)",t.overflowY="auto"):e=parseInt(n)),"number"==typeof e&&a<e&&(t.maxHeight=e-a,t.overflowY="auto"),h.dom.setStyle(this.bodyNode,t))},b.prototype.getNode=function(e,t){this[e]=t},b.prototype.renderHeader=function(){var e=this.props,t=e.prefix,e=e.title;return e?(this.titleId=(0,h.guid)("dialog-title-"),d.default.createElement("div",{className:t+"dialog-header",id:this.titleId,ref:this.getNode.bind(this,"headerNode"),role:"heading","aria-level":"1"},e)):null},b.prototype.renderBody=function(){var e,t=this.props,n=t.prefix,a=t.children,t=t.footer;return a?d.default.createElement("div",{className:(0,c.default)(n+"dialog-body",((e={})[n+"dialog-body-no-footer"]=!1===t,e)),ref:this.getNode.bind(this,"bodyNode")},a):null},b.prototype.renderFooter=function(){var e,n=this,t=this.props,a=t.prefix,r=t.footer,o=t.footerAlign,i=t.footerActions,l=t.locale,t=t.height;if(!1===r)return null;o=(0,c.default)(((e={})[a+"dialog-footer"]=!0,e[a+"align-"+o]=!0,e[a+"dialog-footer-fixed-height"]=!!t,e)),t=!0!==r&&r?r:i.map(function(e){var t=n.props[e+"Props"],t=(0,u.default)({},t,{prefix:a,className:(0,c.default)(a+"dialog-btn",t.className),onClick:v(n.props["on"+(e[0].toUpperCase()+e.slice(1))],t.onClick),children:t.children||l[e]});return"ok"===e&&(t.type="primary"),d.default.createElement(s.default,(0,u.default)({key:e},t))});return d.default.createElement("div",{className:o,ref:this.getNode.bind(this,"footerNode")},t)},b.prototype.renderCloseLink=function(){var e=this.props,t=e.prefix,n=e.closeable,a=e.onClose,r=e.locale,e=e.closeIcon;return n?d.default.createElement("a",{role:"button","aria-label":r.close,className:t+"dialog-close",onClick:a},e||d.default.createElement(f.default,{className:t+"dialog-close-icon",type:"close"})):null},b.prototype.render=function(){var e=this.props,t=e.prefix,n=e.className,a=e.closeable,r=e.title,o=e.role,e=e.rtl,i=_(Object.keys(b.propTypes),this.props),t=(0,c.default)(((l={})[t+"dialog"]=!0,l[t+"closeable"]=a,l[n]=!!n,l)),a=this.renderHeader(),n=this.renderBody(),l=this.renderFooter(),s=this.renderCloseLink(),o={role:o,"aria-modal":"true"},r=(r&&(o["aria-labelledby"]=this.titleId),i.style&&i.style.width);return i.style=(0,u.default)({},i.style,h.obj.pickProps(["height","maxHeight","width"],this.props)),r&&(i.style.width=r),d.default.createElement("div",(0,u.default)({},o,{className:t},i,{dir:e?"rtl":void 0}),a,n,l,s)},i=n=b,n.propTypes={prefix:l.default.string,className:l.default.string,title:l.default.node,children:l.default.node,footer:l.default.oneOfType([l.default.bool,l.default.node]),footerAlign:l.default.oneOf(["left","center","right"]),footerActions:l.default.array,onOk:l.default.func,onCancel:l.default.func,okProps:l.default.object,cancelProps:l.default.object,closeable:l.default.bool,onClose:l.default.func,locale:l.default.object,role:l.default.string,rtl:l.default.bool,width:l.default.oneOfType([l.default.number,l.default.string]),height:l.default.oneOfType([l.default.number,l.default.string]),maxHeight:l.default.oneOfType([l.default.number,l.default.string]),v2:l.default.bool,closeIcon:l.default.node,pure:l.default.bool},n.defaultProps={prefix:"next-",footerAlign:"right",footerActions:["ok","cancel"],onOk:g,onCancel:g,okProps:{},cancelProps:{},closeable:!0,onClose:g,locale:p.default.Dialog,role:"dialog"},i);function b(){return(0,a.default)(this,b),(0,r.default)(this,y.apply(this,arguments))}o.displayName="Inner",t.default=o,e.exports=t.default},function(s,e,u){"use strict";!function(e){var r=u(56),o=u(588),a=u(365),t={"Content-Type":"application/x-www-form-urlencoded"};function i(e,t){!r.isUndefined(e)&&r.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var n,l={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:n="undefined"!=typeof XMLHttpRequest||void 0!==e&&"[object process]"===Object.prototype.toString.call(e)?u(366):n,transformRequest:[function(e,t){if(o(t,"Accept"),o(t,"Content-Type"),!(r.isFormData(e)||r.isArrayBuffer(e)||r.isBuffer(e)||r.isStream(e)||r.isFile(e)||r.isBlob(e))){if(r.isArrayBufferView(e))return e.buffer;if(r.isURLSearchParams(e))return i(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString();if(r.isObject(e)||t&&"application/json"===t["Content-Type"]){i(t,"application/json");var t=e,n=void 0,a=void 0;if(r.isString(t))try{return(n||JSON.parse)(t),r.trim(t)}catch(e){if("SyntaxError"!==e.name)throw e}return(a||JSON.stringify)(t)}}return e}],transformResponse:[function(e){var t=this.transitional,n=t&&t.silentJSONParsing,t=t&&t.forcedJSONParsing,n=!n&&"json"===this.responseType;if(n||t&&r.isString(e)&&e.length)try{return JSON.parse(e)}catch(e){if(n){if("SyntaxError"===e.name)throw a(e,this,"E_JSON_PARSE");throw e}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(e){return 200<=e&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};r.forEach(["delete","get","head"],function(e){l.headers[e]={}}),r.forEach(["post","put","patch"],function(e){l.headers[e]=r.merge(t)}),s.exports=l}.call(this,u(354))},function(e,t,n){"use strict";var a,f=SyntaxError,r=Function,p=TypeError,o=function(e){try{return r('"use strict"; return ('+e+").constructor;")()}catch(e){}},h=Object.getOwnPropertyDescriptor;if(h)try{h({},"")}catch(e){h=null}function i(){throw new p}function m(e){var t,n;return"%AsyncFunction%"===e?t=o("async function () {}"):"%GeneratorFunction%"===e?t=o("function* () {}"):"%AsyncGeneratorFunction%"===e?t=o("async function* () {}"):"%AsyncGenerator%"===e?(n=m("%AsyncGeneratorFunction%"))&&(t=n.prototype):"%AsyncIteratorPrototype%"===e&&(n=m("%AsyncGenerator%"))&&(t=u(n.prototype)),y[e]=t}var l=h?function(){try{return i}catch(e){try{return h(arguments,"callee").get}catch(e){return i}}}():i,s=n(602)(),u=Object.getPrototypeOf||function(e){return e.__proto__},g={},d="undefined"==typeof Uint8Array?a:u(Uint8Array),y={"%AggregateError%":"undefined"==typeof AggregateError?a:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?a:ArrayBuffer,"%ArrayIteratorPrototype%":s?u([][Symbol.iterator]()):a,"%AsyncFromSyncIteratorPrototype%":a,"%AsyncFunction%":g,"%AsyncGenerator%":g,"%AsyncGeneratorFunction%":g,"%AsyncIteratorPrototype%":g,"%Atomics%":"undefined"==typeof Atomics?a:Atomics,"%BigInt%":"undefined"==typeof BigInt?a:BigInt,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?a:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":"undefined"==typeof Float32Array?a:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?a:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?a:FinalizationRegistry,"%Function%":r,"%GeneratorFunction%":g,"%Int8Array%":"undefined"==typeof Int8Array?a:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?a:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?a:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":s?u(u([][Symbol.iterator]())):a,"%JSON%":"object"==typeof JSON?JSON:a,"%Map%":"undefined"==typeof Map?a:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&s?u((new Map)[Symbol.iterator]()):a,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?a:Promise,"%Proxy%":"undefined"==typeof Proxy?a:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":"undefined"==typeof Reflect?a:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?a:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&s?u((new Set)[Symbol.iterator]()):a,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?a:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":s?u(""[Symbol.iterator]()):a,"%Symbol%":s?Symbol:a,"%SyntaxError%":f,"%ThrowTypeError%":l,"%TypedArray%":d,"%TypeError%":p,"%Uint8Array%":"undefined"==typeof Uint8Array?a:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?a:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?a:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?a:Uint32Array,"%URIError%":URIError,"%WeakMap%":"undefined"==typeof WeakMap?a:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?a:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?a:WeakSet},v={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},s=n(167),_=n(605),b=s.call(Function.call,Array.prototype.concat),w=s.call(Function.apply,Array.prototype.splice),M=s.call(Function.call,String.prototype.replace),k=s.call(Function.call,String.prototype.slice),S=s.call(Function.call,RegExp.prototype.exec),E=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,x=/\\(\\)?/g;e.exports=function(e,t){if("string"!=typeof e||0===e.length)throw new p("intrinsic name must be a non-empty string");if(1<arguments.length&&"boolean"!=typeof t)throw new p('"allowMissing" argument must be a boolean');if(null===S(/^%?[^%]*%?$/g,e))throw new f("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=function(e){var t=k(e,0,1),n=k(e,-1);if("%"===t&&"%"!==n)throw new f("invalid intrinsic syntax, expected closing `%`");if("%"===n&&"%"!==t)throw new f("invalid intrinsic syntax, expected opening `%`");var r=[];return M(e,E,function(e,t,n,a){r[r.length]=n?M(a,x,"$1"):t||e}),r}(e),a=0<n.length?n[0]:"",r=function(e,t){var n,a=e;if(_(v,a)&&(a="%"+(n=v[a])[0]+"%"),_(y,a)){var r=y[a];if(void 0!==(r=r===g?m(a):r)||t)return{alias:n,name:a,value:r};throw new p("intrinsic "+e+" exists, but is not available. Please file an issue!")}throw new f("intrinsic "+e+" does not exist!")}("%"+a+"%",t),o=(r.name,r.value),i=!1,r=r.alias;r&&(a=r[0],w(n,b([0,1],r)));for(var l=1,s=!0;l<n.length;l+=1){var u=n[l],d=k(u,0,1),c=k(u,-1);if(('"'===d||"'"===d||"`"===d||'"'===c||"'"===c||"`"===c)&&d!==c)throw new f("property names with quotes must have matching quotes");if("constructor"!==u&&s||(i=!0),_(y,d="%"+(a+="."+u)+"%"))o=y[d];else if(null!=o){if(!(u in o)){if(t)return;throw new p("base intrinsic for "+e+" exists, but the property is not available.")}o=h&&l+1>=n.length?(s=!!(c=h(o,u)))&&"get"in c&&!("originalValue"in c.get)?c.get:o[u]:(s=_(o,u),o[u]),s&&!i&&(y[d]=o)}}return o}},function(e,t,n){"use strict";n=n(604);e.exports=Function.prototype.bind||n},function(e,t,n){"use strict";var a=String.prototype.replace,r=/%20/g,o="RFC1738",i="RFC3986";e.exports={default:i,formatters:{RFC1738:function(e){return a.call(e,r,"+")},RFC3986:function(e){return String(e)}},RFC1738:o,RFC3986:i}},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var d=s(n(2)),a=s(n(4)),r=s(n(6)),o=s(n(7)),c=n(0),f=s(c),i=s(n(3)),p=s(n(13)),h=s(n(24)),l=n(11),m=s(n(98));function s(e){return e&&e.__esModule?e:{default:e}}var u,g=l.func.bindCtx,y=l.obj.pickOthers,i=(u=c.Component,(0,o.default)(v,u),v.prototype.getSelected=function(){var e=this.props,t=e._key,n=e.root,e=e.selected,a=n.props.selectMode,n=n.state.selectedKeys;return e||!!a&&-1<n.indexOf(t)},v.prototype.handleSelect=function(e){var t=this.props,n=t._key,a=t.root,t=t.onSelect;t?t(!this.getSelected(),this,e):a.handleSelect(n,!this.getSelected(),this)},v.prototype.handleKeyDown=function(e){e.keyCode!==l.KEYCODE.SPACE||this.props.disabled||this.handleSelect(e),this.props.onKeyDown&&this.props.onKeyDown(e)},v.prototype.handleClick=function(e){this.handleSelect(e),this.props.onClick&&this.props.onClick(e)},v.prototype.renderSelectedIcon=function(e){var t=this.props,n=t.root,a=t.inlineIndent,r=t.needIndent,o=t.hasSelectedIcon,i=t.isSelectIconRight,t=t.type,n=n.props,l=n.prefix,s=n.hasSelectedIcon,u=n.isSelectIconRight,n=n.icons,d=n.select,l=(!(0,c.isValidElement)(n.select)&&n.select&&(d=f.default.createElement("span",null,n.select)),(0,p.default)(((n={})[l+"menu-icon-selected"]=!0,n[l+"menu-symbol-icon-selected"]=!d,n[l+"menu-icon-right"]=("isSelectIconRight"in this.props?i:u)&&"submenu"!==t,n)));return("hasSelectedIcon"in this.props?o:s)&&e?f.default.cloneElement(d||f.default.createElement(h.default,{type:"select"}),{style:r&&0<a?{left:a+"px"}:null,className:l}):null},v.prototype.render=function(){var e=this.props,t=e._key,n=e.root,a=e.className,r=e.disabled,o=e.helper,i=e.children,e=e.needIndent,l=n.props.prefix,s=y(Object.keys(v.propTypes),this.props),u=this.getSelected(),a=(0,d.default)({_key:t,root:n,disabled:r,type:"item",className:(0,p.default)(((t={})[l+"selected"]=u,t[a]=!!a,t)),onKeyDown:this.handleKeyDown,onClick:r?this.props.onClick:this.handleClick,needIndent:e},s),t=("title"in a||"string"!=typeof i||(a.title=i),{});return"selectMode"in n.props&&(t["aria-selected"]=u),f.default.createElement(m.default,a,this.renderSelectedIcon(u),f.default.createElement("span",(0,d.default)({className:l+"menu-item-text"},t),i),o?f.default.createElement("div",{className:l+"menu-item-helper"},o):null)},o=n=v,n.menuChildType="item",n.propTypes={_key:i.default.string,root:i.default.object,selected:i.default.bool,onSelect:i.default.func,inlineIndent:i.default.number,disabled:i.default.bool,helper:i.default.node,children:i.default.node,className:i.default.string,onKeyDown:i.default.func,onClick:i.default.func,needIndent:i.default.bool,hasSelectedIcon:i.default.bool,isSelectIconRight:i.default.bool,icons:i.default.object},n.defaultProps={disabled:!1,needIndent:!0,icons:{}},o);function v(e){(0,a.default)(this,v);e=(0,r.default)(this,u.call(this,e));return g(e,["handleKeyDown","handleClick"]),e}i.displayName="SelectableItem",t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;t.getWidth=function(e){e=e&&"function"==typeof e.getBoundingClientRect&&e.getBoundingClientRect().width;return(e=e&&+e.toFixed(6))||0},t.normalizeToArray=function(e){return e?Array.isArray(e)?e:[e]:[]};var r=t.isSibling=function(e,t){var e=e.split("-").slice(0,-1),n=t.split("-").slice(0,-1);return e.length===n.length&&e.every(function(e,t){return e===n[t]})},a=(t.isAncestor=function(e,t){var n=e.split("-"),e=t.split("-");return n.length>e.length&&e.every(function(e,t){return e===n[t]})},t.isAvailablePos=function(e,t,n){var n=n[t],a=n.type,n=n.disabled;return r(e,t)&&("item"===a&&!n||"submenu"===a)});t.getFirstAvaliablelChildKey=function(t,n){var e=Object.keys(n).find(function(e){return a(t+"-0",e,n)});return e?n[e].key:null},t.getChildSelected=function(e){var t=e.selectMode,n=e.selectedKeys,a=e._k2n,e=e._key;if(!a)return!1;var r=(a[e]&&a[e].pos)+"-";return!!t&&n.some(function(e){return a[e]&&0===a[e].pos.indexOf(r)})}},function(e,t,n){"use strict";n(43),n(32),n(626)},function(e,t,n){var o=n(639),i=Object.prototype.hasOwnProperty;function l(e){return Array.isArray(e)?"array":typeof e}function s(e,t){var n,a=0,r=0;for(n in e)if(i.call(e,n)){if("style"===n){if(!o(e[n],t[n]))return!1}else if("children"!==n&&e[n]!==t[n])return!1;a++}for(n in t)i.call(t,n)&&r++;return a===r&&function e(t,n){var a=l(t);if(a!==l(n))return!1;switch(a){case"array":if(t.length!==n.length)return!1;for(var r=0;r<t.length;r++)if(!e(t[r],n[r]))return!1;return!0;case"object":return t&&n?t.type===n.type&&t.key===n.key&&t.ref===n.ref&&s(t.props,n.props):t===n;default:return t===n}}(e.children,t.children)}e.exports=s},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=l(n(4)),r=l(n(6)),o=l(n(7)),i=l(n(0)),n=l(n(3));function l(e){return e&&e.__esModule?e:{default:e}}s=i.default.Component,(0,o.default)(u,s),u.prototype.render=function(){return null},o=i=u,i.propTypes={dataIndex:n.default.string,cell:n.default.oneOfType([n.default.element,n.default.node,n.default.func]),title:n.default.oneOfType([n.default.element,n.default.node,n.default.func]),htmlTitle:n.default.string,sortable:n.default.bool,sortDirections:n.default.arrayOf(n.default.oneOf(["desc","asc","default"])),width:n.default.oneOfType([n.default.number,n.default.string]),align:n.default.oneOf(["left","center","right"]),alignHeader:n.default.oneOf(["left","center","right"]),filters:n.default.arrayOf(n.default.shape({label:n.default.string,value:n.default.oneOfType([n.default.node,n.default.string])})),filterMode:n.default.oneOf(["single","multiple"]),filterMenuProps:n.default.object,filterProps:n.default.object,lock:n.default.oneOfType([n.default.bool,n.default.string]),resizable:n.default.bool,asyncResizable:n.default.bool,colSpan:n.default.number,wordBreak:n.default.oneOf(["all","word"])},i.contextTypes={parent:n.default.any},i.defaultProps={cell:function(e){return e},filterMode:"multiple",filterMenuProps:{subMenuSelectable:!1},filterProps:{},resizable:!1,asyncResizable:!1},i._typeMark="column";var s,n=o;function u(){return(0,a.default)(this,u),(0,r.default)(this,s.apply(this,arguments))}n.displayName="Column",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=d(n(2)),r=d(n(4)),i=d(n(6)),o=d(n(7)),l=d(n(0)),s=d(n(3)),u=d(n(128));function d(e){return e&&e.__esModule?e:{default:e}}c=l.default.Component,(0,o.default)(f,c),f.prototype.render=function(){return l.default.createElement(u.default,(0,a.default)({},this.props,{onMouseEnter:this.onMouseEnter,onMouseLeave:this.onMouseLeave}))},o=n=f,n.propTypes=(0,a.default)({},u.default.propTypes),n.contextTypes={onRowMouseEnter:s.default.func,onRowMouseLeave:s.default.func},n.defaultProps=(0,a.default)({},u.default.defaultProps);var c,s=o;function f(){var e,o;(0,r.default)(this,f);for(var t=arguments.length,n=Array(t),a=0;a<t;a++)n[a]=arguments[a];return(e=o=(0,i.default)(this,c.call.apply(c,[this].concat(n)))).onMouseEnter=function(e,t,n){var a=o.context.onRowMouseEnter,r=o.props.onMouseEnter;a&&a(e,t,n),r(e,t,n)},o.onMouseLeave=function(e,t,n){var a=o.context.onRowMouseLeave,r=o.props.onMouseLeave;a&&a(e,t,n),r(e,t,n)},(0,i.default)(o,e)}s.displayName="LockRow",t.default=s,e.exports=t.default},function(e,t,n){"use strict";n(43),n(70),n(661)},function(e,t,n){"use strict";t.__esModule=!0;var g=c(n(12)),y=c(n(2)),a=c(n(4)),r=c(n(6)),o=c(n(7)),i=n(0),v=c(i),l=c(n(3)),_=c(n(13)),s=c(n(79)),u=c(n(24)),b=n(11),d=c(n(44)),n=c(n(8));function c(e){return e&&e.__esModule?e:{default:e}}var f,p=b.func.noop,h=b.func.bindCtx,m=/blue|green|orange|red|turquoise|yellow/,l=(f=i.Component,(0,o.default)(w,f),w.prototype.componentWillUnmount=function(){this.__destroyed=!0},w.prototype.handleClose=function(e){var t=this,n=this.props,a=n.animation,n=n.onClose,r=b.support.animation&&a;!1===n(e,this.tagNode)||this.__destroyed||this.setState({visible:!1},function(){r||t.props.afterClose(t.tagNode)})},w.prototype.handleBodyClick=function(e){var t=this.props,n=t.closable,a=t.closeArea,t=t.onClick,r=e.currentTarget;if(r&&(r===e.target||r.contains(e.target))&&(n&&"tag"===a&&this.handleClose("tag"),"function"==typeof t))return t(e)},w.prototype.handleTailClick=function(e){e&&e.preventDefault(),e&&e.stopPropagation(),this.handleClose("tail")},w.prototype.handleAnimationInit=function(e){this.props.afterAppear(e)},w.prototype.handleAnimationEnd=function(e){this.props.afterClose(e)},w.prototype.renderAnimatedTag=function(e,t){return v.default.createElement(s.default,{animation:t,afterAppear:this.handleAnimationInit,afterLeave:this.handleAnimationEnd},e)},w.prototype.renderTailNode=function(){var e=this.props,t=e.prefix,n=e.closable,e=e.locale;return n?v.default.createElement("span",{className:t+"tag-close-btn",onClick:this.handleTailClick,role:"button","aria-label":e.delete},v.default.createElement(u.default,{type:"close"})):null},w.prototype.isPresetColor=function(){var e=this.props.color;return!!e&&m.test(e)},w.prototype.getTagStyle=function(){var e=this.props,t=e.color,t=void 0===t?"":t,e=e.style,n=this.isPresetColor();return(0,y.default)({},t&&!n?{backgroundColor:t,borderColor:t,color:"#fff"}:null,e)},w.prototype.render=function(){var t=this,e=this.props,n=e.prefix,a=e.type,r=e.size,o=e.color,i=e._shape,l=e.closable,s=e.closeArea,u=e.className,d=e.children,c=e.animation,f=e.disabled,e=e.rtl,p=this.state.visible,h=this.isPresetColor(),m=b.obj.pickOthers(w.propTypes,this.props),m=(m.style,(0,g.default)(m,["style"])),r=(0,_.default)([n+"tag",n+"tag-"+(l?"closable":i),n+"tag-"+r],((i={})[n+"tag-level-"+a]=!o,i[n+"tag-closable"]=l,i[n+"tag-body-pointer"]=l&&"tag"===s,i[n+"tag-"+o]=o&&h&&"primary"===a,i[n+"tag-"+o+"-inverse"]=o&&h&&"normal"===a,i),u),l=this.renderTailNode(),s=p?v.default.createElement("div",(0,y.default)({className:r,onClick:this.handleBodyClick,onKeyDown:this.onKeyDown,tabIndex:f?"":"0",role:"button","aria-disabled":f,disabled:f,dir:e?"rtl":void 0,ref:function(e){return t.tagNode=e},style:this.getTagStyle()},m),v.default.createElement("span",{className:n+"tag-body"},d),l):null;return c&&b.support.animation?this.renderAnimatedTag(s,n+"tag-zoom"):s},o=i=w,i.propTypes={prefix:l.default.string,type:l.default.oneOf(["normal","primary"]),size:l.default.oneOf(["small","medium","large"]),color:l.default.string,animation:l.default.bool,closeArea:l.default.oneOf(["tag","tail"]),closable:l.default.bool,onClose:l.default.func,afterClose:l.default.func,afterAppear:l.default.func,className:l.default.any,children:l.default.node,onClick:l.default.func,_shape:l.default.oneOf(["default","closable","checkable"]),disabled:l.default.bool,rtl:l.default.bool,locale:l.default.object},i.defaultProps={prefix:"next-",type:"normal",size:"medium",closeArea:"tail",animation:!1,onClose:p,afterClose:p,afterAppear:p,onClick:p,_shape:"default",disabled:!1,rtl:!1,locale:d.default.Tag},o);function w(e){(0,a.default)(this,w);var o=(0,r.default)(this,f.call(this,e));return o.onKeyDown=function(e){var t=o.props,n=t.closable,a=t.closeArea,r=t.onClick,t=t.disabled;e.keyCode!==b.KEYCODE.SPACE||t||(e.preventDefault(),e.stopPropagation(),n?o.handleClose(a):"function"==typeof r&&r(e))},o.state={visible:!0},h(o,["handleBodyClick","handleTailClick","handleAnimationInit","handleAnimationEnd","renderTailNode"]),o}l.displayName="Tag",t.default=n.default.config(l),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var f=r(n(12)),p=r(n(38)),h=r(n(2)),a=(t.isSingle=function(e){return!e||"single"===e},t.isNull=l,t.escapeForReg=o,t.filter=function(e,t){e=o(""+e),e=new RegExp("("+e+")","ig");return e.test(""+t.value)||e.test(""+t.label)},t.loopMap=i,t.parseDataSourceFromChildren=function i(e){var l=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0;var s=[];a.Children.forEach(e,function(e,t){var n,a,r,o;e&&(o=e.type,e=e.props,r=a=!(n={deep:l}),("function"==typeof o&&"next_select_option"===o._typeMark||"option"===o)&&(a=!0),("function"==typeof o&&"next_select_option_group"===o._typeMark||"optgroup"===o)&&(r=!0),(a||r)&&(a?(o="string"==typeof e.children,n.value="value"in e?e.value:"key"in e?e.key:o?e.children:""+t,n.label=e.label||e.children||""+n.value,"title"in e&&(n.title=e.title),!0===e.disabled&&(n.disabled=!0),(0,h.default)(n,e["data-extra"]||{})):r&&l<1&&(n.label=e.label||"Group",n.children=i(e.children,l+1)),s.push(n)))});return s},t.normalizeDataSource=function s(e){var u=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0;var d=!(2<arguments.length&&void 0!==arguments[2])||arguments[2];var c=[];e.forEach(function(e,t){var n,a,r,o,i,l;(e=!/string|boolean|number/.test(void 0===e?"undefined":(0,p.default)(e))&&null!=e?e:{label:""+e,value:e})&&e.__isAddon||(n={deep:u},Array.isArray(e.children)&&u<1&&d?(n.label=e.label||e.value||"Group "+t,n.children=s(e.children,u+1)):(a=(l=e).value,r=l.label,o=l.disabled,i=l.title,l=(0,f.default)(l,["value","label","disabled","title"]),n.value=void 0!==a?a:""+t,n.label=r||""+n.value,"title"in e&&(n.title=i),!0===o&&(n.disabled=!0),(0,h.default)(n,l)),c.push(n))});return c},t.flattingDataSource=function t(e){var n=[];e.forEach(function(e){Array.isArray(e.children)?n.push.apply(n,t(e.children)):n.push(e)});return n},t.filterDataSource=function(e,t,n,a){if(!Array.isArray(e))return[];if(null==t)return[].concat(e);var r=!0,e=i(e,function(e){return t===""+e.value&&(r=!1),n(t,e)&&!e.__isAddon&&e});a&&t&&r&&e.unshift({value:t,label:t,__isAddon:!0});return e},t.getValueDataSource=function(e,t,n){if(l(e))return{};var a=[],r=[],o={},i=(0,h.default)({},t,n);return Array.isArray(e)?(e.forEach(function(e){e=s(e,i);r.push(e),o[""+e.value]=e,a.push(e.value)}),{value:a,valueDS:r,mapValueDS:o}):{value:(t=s(e,i)).value,valueDS:t,mapValueDS:((n={})[""+t.value]=t,n)}},t.valueToSelectKey=function(e){var t=void 0;t="object"===(void 0===e?"undefined":(0,p.default)(e))&&e.hasOwnProperty("value")?e.value:e;return""+t},n(0));function r(e){return e&&e.__esModule?e:{default:e}}function l(e){return null==e}function o(e){return e.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&")}function i(e,n){var a=[];return e.forEach(function(e){var t;e.children?(t=i(e.children,n),a.push((0,h.default)({},e,{children:t}))):(t=n(e))&&a.push(t)}),a}function s(e,t){return"object"===(void 0===e?"undefined":(0,p.default)(e))?e.hasOwnProperty("value")?e:(0,h.default)({value:""},e):t[""+e]||{value:e,label:e}}},function(e,t,n){"use strict";t.__esModule=!0;var a,y=u(n(2)),v=u(n(12)),r=u(n(4)),o=u(n(6)),i=u(n(7)),_=u(n(0)),l=u(n(3)),b=u(n(13)),w=n(11),M=u(n(24)),s=u(n(44)),k=n(179);function u(e){return e&&e.__esModule?e:{default:e}}var d,n=w.func.noop,l=(d=_.default.Component,(0,i.default)(S,d),S.prototype.render=function(){var e,t=this.props,n=t.prefix,a=t.closable,r=t.className,o=t.style,i=t.isTooltip,l=t.align,s=t.title,u=t.type,d=t.onClose,c=t.alignEdge,f=t.v2,p=t.children,h=t.rtl,m=t.locale,t=(0,v.default)(t,["prefix","closable","className","style","isTooltip","align","title","type","onClose","alignEdge","v2","children","rtl","locale"]),c=c||f?k.edgeMap:k.normalMap,f=n,g=a&&void 0!==s,a=a&&void 0===s,i=(0,b.default)(((e={})[""+(f+=i?"balloon-tooltip":"balloon")]=!0,e[f+"-"+u]=u,e[f+"-medium"]=!0,e[f+"-"+c[l].arrow]=c[l],e[f+"-closable"]=a,e[r]=r,e)),c=(0,b.default)(((u={})[n+"balloon-title"]=!0,u[f+"-closable"]=g,u)),l=_.default.createElement("a",{role:"button","aria-label":m.close,tabIndex:"0",className:f+"-close",onClick:d},_.default.createElement(M.default,{type:"close",size:"small"}));return _.default.createElement("div",(0,y.default)({role:"tooltip","aria-live":"polite",dir:h?"rtl":void 0,className:i,style:o},w.obj.pickOthers(Object.keys(S.propTypes),t)),_.default.createElement("div",{className:n+"balloon-arrow"},_.default.createElement("div",{className:n+"balloon-arrow-content"})),s&&_.default.createElement("div",{className:c},s,g&&l),_.default.createElement("div",{className:n+"balloon-content"},p),a&&l)},a=i=S,i.contextTypes={prefix:l.default.string},i.propTypes={prefix:l.default.string,rtl:l.default.bool,closable:l.default.bool,children:l.default.any,title:l.default.node,className:l.default.string,alignEdge:l.default.bool,onClose:l.default.func,style:l.default.any,align:l.default.string,type:l.default.string,isTooltip:l.default.bool,locale:l.default.object,pure:l.default.bool,v2:l.default.bool},i.defaultProps={prefix:"next-",closable:!0,onClose:n,locale:s.default.Balloon,align:"b",type:"normal",alignEdge:!1,pure:!1},a);function S(){return(0,r.default)(this,S),(0,o.default)(this,d.apply(this,arguments))}l.displayName="BalloonInner",t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;t.normalMap={t:{align:"bc tc",rtlAlign:"bc tc",arrow:"bottom",trOrigin:"bottom",rtlTrOrigin:"bottom",offset:[0,-12]},r:{align:"cl cr",rtlAlign:"cr cl",arrow:"left",trOrigin:"left",rtlTrOrigin:"right",offset:[12,0]},b:{align:"tc bc",rtlAlign:"tc bc",arrow:"top",trOrigin:"top",rtlTrOrigin:"top",offset:[0,12]},l:{align:"cr cl",rtlAlign:"cl cr",arrow:"right",trOrigin:"right",rtlTrOrigin:"left",offset:[-12,0]},tl:{align:"br tc",rtlAlign:"bl tc",arrow:"bottom-right",trOrigin:"bottom right",rtlTrOrigin:"bottom left",offset:[20,-12]},tr:{align:"bl tc",rtlAlign:"br tc",arrow:"bottom-left",trOrigin:"bottom left",rtlTrOrigin:"bottom right",offset:[-20,-12]},rt:{align:"bl cr",rtlAlign:"br cl",arrow:"left-bottom",trOrigin:"bottom left",rtlTrOrigin:"bottom right",offset:[12,20]},rb:{align:"tl cr",rtlAlign:"tr cl",arrow:"left-top",trOrigin:"top left",rtlTrOrigin:"top right",offset:[12,-20]},bl:{align:"tr bc",rtlAlign:"tl bc",arrow:"top-right",trOrigin:"top right",rtlTrOrigin:"top left",offset:[20,12]},br:{align:"tl bc",rtlAlign:"tr bc",arrow:"top-left",trOrigin:"top left",rtlTrOrigin:"top right",offset:[-20,12]},lt:{align:"br cl",rtlAlign:"bl cr",arrow:"right-bottom",trOrigin:"bottom right",rtlTrOrigin:"bottom left",offset:[-12,20]},lb:{align:"tr cl",rtlAlign:"tl cr",arrow:"right-top",trOrigin:"top right",rtlTrOrigin:"top left",offset:[-12,-20]}},t.edgeMap={t:{align:"bc tc",rtlAlign:"bc tc",arrow:"bottom",trOrigin:"bottom",rtlTrOrigin:"bottom",offset:[0,-12]},r:{align:"cl cr",rtlAlign:"cr cl",arrow:"left",trOrigin:"left",rtlTrOrigin:"right",offset:[12,0]},b:{align:"tc bc",rtlAlign:"tc bc",arrow:"top",trOrigin:"top",rtlTrOrigin:"top",offset:[0,12]},l:{align:"cr cl",rtlAlign:"cl cr",arrow:"right",trOrigin:"right",rtlTrOrigin:"left",offset:[-12,0]},tl:{align:"bl tl",rtlAlign:"br tr",arrow:"bottom-left",trOrigin:"bottom left",rtlTrOrigin:"bottom right",offset:[0,-12]},tr:{align:"br tr",rtlAlign:"bl tl",arrow:"bottom-right",trOrigin:"bottom right",rtlTrOrigin:"bottom left",offset:[0,-12]},rt:{align:"tl tr",rtlAlign:"tr tl",arrow:"left-top",trOrigin:"top left",rtlTrOrigin:"top right",offset:[12,0]},rb:{align:"bl br",rtlAlign:"br bl",arrow:"left-bottom",trOrigin:"bottom left",rtlTrOrigin:"bottom right",offset:[12,0]},bl:{align:"tl bl",rtlAlign:"tr br",arrow:"top-left",trOrigin:"top left",rtlTrOrigin:"top right",offset:[0,12]},br:{align:"tr br",rtlAlign:"tl bl",arrow:"top-right",trOrigin:"top right",rtlTrOrigin:"top left",offset:[0,12]},lt:{align:"tr tl",rtlAlign:"tl tr",arrow:"right-top",trOrigin:"top right",rtlTrOrigin:"top left",offset:[-12,0]},lb:{align:"br bl",rtlAlign:"bl br",arrow:"right-bottom",trOrigin:"bottom right",rtlTrOrigin:"bottom left",offset:[-12,0]}}},function(e,t,n){"use strict";t.__esModule=!0;var a,L=f(n(2)),T=f(n(12)),r=f(n(4)),o=f(n(6)),i=f(n(7)),D=f(n(0)),l=f(n(3)),O=f(n(13)),s=n(30),N=n(11),P=f(n(24)),u=f(n(408)),j=f(n(728)),d=f(n(409)),Y=f(n(182)),c=n(99);function f(e){return e&&e.__esModule?e:{default:e}}var p,n=N.func.noop,l=(p=u.default,(0,i.default)(h,p),h.getDerivedStateFromProps=function(e,t){return"value"in e&&e.value!==t.value&&!t.uploading?{value:Array.isArray(e.value)?e.value:[]}:null},h.prototype.selectFiles=function(e){e=e.length?Array.prototype.slice.call(e):[e];this.onSelect(e)},h.prototype.uploadFiles=function(e){this.state.uploading=!0;e=e.filter(function(e){return"selected"===e.state&&(e.state="uploading",!0)}).map(function(e){return e.originFileObj});e.length&&this.uploaderRef.startUpload(e)},h.prototype.startUpload=function(){this.uploadFiles(this.state.value)},h.prototype.replaceFiles=function(e,t){var n=(0,c.getFileItem)(e,this.state.value);n&&(t.uid=e.uid,n.originFileObj=t)},h.prototype.isUploading=function(){return this.state.uploading},h.prototype.render=function(){var e=this.props,t=e.listType,n=e.prefix,a=e.dragable,r=e.shape,o=e.className,i=e.style,l=e.useDataURL,s=e.disabled,u=e.limit,d=e.closable,c=e.beforeUpload,f=e.readonly,p=e.onRemove,h=e.onCancel,m=e.onPreview,g=e.list,y=e.extraRender,v=e.progressProps,_=e.rtl,b=e.isPreview,w=e.renderPreview,M=e.name,k=e.fileKeyName,M=void 0===k?M:k,k=e.fileNameRender,S=e.actionRender,E=e.previewOnFileName,e=(0,T.default)(e,["listType","prefix","dragable","shape","className","style","useDataURL","disabled","limit","closable","beforeUpload","readonly","onRemove","onCancel","onPreview","list","extraRender","progressProps","rtl","isPreview","renderPreview","name","fileKeyName","fileNameRender","actionRender","previewOnFileName"]),f=(0,O.default)(((x={})[n+"upload"]=!0,x[n+"upload-dragable"]=a,x[n+"disabled"]=s,x[n+"readonly"]=f,x[o]=o,x)),x=this.state.value.length>=u,u=(0,O.default)(((u={})[n+"upload-inner"]=!0,u[n+"hidden"]=x,u)),C=this.props.children;if("card"===r&&(r=(0,O.default)(((r={})[n+"upload-card"]=!0,r[n+"disabled"]=s,r)),C=D.default.createElement("div",{className:r},D.default.createElement(P.default,{size:"large",type:"add",className:n+"upload-add-icon"}),D.default.createElement("div",{tabIndex:"0",role:"button",className:n+"upload-text"},C))),b)return"function"==typeof w?(b=(0,O.default)(((r={})[n+"form-preview"]=!0,r[o]=!!o,r)),D.default.createElement("div",{style:i,className:b},w(this.state.value,this.props))):t?D.default.createElement(Y.default,{isPreview:!0,listType:t,style:i,className:o,value:this.state.value}):null;n=s?N.func.prevent:p,r=N.obj.pickAttrsWith(this.props,"data-");return D.default.createElement("div",(0,L.default)({className:f,style:i},r),D.default.createElement(j.default,(0,L.default)({},e,{name:M,beforeUpload:c,dragable:a,disabled:s||x,className:u,onSelect:this.onSelect,onDrop:this.onDrop,onProgress:this.onProgress,onSuccess:this.onSuccess,onError:this.onError,ref:this.saveUploaderRef}),C),t||g?D.default.createElement(Y.default,{useDataURL:l,fileNameRender:k,actionRender:S,uploader:this,listType:t,value:this.state.value,closable:d,onRemove:n,progressProps:v,onCancel:h,onPreview:m,extraRender:y,rtl:_,previewOnFileName:E}):null)},i=u=h,u.displayName="Upload",u.propTypes=(0,L.default)({},d.default.propTypes,Y.default.propTypes,{prefix:l.default.string.isRequired,action:l.default.string,value:l.default.array,defaultValue:l.default.array,shape:l.default.oneOf(["card"]),listType:l.default.oneOf(["text","image","card"]),list:l.default.any,name:l.default.string,data:l.default.oneOfType([l.default.object,l.default.func]),formatter:l.default.func,limit:l.default.number,timeout:l.default.number,dragable:l.default.bool,closable:l.default.bool,useDataURL:l.default.bool,disabled:l.default.bool,onSelect:l.default.func,onProgress:l.default.func,onChange:l.default.func,onSuccess:l.default.func,afterSelect:l.default.func,onRemove:l.default.func,onError:l.default.func,beforeUpload:l.default.func,onDrop:l.default.func,className:l.default.string,style:l.default.object,children:l.default.node,autoUpload:l.default.bool,request:l.default.func,progressProps:l.default.object,rtl:l.default.bool,isPreview:l.default.bool,renderPreview:l.default.func,fileKeyName:l.default.string,fileNameRender:l.default.func,actionRender:l.default.func,previewOnFileName:l.default.bool}),u.defaultProps=(0,L.default)({},d.default.defaultProps,{prefix:"next-",limit:1/0,autoUpload:!0,closable:!0,onSelect:n,onProgress:n,onChange:n,onSuccess:n,onRemove:n,onError:n,onDrop:n,beforeUpload:n,afterSelect:n,previewOnFileName:!1}),a=function(){var u=this;this.onSelect=function(e){var t,n,a=u.props,r=a.autoUpload,o=a.afterSelect,i=a.onSelect,a=a.limit,l=u.state.value.length+e.length,s=a-u.state.value.length;s<=0||(t=e=e.map(function(e){e=(0,c.fileToObject)(e);return e.state="selected",e}),n=[],a<l&&(t=e.slice(0,s),n=e.slice(s)),a=u.state.value.concat(e),u.state.value=a,r&&u.uploadFiles(t),i(t,a),n.forEach(function(e){var t=new Error(c.errorCode.EXCEED_LIMIT);t.code=c.errorCode.EXCEED_LIMIT,u.onError(t,null,e)}),r||(t.forEach(function(t){var e=o(t);N.func.promiseCall(e,N.func.noop,function(e){u.onError(e,null,t)})}),u.onChange(a,t)))},this.onDrop=function(e){u.onSelect(e),u.props.onDrop(e)},this.replaceWithNewFile=function(e,t){for(var n=(0,c.fileToObject)(t),a=(n.state="selected",void 0!==e.uid?"uid":"name"),r=u.state.value,o=0;o<r.length;o++)if(r[o][a]===e[a]){r.splice(o,1,n);break}return u.uploadFiles([n]),n},this.onProgress=function(e,t){u.state.uploading=!0;var n=u.state.value,t=(0,c.getFileItem)(t,n);t&&((0,L.default)(t,{state:"uploading",percent:e.percent}),u.setState({value:n}),u.props.onProgress(n,t))},this.onSuccess=function(t,n){var e=u.props.formatter;e&&(t=e(t,n));try{"string"==typeof t&&(t=JSON.parse(t))}catch(e){return e.code=c.errorCode.RESPONSE_FAIL,u.onError(e,t,n)}if(!1===t.success)return(e=new Error(t.message||c.errorCode.RESPONSE_FAIL)).code=c.errorCode.RESPONSE_FAIL,u.onError(e,t,n);e=u.state.value,n=(0,c.getFileItem)(n,e);n&&((0,L.default)(n,{state:"done",response:t,url:t.url,downloadURL:t.downloadURL||t.url}),u.props.useDataURL||(n.imgURL=t.imgURL||t.url),u.updateUploadingState(),u.onChange(e,n),u.props.onSuccess(n,e))},this.onError=function(e,t,n){var a=u.state.value,n=(0,c.getFileItem)(n,a);n&&((0,L.default)(n,{state:"error",error:e,response:t}),u.updateUploadingState(),u.onChange(a,n),u.props.onError(n,a))},this.removeFile=function(e){e.state="removed",u.uploaderRef.abort(e);var t=u.state.value,e=(0,c.getFileItem)(e,t),n=t.indexOf(e);-1!==n&&(t.splice(n,1),u.onChange(t,e))},this.updateUploadingState=function(){u.state.value.some(function(e){return"uploading"===e.state})||(u.state.uploading=!1)},this.abort=function(e){var t=u.state.value,n=(0,c.getFileItem)(e,t),a=t.indexOf(n);-1!==a&&(t.splice(a,1),u.onChange(t,n)),u.uploaderRef.abort(e)},this.onChange=function(e,t){u.setState({value:e}),u.props.onChange(e,t)}},i);function h(e){(0,r.default)(this,h);var t=(0,o.default)(this,p.call(this,e)),n=(a.call(t),void 0),n="value"in e?e.value:e.defaultValue;return t.state={value:Array.isArray(n)?n:[],uploading:!1},t}t.default=(0,s.polyfill)(l),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var f=u(n(2)),o=u(n(4)),i=u(n(6)),a=u(n(7)),p=u(n(0)),r=u(n(3)),l=n(11),s=n(99);function u(e){return e&&e.__esModule?e:{default:e}}var d,n=l.func.noop,r=(d=p.default.Component,(0,a.default)(c,d),c.prototype.render=function(){var e=this.props,t=e.accept,n=e.multiple,a=e.capture,r=e.webkitdirectory,o=e.children,i=e.id,l=e.disabled,s=e.dragable,u=e.style,d=e.className,e=e.name,c={},s=(l||(c=(0,f.default)({onClick:this.onClick,onKeyDown:this.onKeyDown,tabIndex:"0"},s?{onDrop:this.onDrop,onDragOver:this.onDragOver,onDragLeave:this.props.onDragLeave}:{})),{});return r&&(s.webkitdirectory=""),a&&(s.capture=a),p.default.createElement("div",(0,f.default)({role:"application",style:u,className:d},c),p.default.createElement("input",(0,f.default)({},s,{type:"file",name:e,id:i,ref:this.saveFileRef,style:{display:"none"},accept:t,"aria-hidden":!0,multiple:n,onChange:this.onSelect,disabled:l})),o)},a=l=c,l.propTypes={id:r.default.string,style:r.default.object,className:r.default.string,disabled:r.default.bool,multiple:r.default.bool,webkitdirectory:r.default.bool,capture:r.default.string,dragable:r.default.bool,accept:r.default.string,onSelect:r.default.func,onDragOver:r.default.func,onDragLeave:r.default.func,onDrop:r.default.func,children:r.default.node,name:r.default.string},l.defaultProps={name:"file",multiple:!1,onSelect:n,onDragOver:n,onDragLeave:n,onDrop:n},a);function c(){var e,t;(0,o.default)(this,c);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,d.call.apply(d,[this].concat(a)))).onSelect=function(e){e=e.target.files,e=e.length?Array.prototype.slice.call(e):[e];e.forEach(function(e){e.uid=(0,s.uid)()}),t.props.onSelect(e)},t.onClick=function(){var e=t.fileRef;e&&(e.value="",e.click())},t.onKeyDown=function(e){"Enter"===e.key&&t.onClick()},t.onDrop=function(e){e.preventDefault();e=e.dataTransfer.files,e=Array.prototype.slice.call(e);t.props.onDrop(e)},t.onDragOver=function(e){e.preventDefault(),t.props.onDragOver(e)},t.saveFileRef=function(e){t.fileRef=e},(0,i.default)(t,e)}r.displayName="Selecter",t.default=r,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var g=p(n(2)),o=p(n(4)),i=p(n(6)),a=p(n(7)),r=n(0),y=p(r),l=p(n(3)),c=p(n(13)),s=p(n(8)),v=p(n(731)),_=p(n(24)),b=p(n(18)),w=n(11),u=p(n(44)),d=n(99),f=p(n(407)),M=(p(n(98)),p(n(181)));function p(e){return e&&e.__esModule?e:{default:e}}var h,k=9===w.env.ieVersion,a=(h=r.Component,(0,a.default)(m,h),m.prototype.componentDidUpdate=function(){var n=this,e=this.props,t=e.listType,a=e.useDataURL,e=e.value;"image"!==t&&"card"!==t||a&&e.forEach(function(t){"undefined"!=typeof document&&"undefined"!=typeof window&&window.FileReader&&window.File&&t.originFileObj instanceof File&&void 0===t.imgURL&&(t.imgURL="",d.previewFile)(t.originFileObj,function(e){t.imgURL=e,n.forceUpdate()})})},m.prototype.onPreview=function(e,t){var n;if(n=this.props.onPreview)return n(e,t)},m.prototype.getInfo=function(e){var t,n=this.props.prefix+"upload";return{prefixCls:n,downloadURL:e.downloadURL||e.url,imgURL:e.imgURL||e.url,size:this.sizeCaculator(e.size),itemCls:(0,c.default)(((t={})[n+"-list-item"]=!0,t[n+"-list-item-"+e.state]=e.state,t[n+"-list-item-error-with-msg"]="error"===e.state&&e.errorMsg,t)),alt:e.name||e.alt}},m.prototype.sizeCaculator=function(e){var t=parseFloat(e,10);if(isNaN(t)||t<1e-7)return 0;for(var n=["B","K","M","G","T","P"],a=0;1024<=t&&a<n.length;)a++,t/=1024;e=n[a];return""+(t=t.toFixed(2))+e},m.prototype.getTextList=function(e){var t=this,n=this.props,a=n.locale,r=n.extraRender,o=n.actionRender,i=n.progressProps,l=n.rtl,s=n.fileNameRender,n=n.previewOnFileName,u=this.getInfo(e),d=u.prefixCls,c=u.downloadURL,f=u.size,u=u.itemCls,p=function(){return"uploading"===e.state?t.handleCancel(e):t.handleClose(e)};return y.default.createElement("div",{className:u,key:e.uid||e.name},y.default.createElement("div",{className:d+"-list-item-name-wrap"},y.default.createElement("a",{onClick:n?this.onPreview.bind(this,e):w.func.noop,href:c,target:"_blank",style:{pointerEvents:c?"":"none"},className:d+"-list-item-name"},y.default.createElement("span",null,s(e)),!!f&&y.default.createElement("span",{className:d+"-list-item-size",dir:l?"rtl":void 0},"(",f,")"),y.default.createElement("span",{className:d+"-extra"},r(e)))),"uploading"===e.state?y.default.createElement("div",{className:d+"-list-item-progress"},y.default.createElement(v.default,(0,g.default)({size:"medium",percent:e.percent,textRender:w.func.noop,rtl:l},i))):null,"error"===e.state&&e.errorMsg?y.default.createElement("div",{className:d+"-list-item-error-msg"},e.errorMsg):null,y.default.createElement("span",{className:d+"-list-item-op"},o(e),this.props.closable?y.default.createElement(_.default,{type:"close",size:"large",role:"button","aria-label":a.upload.delete,tabIndex:"0",onClick:p,onKeyDown:function(e){e.keyCode===w.KEYCODE.ENTER&&p()}}):null))},m.prototype.getImageList=function(e){var t=this,n=this.props,a=n.extraRender,r=n.actionRender,o=n.progressProps,i=n.rtl,l=n.fileNameRender,n=n.previewOnFileName,s=this.getInfo(e),u=s.prefixCls,d=s.downloadURL,c=s.imgURL,f=s.size,p=s.itemCls,s=s.alt,h=null,m=function(){return"uploading"===e.state?t.handleCancel(e):t.handleClose(e)},h="uploading"===e.state||"selected"===e.state&&!c?y.default.createElement(_.default,{type:"picture"}):"error"===e.state?y.default.createElement(_.default,{type:"cry"}):y.default.createElement("img",{src:c,onError:this.onImageError.bind(this,e),tabIndex:"0",alt:s,onClick:this.onPreview.bind(this,e)});return y.default.createElement("div",{className:p,key:e.uid||e.name},y.default.createElement("div",{className:u+"-list-item-thumbnail"},h),y.default.createElement("span",{className:u+"-list-item-op"},r(e),this.props.closable?y.default.createElement(_.default,{type:"close",size:"large",tabIndex:"0",role:"button",onClick:m,onKeyDown:function(e){e.keyCode===w.KEYCODE.ENTER&&m()}}):null),y.default.createElement("a",{onClick:n?this.onPreview.bind(this,e):w.func.noop,href:d,target:"_blank",style:{pointerEvents:d?"":"none"},className:u+"-list-item-name"},y.default.createElement("span",null,l(e)),!!f&&y.default.createElement("span",{className:u+"-list-item-size",dir:i?"rtl":void 0},"(",f,")"),y.default.createElement("span",{className:u+"-extra"},a(e))),"uploading"===e.state?y.default.createElement("div",{className:u+"-list-item-progress"},y.default.createElement(v.default,(0,g.default)({size:"medium",percent:e.percent,textRender:w.func.noop},o))):null,"error"===e.state&&e.errorMsg?y.default.createElement("div",{className:u+"-list-item-error-msg"},e.errorMsg):null)},m.prototype.getPictureCardList=function(e,t){var n=this,a=this.props,r=a.locale,o=a.progressProps,i=a.fileNameRender,l=a.itemRender,a=a.showDownload,s=this.getInfo(e),u=s.prefixCls,d=s.downloadURL,c=s.imgURL,f=s.itemCls,s=s.alt,p=t?"":e.state,h=null,h="uploading"===p||"selected"===p&&!c?y.default.createElement("div",{className:u+"-list-item-handler"},y.default.createElement(_.default,{type:"picture"}),y.default.createElement(b.default,{text:!0,onClick:function(){return n.handleCancel(e)}},r.card.cancel)):"error"===p?y.default.createElement("div",{className:u+"-list-item-handler"},y.default.createElement(_.default,{type:"cry"})):y.default.createElement("img",{src:c,tabIndex:"0",alt:s,onError:this.onImageError.bind(this,e),onClick:this.onPreview.bind(this,e)}),m=function(){return n.handleClose(e)},c=null;return c="uploading"===p?[y.default.createElement("div",{className:u+"-list-item-thumbnail",key:"img"},h),y.default.createElement("div",{className:u+"-list-item-progress",key:"progress"},y.default.createElement(v.default,(0,g.default)({size:"medium",percent:e.percent,textRender:w.func.noop},o)))]:"function"==typeof l?l(e,{remove:m}):(s=(this.props.uploader||{props:{}}).props,[y.default.createElement("div",{className:u+"-list-item-thumbnail",key:"img"},h),y.default.createElement("span",{key:"tool",className:u+"-tool"},"error"!==p&&a&&d?y.default.createElement("a",{href:d,target:"_blank",className:u+"-tool-item "+u+"-tool-download-link"},y.default.createElement(_.default,{type:"download","aria-label":r.card.download,className:u+"-tool-download-icon"})):null,!this.props.reUpload||t||k?null:y.default.createElement(M.default,{className:u+"-tool-item "+u+"-tool-reupload",accept:s.accept,name:s.fileKeyName,onSelect:this.onSelect.bind(this,e)},y.default.createElement(_.default,{type:"edit",className:u+"-tool-reupload-icon"})),this.props.closable&&!t?y.default.createElement("span",{className:u+"-tool-item "+u+"-tool-close"},y.default.createElement(_.default,{type:"ashbin","aria-label":r.card.delete,tabIndex:"0",role:"button",onClick:m,onKeyDown:function(e){e.keyCode===w.KEYCODE.ENTER&&m()}})):null)]),y.default.createElement("div",{className:f,key:e.uid||e.name},y.default.createElement("div",{className:u+"-list-item-wrapper"},c),y.default.createElement("span",{className:u+"-list-item-name"},i(e)))},m.prototype.render=function(){var e,a,r=this,t=this.props,o=t.listType,n=t.children,i=t.prefix,l=t.rtl,s=t.className,t=t.isPreview,u=i+"upload",d=[],i=(d=t?(a=(0,c.default)(((e={})[i+"form-preview"]=!0,e[s]=!!s,e)),this.props.value.map(function(e){if(!e)return null;var t=e.downloadURL,n=(e.imgURL,e.name);return"text"===o?y.default.createElement("div",{className:a},y.default.createElement("a",{href:t,target:"_blank"},n)):"image"===o||"card"===o?r.getPictureCardList(e,!0):null})):this.props.value.map(function(e){return e?"text"===o?r.getTextList(e):"image"===o?r.getImageList(e):"card"===o?r.getPictureCardList(e):null:null}),l&&"card"===o&&Array.isArray(d)&&(d=d.reverse()),t&&"image"===o?"card":this.props.listType),t=(0,c.default)(((e={})[u+"-list"]=!0,e[u+"-list-"+i]=!0,e[u+"-ie9"]=k,e),s),i=w.obj.pickAttrsWith(this.props,"data-");return y.default.createElement("div",(0,g.default)({},i,{className:t,dir:l?"rtl":void 0}),l?n:d,l?d:n)},r=n=m,n.propTypes={prefix:l.default.string,locale:l.default.object,listType:l.default.oneOf(["text","image","card"]),value:l.default.array,closable:l.default.bool,onRemove:l.default.func,onCancel:l.default.func,onImageError:l.default.func,onPreview:l.default.func,previewOnFileName:l.default.bool,extraRender:l.default.func,actionRender:l.default.func,itemRender:l.default.func,progressProps:l.default.object,children:l.default.node,uploader:l.default.any,showDownload:l.default.bool,useDataURL:l.default.bool,rtl:l.default.bool,isPreview:l.default.bool,fileNameRender:l.default.func},n.defaultProps={prefix:"next-",listType:"text",value:[],locale:u.default.Upload,closable:!1,showDownload:!0,onRemove:w.func.noop,onCancel:w.func.noop,extraRender:w.func.noop,actionRender:w.func.noop,onImageError:w.func.noop,progressProps:{},fileNameRender:function(e){return e.name},previewOnFileName:!1},r);function m(){var e,r;(0,o.default)(this,m);for(var t=arguments.length,n=Array(t),a=0;a<t;a++)n[a]=arguments[a];return(e=r=(0,i.default)(this,h.call.apply(h,[this].concat(n)))).handleClose=function(e){var t=r.props,n=t.onRemove,a=t.uploader,t=n(e);w.func.promiseCall(t,function(){a&&a.removeFile(e)})},r.handleCancel=function(e){var t=r.props,n=t.onCancel,a=t.uploader,t=n(e);w.func.promiseCall(t,function(){a&&a.abort(e)})},r.onImageError=function(e,t){t.onerror=null,r.props.onImageError(t,e)},r.onSelect=function(e,t){var n=r.props.uploader;n&&t.length&&n.replaceWithNewFile(e,t[0])},(0,i.default)(r,e)}a.displayName="List",t.default=s.default.config(a,{componentName:"Upload",transform:f.default}),e.exports=t.default},function(i,e,t){"use strict";t.r(e);var n=t(73),oe=t.n(n),n=t(115),ie=t.n(n),n=t(413),a=t.n(n),le=t(0),se=t.n(le),ue=t(23),de=t(133);function ce(e,t,n,a,r){Object(le.useEffect)(function(){if(r)return(e=Array.isArray(e)?e:[e]).forEach(function(e){e&&e.addEventListener&&e.addEventListener(t,n,a||!1)}),function(){Array.isArray(e)&&e.forEach(function(e){e&&e.removeEventListener&&e.removeEventListener(t,n,a||!1)})}},[r])}function R(){for(var o=this,e=arguments.length,i=new Array(e),t=0;t<e;t++)i[t]=arguments[t];return 1===i.length?i[0]:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];for(var a=0,r=i.length;a<r;a++)i[a]&&i[a].apply&&i[a].apply(o,t)}}function A(t){return t?function(e){if("string"==typeof t)throw new Error("can not set ref string for "+t);"function"==typeof t?t(e):Object.prototype.hasOwnProperty.call(t,"current")&&(t.current=e)}:null}function fe(e,t){return e&&1===e.nodeType?window.getComputedStyle(e,null).getPropertyValue(t):null}var r=/margin|padding|width|height|max|min|offset|size|top|left/i;function pe(t,n,e){t&&("string"==typeof n?("number"==typeof e&&r.test(n)&&(e+="px"),t.style[n]=e):"object"==typeof n&&2===arguments.length&&Object.keys(n).forEach(function(e){return pe(t,e,n[e])}))}function x(e){if(e===document.documentElement)return{top:0,left:0};var e=e.getBoundingClientRect(),t=e.left;return{top:e.top,left:t}}function he(){var e=document.createElement("div"),t=(e.className+="just-to-get-scrollbar-size",pe(e,{position:"absolute",width:"100px",height:"100px",overflow:"scroll",top:"-9999px"}),document.body&&document.body.appendChild(e),e.offsetWidth-e.clientWidth);return document.body.removeChild(e),t}function me(e){var t=e.nodeName.toLowerCase(),n=parseInt(e.getAttribute("tabindex"),10),n=!isNaN(n)&&-1<n;return function(e){for(;e&&e!==document.body&&e!==document.documentElement;){if("none"===e.style.display||"hidden"===e.style.visibility)return;e=e.parentNode}return 1}(e)&&("input"===t?!e.disabled&&"hidden"!==e.type:-1<["select","textarea","button"].indexOf(t)?!e.disabled:"a"===t&&e.getAttribute("href")||n)}function ge(e){return e&&(e.nodeType?1===e.nodeType?e:document.body:e===window?document.body:Object(ue.findDOMNode)(e))}function ye(e){return"function"==typeof e?e():"string"==typeof e?document.getElementById(e):e}var f={tl:["bl","tl"],t:["bc","tc"],tr:["br","tr"],lt:["tr","tl"],l:["cr","cl"],lb:["br","bl"],bl:["tl","bl"],b:["tc","bc"],br:["tr","br"],rt:["tl","tr"],r:["cl","cr"],rb:["bl","br"]};function C(e,t){var n=t.targetInfo,a=t.containerInfo,r=t.overlayInfo,o=t.points,i=t.placementOffset,l=t.offset,t=t.rtl,s=n.left-a.left+a.scrollLeft,u=n.top-a.top+a.scrollTop;function d(e,t,n){var a=(t=void 0===t?!0:t)?1:-1;switch(e){case"l":s+=0;break;case"c":s+=a*n/2;break;case"r":s+=a*n}}function c(e,t,n){var a=(t=void 0===t?!0:t)?1:-1;switch(e){case"t":u+=0;break;case"c":u+=a*n/2;break;case"b":u+=a*n}}a=[].concat(o);if(e&&e in f&&(a=f[e]),t&&(a[0].match(/l/)?a[0]=a[0].replace("l","r"):a[0].match(/r/)&&(a[0]=a[0].replace("r","l")),a[1].match(/l/)?a[1]=a[1].replace("l","r"):a[1].match(/r/)&&(a[1]=a[1].replace("r","l"))),c(a[1][0],!0,n.height),d(a[1][1],!0,n.width),c(a[0][0],!1,r.height),d(a[0][1],!1,r.width),i&&1<=e.length)switch(e[0]){case"t":u-=i;break;case"b":u+=i;break;case"l":s-=i;break;case"r":s+=i}return{points:a,left:s+l[0],top:u+l[1]}}function L(e,t,n,a){var r,o,i,l,s=a.container,u=a.containerInfo,a=a.overlayInfo;return n!==s?(r=(s=x(n)).left,s=s.top,o=n.scrollWidth,i=n.scrollHeight,l=n.scrollTop,n=n.scrollLeft,s=t+u.top-s+l,l=e+u.left-r+n,s<0||l<0||s+a.height>i||l+a.width>o):t<0||e<0||t+a.height>u.height||e+a.width>u.width}function T(e,t,n,a){var r=a.overlayInfo,a=a.containerInfo,n=n.split("");return 1===n.length&&n.push(""),t<0&&(n=[n[0].replace("t","b"),n[1].replace("b","t")]),e<0&&(n=[n[0].replace("l","r"),n[1].replace("r","l")]),t+r.height>a.height&&(n=[n[0].replace("b","t"),n[1].replace("t","b")]),(n=e+r.width>a.width?[n[0].replace("r","l"),n[1].replace("l","r")]:n).join("")}function D(e,t,n){var a=n.overlayInfo,n=n.containerInfo;return(t=t<0?0:t)+a.height>n.height&&(t=n.height-a.height),{left:e=(e=e<0?0:e)+a.width>n.width?n.width-a.width:e,top:t}}function ve(e){var t=e.target,n=e.overlay,a=e.container,r=e.scrollNode,o=e.placement,i=e.placementOffset,i=void 0===i?0:i,l=e.points,l=void 0===l?["tl","bl"]:l,s=e.offset,s=void 0===s?[0,0]:s,u=e.position,u=void 0===u?"absolute":u,d=e.beforePosition,c=e.autoAdjust,c=void 0===c||c,f=e.autoHideScrollOverflow,f=void 0===f||f,e=e.rtl,p="offsetWidth"in(p=n)&&"offsetHeight"in p?{width:p.offsetWidth,height:p.offsetHeight}:{width:(p=p.getBoundingClientRect()).width,height:p.height},h=p.width,p=p.height;if("fixed"===u)return m={config:{placement:void 0,points:void 0},style:{position:u,left:s[0],top:s[1]}},d?d(m,{overlay:{node:n,width:h,height:p}}):m;var m=t.getBoundingClientRect(),g=m.width,y=m.height,v=m.left,_=m.top,m=x(a),b=m.left,m=m.top,w=a.scrollWidth,M=a.scrollHeight,k=a.scrollTop,S=a.scrollLeft,b={targetInfo:{width:g,height:y,left:v,top:_},containerInfo:{left:b,top:m,width:w,height:M,scrollTop:k,scrollLeft:S},overlayInfo:{width:h,height:p},points:l,placementOffset:i,offset:s,container:a,rtl:e},m=C(o,b),w=m.left,M=m.top,k=m.points,S=function(e){for(var t=e;t;){var n=fe(t,"overflow");if(null!=n&&n.match(/auto|scroll|hidden/))return t;t=t.parentNode}return document.documentElement}(a),E=(c&&o&&L(w,M,S,b)&&(o!==(l=T(w,M,o,b))&&(M=L(s=(i=C(l,b)).left,e=i.top,S,b)&&l!==(m=T(s,e,l,b))?(w=(c=D((a=C(o=m,b)).left,a.top,b)).left,c.top):(o=l,w=s,e)),w=(i=D(w,M,b)).left,M=i.top),{config:{placement:o,points:k},style:{position:u,left:Math.round(w),top:Math.round(M)}});return f&&o&&null!=r&&r.length&&r.forEach(function(e){var e=e.getBoundingClientRect(),t=e.top,n=e.left,a=e.width,e=e.height;E.style.display=_+y<t||t+e<_||v+g<n||n+a<v?"none":""}),d?d(E,{target:{node:t,width:g,height:y,left:v,top:_},overlay:{node:n,width:h,height:p}}):E}var _e=Object(le.createContext)({setVisibleOverlayToParent:function(){}}),be=["target","children","wrapperClassName","maskClassName","maskStyle","hasMask","canCloseByMask","maskRender","points","offset","fixed","visible","onRequestClose","onOpen","onClose","container","placement","placementOffset","disableScroll","canCloseByOutSideClick","canCloseByEsc","safeNode","beforePosition","onPosition","cache","autoAdjust","autoFocus","isAnimationEnd","rtl","wrapperStyle"],we=["setVisibleOverlayToParent"];function Me(e,t){var n,a="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(a)return(a=a.call(e)).next.bind(a);if(Array.isArray(e)||(a=function(e,t){if(e){if("string"==typeof e)return o(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?o(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length)return a&&(e=a),n=0,function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}};throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n<t;n++)a[n]=e[n];return a}function ke(e){try{var t=window.getComputedStyle(e,"::-webkit-scrollbar");return!t||"none"!==t.getPropertyValue("display")}catch(e){}return!0}var Se=function(e){function t(){return e.apply(this,arguments)||this}return a()(t,e),t.prototype.render=function(){return this.props.children},t}(se.a.Component),H=se.a.forwardRef(function(e,I){function i(){return document.body}function l(e){D(re,e),null!=m&&m(e)}function s(){M.current=null,D(re,null),null!=g&&g()}var u=e.target,t=e.children,R=e.wrapperClassName,A=e.maskClassName,H=e.maskStyle,d=e.hasMask,n=e.canCloseByMask,c=void 0===n||n,n=e.maskRender,a=e.points,r=e.offset,f=e.fixed,p=e.visible,o=e.onRequestClose,h=void 0===o?function(){}:o,m=e.onOpen,g=e.onClose,o=e.container,y=void 0===o?i:o,F=e.placement,z=e.placementOffset,o=e.disableScroll,W=void 0!==o&&o,o=e.canCloseByOutSideClick,V=void 0===o||o,o=e.canCloseByEsc,B=void 0===o||o,v=e.safeNode,U=e.beforePosition,K=e.onPosition,o=e.cache,_=void 0!==o&&o,G=e.autoAdjust,o=e.autoFocus,b=void 0!==o&&o,o=e.isAnimationEnd,o=void 0===o||o,q=e.rtl,$=e.wrapperStyle,e=ie()(e,be),J=f?"fixed":"absolute",w=Object(le.useState)(p),X=w[0],Q=w[1],Z=Object(le.useState)(null)[1],M=Object(le.useRef)({position:J}),ee="string"==typeof y?function(){return document.getElementById(y)}:"function"!=typeof y?function(){return y}:y,w=Object(le.useState)(null),k=w[0],te=w[1],S=Object(le.useRef)(null),ne=Object(le.useRef)(u),E=Object(le.useRef)(null),ae=Object(le.useRef)(null),x=Object(le.useRef)(null),C=Object(le.useRef)([]),L=Object(le.useRef)(null),T=Object(le.useRef)(null),re=Object(le.useState)(Date.now().toString(36))[0],w=Object(le.useContext)(_e),D=w.setVisibleOverlayToParent,w=ie()(w,we),O=Object(le.useRef)(new Map),t=se.a.Children.only(t);if("string"==typeof t.ref)throw new Error("Can not set ref by string in Overlay, use function instead.");function N(){var e=E.current,t=ae.current,n=S.current;e&&t&&n&&(n=ve({target:n,overlay:e,container:t,scrollNode:C.current,points:a,offset:r,position:J,placement:F,placementOffset:z,beforePosition:U,autoAdjust:G,rtl:q}),function(e,t){if(e&&t){var n=Object.keys(e),a=Object.keys(t);if(a.length===n.length){for(var r=0;r<=n.length-1;r++){var o=n[r];if(!a.includes(o))return;if(t[o]!==e[o])return}return 1}}}(M.current,n.style)||(M.current=n.style,pe(e,n.style),"function"==typeof K&&K(n)))}var P=Object(le.useCallback)(function(e){var t,n,a,r=Object(ue.findDOMNode)(e),e=(E.current=r,I),o=r;if(e){if("string"==typeof e)throw new Error("can not set ref string for "+e);"function"==typeof e?e(o):Object.prototype.hasOwnProperty.call(e,"current")&&(e.current=o)}null!==r&&k?(e=function(e){for(var t=e;"static"===fe(t,"position");){if(!t||t===document.documentElement)return document.documentElement;t=t.parentNode}return t}(ge(k)),ae.current=e,o=ge("viewport"===u?d?x.current:i():ye(u)||i()),S.current=o,C.current=function(e,t){for(var n=[],a=e;a&&a!==t&&a!==document.body&&a!==document.documentElement;){var r,o,i,l=fe(a,"overflow");l&&l.match(/auto|scroll/)&&(r=(l=a).clientWidth,o=l.clientHeight,i=l.scrollWidth,o===l.scrollHeight&&r===i||n.push(a)),a=a.parentNode}return n}(o,e),pe(r,{position:f?"fixed":"absolute",top:-1e3,left:-1e3}),T.current=new de.default((t=N.bind(void 0),a=-(n=100),function(){var e=Date.now();n<e-a&&(t.apply(this,arguments),a=e)})),T.current.observe(e),T.current.observe(r),Z({}),b&&setTimeout(function(){n=[],(e=r).querySelectorAll("*").forEach(function(e){var t;me(e)&&(t=e.getAttribute("data-auto-focus")?"unshift":"push",n[t](e))}),me(e)&&n.unshift(e);var n,e=n;0<e.length&&e[0]&&(L.current=document.activeElement,e[0].focus())},100),_||l(r)):(_||s(),T.current&&(T.current.disconnect(),T.current=null))},[k]),j=(ce(document,"mousedown",function(e){for(var t=Me(O.current.entries());!(n=t()).done;){var n=ge(n.value[1]);if(n&&(n===e.target||n.contains(e.target)))return}if(p)if(d&&x.current===e.target)c&&h("maskClick",e);else{var a=Array.isArray(v)?v:[v];E.current&&a.push(function(){return E.current});for(var r=0;r<a.length;r++){var o=ge(ye(a[r]));if(o&&(o===e.target||o.contains(e.target)))return}V&&h("docClick",e)}},!1,!!(p&&E.current&&(V||d&&c))),ce(document,"keydown",function(e){p&&27===e.keyCode&&B&&!O.current.size&&h("esc",e)},!1,!!(p&&E.current&&B)),ce(C.current,"scroll",function(e){p&&N()},!1,!!(p&&E.current&&null!=(Y=C.current)&&Y.length)),Object(le.useEffect)(function(){var e,t;if(p&&W)return e=document.body.getAttribute("style"),pe(document.body,"overflow","hidden"),function(e){if("hidden"===fe(e,"overflow"))return!1;var t=e.parentNode;return t&&t.scrollHeight>t.clientHeight&&0<he()&&ke(t)&&ke(e)}(document.body)&&(t=he())&&pe(document.body,"padding-right","calc("+fe(document.body,"padding-right")+" + "+t+"px)"),function(){document.body.setAttribute("style",e||"")}},[p&&W]),Object(le.useEffect)(function(){!X&&p&&Q(!0)},[p]),E.current);if(Object(le.useEffect)(function(){_&&j&&(p?(N(),l(j)):s())},[p,_&&j]),Object(le.useEffect)(function(){var e;p&&j&&u&&S.current&&ne.current!==u&&((e=ge("viewport"===u?d?x.current:i():ye(u)||i()))&&S.current!==e&&(S.current=e,N()),ne.current=u)},[u]),Object(le.useEffect)(function(){p&&j&&N()},[r,F,z,a,G,q]),Object(le.useEffect)(function(){!p&&b&&L.current&&(L.current.focus(),L.current=null)},[!p&&b&&L.current]),Object(le.useEffect)(function(){!p||k&&ee()===k||te(ee())},[p,y]),!1===X||!k)return null;if(!p&&!_&&o)return null;var Y=t?se.a.createElement(Se,{ref:P},Object(le.cloneElement)(t,oe()({},e,{style:oe()({top:0,left:0},t.props.style,M.current)}))):null,P=oe()({},$),e=(_&&!p&&o&&(P.display="none"),se.a.createElement("div",{className:A,style:H,ref:x})),t=se.a.createElement("div",{className:R,style:P},d?n?n(e):e:null,Y);return se.a.createElement(_e.Provider,{value:oe()({},w,{setVisibleOverlayToParent:function(e,t){t?O.current.set(e,t):O.current.delete(e),D(e,t)}})},Object(ue.createPortal)(t,k))}),F=["overlay","triggerType","triggerClickKeyCode","children","defaultVisible","className","onVisibleChange","container","style","placement","canCloseByTrigger","delay","overlayProps","safeNode","followTrigger","target","disabled"],n=se.a.forwardRef(function(a,e){function t(){return document.body}function n(e,t,n){void 0===n&&(n="fromTrigger"),E||("visible"in a||(e||T.current)&&C(e),y(e,n,t))}function r(e){x&&!b||n(!x,e)}function o(e){(Array.isArray(p)?p:[p]).includes(e.keyCode)&&n(!x,e)}function i(t){return function(e){D.current&&x?(clearTimeout(D.current),D.current=null):O.current||x||(O.current=setTimeout(function(){n(!0,e,t),O.current=null},w))}}function l(t){return function(e){!D.current&&x&&(D.current=setTimeout(function(){n(!1,e,t),D.current=null},w)),O.current&&!x&&(clearTimeout(O.current),O.current=null)}}function s(e){n(!0,e)}function u(e){N.current?N.current=!1:n(!1,e)}function d(e){N.current=!0}var c=a.overlay,f=a.triggerType,f=void 0===f?"click":f,p=a.triggerClickKeyCode,h=a.children,m=a.defaultVisible,g=(a.className,a.onVisibleChange),y=void 0===g?function(){}:g,g=a.container,v=void 0===g?t:g,g=(a.style,a.placement),g=void 0===g?"bl":g,_=a.canCloseByTrigger,b=void 0===_||_,_=a.delay,w=void 0===_?200:_,_=a.overlayProps,M=void 0===_?{}:_,_=a.safeNode,k=a.followTrigger,k=void 0!==k&&k,I=a.target,S=a.disabled,E=void 0!==S&&S,S=ie()(a,F),m=Object(le.useState)(m||a.visible),x=m[0],C=m[1],L=Object(le.useRef)(null),T=Object(le.useRef)(null),D=Object(le.useRef)(null),O=Object(le.useRef)(null),N=Object(le.useRef)(!1),P=h&&se.a.Children.only(h),m=se.a.Children.only(c),j=(Object(le.useEffect)(function(){"visible"in a&&C(a.visible)},[a.visible]),{}),Y={},h=Array.isArray(_)?_:[_],c=(P&&!E&&(("string"==typeof f?[f]:f).forEach(function(e){var t;switch(e){case"click":j.onClick=R(r,null==(t=P.props)?void 0:t.onClick),j.onKeyDown=R(o,null==(t=P.props)?void 0:t.onKeyDown);break;case"hover":j.onMouseEnter=R(i("fromTrigger"),null==(t=P.props)?void 0:t.onMouseEnter),j.onMouseLeave=R(l("fromTrigger"),null==(t=P.props)?void 0:t.onMouseLeave),Y.onMouseEnter=R(i("overlay"),M.onMouseEnter),Y.onMouseLeave=R(l("overlay"),M.onMouseLeave);break;case"focus":j.onFocus=R(s,null==(t=P.props)?void 0:t.onFocus),j.onBlur=R(u,null==(t=P.props)?void 0:t.onBlur),Y.onMouseDown=R(d,M.onMouseDown)}}),h.push(function(){return Object(ue.findDOMNode)(L.current)})),I||(P?function(){return Object(ue.findDOMNode)(L.current)}:t)),_=k?function(){var e;return null==(e=Object(ue.findDOMNode)(L.current))?void 0:e.parentNode}:"string"==typeof v?function(){return document.getElementById(v)}:"function"!=typeof v?function(){return v}:function(){return v(Object(ue.findDOMNode)(L.current))};return se.a.createElement(se.a.Fragment,null,P&&se.a.createElement(Se,{ref:Object(le.useCallback)(function(e){return L.current=e},[])},se.a.cloneElement(P,j)),se.a.createElement(H,oe()({},S,Y,{placement:g,container:_,safeNode:h,visible:x,target:c,onRequestClose:function(e,t){n(!1,t,e)},ref:Object(le.useCallback)(R(A(T),A(e)),[])}),m))}),t=H;t.Popup=n,t.OverlayContext=_e,e.default=t},function(e,t,n){var f=n(612),m=(e.exports=b,e.exports.parse=p,e.exports.compile=function(e,t){return a(p(e,t),t)},e.exports.tokensToFunction=a,e.exports.tokensToRegExp=_,new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g"));function p(e,t){for(var n=[],a=0,r=0,o="",i=t&&t.delimiter||"/";null!=(c=m.exec(e));){var l,s,u,d,c,f=c[0],p=c[1],h=c.index;o+=e.slice(r,h),r=h+f.length,p?o+=p[1]:(h=e[r],f=c[2],p=c[3],l=c[4],s=c[5],u=c[6],d=c[7],h=(o&&(n.push(o),o=""),null!=f&&null!=h&&h!==f),c=c[2]||i,n.push({name:p||a++,prefix:f||"",delimiter:c,optional:"?"===u||"*"===u,repeat:"+"===u||"*"===u,partial:h,asterisk:!!d,pattern:(p=l||s)?p.replace(/([=!:$\/()])/g,"\\$1"):d?".*":"[^"+g(c)+"]+?"}))}return r<e.length&&(o+=e.substr(r)),o&&n.push(o),n}function h(e){return encodeURI(e).replace(/[\/?#]/g,function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})}function a(d,e){for(var c=new Array(d.length),t=0;t<d.length;t++)"object"==typeof d[t]&&(c[t]=new RegExp("^(?:"+d[t].pattern+")$",v(e)));return function(e,t){for(var n="",a=e||{},r=(t||{}).pretty?h:encodeURIComponent,o=0;o<d.length;o++){var i=d[o];if("string"==typeof i)n+=i;else{var l,s=a[i.name];if(null==s){if(i.optional){i.partial&&(n+=i.prefix);continue}throw new TypeError('Expected "'+i.name+'" to be defined')}if(f(s)){if(!i.repeat)throw new TypeError('Expected "'+i.name+'" to not repeat, but received `'+JSON.stringify(s)+"`");if(0===s.length){if(i.optional)continue;throw new TypeError('Expected "'+i.name+'" to not be empty')}for(var u=0;u<s.length;u++){if(l=r(s[u]),!c[o].test(l))throw new TypeError('Expected all "'+i.name+'" to match "'+i.pattern+'", but received `'+JSON.stringify(l)+"`");n+=(0===u?i.prefix:i.delimiter)+l}}else{if(l=i.asterisk?encodeURI(s).replace(/[?#]/g,function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()}):r(s),!c[o].test(l))throw new TypeError('Expected "'+i.name+'" to match "'+i.pattern+'", but received "'+l+'"');n+=i.prefix+l}}}return n}}function g(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function y(e,t){return e.keys=t,e}function v(e){return e&&e.sensitive?"":"i"}function _(e,t,n){f(t)||(n=t||n,t=[]);for(var a=(n=n||{}).strict,r=!1!==n.end,o="",i=0;i<e.length;i++){var l,s,u=e[i];"string"==typeof u?o+=g(u):(l=g(u.prefix),s="(?:"+u.pattern+")",t.push(u),u.repeat&&(s+="(?:"+l+s+")*"),o+=s=u.optional?u.partial?l+"("+s+")?":"(?:"+l+"("+s+"))?":l+"("+s+")")}var d=g(n.delimiter||"/"),c=o.slice(-d.length)===d;return a||(o=(c?o.slice(0,-d.length):o)+"(?:"+d+"(?=$))?"),o+=r?"$":a&&c?"":"(?="+d+"|$)",y(new RegExp("^"+o,v(n)),t)}function b(e,t,n){if(f(t)||(n=t||n,t=[]),n=n||{},e instanceof RegExp){var a=e,r=t,o=a.source.match(/\((?!\?)/g);if(o)for(var i=0;i<o.length;i++)r.push({name:i,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return y(a,r)}if(f(e)){for(var l=e,s=t,u=n,d=[],c=0;c<l.length;c++)d.push(b(l[c],s,u).source);return y(new RegExp("(?:"+d.join("|")+")",v(u)),s)}return a=t,_(p(e,t=n),a,t)}},function(e,t,n){"use strict";t.__esModule=!0;var g=c(n(2)),y=c(n(12)),a=c(n(4)),r=c(n(6)),o=c(n(7)),v=c(n(0)),l=n(23),i=c(n(3)),s=n(30),_=c(n(13)),b=c(n(18)),w=c(n(24)),M=c(n(50)),u=c(n(62)),d=c(n(8)),k=n(11);function c(e){return e&&e.__esModule?e:{default:e}}var f,S=u.default.Popup,o=(f=v.default.Component,(0,o.default)(E,f),E.getDerivedStateFromProps=function(e){var t={};return"visible"in e&&(t.visible=e.visible),"selectedKeys"in e&&(t.selectedKeys=e.selectedKeys),t},E.prototype.render=function(){var e=this.props,t=e.prefix,n=e.style,a=e.className,r=e.label,o=e.popupTriggerType,i=e.popupContainer,l=e.popupStyle,s=e.popupClassName,u=e.popupProps,d=e.followTrigger,c=e.selectMode,f=e.menuProps,p=e.children,e=(0,y.default)(e,["prefix","style","className","label","popupTriggerType","popupContainer","popupStyle","popupClassName","popupProps","followTrigger","selectMode","menuProps","children"]),h=this.state,m=(0,_.default)(((m={})[t+"menu-btn"]=!0,m[t+"expand"]=h.visible,m.opened=h.visible,m),a),a=(0,_.default)(((a={})[t+"menu-btn-popup"]=!0,a),s),s=v.default.createElement(b.default,(0,g.default)({style:n,className:m},k.obj.pickOthers(E.propTypes,e)),r," ",v.default.createElement(w.default,{type:"arrow-down",className:t+"menu-btn-arrow"}));return v.default.createElement(S,(0,g.default)({},u,{followTrigger:d,visible:h.visible,onVisibleChange:this.onPopupVisibleChange,trigger:s,triggerType:o,container:i,onOpen:this.onPopupOpen,style:l,className:a}),v.default.createElement("div",{className:t+"menu-btn-spacing-tb"},v.default.createElement(M.default,(0,g.default)({},f,{ref:this._menuRefHandler,selectedKeys:h.selectedKeys,selectMode:c,onSelect:this.selectMenu,onItemClick:this.clickMenuItem}),p)))},u=n=E,n.propTypes={prefix:i.default.string,label:i.default.node,autoWidth:i.default.bool,popupTriggerType:i.default.oneOf(["click","hover"]),popupContainer:i.default.any,visible:i.default.bool,defaultVisible:i.default.bool,onVisibleChange:i.default.func,popupStyle:i.default.object,popupClassName:i.default.string,popupProps:i.default.object,followTrigger:i.default.bool,defaultSelectedKeys:i.default.array,selectedKeys:i.default.array,selectMode:i.default.oneOf(["single","multiple"]),onItemClick:i.default.func,onSelect:i.default.func,menuProps:i.default.object,style:i.default.object,className:i.default.string,children:i.default.any},n.defaultProps={prefix:"next-",autoWidth:!0,popupTriggerType:"click",onVisibleChange:k.func.noop,onItemClick:k.func.noop,onSelect:k.func.noop,defaultSelectedKeys:[],menuProps:{}},u);function E(e,t){(0,a.default)(this,E);var i=(0,r.default)(this,f.call(this,e,t));return i.clickMenuItem=function(e){for(var t,n=arguments.length,a=Array(1<n?n-1:0),r=1;r<n;r++)a[r-1]=arguments[r];var o=i.props.selectMode;(t=i.props).onItemClick.apply(t,[e].concat(a)),"multiple"!==o&&i.onPopupVisibleChange(!1,"menuSelect")},i.selectMenu=function(e){for(var t,n=arguments.length,a=Array(1<n?n-1:0),r=1;r<n;r++)a[r-1]=arguments[r];"selectedKeys"in i.props||i.setState({selectedKeys:e}),(t=i.props).onSelect.apply(t,[e].concat(a))},i.onPopupOpen=function(){var e=(0,l.findDOMNode)(i);i.props.autoWidth&&e&&i.menu&&(i.menu.style.width=e.offsetWidth+"px")},i.onPopupVisibleChange=function(e,t){"visible"in i.props||i.setState({visible:e}),i.props.onVisibleChange(e,t)},i._menuRefHandler=function(e){i.menu=(0,l.findDOMNode)(e);var t=i.props.menuProps.ref;"function"==typeof t&&t(e)},i.state={selectedKeys:e.defaultSelectedKeys,visible:e.defaultVisible},i}o.displayName="MenuButton",o.Item=M.default.Item,o.Group=M.default.Group,o.Divider=M.default.Divider,t.default=d.default.config((0,s.polyfill)(o),{componentName:"MenuButton"}),e.exports=t.default},function(e,t,n){"use strict"; |
| | | /* |
| | | object-assign |
| | | (c) Sindre Sorhus |
| | | @license MIT |
| | | */var s=Object.getOwnPropertySymbols,u=Object.prototype.hasOwnProperty,d=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(Object.assign){var e=new String("abc");if(e[5]="de","5"!==Object.getOwnPropertyNames(e)[0]){for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;var a,r=Object.getOwnPropertyNames(t).map(function(e){return t[e]});if("0123456789"===r.join(""))return a={},"abcdefghijklmnopqrst".split("").forEach(function(e){a[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},a)).join("")?1:void 0}}}catch(e){}}()?Object.assign:function(e,t){for(var n,a=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),r=1;r<arguments.length;r++){for(var o in n=Object(arguments[r]))u.call(n,o)&&(a[o]=n[o]);if(s)for(var i=s(n),l=0;l<i.length;l++)d.call(n,i[l])&&(a[i[l]]=n[i[l]])}return a}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,a=arguments[t];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n])}return e},r=(t.routerReducer=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:o,t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},n=t.type,t=t.payload;return n!==r?e:a({},e,{locationBeforeTransitions:t})},t.LOCATION_CHANGE="@@router/LOCATION_CHANGE"),o={locationBeforeTransitions:null}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.CALL_HISTORY_METHOD="@@router/CALL_HISTORY_METHOD";function a(a){return function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return{type:"@@router/CALL_HISTORY_METHOD",payload:{method:a,args:t}}}}var r=t.push=a("push"),o=t.replace=a("replace"),i=t.go=a("go"),l=t.goBack=a("goBack"),s=t.goForward=a("goForward");t.routerActions={push:r,replace:o,go:i,goBack:l,goForward:s}},function(e,t,n){"use strict";e.exports=n(456)},function(e,t,n){var o=n(463);e.exports=function(a,r,e){if(o(a),void 0===r)return a;switch(e){case 1:return function(e){return a.call(r,e)};case 2:return function(e,t){return a.call(r,e,t)};case 3:return function(e,t,n){return a.call(r,e,t,n)}}return function(){return a.apply(r,arguments)}}},function(e,t,n){e.exports=!n(78)&&!n(108)(function(){return 7!=Object.defineProperty(n(192)("div"),"a",{get:function(){return 7}}).a})},function(e,t,n){var a=n(93),r=n(76).document,o=a(r)&&a(r.createElement);e.exports=function(e){return o?r.createElement(e):{}}},function(e,t,n){var i=n(85),l=n(94),s=n(465)(!1),u=n(145)("IE_PROTO");e.exports=function(e,t){var n,a=l(e),r=0,o=[];for(n in a)n!=u&&i(a,n)&&o.push(n);for(;t.length>r;)!i(a,n=t[r++])||~s(o,n)||o.push(n);return o}},function(e,t,n){var a=n(195);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==a(e)?e.split(""):Object(e)}},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){"use strict";function y(){return this}var v=n(122),_=n(91),b=n(197),w=n(92),M=n(150),k=n(472),S=n(152),E=n(475),x=n(95)("iterator"),C=!([].keys&&"next"in[].keys()),L="values";e.exports=function(e,t,n,a,r,o,i){k(n,t,a);function l(e){if(!C&&e in f)return f[e];switch(e){case"keys":case L:return function(){return new n(this,e)}}return function(){return new n(this,e)}}var s,u,a=t+" Iterator",d=r==L,c=!1,f=e.prototype,p=f[x]||f["@@iterator"]||r&&f[r],h=p||l(r),m=r?d?l("entries"):h:void 0,g="Array"==t&&f.entries||p;if(g&&(g=E(g.call(new e)))!==Object.prototype&&g.next&&(S(g,a,!0),v||"function"==typeof g[x]||w(g,x,y)),d&&p&&p.name!==L&&(c=!0,h=function(){return p.call(this)}),v&&!i||!C&&!c&&f[x]||w(f,x,h),M[t]=h,M[a]=y,r)if(s={values:d?h:l(L),keys:o?h:l("keys"),entries:m},i)for(u in s)u in f||b(f,u,s[u]);else _(_.P+_.F*(C||c),t,s);return s}},function(e,t,n){e.exports=n(92)},function(e,t,n){var a=n(193),r=n(147).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return a(e,r)}},function(e,t,n){var a=n(124),r=n(120),o=n(94),i=n(142),l=n(85),s=n(191),u=Object.getOwnPropertyDescriptor;t.f=n(78)?u:function(e,t){if(e=o(e),t=i(t,!0),s)try{return u(e,t)}catch(e){}if(l(e,t))return r(!a.f.call(e,t),e[t])}},function(e,t,n){"use strict";t.__esModule=!0;var v=a(n(2));t.default=function(e,t,n){var a=e.prefix,r=e.locale,o=(e.defaultPropsConfig,e.pure),i=e.rtl,l=e.device,s=e.popupContainer,e=e.errorBoundary,u=t.nextPrefix,d=t.nextLocale,c=t.nextDefaultPropsConfig,f=t.nextPure,p=t.nextWarning,h=t.nextRtl,m=t.nextDevice,g=t.nextPopupContainer,t=t.nextErrorBoundary,a=a||u,u=void 0,y=n;switch(n){case"DatePicker2":y="DatePicker";break;case"Calendar2":y="Calendar";break;case"TimePicker2":y="TimePicker"}d&&(u=d[y])&&(u.momentLocale=d.momentLocale);n=void 0;r?n=b.obj.deepMerge({},_.default[y],u,r):u&&(n=b.obj.deepMerge({},_.default[y],u));d="boolean"==typeof o?o:f,r="boolean"==typeof i?i:h,u=(0,v.default)({},w(t),w(e));"open"in u||(u.open=!1);return{prefix:a,locale:n,pure:d,rtl:r,warning:p,defaultPropsConfig:c||{},device:l||m||void 0,popupContainer:s||g,errorBoundary:u}};var _=a(n(44)),b=n(11);function a(e){return e&&e.__esModule?e:{default:e}}var w=function(e){return null==e?{}:"boolean"==typeof e?{open:e}:(0,v.default)({open:!0},e)};e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.matches=t.hasDOM=void 0;var a=n(38),r=(a=a)&&a.__esModule?a:{default:a},o=(t.hasClass=s,t.addClass=u,t.removeClass=d,t.toggleClass=function(e,t){if(!l||!e)return!1;{var n;return e.classList?e.classList.toggle(t):(((n=s(e,t))?d:u)(e,t,!0),!n)}},t.getNodeHozWhitespace=function(e){var t=m(e,"paddingLeft"),n=m(e,"paddingRight"),a=m(e,"marginLeft"),e=m(e,"marginRight");return t+n+a+e},t.getStyle=m,t.setStyle=g,t.scrollbar=v,t.hasScroll=function(e){if("hidden"===m(e,"overflow"))return!1;var t=e.parentNode;return t&&t.scrollHeight>t.clientHeight&&0<v().width&&y(t)&&y(e)},t.getOffset=function(e){var t=e.getBoundingClientRect(),e=e.ownerDocument.defaultView;return{top:t.top+e.pageYOffset,left:t.left+e.pageXOffset}},t.getPixels=function(e){var t=document.defaultView;if("number"==typeof+e&&!isNaN(+e))return+e;if("string"==typeof e){var n=/(\d+)px/,a=/(\d+)vh/;if(Array.isArray(e.match(n)))return+e.match(n)[1]||0;if(Array.isArray(e.match(a)))return n=t.innerHeight/100,e.match(a)[1]*n||0}return 0},t.getClosest=function(e,t){if(l&&e){if(Element.prototype.closest)return e.closest(t);if(!document.documentElement.contains(e))return null;do{if(_(e,t))return e}while(null!==(e=e.parentElement))}return null},t.getMatches=_,t.saveRef=function(t){return t?function(e){if("string"==typeof t)throw new Error("can not set ref string for "+t);"function"==typeof t?t(e):Object.prototype.hasOwnProperty.call(t,"current")&&(t.current=e)}:null},n(202)),i=n(96);var l=t.hasDOM="undefined"!=typeof window&&!!window.document&&!!document.createElement;function s(e,t){return!(!l||!e)&&(e.classList?e.classList.contains(t):-1<e.className.indexOf(t))}function u(e,t,n){l&&e&&(e.classList?e.classList.add(t):!0!==n&&s(e,t)||(e.className+=" "+t))}function d(e,t,n){l&&e&&(e.classList?e.classList.remove(t):!0!==n&&!s(e,t)||(e.className=e.className.replace(t,"").replace(/\s+/g," ").trim()))}var c;t.matches=(c=null,l&&(a=document.body||document.head,c=a.matches?"matches":a.webkitMatchesSelector?"webkitMatchesSelector":a.msMatchesSelector?"msMatchesSelector":a.mozMatchesSelector?"mozMatchesSelector":null),function(e,t){return!(!l||!e)&&(!!c&&e[c](t))});var f=/margin|padding|width|height|max|min|offset|size|top/i,p={left:1,top:1,right:1,bottom:1};var h={cssFloat:1,styleFloat:1,float:1};function m(e,t){if(!l||!e)return null;var n=(n=e)&&1===n.nodeType?window.getComputedStyle(n,null):{};if(1===arguments.length)return n;if((0,i.isPlainObject)(n))return null;t=h[t]?"cssFloat"in e.style?"cssFloat":"styleFloat":t;var a=e,r=t,n=n.getPropertyValue((0,o.hyphenate)(t))||e.style[(0,o.camelcase)(t)];if(r=r.toLowerCase(),"auto"===n){if("height"===r)return a.offsetHeight||0;if("width"===r)return a.offsetWidth||0}return r in p||(p[r]=f.test(r)),p[r]?parseFloat(n)||0:n}function g(n,e,t){if(!l||!n)return!1;"object"===(void 0===e?"undefined":(0,r.default)(e))&&2===arguments.length?(0,i.each)(e,function(e,t){return g(n,t,e)}):(e=h[e]?"cssFloat"in n.style?"cssFloat":"styleFloat":e,"number"==typeof t&&f.test(e)&&(t+="px"),n.style[(0,o.camelcase)(e)]=t)}var y=function(e){try{var t=window.getComputedStyle(e,"::-webkit-scrollbar");return!t||"none"!==t.getPropertyValue("display")}catch(e){}return!0};function v(){var e=document.createElement("div"),t=(e.className+="just-to-get-scrollbar-size",g(e,{position:"absolute",width:"100px",height:"100px",overflow:"scroll",top:"-9999px"}),document.body&&document.body.appendChild(e),e.offsetWidth-e.clientWidth),n=e.offsetHeight-e.clientHeight;return document.body.removeChild(e),{width:t,height:n}}function _(e,t){return l&&e?Element.prototype.matches?e.matches(t):Element.prototype.msMatchesSelector?e.msMatchesSelector(t):Element.prototype.webkitMatchesSelector?e.webkitMatchesSelector(t):null:null}},function(e,t,n){"use strict";t.__esModule=!0,t.camelcase=function(e){return/-/.test(e)?e.toLowerCase().replace(/-([a-z])/g,function(e,t){return t.toUpperCase()}):e||""},t.hyphenate=function(e){var t=(0,r.typeOf)(e);return"String"===t?e.replace(/([A-Z])/g,function(e){return"-"+e.toLowerCase()}):((0,a.warning)("[ hyphenate(str: string): string ] Expected arguments[0] to be a string but get a "+t+".It will return an empty string without any processing."),"")},t.template=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},n=(0,r.typeOf)(e);return"String"===n?e.replace(/\{[a-z]*\}/g,function(e){e=e.substring(1,e.length-1);return t[e]||""}):((0,a.warning)("[ template(tpl: string, object: object): string ] Expected arguments[0] to be a string but get a "+n+".It will return an empty string without any processing."),"")};var a=n(203),r=n(96)},function(e,t,n){"use strict";t.__esModule=!0,t.deprecated=function(e,t,n){if(!(0,a.isProduction)()&&"undefined"!=typeof console&&console.error)return console.error("Warning: [ "+e+" ] is deprecated at [ "+n+" ], use [ "+t+" ] instead of it.")},t.warning=function(e){if(!(0,a.isProduction)()&&"undefined"!=typeof console&&console.error)return console.error("Warning: "+e)};var a=n(204)},function(e,t,n){"use strict";t.__esModule=!0;var a=t.ieVersion="undefined"!=typeof document?document.documentMode:void 0,r=t.isProduction=function(){var e=!1;try{e=!0}catch(e){}return e};t.default={ieVersion:a,isProduction:r}},function(e,t,n){e.exports=function(){"use strict";var u=1e3,d=6e4,c=36e5,s="millisecond",p="second",h="minute",m="hour",g="day",y="week",v="month",f="quarter",_="year",b="date",w="Invalid Date",i=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,M=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,e={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_")},o=function(e,t,n){var a=String(e);return!a||a.length>=t?e:""+Array(t+1-a.length).join(n)+e},t={s:o,z:function(e){var t=-e.utcOffset(),n=Math.abs(t),a=Math.floor(n/60),r=n%60;return(t<=0?"+":"-")+o(a,2,"0")+":"+o(r,2,"0")},m:function e(t,n){if(t.date()<n.date())return-e(n,t);var a=12*(n.year()-t.year())+(n.month()-t.month()),r=t.clone().add(a,v),o=n-r<0,i=t.clone().add(a+(o?-1:1),v);return+(-(a+(n-r)/(o?r-i:i-r))||0)},a:function(e){return e<0?Math.ceil(e)||0:Math.floor(e)},p:function(e){return{M:v,y:_,w:y,d:g,D:b,h:m,m:h,s:p,ms:s,Q:f}[e]||String(e||"").toLowerCase().replace(/s$/,"")},u:function(e){return void 0===e}},k="en",S={},a=(S[k]=e,function(e){return e instanceof l}),r=function e(t,n,a){var r;if(!t)return k;if("string"==typeof t){var o=t.toLowerCase();S[o]&&(r=o),n&&(S[o]=n,r=o);var i=t.split("-");if(!r&&i.length>1)return e(i[0])}else{var l=t.name;S[l]=t,r=l}return!a&&r&&(k=r),r||!a&&k},E=function(e,t){if(a(e))return e.clone();var n="object"==typeof t?t:{};return n.date=e,n.args=arguments,new l(n)},x=t,l=(x.l=r,x.i=a,x.w=function(e,t){return E(e,{locale:t.$L,utc:t.$u,x:t.$x,$offset:t.$offset})},function(){function e(e){this.$L=r(e.locale,null,!0),this.parse(e)}var t=e.prototype;return t.parse=function(e){this.$d=function(e){var t=e.date,n=e.utc;if(null===t)return new Date(NaN);if(x.u(t))return new Date;if(t instanceof Date)return new Date(t);if("string"==typeof t&&!/Z$/i.test(t)){var a=t.match(i);if(a){var r=a[2]-1||0,o=(a[7]||"0").substring(0,3);return n?new Date(Date.UTC(a[1],r,a[3]||1,a[4]||0,a[5]||0,a[6]||0,o)):new Date(a[1],r,a[3]||1,a[4]||0,a[5]||0,a[6]||0,o)}}return new Date(t)}(e),this.$x=e.x||{},this.init()},t.init=function(){var e=this.$d;this.$y=e.getFullYear(),this.$M=e.getMonth(),this.$D=e.getDate(),this.$W=e.getDay(),this.$H=e.getHours(),this.$m=e.getMinutes(),this.$s=e.getSeconds(),this.$ms=e.getMilliseconds()},t.$utils=function(){return x},t.isValid=function(){return!(this.$d.toString()===w)},t.isSame=function(e,t){var n=E(e);return this.startOf(t)<=n&&n<=this.endOf(t)},t.isAfter=function(e,t){return E(e)<this.startOf(t)},t.isBefore=function(e,t){return this.endOf(t)<E(e)},t.$g=function(e,t,n){return x.u(e)?this[t]:this.set(n,e)},t.unix=function(){return Math.floor(this.valueOf()/1e3)},t.valueOf=function(){return this.$d.getTime()},t.startOf=function(e,t){var a=this,r=!!x.u(t)||t,n=x.p(e),o=function(e,t){var n=x.w(a.$u?Date.UTC(a.$y,t,e):new Date(a.$y,t,e),a);return r?n:n.endOf(g)},i=function(e,t){return x.w(a.toDate()[e].apply(a.toDate("s"),(r?[0,0,0,0]:[23,59,59,999]).slice(t)),a)},l=this.$W,s=this.$M,u=this.$D,d="set"+(this.$u?"UTC":"");switch(n){case _:return r?o(1,0):o(31,11);case v:return r?o(1,s):o(0,s+1);case y:var c=this.$locale().weekStart||0,f=(l<c?l+7:l)-c;return o(r?u-f:u+(6-f),s);case g:case b:return i(d+"Hours",0);case m:return i(d+"Minutes",1);case h:return i(d+"Seconds",2);case p:return i(d+"Milliseconds",3);default:return this.clone()}},t.endOf=function(e){return this.startOf(e,!1)},t.$set=function(e,t){var n,a=x.p(e),r="set"+(this.$u?"UTC":""),o=(n={},n[g]=r+"Date",n[b]=r+"Date",n[v]=r+"Month",n[_]=r+"FullYear",n[m]=r+"Hours",n[h]=r+"Minutes",n[p]=r+"Seconds",n[s]=r+"Milliseconds",n)[a],i=a===g?this.$D+(t-this.$W):t;if(a===v||a===_){var l=this.clone().set(b,1);l.$d[o](i),l.init(),this.$d=l.set(b,Math.min(this.$D,l.daysInMonth())).$d}else o&&this.$d[o](i);return this.init(),this},t.set=function(e,t){return this.clone().$set(e,t)},t.get=function(e){return this[x.p(e)]()},t.add=function(n,e){var t,a=this;n=Number(n);var r=x.p(e),o=function(e){var t=E(a);return x.w(t.date(t.date()+Math.round(e*n)),a)};if(r===v)return this.set(v,this.$M+n);if(r===_)return this.set(_,this.$y+n);if(r===g)return o(1);if(r===y)return o(7);var i=(t={},t[h]=d,t[m]=c,t[p]=u,t)[r]||1,l=this.$d.getTime()+n*i;return x.w(l,this)},t.subtract=function(e,t){return this.add(-1*e,t)},t.format=function(e){var r=this,t=this.$locale();if(!this.isValid())return t.invalidDate||w;var o=e||"YYYY-MM-DDTHH:mm:ssZ",n=x.z(this),a=this.$H,i=this.$m,l=this.$M,s=t.weekdays,u=t.months,d=function(e,t,n,a){return e&&(e[t]||e(r,o))||n[t].slice(0,a)},c=function(e){return x.s(a%12||12,e,"0")},f=t.meridiem||function(e,t,n){var a=e<12?"AM":"PM";return n?a.toLowerCase():a},p={YY:String(this.$y).slice(-2),YYYY:this.$y,M:l+1,MM:x.s(l+1,2,"0"),MMM:d(t.monthsShort,l,u,3),MMMM:d(u,l),D:this.$D,DD:x.s(this.$D,2,"0"),d:String(this.$W),dd:d(t.weekdaysMin,this.$W,s,2),ddd:d(t.weekdaysShort,this.$W,s,3),dddd:s[this.$W],H:String(a),HH:x.s(a,2,"0"),h:c(1),hh:c(2),a:f(a,i,!0),A:f(a,i,!1),m:String(i),mm:x.s(i,2,"0"),s:String(this.$s),ss:x.s(this.$s,2,"0"),SSS:x.s(this.$ms,3,"0"),Z:n};return o.replace(M,function(e,t){return t||p[e]||n.replace(":","")})},t.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},t.diff=function(e,t,n){var a,r=x.p(t),o=E(e),i=(o.utcOffset()-this.utcOffset())*d,l=this-o,s=x.m(this,o);return s=(a={},a[_]=s/12,a[v]=s,a[f]=s/3,a[y]=(l-i)/6048e5,a[g]=(l-i)/864e5,a[m]=l/c,a[h]=l/d,a[p]=l/u,a)[r]||l,n?s:x.a(s)},t.daysInMonth=function(){return this.endOf(v).$D},t.$locale=function(){return S[this.$L]},t.locale=function(e,t){if(!e)return this.$L;var n=this.clone(),a=r(e,t,!0);return a&&(n.$L=a),n},t.clone=function(){return x.w(this.$d,this)},t.toDate=function(){return new Date(this.valueOf())},t.toJSON=function(){return this.isValid()?this.toISOString():null},t.toISOString=function(){return this.$d.toISOString()},t.toString=function(){return this.$d.toUTCString()},e}()),n=l.prototype;return E.prototype=n,[["$ms",s],["$s",p],["$m",h],["$H",m],["$W",g],["$M",v],["$y",_],["$D",b]].forEach(function(t){n[t[1]]=function(e){return this.$g(e,t[0],t[1])}}),E.extend=function(e,t){return e.$i||(e(t,l,E),e.$i=!0),E},E.locale=r,E.isDayjs=a,E.unix=function(e){return E(1e3*e)},E.en=S[k],E.Ls=S,E.p={},E}()},function(e,t,n){"use strict";t.__esModule=!0,t.default={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,PAGE_UP:33,PAGE_DOWN:34,ESCAPE:27,LEFT_ARROW:37,UP_ARROW:38,RIGHT_ARROW:39,DOWN_ARROW:40,CONTROL:17,OPTION:18,CMD:91,COMMAND:91,DELETE:8},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=l(n(4)),r=l(n(6)),o=l(n(7)),i=l(n(0)),n=l(n(3));function l(e){return e&&e.__esModule?e:{default:e}}function s(){return""}s.propTypes={error:n.default.object,errorInfo:n.default.object};u=i.default.Component,(0,o.default)(d,u),d.prototype.componentDidCatch=function(e,t){this.setState({error:e,errorInfo:t});var n=this.props.afterCatch;"afterCatch"in this.props&&"function"==typeof n&&this.props.afterCatch(e,t)},d.prototype.render=function(){var e=this.props.fallbackUI;return this.state.errorInfo?i.default.createElement(void 0===e?s:e,{error:this.state.error,errorInfo:this.state.errorInfo}):this.props.children},d.propTypes={children:n.default.element,afterCatch:n.default.func,fallbackUI:n.default.func};var u,o=d;function d(e){(0,a.default)(this,d);e=(0,r.default)(this,u.call(this,e));return e.state={error:null,errorInfo:null},e}o.displayName="ErrorBoundary",t.default=o,e.exports=t.default},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){if(e<12)return n?"vm":"VM";else return n?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[Môre om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",ss:"%d sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(e===1||e===8||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"Ù¡",2:"Ù¢",3:"Ù£",4:"Ù¤",5:"Ù¥",6:"Ù¦",7:"Ù§",8:"Ù¨",9:"Ù©",0:"Ù "},n={"Ù¡":"1","Ù¢":"2","Ù£":"3","Ù¤":"4","Ù¥":"5","Ù¦":"6","Ù§":"7","Ù¨":"8","Ù©":"9","Ù ":"0"},l=function(e){return e===0?0:e===1?1:e===2?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},s={s:["Ø£ÙÙ Ù
٠ثاÙÙØ©","ثاÙÙØ© ÙØ§ØØ¯Ø©",["ثاÙÙØªØ§Ù","ثاÙÙØªÙÙ"],"%d Ø«ÙØ§Ù","%d ثاÙÙØ©","%d ثاÙÙØ©"],m:["Ø£ÙÙ Ù
٠دÙÙÙØ©","دÙÙÙØ© ÙØ§ØØ¯Ø©",["دÙÙÙØªØ§Ù","دÙÙÙØªÙÙ"],"%d Ø¯ÙØ§Ø¦Ù","%d دÙÙÙØ©","%d دÙÙÙØ©"],h:["Ø£ÙÙ Ù
٠ساعة","ساعة ÙØ§ØØ¯Ø©",["ساعتاÙ","ساعتÙÙ"],"%d ساعات","%d ساعة","%d ساعة"],d:["Ø£ÙÙ Ù
Ù ÙÙÙ
","ÙÙÙ
ÙØ§ØØ¯",["ÙÙÙ
اÙ","ÙÙÙ
ÙÙ"],"%d Ø£ÙØ§Ù
","%d ÙÙÙ
ÙØ§","%d ÙÙÙ
"],M:["Ø£ÙÙ Ù
Ù Ø´ÙØ±","Ø´ÙØ± ÙØ§ØØ¯",["Ø´ÙØ±Ø§Ù","Ø´ÙØ±ÙÙ"],"%d Ø£Ø´ÙØ±","%d Ø´ÙØ±Ø§","%d Ø´ÙØ±"],y:["Ø£ÙÙ Ù
٠عاÙ
","عاÙ
ÙØ§ØØ¯",["عاÙ
اÙ","عاÙ
ÙÙ"],"%d Ø£Ø¹ÙØ§Ù
","%d عاÙ
ÙØ§","%d عاÙ
"]},a=function(i){return function(e,t,n,a){var r=l(e),o=s[i][l(e)];if(r===2)o=o[t?0:1];return o.replace(/%d/i,e)}},r=["ÙÙØ§Ùر","ÙØ¨Ø±Ø§Ùر","Ù
ارس","أبرÙÙ","Ù
اÙÙ","ÙÙÙÙÙ","ÙÙÙÙÙ","أغسطس","سبتÙ
بر","Ø£ÙØªÙبر","ÙÙÙÙ
بر","Ø¯ÙØ³Ù
بر"],o;e.defineLocale("ar",{months:r,monthsShort:r,weekdays:"Ø§ÙØ£ØØ¯_Ø§ÙØ¥Ø«ÙÙÙ_Ø§ÙØ«Ùاثاء_Ø§ÙØ£Ø±Ø¨Ø¹Ø§Ø¡_Ø§ÙØ®Ù
ÙØ³_Ø§ÙØ¬Ù
عة_Ø§ÙØ³Ø¨Øª".split("_"),weekdaysShort:"Ø£ØØ¯_إثÙÙÙ_Ø«ÙØ§Ø«Ø§Ø¡_أربعاء_Ø®Ù
ÙØ³_جÙ
عة_سبت".split("_"),weekdaysMin:"Ø_Ù_Ø«_ر_Ø®_ج_س".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/âM/âYYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|Ù
/,isPM:function(e){return"Ù
"===e},meridiem:function(e,t,n){if(e<12)return"ص";else return"Ù
"},calendar:{sameDay:"[اÙÙÙÙ
Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextDay:"[ØºØ¯ÙØ§ Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextWeek:"dddd [Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastDay:"[Ø£Ù
س Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastWeek:"dddd [Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"Ù
ÙØ° %s",s:a("s"),ss:a("s"),m:a("m"),mm:a("m"),h:a("h"),hh:a("h"),d:a("d"),dd:a("d"),M:a("M"),MM:a("M"),y:a("y"),yy:a("y")},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return n[e]}).replace(/Ø/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"Ø")},week:{dow:6,doy:12}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var l=function(e){return e===0?0:e===1?1:e===2?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},s={s:["Ø£ÙÙ Ù
٠ثاÙÙØ©","ثاÙÙØ© ÙØ§ØØ¯Ø©",["ثاÙÙØªØ§Ù","ثاÙÙØªÙÙ"],"%d Ø«ÙØ§Ù","%d ثاÙÙØ©","%d ثاÙÙØ©"],m:["Ø£ÙÙ Ù
٠دÙÙÙØ©","دÙÙÙØ© ÙØ§ØØ¯Ø©",["دÙÙÙØªØ§Ù","دÙÙÙØªÙÙ"],"%d Ø¯ÙØ§Ø¦Ù","%d دÙÙÙØ©","%d دÙÙÙØ©"],h:["Ø£ÙÙ Ù
٠ساعة","ساعة ÙØ§ØØ¯Ø©",["ساعتاÙ","ساعتÙÙ"],"%d ساعات","%d ساعة","%d ساعة"],d:["Ø£ÙÙ Ù
Ù ÙÙÙ
","ÙÙÙ
ÙØ§ØØ¯",["ÙÙÙ
اÙ","ÙÙÙ
ÙÙ"],"%d Ø£ÙØ§Ù
","%d ÙÙÙ
ÙØ§","%d ÙÙÙ
"],M:["Ø£ÙÙ Ù
Ù Ø´ÙØ±","Ø´ÙØ± ÙØ§ØØ¯",["Ø´ÙØ±Ø§Ù","Ø´ÙØ±ÙÙ"],"%d Ø£Ø´ÙØ±","%d Ø´ÙØ±Ø§","%d Ø´ÙØ±"],y:["Ø£ÙÙ Ù
٠عاÙ
","عاÙ
ÙØ§ØØ¯",["عاÙ
اÙ","عاÙ
ÙÙ"],"%d Ø£Ø¹ÙØ§Ù
","%d عاÙ
ÙØ§","%d عاÙ
"]},t=function(i){return function(e,t,n,a){var r=l(e),o=s[i][l(e)];if(r===2)o=o[t?0:1];return o.replace(/%d/i,e)}},n=["جاÙÙÙ","ÙÙÙØ±Ù","Ù
ارس","Ø£ÙØ±ÙÙ","Ù
اÙ","Ø¬ÙØ§Ù","جÙÙÙÙØ©","Ø£ÙØª","سبتÙ
بر","Ø£ÙØªÙبر","ÙÙÙÙ
بر","Ø¯ÙØ³Ù
بر"],a;e.defineLocale("ar-dz",{months:n,monthsShort:n,weekdays:"Ø§ÙØ£ØØ¯_Ø§ÙØ¥Ø«ÙÙÙ_Ø§ÙØ«Ùاثاء_Ø§ÙØ£Ø±Ø¨Ø¹Ø§Ø¡_Ø§ÙØ®Ù
ÙØ³_Ø§ÙØ¬Ù
عة_Ø§ÙØ³Ø¨Øª".split("_"),weekdaysShort:"Ø£ØØ¯_إثÙÙÙ_Ø«ÙØ§Ø«Ø§Ø¡_أربعاء_Ø®Ù
ÙØ³_جÙ
عة_سبت".split("_"),weekdaysMin:"Ø_Ù_Ø«_ر_Ø®_ج_س".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/âM/âYYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|Ù
/,isPM:function(e){return"Ù
"===e},meridiem:function(e,t,n){if(e<12)return"ص";else return"Ù
"},calendar:{sameDay:"[اÙÙÙÙ
Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextDay:"[ØºØ¯ÙØ§ Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextWeek:"dddd [Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastDay:"[Ø£Ù
س Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastWeek:"dddd [Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"Ù
ÙØ° %s",s:t("s"),ss:t("s"),m:t("m"),mm:t("m"),h:t("h"),hh:t("h"),d:t("d"),dd:t("d"),M:t("M"),MM:t("M"),y:t("y"),yy:t("y")},postformat:function(e){return e.replace(/,/g,"Ø")},week:{dow:0,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ar-kw",{months:"ÙÙØ§Ùر_ÙØ¨Ø±Ø§Ùر_Ù
ارس_أبرÙÙ_Ù
اÙ_ÙÙÙÙÙ_ÙÙÙÙÙØ²_غشت_Ø´ØªÙØ¨Ø±_Ø£ÙØªÙبر_ÙÙÙØ¨Ø±_Ø¯Ø¬ÙØ¨Ø±".split("_"),monthsShort:"ÙÙØ§Ùر_ÙØ¨Ø±Ø§Ùر_Ù
ارس_أبرÙÙ_Ù
اÙ_ÙÙÙÙÙ_ÙÙÙÙÙØ²_غشت_Ø´ØªÙØ¨Ø±_Ø£ÙØªÙبر_ÙÙÙØ¨Ø±_Ø¯Ø¬ÙØ¨Ø±".split("_"),weekdays:"Ø§ÙØ£ØØ¯_Ø§ÙØ¥ØªÙÙÙ_Ø§ÙØ«Ùاثاء_Ø§ÙØ£Ø±Ø¨Ø¹Ø§Ø¡_Ø§ÙØ®Ù
ÙØ³_Ø§ÙØ¬Ù
عة_Ø§ÙØ³Ø¨Øª".split("_"),weekdaysShort:"Ø§ØØ¯_اتÙÙÙ_Ø«ÙØ§Ø«Ø§Ø¡_اربعاء_Ø®Ù
ÙØ³_جÙ
عة_سبت".split("_"),weekdaysMin:"Ø_Ù_Ø«_ر_Ø®_ج_س".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اÙÙÙÙ
عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextDay:"[غدا عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextWeek:"dddd [عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastDay:"[Ø£Ù
س عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastWeek:"dddd [عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",sameElse:"L"},relativeTime:{future:"ÙÙ %s",past:"Ù
ÙØ° %s",s:"Ø«ÙØ§Ù",ss:"%d ثاÙÙØ©",m:"دÙÙÙØ©",mm:"%d Ø¯ÙØ§Ø¦Ù",h:"ساعة",hh:"%d ساعات",d:"ÙÙÙ
",dd:"%d Ø£ÙØ§Ù
",M:"Ø´ÙØ±",MM:"%d Ø£Ø´ÙØ±",y:"Ø³ÙØ©",yy:"%d سÙÙØ§Øª"},week:{dow:0,doy:12}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},l=function(e){return e===0?0:e===1?1:e===2?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},s={s:["Ø£ÙÙ Ù
٠ثاÙÙØ©","ثاÙÙØ© ÙØ§ØØ¯Ø©",["ثاÙÙØªØ§Ù","ثاÙÙØªÙÙ"],"%d Ø«ÙØ§Ù","%d ثاÙÙØ©","%d ثاÙÙØ©"],m:["Ø£ÙÙ Ù
٠دÙÙÙØ©","دÙÙÙØ© ÙØ§ØØ¯Ø©",["دÙÙÙØªØ§Ù","دÙÙÙØªÙÙ"],"%d Ø¯ÙØ§Ø¦Ù","%d دÙÙÙØ©","%d دÙÙÙØ©"],h:["Ø£ÙÙ Ù
٠ساعة","ساعة ÙØ§ØØ¯Ø©",["ساعتاÙ","ساعتÙÙ"],"%d ساعات","%d ساعة","%d ساعة"],d:["Ø£ÙÙ Ù
Ù ÙÙÙ
","ÙÙÙ
ÙØ§ØØ¯",["ÙÙÙ
اÙ","ÙÙÙ
ÙÙ"],"%d Ø£ÙØ§Ù
","%d ÙÙÙ
ÙØ§","%d ÙÙÙ
"],M:["Ø£ÙÙ Ù
Ù Ø´ÙØ±","Ø´ÙØ± ÙØ§ØØ¯",["Ø´ÙØ±Ø§Ù","Ø´ÙØ±ÙÙ"],"%d Ø£Ø´ÙØ±","%d Ø´ÙØ±Ø§","%d Ø´ÙØ±"],y:["Ø£ÙÙ Ù
٠عاÙ
","عاÙ
ÙØ§ØØ¯",["عاÙ
اÙ","عاÙ
ÙÙ"],"%d Ø£Ø¹ÙØ§Ù
","%d عاÙ
ÙØ§","%d عاÙ
"]},n=function(i){return function(e,t,n,a){var r=l(e),o=s[i][l(e)];if(r===2)o=o[t?0:1];return o.replace(/%d/i,e)}},a=["ÙÙØ§Ùر","ÙØ¨Ø±Ø§Ùر","Ù
ارس","أبرÙÙ","Ù
اÙÙ","ÙÙÙÙÙ","ÙÙÙÙÙ","أغسطس","سبتÙ
بر","Ø£ÙØªÙبر","ÙÙÙÙ
بر","Ø¯ÙØ³Ù
بر"],r;e.defineLocale("ar-ly",{months:a,monthsShort:a,weekdays:"Ø§ÙØ£ØØ¯_Ø§ÙØ¥Ø«ÙÙÙ_Ø§ÙØ«Ùاثاء_Ø§ÙØ£Ø±Ø¨Ø¹Ø§Ø¡_Ø§ÙØ®Ù
ÙØ³_Ø§ÙØ¬Ù
عة_Ø§ÙØ³Ø¨Øª".split("_"),weekdaysShort:"Ø£ØØ¯_إثÙÙÙ_Ø«ÙØ§Ø«Ø§Ø¡_أربعاء_Ø®Ù
ÙØ³_جÙ
عة_سبت".split("_"),weekdaysMin:"Ø_Ù_Ø«_ر_Ø®_ج_س".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/âM/âYYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|Ù
/,isPM:function(e){return"Ù
"===e},meridiem:function(e,t,n){if(e<12)return"ص";else return"Ù
"},calendar:{sameDay:"[اÙÙÙÙ
Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextDay:"[ØºØ¯ÙØ§ Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextWeek:"dddd [Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastDay:"[Ø£Ù
س Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastWeek:"dddd [Ø¹ÙØ¯ Ø§ÙØ³Ø§Ø¹Ø©] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"Ù
ÙØ° %s",s:n("s"),ss:n("s"),m:n("m"),mm:n("m"),h:n("h"),hh:n("h"),d:n("d"),dd:n("d"),M:n("M"),MM:n("M"),y:n("y"),yy:n("y")},preparse:function(e){return e.replace(/Ø/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"Ø")},week:{dow:6,doy:12}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ar-ma",{months:"ÙÙØ§Ùر_ÙØ¨Ø±Ø§Ùر_Ù
ارس_أبرÙÙ_Ù
اÙ_ÙÙÙÙÙ_ÙÙÙÙÙØ²_غشت_Ø´ØªÙØ¨Ø±_Ø£ÙØªÙبر_ÙÙÙØ¨Ø±_Ø¯Ø¬ÙØ¨Ø±".split("_"),monthsShort:"ÙÙØ§Ùر_ÙØ¨Ø±Ø§Ùر_Ù
ارس_أبرÙÙ_Ù
اÙ_ÙÙÙÙÙ_ÙÙÙÙÙØ²_غشت_Ø´ØªÙØ¨Ø±_Ø£ÙØªÙبر_ÙÙÙØ¨Ø±_Ø¯Ø¬ÙØ¨Ø±".split("_"),weekdays:"Ø§ÙØ£ØØ¯_Ø§ÙØ¥Ø«ÙÙÙ_Ø§ÙØ«Ùاثاء_Ø§ÙØ£Ø±Ø¨Ø¹Ø§Ø¡_Ø§ÙØ®Ù
ÙØ³_Ø§ÙØ¬Ù
عة_Ø§ÙØ³Ø¨Øª".split("_"),weekdaysShort:"Ø§ØØ¯_اثÙÙÙ_Ø«ÙØ§Ø«Ø§Ø¡_اربعاء_Ø®Ù
ÙØ³_جÙ
عة_سبت".split("_"),weekdaysMin:"Ø_Ù_Ø«_ر_Ø®_ج_س".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اÙÙÙÙ
عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextDay:"[غدا عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextWeek:"dddd [عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastDay:"[Ø£Ù
س عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastWeek:"dddd [عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",sameElse:"L"},relativeTime:{future:"ÙÙ %s",past:"Ù
ÙØ° %s",s:"Ø«ÙØ§Ù",ss:"%d ثاÙÙØ©",m:"دÙÙÙØ©",mm:"%d Ø¯ÙØ§Ø¦Ù",h:"ساعة",hh:"%d ساعات",d:"ÙÙÙ
",dd:"%d Ø£ÙØ§Ù
",M:"Ø´ÙØ±",MM:"%d Ø£Ø´ÙØ±",y:"Ø³ÙØ©",yy:"%d سÙÙØ§Øª"},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"Ù¡",2:"Ù¢",3:"Ù£",4:"Ù¤",5:"Ù¥",6:"Ù¦",7:"Ù§",8:"Ù¨",9:"Ù©",0:"Ù "},n={"Ù¡":"1","Ù¢":"2","Ù£":"3","Ù¤":"4","Ù¥":"5","Ù¦":"6","Ù§":"7","Ù¨":"8","Ù©":"9","Ù ":"0"},a;e.defineLocale("ar-sa",{months:"ÙÙØ§Ùر_ÙØ¨Ø±Ø§Ùر_Ù
ارس_أبرÙÙ_Ù
اÙÙ_ÙÙÙÙÙ_ÙÙÙÙÙ_أغسطس_سبتÙ
بر_Ø£ÙØªÙبر_ÙÙÙÙ
بر_Ø¯ÙØ³Ù
بر".split("_"),monthsShort:"ÙÙØ§Ùر_ÙØ¨Ø±Ø§Ùر_Ù
ارس_أبرÙÙ_Ù
اÙÙ_ÙÙÙÙÙ_ÙÙÙÙÙ_أغسطس_سبتÙ
بر_Ø£ÙØªÙبر_ÙÙÙÙ
بر_Ø¯ÙØ³Ù
بر".split("_"),weekdays:"Ø§ÙØ£ØØ¯_Ø§ÙØ¥Ø«ÙÙÙ_Ø§ÙØ«Ùاثاء_Ø§ÙØ£Ø±Ø¨Ø¹Ø§Ø¡_Ø§ÙØ®Ù
ÙØ³_Ø§ÙØ¬Ù
عة_Ø§ÙØ³Ø¨Øª".split("_"),weekdaysShort:"Ø£ØØ¯_إثÙÙÙ_Ø«ÙØ§Ø«Ø§Ø¡_أربعاء_Ø®Ù
ÙØ³_جÙ
عة_سبت".split("_"),weekdaysMin:"Ø_Ù_Ø«_ر_Ø®_ج_س".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|Ù
/,isPM:function(e){return"Ù
"===e},meridiem:function(e,t,n){if(e<12)return"ص";else return"Ù
"},calendar:{sameDay:"[اÙÙÙÙ
عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextDay:"[غدا عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextWeek:"dddd [عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastDay:"[Ø£Ù
س عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastWeek:"dddd [عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",sameElse:"L"},relativeTime:{future:"ÙÙ %s",past:"Ù
ÙØ° %s",s:"Ø«ÙØ§Ù",ss:"%d ثاÙÙØ©",m:"دÙÙÙØ©",mm:"%d Ø¯ÙØ§Ø¦Ù",h:"ساعة",hh:"%d ساعات",d:"ÙÙÙ
",dd:"%d Ø£ÙØ§Ù
",M:"Ø´ÙØ±",MM:"%d Ø£Ø´ÙØ±",y:"Ø³ÙØ©",yy:"%d سÙÙØ§Øª"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return n[e]}).replace(/Ø/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"Ø")},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ar-tn",{months:"جاÙÙÙ_ÙÙÙØ±Ù_Ù
ارس_Ø£ÙØ±ÙÙ_Ù
اÙ_Ø¬ÙØ§Ù_جÙÙÙÙØ©_Ø£ÙØª_سبتÙ
بر_Ø£ÙØªÙبر_ÙÙÙÙ
بر_Ø¯ÙØ³Ù
بر".split("_"),monthsShort:"جاÙÙÙ_ÙÙÙØ±Ù_Ù
ارس_Ø£ÙØ±ÙÙ_Ù
اÙ_Ø¬ÙØ§Ù_جÙÙÙÙØ©_Ø£ÙØª_سبتÙ
بر_Ø£ÙØªÙبر_ÙÙÙÙ
بر_Ø¯ÙØ³Ù
بر".split("_"),weekdays:"Ø§ÙØ£ØØ¯_Ø§ÙØ¥Ø«ÙÙÙ_Ø§ÙØ«Ùاثاء_Ø§ÙØ£Ø±Ø¨Ø¹Ø§Ø¡_Ø§ÙØ®Ù
ÙØ³_Ø§ÙØ¬Ù
عة_Ø§ÙØ³Ø¨Øª".split("_"),weekdaysShort:"Ø£ØØ¯_إثÙÙÙ_Ø«ÙØ§Ø«Ø§Ø¡_أربعاء_Ø®Ù
ÙØ³_جÙ
عة_سبت".split("_"),weekdaysMin:"Ø_Ù_Ø«_ر_Ø®_ج_س".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اÙÙÙÙ
عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextDay:"[غدا عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",nextWeek:"dddd [عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastDay:"[Ø£Ù
س عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",lastWeek:"dddd [عÙÙ Ø§ÙØ³Ø§Ø¹Ø©] LT",sameElse:"L"},relativeTime:{future:"ÙÙ %s",past:"Ù
ÙØ° %s",s:"Ø«ÙØ§Ù",ss:"%d ثاÙÙØ©",m:"دÙÙÙØ©",mm:"%d Ø¯ÙØ§Ø¦Ù",h:"ساعة",hh:"%d ساعات",d:"ÙÙÙ
",dd:"%d Ø£ÙØ§Ù
",M:"Ø´ÙØ±",MM:"%d Ø£Ø´ÙØ±",y:"Ø³ÙØ©",yy:"%d سÙÙØ§Øª"},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var r={1:"-inci",5:"-inci",8:"-inci",70:"-inci",80:"-inci",2:"-nci",7:"-nci",20:"-nci",50:"-nci",3:"-üncü",4:"-üncü",100:"-üncü",6:"-ncı",9:"-uncu",10:"-uncu",30:"-uncu",60:"-ıncı",90:"-ıncı"},t;e.defineLocale("az",{months:"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr".split("_"),monthsShort:"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek".split("_"),weekdays:"Bazar_Bazar ertÉsi_ÃÉrÅÉnbÉ axÅamı_ÃÉrÅÉnbÉ_CümÉ axÅamı_CümÉ_ÅÉnbÉ".split("_"),weekdaysShort:"Baz_BzE_ÃAx_ÃÉr_CAx_Cüm_ÅÉn".split("_"),weekdaysMin:"Bz_BE_ÃA_ÃÉ_CA_Cü_ÅÉ".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[sabah saat] LT",nextWeek:"[gÉlÉn hÉftÉ] dddd [saat] LT",lastDay:"[dünÉn] LT",lastWeek:"[keçÉn hÉftÉ] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s ÉvvÉl",s:"bir neÃ§É saniyÉ",ss:"%d saniyÉ",m:"bir dÉqiqÉ",mm:"%d dÉqiqÉ",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir il",yy:"%d il"},meridiemParse:/gecÉ|sÉhÉr|gündüz|axÅam/,isPM:function(e){return/^(gündüz|axÅam)$/.test(e)},meridiem:function(e,t,n){if(e<4)return"gecÉ";else if(e<12)return"sÉhÉr";else if(e<17)return"gündüz";else return"axÅam"},dayOfMonthOrdinalParse:/\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,ordinal:function(e){if(e===0)return e+"-ıncı";var t=e%10,n=e%100-t,a=e>=100?100:null;return e+(r[t]||r[n]||r[a])},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function r(e,t){var n=e.split("_");return t%10===1&&t%100!==11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function t(e,t,n){var a={ss:t?"ÑекÑнда_ÑекÑндÑ_ÑекÑнд":"ÑекÑндÑ_ÑекÑндÑ_ÑекÑнд",mm:t?"Ñ
вÑлÑна_Ñ
вÑлÑнÑ_Ñ
вÑлÑн":"Ñ
вÑлÑнÑ_Ñ
вÑлÑнÑ_Ñ
вÑлÑн",hh:t?"гадзÑна_гадзÑнÑ_гадзÑн":"гадзÑнÑ_гадзÑнÑ_гадзÑн",dd:"дзенÑ_днÑ_дзÑн",MM:"меÑÑÑ_меÑÑÑÑ_меÑÑÑаÑ",yy:"год_гадÑ_гадоÑ"};if(n==="m")return t?"Ñ
вÑлÑна":"Ñ
вÑлÑнÑ";else if(n==="h")return t?"гадзÑна":"гадзÑнÑ";else return e+" "+r(a[n],+e)}var n;e.defineLocale("be",{months:{format:"ÑÑÑдзенÑ_лÑÑага_ÑакавÑка_кÑаÑавÑка_ÑÑаÑнÑ_ÑÑÑвенÑ_лÑпенÑ_жнÑÑнÑ_веÑаÑнÑ_каÑÑÑÑÑнÑка_лÑÑÑапада_ÑнежнÑ".split("_"),standalone:"ÑÑÑдзенÑ_лÑÑÑ_ÑакавÑк_кÑаÑавÑк_ÑÑавенÑ_ÑÑÑвенÑ_лÑпенÑ_жнÑвенÑ_веÑаÑенÑ_каÑÑÑÑÑнÑк_лÑÑÑапад_ÑнежанÑ".split("_")},monthsShort:"ÑÑÑд_лÑÑ_Ñак_кÑаÑ_ÑÑав_ÑÑÑв_лÑп_жнÑв_веÑ_каÑÑ_лÑÑÑ_Ñнеж".split("_"),weekdays:{format:"нÑдзелÑ_панÑдзелак_аÑÑоÑак_ÑеÑадÑ_ÑаÑвеÑ_пÑÑнÑÑÑ_ÑÑбоÑÑ".split("_"),standalone:"нÑдзелÑ_панÑдзелак_аÑÑоÑак_ÑеÑада_ÑаÑвеÑ_пÑÑнÑÑа_ÑÑбоÑа".split("_"),isFormat:/\[ ?[УÑÑ] ?(?:мÑнÑлÑÑ|наÑÑÑпнÑÑ)? ?\] ?dddd/},weekdaysShort:"нд_пн_аÑ_ÑÑ_ÑÑ_пÑ_Ñб".split("_"),weekdaysMin:"нд_пн_аÑ_ÑÑ_ÑÑ_пÑ_Ñб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., HH:mm",LLLL:"dddd, D MMMM YYYY г., HH:mm"},calendar:{sameDay:"[СÑÐ½Ð½Ñ Ñ] LT",nextDay:"[ÐаÑÑÑа Ñ] LT",lastDay:"[УÑоÑа Ñ] LT",nextWeek:function(){return"[У] dddd [Ñ] LT"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[У мÑнÑлÑÑ] dddd [Ñ] LT";case 1:case 2:case 4:return"[У мÑнÑлÑ] dddd [Ñ] LT"}},sameElse:"L"},relativeTime:{future:"пÑаз %s",past:"%s ÑамÑ",s:"некалÑÐºÑ ÑекÑнд",m:t,mm:t,h:t,hh:t,d:"дзенÑ",dd:t,M:"меÑÑÑ",MM:t,y:"год",yy:t},meridiemParse:/ноÑÑ|ÑанÑÑÑ|днÑ|веÑаÑа/,isPM:function(e){return/^(днÑ|веÑаÑа)$/.test(e)},meridiem:function(e,t,n){if(e<4)return"ноÑÑ";else if(e<12)return"ÑанÑÑÑ";else if(e<17)return"днÑ";else return"веÑаÑа"},dayOfMonthOrdinalParse:/\d{1,2}-(Ñ|Ñ|га)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return(e%10===2||e%10===3)&&e%100!==12&&e%100!==13?e+"-Ñ":e+"-Ñ";case"D":return e+"-га";default:return e}},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("bg",{months:"ÑнÑаÑи_ÑевÑÑаÑи_маÑÑ_апÑил_май_Ñни_Ñли_авгÑÑÑ_ÑепÑемвÑи_окÑомвÑи_ноемвÑи_декемвÑи".split("_"),monthsShort:"ÑнÑ_Ñев_маÑ_апÑ_май_Ñни_Ñли_авг_Ñеп_окÑ_ное_дек".split("_"),weekdays:"неделÑ_понеделник_вÑоÑник_ÑÑÑда_ÑеÑвÑÑÑÑк_пеÑÑк_ÑÑбоÑа".split("_"),weekdaysShort:"нед_пон_вÑо_ÑÑÑ_ÑеÑ_пеÑ_ÑÑб".split("_"),weekdaysMin:"нд_пн_вÑ_ÑÑ_ÑÑ_пÑ_Ñб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[ÐÐ½ÐµÑ Ð²] LT",nextDay:"[УÑÑе в] LT",nextWeek:"dddd [в] LT",lastDay:"[ÐÑеÑа в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[ÐиналаÑа] dddd [в] LT";case 1:case 2:case 4:case 5:return"[ÐиналиÑ] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"Ñлед %s",past:"пÑеди %s",s:"нÑколко ÑекÑнди",ss:"%d ÑекÑнди",m:"минÑÑа",mm:"%d минÑÑи",h:"ÑаÑ",hh:"%d ÑаÑа",d:"ден",dd:"%d дена",w:"ÑедмиÑа",ww:"%d ÑедмиÑи",M:"меÑеÑ",MM:"%d меÑеÑа",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|Ñи|ви|Ñи|ми)/,ordinal:function(e){var t=e%10,n=e%100;if(e===0)return e+"-ев";else if(n===0)return e+"-ен";else if(n>10&&n<20)return e+"-Ñи";else if(t===1)return e+"-ви";else if(t===2)return e+"-Ñи";else if(t===7||t===8)return e+"-ми";else return e+"-Ñи"},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("bm",{months:"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_MÉkalo_ZuwÉnkalo_Zuluyekalo_Utikalo_SÉtanburukalo_ÉkutÉburukalo_Nowanburukalo_Desanburukalo".split("_"),monthsShort:"Zan_Few_Mar_Awi_MÉ_Zuw_Zul_Uti_SÉt_Éku_Now_Des".split("_"),weekdays:"Kari_NtÉnÉn_Tarata_Araba_Alamisa_Juma_Sibiri".split("_"),weekdaysShort:"Kar_NtÉ_Tar_Ara_Ala_Jum_Sib".split("_"),weekdaysMin:"Ka_Nt_Ta_Ar_Al_Ju_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"MMMM [tile] D [san] YYYY",LLL:"MMMM [tile] D [san] YYYY [lÉrÉ] HH:mm",LLLL:"dddd MMMM [tile] D [san] YYYY [lÉrÉ] HH:mm"},calendar:{sameDay:"[Bi lÉrÉ] LT",nextDay:"[Sini lÉrÉ] LT",nextWeek:"dddd [don lÉrÉ] LT",lastDay:"[Kunu lÉrÉ] LT",lastWeek:"dddd [tÉmÉnen lÉrÉ] LT",sameElse:"L"},relativeTime:{future:"%s kÉnÉ",past:"a bÉ %s bÉ",s:"sanga dama dama",ss:"sekondi %d",m:"miniti kelen",mm:"miniti %d",h:"lÉrÉ kelen",hh:"lÉrÉ %d",d:"tile kelen",dd:"tile %d",M:"kalo kelen",MM:"kalo %d",y:"san kelen",yy:"san %d"},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"à§§",2:"২",3:"à§©",4:"৪",5:"à§«",6:"৬",7:"à§",8:"à§®",9:"৯",0:"০"},n={"à§§":"1","২":"2","à§©":"3","৪":"4","à§«":"5","৬":"6","à§":"7","à§®":"8","৯":"9","০":"0"},a;e.defineLocale("bn",{months:"à¦à¦¾à¦¨à§à§à¦¾à¦°à¦¿_ফà§à¦¬à§à¦°à§à§à¦¾à¦°à¦¿_মারà§à¦_à¦à¦ªà§à¦°à¦¿à¦²_মà§_à¦à§à¦¨_à¦à§à¦²à¦¾à¦_à¦à¦à¦¸à§à¦_সà§à¦ªà§à¦à§à¦®à§à¦¬à¦°_à¦
à¦à§à¦à§à¦¬à¦°_নà¦à§à¦®à§à¦¬à¦°_ডিসà§à¦®à§à¦¬à¦°".split("_"),monthsShort:"à¦à¦¾à¦¨à§_ফà§à¦¬à§à¦°à§_মারà§à¦_à¦à¦ªà§à¦°à¦¿à¦²_মà§_à¦à§à¦¨_à¦à§à¦²à¦¾à¦_à¦à¦à¦¸à§à¦_সà§à¦ªà§à¦_à¦
à¦à§à¦à§_নà¦à§_ডিসà§".split("_"),weekdays:"রবিবার_সà§à¦®à¦¬à¦¾à¦°_মà¦à§à¦à¦²à¦¬à¦¾à¦°_বà§à¦§à¦¬à¦¾à¦°_বà§à¦¹à¦¸à§à¦ªà¦¤à¦¿à¦¬à¦¾à¦°_শà§à¦à§à¦°à¦¬à¦¾à¦°_শনিবার".split("_"),weekdaysShort:"রবি_সà§à¦®_মà¦à§à¦à¦²_বà§à¦§_বà§à¦¹à¦¸à§à¦ªà¦¤à¦¿_শà§à¦à§à¦°_শনি".split("_"),weekdaysMin:"রবি_সà§à¦®_মà¦à§à¦à¦²_বà§à¦§_বà§à¦¹_শà§à¦à§à¦°_শনি".split("_"),longDateFormat:{LT:"A h:mm সমà§",LTS:"A h:mm:ss সমà§",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm সমà§",LLLL:"dddd, D MMMM YYYY, A h:mm সমà§"},calendar:{sameDay:"[à¦à¦] LT",nextDay:"[à¦à¦à¦¾à¦®à§à¦à¦¾à¦²] LT",nextWeek:"dddd, LT",lastDay:"[à¦à¦¤à¦à¦¾à¦²] LT",lastWeek:"[à¦à¦¤] dddd, LT",sameElse:"L"},relativeTime:{future:"%s পরà§",past:"%s à¦à¦à§",s:"à¦à§à§à¦ সà§à¦à§à¦¨à§à¦¡",ss:"%d সà§à¦à§à¦¨à§à¦¡",m:"à¦à¦ মিনিà¦",mm:"%d মিনিà¦",h:"à¦à¦ à¦à¦¨à§à¦à¦¾",hh:"%d à¦à¦¨à§à¦à¦¾",d:"à¦à¦ দিন",dd:"%d দিন",M:"à¦à¦ মাস",MM:"%d মাস",y:"à¦à¦ বà¦à¦°",yy:"%d বà¦à¦°"},preparse:function(e){return e.replace(/[১২৩৪৫৬à§à§®à§¯à§¦]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/রাত|সà¦à¦¾à¦²|দà§à¦ªà§à¦°|বিà¦à¦¾à¦²|রাত/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="রাত"&&e>=4||t==="দà§à¦ªà§à¦°"&&e<5||t==="বিà¦à¦¾à¦²")return e+12;else return e},meridiem:function(e,t,n){if(e<4)return"রাত";else if(e<10)return"সà¦à¦¾à¦²";else if(e<17)return"দà§à¦ªà§à¦°";else if(e<20)return"বিà¦à¦¾à¦²";else return"রাত"},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"à§§",2:"২",3:"à§©",4:"৪",5:"à§«",6:"৬",7:"à§",8:"à§®",9:"৯",0:"০"},n={"à§§":"1","২":"2","à§©":"3","৪":"4","à§«":"5","৬":"6","à§":"7","à§®":"8","৯":"9","০":"0"},a;e.defineLocale("bn-bd",{months:"à¦à¦¾à¦¨à§à§à¦¾à¦°à¦¿_ফà§à¦¬à§à¦°à§à§à¦¾à¦°à¦¿_মারà§à¦_à¦à¦ªà§à¦°à¦¿à¦²_মà§_à¦à§à¦¨_à¦à§à¦²à¦¾à¦_à¦à¦à¦¸à§à¦_সà§à¦ªà§à¦à§à¦®à§à¦¬à¦°_à¦
à¦à§à¦à§à¦¬à¦°_নà¦à§à¦®à§à¦¬à¦°_ডিসà§à¦®à§à¦¬à¦°".split("_"),monthsShort:"à¦à¦¾à¦¨à§_ফà§à¦¬à§à¦°à§_মারà§à¦_à¦à¦ªà§à¦°à¦¿à¦²_মà§_à¦à§à¦¨_à¦à§à¦²à¦¾à¦_à¦à¦à¦¸à§à¦_সà§à¦ªà§à¦_à¦
à¦à§à¦à§_নà¦à§_ডিসà§".split("_"),weekdays:"রবিবার_সà§à¦®à¦¬à¦¾à¦°_মà¦à§à¦à¦²à¦¬à¦¾à¦°_বà§à¦§à¦¬à¦¾à¦°_বà§à¦¹à¦¸à§à¦ªà¦¤à¦¿à¦¬à¦¾à¦°_শà§à¦à§à¦°à¦¬à¦¾à¦°_শনিবার".split("_"),weekdaysShort:"রবি_সà§à¦®_মà¦à§à¦à¦²_বà§à¦§_বà§à¦¹à¦¸à§à¦ªà¦¤à¦¿_শà§à¦à§à¦°_শনি".split("_"),weekdaysMin:"রবি_সà§à¦®_মà¦à§à¦à¦²_বà§à¦§_বà§à¦¹_শà§à¦à§à¦°_শনি".split("_"),longDateFormat:{LT:"A h:mm সমà§",LTS:"A h:mm:ss সমà§",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm সমà§",LLLL:"dddd, D MMMM YYYY, A h:mm সমà§"},calendar:{sameDay:"[à¦à¦] LT",nextDay:"[à¦à¦à¦¾à¦®à§à¦à¦¾à¦²] LT",nextWeek:"dddd, LT",lastDay:"[à¦à¦¤à¦à¦¾à¦²] LT",lastWeek:"[à¦à¦¤] dddd, LT",sameElse:"L"},relativeTime:{future:"%s পরà§",past:"%s à¦à¦à§",s:"à¦à§à§à¦ সà§à¦à§à¦¨à§à¦¡",ss:"%d সà§à¦à§à¦¨à§à¦¡",m:"à¦à¦ মিনিà¦",mm:"%d মিনিà¦",h:"à¦à¦ à¦à¦¨à§à¦à¦¾",hh:"%d à¦à¦¨à§à¦à¦¾",d:"à¦à¦ দিন",dd:"%d দিন",M:"à¦à¦ মাস",MM:"%d মাস",y:"à¦à¦ বà¦à¦°",yy:"%d বà¦à¦°"},preparse:function(e){return e.replace(/[১২৩৪৫৬à§à§®à§¯à§¦]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/রাত|à¦à§à¦°|সà¦à¦¾à¦²|দà§à¦ªà§à¦°|বিà¦à¦¾à¦²|সনà§à¦§à§à¦¯à¦¾|রাত/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="রাত")return e<4?e:e+12;else if(t==="à¦à§à¦°")return e;else if(t==="সà¦à¦¾à¦²")return e;else if(t==="দà§à¦ªà§à¦°")return e>=3?e:e+12;else if(t==="বিà¦à¦¾à¦²")return e+12;else if(t==="সনà§à¦§à§à¦¯à¦¾")return e+12},meridiem:function(e,t,n){if(e<4)return"রাত";else if(e<6)return"à¦à§à¦°";else if(e<12)return"সà¦à¦¾à¦²";else if(e<15)return"দà§à¦ªà§à¦°";else if(e<18)return"বিà¦à¦¾à¦²";else if(e<20)return"সনà§à¦§à§à¦¯à¦¾";else return"রাত"},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"༡",2:"༢",3:"༣",4:"༤",5:"༥",6:"༦",7:"༧",8:"༨",9:"༩",0:"༠"},n={"༡":"1","༢":"2","༣":"3","༤":"4","༥":"5","༦":"6","༧":"7","༨":"8","༩":"9","༠":"0"},a;e.defineLocale("bo",{months:"à½à¾³à¼à½à¼à½à½à¼à½à½¼_à½à¾³à¼à½à¼à½à½à½²à½¦à¼à½_à½à¾³à¼à½à¼à½à½¦à½´à½à¼à½_à½à¾³à¼à½à¼à½à½à½²à¼à½_à½à¾³à¼à½à¼à½£à¾à¼à½_à½à¾³à¼à½à¼à½à¾²à½´à½à¼à½_à½à¾³à¼à½à¼à½à½à½´à½à¼à½_à½à¾³à¼à½à¼à½à½¢à¾à¾±à½à¼à½_à½à¾³à¼à½à¼à½à½à½´à¼à½_à½à¾³à¼à½à¼à½à½
ུà¼à½_à½à¾³à¼à½à¼à½à½
ུà¼à½à½
ིà½à¼à½_à½à¾³à¼à½à¼à½à½
ུà¼à½à½à½²à½¦à¼à½".split("_"),monthsShort:"à½à¾³à¼1_à½à¾³à¼2_à½à¾³à¼3_à½à¾³à¼4_à½à¾³à¼5_à½à¾³à¼6_à½à¾³à¼7_à½à¾³à¼8_à½à¾³à¼9_à½à¾³à¼10_à½à¾³à¼11_à½à¾³à¼12".split("_"),monthsShortRegex:/^(à½à¾³à¼\d{1,2})/,monthsParseExact:true,weekdays:"à½à½à½ à¼à½à½²à¼à½à¼_à½à½à½ à¼à½à¾³à¼à½à¼_à½à½à½ à¼à½à½²à½à¼à½à½à½¢à¼_à½à½à½ à¼à½£à¾·à½à¼à½à¼_à½à½à½ à¼à½à½´à½¢à¼à½à½´_à½à½à½ à¼à½à¼à½¦à½à½¦à¼_à½à½à½ à¼à½¦à¾¤à½ºà½à¼à½à¼".split("_"),weekdaysShort:"à½à½²à¼à½à¼_à½à¾³à¼à½à¼_à½à½²à½à¼à½à½à½¢à¼_ལྷà½à¼à½à¼_à½à½´à½¢à¼à½à½´_à½à¼à½¦à½à½¦à¼_སྤེà½à¼à½à¼".split("_"),weekdaysMin:"à½à½²_à½à¾³_à½à½²à½_ལྷà½_à½à½´à½¢_སà½à½¦_སྤེà½".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[à½à½²à¼à½¢à½²à½] LT",nextDay:"[སà½à¼à½à½²à½] LT",nextWeek:"[à½à½à½´à½à¼à½à¾²à½à¼à½¢à¾à½ºà½¦à¼à½], LT",lastDay:"[à½à¼à½¦à½] LT",lastWeek:"[à½à½à½´à½à¼à½à¾²à½à¼à½à½à½ à¼à½] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ལà¼",past:"%s སà¾à½à¼à½£",s:"ལà½à¼à½¦à½",ss:"%d སà¾à½¢à¼à½à¼",m:"སà¾à½¢à¼à½à¼à½à½
ིà½",mm:"%d སà¾à½¢à¼à½",h:"à½à½´à¼à½à½¼à½à¼à½à½
ིà½",hh:"%d à½à½´à¼à½à½¼à½",d:"à½à½²à½à¼à½à½
ིà½",dd:"%d à½à½²à½à¼",M:"à½à¾³à¼à½à¼à½à½
ིà½",MM:"%d à½à¾³à¼à½",y:"ལོà¼à½à½
ིà½",yy:"%d ལོ"},preparse:function(e){return e.replace(/[༡༢༣༤༥༦༧༨༩༠]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/à½à½à½à¼à½à½¼|à½à½¼à½à½¦à¼à½à½¦|à½à½²à½à¼à½à½´à½|à½à½à½¼à½à¼à½à½|à½à½à½à¼à½à½¼/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="à½à½à½à¼à½à½¼"&&e>=4||t==="à½à½²à½à¼à½à½´à½"&&e<5||t==="à½à½à½¼à½à¼à½à½")return e+12;else return e},meridiem:function(e,t,n){if(e<4)return"à½à½à½à¼à½à½¼";else if(e<10)return"à½à½¼à½à½¦à¼à½à½¦";else if(e<17)return"à½à½²à½à¼à½à½´à½";else if(e<20)return"à½à½à½¼à½à¼à½à½";else return"à½à½à½à¼à½à½¼"},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n){var a={mm:"munutenn",MM:"miz",dd:"devezh"};return e+" "+r(a[n],e)}function n(e){switch(a(e)){case 1:case 3:case 4:case 5:case 9:return e+" bloaz";default:return e+" vloaz"}}function a(e){if(e>9)return a(e%10);return e}function r(e,t){if(t===2)return o(e);return e}function o(e){var t={m:"v",b:"v",d:"z"};if(t[e.charAt(0)]===undefined)return e;return t[e.charAt(0)]+e.substring(1)}var i=[/^gen/i,/^c[ʼ\']hwe/i,/^meu/i,/^ebr/i,/^mae/i,/^(mez|eve)/i,/^gou/i,/^eos/i,/^gwe/i,/^her/i,/^du/i,/^ker/i],l=/^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,s=/^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,u=/^(gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,d=[/^sul/i,/^lun/i,/^meurzh/i,/^merc[ʼ\']her/i,/^yaou/i,/^gwener/i,/^sadorn/i],c=[/^Sul/i,/^Lun/i,/^Meu/i,/^Mer/i,/^Yao/i,/^Gwe/i,/^Sad/i],f=[/^Su/i,/^Lu/i,/^Me([^r]|$)/i,/^Mer/i,/^Ya/i,/^Gw/i,/^Sa/i],p;e.defineLocale("br",{months:"Genver_Cʼhwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu".split("_"),monthsShort:"Gen_Cʼhwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker".split("_"),weekdays:"Sul_Lun_Meurzh_Mercʼher_Yaou_Gwener_Sadorn".split("_"),weekdaysShort:"Sul_Lun_Meu_Mer_Yao_Gwe_Sad".split("_"),weekdaysMin:"Su_Lu_Me_Mer_Ya_Gw_Sa".split("_"),weekdaysParse:f,fullWeekdaysParse:d,shortWeekdaysParse:c,minWeekdaysParse:f,monthsRegex:l,monthsShortRegex:l,monthsStrictRegex:s,monthsShortStrictRegex:u,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY HH:mm",LLLL:"dddd, D [a viz] MMMM YYYY HH:mm"},calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warcʼhoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Decʼh da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s ʼzo",s:"un nebeud segondennoù",ss:"%d eilenn",m:"ur vunutenn",mm:t,h:"un eur",hh:"%d eur",d:"un devezh",dd:t,M:"ur miz",MM:t,y:"ur bloaz",yy:n},dayOfMonthOrdinalParse:/\d{1,2}(añ|vet)/,ordinal:function(e){var t=e===1?"añ":"vet";return e+t},week:{dow:1,doy:4},meridiemParse:/a.m.|g.m./,isPM:function(e){return e==="g.m."},meridiem:function(e,t,n){return e<12?"a.m.":"g.m."}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n){var a=e+" ";switch(n){case"ss":if(e===1)a+="sekunda";else if(e===2||e===3||e===4)a+="sekunde";else a+="sekundi";return a;case"m":return t?"jedna minuta":"jedne minute";case"mm":if(e===1)a+="minuta";else if(e===2||e===3||e===4)a+="minute";else a+="minuta";return a;case"h":return t?"jedan sat":"jednog sata";case"hh":if(e===1)a+="sat";else if(e===2||e===3||e===4)a+="sata";else a+="sati";return a;case"dd":if(e===1)a+="dan";else a+="dana";return a;case"MM":if(e===1)a+="mjesec";else if(e===2||e===3||e===4)a+="mjeseca";else a+="mjeseci";return a;case"yy":if(e===1)a+="godina";else if(e===2||e===3||e===4)a+="godine";else a+="godina";return a}}var n;e.defineLocale("bs",{months:"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),monthsParseExact:true,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_Äetvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._Äet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_Äe_pe_su".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juÄer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[proÅ¡lu] dddd [u] LT";case 6:return"[proÅ¡le] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[proÅ¡li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ca",{months:{standalone:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),format:"de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:true,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dt_dc_dj_dv_ds".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a les] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:function(){return"[avui a "+(this.hours()!==1?"les":"la")+"] LT"},nextDay:function(){return"[demà a "+(this.hours()!==1?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(this.hours()!==1?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(this.hours()!==1?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(this.hours()!==1?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"d'aquà %s",past:"fa %s",s:"uns segons",ss:"%d segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,t){var n=e===1?"r":e===2?"n":e===3?"r":e===4?"t":"è";if(t==="w"||t==="W")n="a";return e+n},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={format:"leden_únor_bÅezen_duben_kvÄten_Äerven_Äervenec_srpen_záÅÃ_ÅÃjen_listopad_prosinec".split("_"),standalone:"ledna_února_bÅezna_dubna_kvÄtna_Äervna_Äervence_srpna_záÅÃ_ÅÃjna_listopadu_prosince".split("_")},n="led_úno_bÅe_dub_kvÄ_Ävn_Ävc_srp_záÅ_ÅÃj_lis_pro".split("_"),a=[/^led/i,/^úno/i,/^bÅe/i,/^dub/i,/^kvÄ/i,/^(Ävn|Äerven$|Äervna)/i,/^(Ävc|Äervenec|Äervence)/i,/^srp/i,/^záÅ/i,/^ÅÃj/i,/^lis/i,/^pro/i],r=/^(leden|únor|bÅezen|duben|kvÄten|Äervenec|Äervence|Äerven|Äervna|srpen|záÅÃ|ÅÃjen|listopad|prosinec|led|úno|bÅe|dub|kvÄ|Ävn|Ävc|srp|záÅ|ÅÃj|lis|pro)/i,o;function i(e){return e>1&&e<5&&~~(e/10)!==1}function l(e,t,n,a){var r=e+" ";switch(n){case"s":return t||a?"pár sekund":"pár sekundami";case"ss":if(t||a)return r+(i(e)?"sekundy":"sekund");else return r+"sekundami";case"m":return t?"minuta":a?"minutu":"minutou";case"mm":if(t||a)return r+(i(e)?"minuty":"minut");else return r+"minutami";case"h":return t?"hodina":a?"hodinu":"hodinou";case"hh":if(t||a)return r+(i(e)?"hodiny":"hodin");else return r+"hodinami";case"d":return t||a?"den":"dnem";case"dd":if(t||a)return r+(i(e)?"dny":"dnÃ");else return r+"dny";case"M":return t||a?"mÄsÃc":"mÄsÃcem";case"MM":if(t||a)return r+(i(e)?"mÄsÃce":"mÄsÃců");else return r+"mÄsÃci";case"y":return t||a?"rok":"rokem";case"yy":if(t||a)return r+(i(e)?"roky":"let");else return r+"lety"}}e.defineLocale("cs",{months:t,monthsShort:n,monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(leden|ledna|února|únor|bÅezen|bÅezna|duben|dubna|kvÄten|kvÄtna|Äervenec|Äervence|Äerven|Äervna|srpen|srpna|záÅÃ|ÅÃjen|ÅÃjna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|úno|bÅe|dub|kvÄ|Ävn|Ävc|srp|záÅ|ÅÃj|lis|pro)/i,monthsParse:a,longMonthsParse:a,shortMonthsParse:a,weekdays:"nedÄle_pondÄlÃ_úterý_stÅeda_Ätvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_út_st_Ät_pá_so".split("_"),weekdaysMin:"ne_po_út_st_Ät_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zÃtra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedÄli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve stÅedu v] LT";case 4:return"[ve Ätvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[vÄera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou nedÄli v] LT";case 1:case 2:return"[minulé] dddd [v] LT";case 3:return"[minulou stÅedu v] LT";case 4:case 5:return"[minulý] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pÅed %s",s:l,ss:l,m:l,mm:l,h:l,hh:l,d:l,dd:l,M:l,MM:l,y:l,yy:l},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("cv",{months:"кÓÑлаÑ_наÑÓÑ_пÑÑ_ака_май_Ò«ÓÑÑме_ÑÑÓ_Ò«ÑÑла_авÓн_Ñпа_Ñӳк_ÑаÑÑав".split("_"),monthsShort:"кÓÑ_наÑ_пÑÑ_ака_май_Ò«ÓÑ_ÑÑÓ_Ò«ÑÑ_авн_Ñпа_Ñӳк_ÑаÑ".split("_"),weekdays:"вÑÑÑаÑникÑн_ÑÑнÑикÑн_ÑÑлаÑикÑн_ÑнкÑн_кÓҫнеÑникÑн_ÑÑнекÑн_ÑÓмаÑкÑн".split("_"),weekdaysShort:"вÑÑ_ÑÑн_ÑÑл_Ñн_кÓÒ«_ÑÑн_ÑÓм".split("_"),weekdaysMin:"вÑ_Ñн_ÑÑ_Ñн_кҫ_ÑÑ_Ñм".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"YYYY [Ò«ÑлÑ
и] MMMM [ÑйÓÑ
Óн] D[-мÓÑÓ]",LLL:"YYYY [Ò«ÑлÑ
и] MMMM [ÑйÓÑ
Óн] D[-мÓÑÓ], HH:mm",LLLL:"dddd, YYYY [Ò«ÑлÑ
и] MMMM [ÑйÓÑ
Óн] D[-мÓÑÓ], HH:mm"},calendar:{sameDay:"[ÐаÑн] LT [ÑеÑ
еÑÑе]",nextDay:"[ЫÑан] LT [ÑеÑ
еÑÑе]",lastDay:"[ÓнеÑ] LT [ÑеÑ
еÑÑе]",nextWeek:"[ҪиÑеÑ] dddd LT [ÑеÑ
еÑÑе]",lastWeek:"[ÐÑÑнÓ] dddd LT [ÑеÑ
еÑÑе]",sameElse:"L"},relativeTime:{future:function(e){var t=/ÑеÑ
еÑ$/i.exec(e)?"Ñен":/Ò«Ñл$/i.exec(e)?"Ñан":"Ñан";return e+t},past:"%s каÑлла",s:"пÓÑ-ик ҫеккÑнÑ",ss:"%d ҫеккÑнÑ",m:"пÓÑ Ð¼Ð¸Ð½ÑÑ",mm:"%d минÑÑ",h:"пÓÑ ÑеÑ
еÑ",hh:"%d ÑеÑ
еÑ",d:"пÓÑ ÐºÑн",dd:"%d кÑн",M:"пÓÑ ÑйÓÑ
",MM:"%d ÑйÓÑ
",y:"пÓÑ Ò«Ñл",yy:"%d Ò«Ñл"},dayOfMonthOrdinalParse:/\d{1,2}-мÓÑ/,ordinal:"%d-мÓÑ",week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("cy",{months:"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr".split("_"),monthsShort:"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag".split("_"),weekdays:"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn".split("_"),weekdaysShort:"Sul_Llun_Maw_Mer_Iau_Gwe_Sad".split("_"),weekdaysMin:"Su_Ll_Ma_Me_Ia_Gw_Sa".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Heddiw am] LT",nextDay:"[Yfory am] LT",nextWeek:"dddd [am] LT",lastDay:"[Ddoe am] LT",lastWeek:"dddd [diwethaf am] LT",sameElse:"L"},relativeTime:{future:"mewn %s",past:"%s yn ôl",s:"ychydig eiliadau",ss:"%d eiliad",m:"munud",mm:"%d munud",h:"awr",hh:"%d awr",d:"diwrnod",dd:"%d diwrnod",M:"mis",MM:"%d mis",y:"blwyddyn",yy:"%d flynedd"},dayOfMonthOrdinalParse:/\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t=e,n="",a=["","af","il","ydd","ydd","ed","ed","ed","fed","fed","fed","eg","fed","eg","eg","fed","eg","eg","fed","eg","fed"];if(t>20)if(t===40||t===50||t===60||t===80||t===100)n="fed";else n="ain";else if(t>0)n=a[t];return e+n},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"på dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[i] dddd[s kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",ss:"%d sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n,a){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],w:["eine Woche","einer Woche"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?r[n][0]:r[n][1]}var n;e.defineLocale("de",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:true,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,w:t,ww:"%d Wochen",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n,a){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],w:["eine Woche","einer Woche"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?r[n][0]:r[n][1]}var n;e.defineLocale("de-at",{months:"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:true,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,w:t,ww:"%d Wochen",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n,a){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],w:["eine Woche","einer Woche"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?r[n][0]:r[n][1]}var n;e.defineLocale("de-ch",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:true,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,w:t,ww:"%d Wochen",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t=["ÞÞ¬ÞÞªÞÞ¦ÞÞ©","ÞÞ¬ÞÞ°ÞÞªÞÞ¦ÞÞ©","ÞÞ§ÞÞ¨ÞÞª","ÞÞÞÞ°ÞÞ©ÞÞª","ÞÞ","ÞÞ«ÞÞ°","ÞÞªÞÞ¦ÞÞ¨","ÞÞ¯ÞÞ¦ÞÞ°ÞÞª","ÞÞ¬ÞÞ°ÞÞ¬ÞÞ°ÞÞ¦ÞÞª","ÞÞ®ÞÞ°ÞÞ¯ÞÞ¦ÞÞª","ÞÞ®ÞÞ¬ÞÞ°ÞÞ¦ÞÞª","ÞÞ¨ÞÞ¬ÞÞ°ÞÞ¦ÞÞª"],n=["ÞÞ§ÞÞ¨ÞÞ°ÞÞ¦","ÞÞ¯ÞÞ¦","ÞÞ¦ÞÞ°ÞÞ§ÞÞ¦","ÞÞªÞÞ¦","ÞÞªÞÞ§ÞÞ°ÞÞ¦ÞÞ¨","ÞÞªÞÞªÞÞª","ÞÞ®ÞÞ¨ÞÞ¨ÞÞª"],a;e.defineLocale("dv",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:"ÞÞ§ÞÞ¨_ÞÞ¯ÞÞ¦_ÞÞ¦ÞÞ°_ÞÞªÞÞ¦_ÞÞªÞÞ§_ÞÞªÞÞª_ÞÞ®ÞÞ¨".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ÞÞ|ÞÞ/,isPM:function(e){return"ÞÞ"===e},meridiem:function(e,t,n){if(e<12)return"ÞÞ";else return"ÞÞ"},calendar:{sameDay:"[ÞÞ¨ÞÞ¦ÞÞª] LT",nextDay:"[ÞÞ§ÞÞ¦ÞÞ§] LT",nextWeek:"dddd LT",lastDay:"[ÞÞ¨ÞÞ°ÞÞ¬] LT",lastWeek:"[ÞÞ§ÞÞ¨ÞÞªÞÞ¨] dddd LT",sameElse:"L"},relativeTime:{future:"ÞÞ¬ÞÞÞÞ¦ÞÞ¨ %s",past:"ÞÞªÞÞ¨ÞÞ° %s",s:"ÞÞ¨ÞÞªÞÞ°ÞÞªÞÞ®Þ
Þ¬ÞÞ°",ss:"d% ÞÞ¨ÞÞªÞÞ°ÞÞª",m:"ÞÞ¨ÞÞ¨ÞÞ¬ÞÞ°",mm:"ÞÞ¨ÞÞ¨ÞÞª %d",h:"ÞÞ¦ÞÞ¨ÞÞ¨ÞÞ¬ÞÞ°",hh:"ÞÞ¦ÞÞ¨ÞÞ¨ÞÞª %d",d:"ÞÞªÞÞ¦ÞÞ¬ÞÞ°",dd:"ÞÞªÞÞ¦ÞÞ° %d",M:"ÞÞ¦ÞÞ¬ÞÞ°",MM:"ÞÞ¦ÞÞ° %d",y:"ÞÞ¦ÞÞ¦ÞÞ¬ÞÞ°",yy:"ÞÞ¦ÞÞ¦ÞÞª %d"},preparse:function(e){return e.replace(/Ø/g,",")},postformat:function(e){return e.replace(/,/g,"Ø")},week:{dow:7,doy:12}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function r(e){return typeof Function!=="undefined"&&e instanceof Function||Object.prototype.toString.call(e)==="[object Function]"}var t;e.defineLocale("el",{monthsNominativeEl:"ÎανοÏ
άÏιοÏ_ΦεβÏοÏ
άÏιοÏ_ÎάÏÏιοÏ_ÎÏÏίλιοÏ_ÎάιοÏ_ÎοÏνιοÏ_ÎοÏλιοÏ_ÎÏγοÏ
ÏÏοÏ_ΣεÏÏÎμβÏιοÏ_ÎκÏÏβÏιοÏ_ÎοÎμβÏιοÏ_ÎεκÎμβÏιοÏ".split("_"),monthsGenitiveEl:"ÎανοÏ
αÏίοÏ
_ΦεβÏοÏ
αÏίοÏ
_ÎαÏÏίοÏ
_ÎÏÏιλίοÏ
_ÎαÎοÏ
_ÎοÏ
νίοÏ
_ÎοÏ
λίοÏ
_ÎÏ
γοÏÏÏοÏ
_ΣεÏÏεμβÏίοÏ
_ÎκÏÏβÏίοÏ
_ÎοεμβÏίοÏ
_ÎεκεμβÏίοÏ
".split("_"),months:function(e,t){if(!e)return this._monthsNominativeEl;else if(typeof t==="string"&&/D/.test(t.substring(0,t.indexOf("MMMM"))))return this._monthsGenitiveEl[e.month()];else return this._monthsNominativeEl[e.month()]},monthsShort:"Îαν_Φεβ_ÎαÏ_ÎÏÏ_ÎαÏ_ÎοÏ
ν_ÎοÏ
λ_ÎÏ
γ_ΣεÏ_ÎκÏ_Îοε_Îεκ".split("_"),weekdays:"ÎÏ
Ïιακή_ÎεÏ
ÏÎÏα_ΤÏίÏη_ΤεÏάÏÏη_Î ÎμÏÏη_ΠαÏαÏκεÏ
ή_ΣάββαÏο".split("_"),weekdaysShort:"ÎÏ
Ï_ÎεÏ
_ΤÏι_ΤεÏ_Πεμ_ΠαÏ_Σαβ".split("_"),weekdaysMin:"ÎÏ
_Îε_ΤÏ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(e,t,n){if(e>11)return n?"μμ":"ÎÎ";else return n?"Ïμ":"Î Î"},isPM:function(e){return(e+"").toLowerCase()[0]==="μ"},meridiemParse:/[Î Î]\.?Î?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[ΣήμεÏα {}] LT",nextDay:"[ÎÏÏιο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Î§Î¸ÎµÏ {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[Ïο ÏÏοηγοÏμενο] dddd [{}] LT";default:return"[Ïην ÏÏοηγοÏμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(e,t){var n=this._calendarEl[e],a=t&&t.hours();if(r(n))n=n.apply(t);return n.replace("{}",a%12===1?"ÏÏη":"ÏÏιÏ")},relativeTime:{future:"Ïε %s",past:"%s ÏÏιν",s:"λίγα δεÏ
ÏεÏÏλεÏÏα",ss:"%d δεÏ
ÏεÏÏλεÏÏα",m:"Îνα λεÏÏÏ",mm:"%d λεÏÏά",h:"μία ÏÏα",hh:"%d ÏÏεÏ",d:"μία μÎÏα",dd:"%d μÎÏεÏ",M:"ÎÎ½Î±Ï Î¼Î®Î½Î±Ï",MM:"%d μήνεÏ",y:"ÎÎ½Î±Ï ÏÏÏνοÏ",yy:"%d ÏÏÏνια"},dayOfMonthOrdinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=~~(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n},week:{dow:0,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=~~(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=~~(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=~~(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("en-il",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=~~(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("en-in",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=~~(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=~~(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("en-sg",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=~~(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("eo",{months:"januaro_februaro_marto_aprilo_majo_junio_julio_aÅgusto_septembro_oktobro_novembro_decembro".split("_"),monthsShort:"jan_feb_mart_apr_maj_jun_jul_aÅg_sept_okt_nov_dec".split("_"),weekdays:"dimanÄo_lundo_mardo_merkredo_ĵaÅdo_vendredo_sabato".split("_"),weekdaysShort:"dim_lun_mard_merk_ĵaÅ_ven_sab".split("_"),weekdaysMin:"di_lu_ma_me_ĵa_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"[la] D[-an de] MMMM, YYYY",LLL:"[la] D[-an de] MMMM, YYYY HH:mm",LLLL:"dddd[n], [la] D[-an de] MMMM, YYYY HH:mm",llll:"ddd, [la] D[-an de] MMM, YYYY HH:mm"},meridiemParse:/[ap]\.t\.m/i,isPM:function(e){return e.charAt(0).toLowerCase()==="p"},meridiem:function(e,t,n){if(e>11)return n?"p.t.m.":"P.T.M.";else return n?"a.t.m.":"A.T.M."},calendar:{sameDay:"[HodiaÅ je] LT",nextDay:"[MorgaÅ je] LT",nextWeek:"dddd[n je] LT",lastDay:"[HieraÅ je] LT",lastWeek:"[pasintan] dddd[n je] LT",sameElse:"L"},relativeTime:{future:"post %s",past:"antaÅ %s",s:"kelkaj sekundoj",ss:"%d sekundoj",m:"unu minuto",mm:"%d minutoj",h:"unu horo",hh:"%d horoj",d:"unu tago",dd:"%d tagoj",M:"unu monato",MM:"%d monatoj",y:"unu jaro",yy:"%d jaroj"},dayOfMonthOrdinalParse:/\d{1,2}a/,ordinal:"%da",week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var n="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),t=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,o;e.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){if(!e)return n;else if(/-MMM-/.test(t))return a[e.month()];else return n[e.month()]},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:t,longMonthsParse:t,shortMonthsParse:t,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(this.hours()!==1?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(this.hours()!==1?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(this.hours()!==1?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(this.hours()!==1?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(this.hours()!==1?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un dÃa",dd:"%d dÃas",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4},invalidDate:"Fecha inválida"})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var n="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),t=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,o;e.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){if(!e)return n;else if(/-MMM-/.test(t))return a[e.month()];else return n[e.month()]},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:t,longMonthsParse:t,shortMonthsParse:t,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(this.hours()!==1?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(this.hours()!==1?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(this.hours()!==1?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(this.hours()!==1?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(this.hours()!==1?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un dÃa",dd:"%d dÃas",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var n="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),t=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,o;e.defineLocale("es-mx",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){if(!e)return n;else if(/-MMM-/.test(t))return a[e.month()];else return n[e.month()]},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:t,longMonthsParse:t,shortMonthsParse:t,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(this.hours()!==1?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(this.hours()!==1?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(this.hours()!==1?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(this.hours()!==1?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(this.hours()!==1?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un dÃa",dd:"%d dÃas",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:4},invalidDate:"Fecha inválida"})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var n="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),a="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),t=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,o;e.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){if(!e)return n;else if(/-MMM-/.test(t))return a[e.month()];else return n[e.month()]},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:t,longMonthsParse:t,shortMonthsParse:t,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(this.hours()!==1?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(this.hours()!==1?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(this.hours()!==1?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(this.hours()!==1?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(this.hours()!==1?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un dÃa",dd:"%d dÃas",w:"una semana",ww:"%d semanas",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n,a){var r={s:["mõne sekundi","mõni sekund","paar sekundit"],ss:[e+"sekundi",e+"sekundit"],m:["ühe minuti","üks minut"],mm:[e+" minuti",e+" minutit"],h:["ühe tunni","tund aega","üks tund"],hh:[e+" tunni",e+" tundi"],d:["ühe päeva","üks päev"],M:["kuu aja","kuu aega","üks kuu"],MM:[e+" kuu",e+" kuud"],y:["ühe aasta","aasta","üks aasta"],yy:[e+" aasta",e+" aastat"]};if(t)return r[n][2]?r[n][2]:r[n][1];return a?r[n][0]:r[n][1]}var n;e.defineLocale("et",{months:"jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember".split("_"),monthsShort:"jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets".split("_"),weekdays:"pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev".split("_"),weekdaysShort:"P_E_T_K_N_R_L".split("_"),weekdaysMin:"P_E_T_K_N_R_L".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[Täna,] LT",nextDay:"[Homme,] LT",nextWeek:"[Järgmine] dddd LT",lastDay:"[Eile,] LT",lastWeek:"[Eelmine] dddd LT",sameElse:"L"},relativeTime:{future:"%s pärast",past:"%s tagasi",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:"%d päeva",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:true,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",ss:"%d segundo",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"Û±",2:"Û²",3:"Û³",4:"Û´",5:"Ûµ",6:"Û¶",7:"Û·",8:"Û¸",9:"Û¹",0:"Û°"},n={"Û±":"1","Û²":"2","Û³":"3","Û´":"4","Ûµ":"5","Û¶":"6","Û·":"7","Û¸":"8","Û¹":"9","Û°":"0"},a;e.defineLocale("fa",{months:"ÚØ§ÙÙÛÙ_ÙÙØ±ÛÙ_Ù
ارس_Ø¢ÙØ±ÛÙ_Ù
Ù_ÚÙØ¦Ù_ÚÙØ¦ÛÙ_Ø§ÙØª_سپتاÙ
بر_اکتبر_ÙÙØ§Ù
بر_دساÙ
بر".split("_"),monthsShort:"ÚØ§ÙÙÛÙ_ÙÙØ±ÛÙ_Ù
ارس_Ø¢ÙØ±ÛÙ_Ù
Ù_ÚÙØ¦Ù_ÚÙØ¦ÛÙ_Ø§ÙØª_سپتاÙ
بر_اکتبر_ÙÙØ§Ù
بر_دساÙ
بر".split("_"),weekdays:"ÛÚ©âØ´ÙØ¨Ù_Ø¯ÙØ´ÙبÙ_سÙâØ´ÙØ¨Ù_ÚÙØ§Ø±Ø´ÙبÙ_Ù¾ÙØ¬âØ´ÙØ¨Ù_جÙ
عÙ_Ø´ÙØ¨Ù".split("_"),weekdaysShort:"ÛÚ©âØ´ÙØ¨Ù_Ø¯ÙØ´ÙبÙ_سÙâØ´ÙØ¨Ù_ÚÙØ§Ø±Ø´ÙبÙ_Ù¾ÙØ¬âØ´ÙØ¨Ù_جÙ
عÙ_Ø´ÙØ¨Ù".split("_"),weekdaysMin:"Û_د_س_Ú_Ù¾_ج_Ø´".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/ÙØ¨Ù از Ø¸ÙØ±|بعد از Ø¸ÙØ±/,isPM:function(e){return/بعد از Ø¸ÙØ±/.test(e)},meridiem:function(e,t,n){if(e<12)return"ÙØ¨Ù از Ø¸ÙØ±";else return"بعد از Ø¸ÙØ±"},calendar:{sameDay:"[اÙ
Ø±ÙØ² ساعت] LT",nextDay:"[ÙØ±Ø¯Ø§ ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[Ø¯ÛØ±Ùز ساعت] LT",lastWeek:"dddd [Ù¾ÛØ´] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s Ù¾ÛØ´",s:"ÚÙØ¯ ثاÙÛÙ",ss:"%d ثاÙÛÙ",m:"ÛÚ© دÙÛÙÙ",mm:"%d دÙÛÙÙ",h:"ÛÚ© ساعت",hh:"%d ساعت",d:"ÛÚ© Ø±ÙØ²",dd:"%d Ø±ÙØ²",M:"ÛÚ© Ù
اÙ",MM:"%d Ù
اÙ",y:"ÛÚ© ساÙ",yy:"%d ساÙ"},preparse:function(e){return e.replace(/[Û°-Û¹]/g,function(e){return n[e]}).replace(/Ø/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"Ø")},dayOfMonthOrdinalParse:/\d{1,2}Ù
/,ordinal:"%dÙ
",week:{dow:6,doy:12}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var n="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),a=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",n[7],n[8],n[9]],t;function r(e,t,n,a){var r="";switch(n){case"s":return a?"muutaman sekunnin":"muutama sekunti";case"ss":r=a?"sekunnin":"sekuntia";break;case"m":return a?"minuutin":"minuutti";case"mm":r=a?"minuutin":"minuuttia";break;case"h":return a?"tunnin":"tunti";case"hh":r=a?"tunnin":"tuntia";break;case"d":return a?"päivän":"päivä";case"dd":r=a?"päivän":"päivää";break;case"M":return a?"kuukauden":"kuukausi";case"MM":r=a?"kuukauden":"kuukautta";break;case"y":return a?"vuoden":"vuosi";case"yy":r=a?"vuoden":"vuotta";break}r=o(e,a)+" "+r;return r}function o(e,t){return e<10?t?a[e]:n[e]:e}e.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("fil",{months:"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre".split("_"),monthsShort:"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis".split("_"),weekdays:"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado".split("_"),weekdaysShort:"Lin_Lun_Mar_Miy_Huw_Biy_Sab".split("_"),weekdaysMin:"Li_Lu_Ma_Mi_Hu_Bi_Sab".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"MM/D/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY HH:mm",LLLL:"dddd, MMMM DD, YYYY HH:mm"},calendar:{sameDay:"LT [ngayong araw]",nextDay:"[Bukas ng] LT",nextWeek:"LT [sa susunod na] dddd",lastDay:"LT [kahapon]",lastWeek:"LT [noong nakaraang] dddd",sameElse:"L"},relativeTime:{future:"sa loob ng %s",past:"%s ang nakalipas",s:"ilang segundo",ss:"%d segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("fo",{months:"januar_februar_mars_aprÃl_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_frÃggjadagur_leygardagur".split("_"),weekdaysShort:"sun_mán_týs_mik_hós_frÃ_ley".split("_"),weekdaysMin:"su_má_tý_mi_hó_fr_le".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D. MMMM, YYYY HH:mm"},calendar:{sameDay:"[à dag kl.] LT",nextDay:"[à morgin kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[à gjár kl.] LT",lastWeek:"[sÃðstu] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"um %s",past:"%s sÃðani",s:"fá sekund",ss:"%d sekundir",m:"ein minuttur",mm:"%d minuttir",h:"ein tÃmi",hh:"%d tÃmar",d:"ein dagur",dd:"%d dagar",M:"ein mánaður",MM:"%d mánaðir",y:"eitt ár",yy:"%d ár"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t=/^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,n=/(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?)/i,a=/(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?|janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,r=[/^janv/i,/^févr/i,/^mars/i,/^avr/i,/^mai/i,/^juin/i,/^juil/i,/^août/i,/^sept/i,/^oct/i,/^nov/i,/^déc/i],o;e.defineLocale("fr",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsRegex:a,monthsShortRegex:a,monthsStrictRegex:t,monthsShortStrictRegex:n,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourdâhui à ] LT",nextDay:"[Demain à ] LT",nextWeek:"dddd [à ] LT",lastDay:"[Hier à ] LT",lastWeek:"dddd [dernier à ] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",w:"une semaine",ww:"%d semaines",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case"D":return e+(e===1?"er":"");default:case"M":case"Q":case"DDD":case"d":return e+(e===1?"er":"e");case"w":case"W":return e+(e===1?"re":"e")}},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("fr-ca",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:true,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourdâhui à ] LT",nextDay:"[Demain à ] LT",nextWeek:"dddd [à ] LT",lastDay:"[Hier à ] LT",lastWeek:"dddd [dernier à ] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(e===1?"er":"e");case"w":case"W":return e+(e===1?"re":"e")}}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:true,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourdâhui à ] LT",nextDay:"[Demain à ] LT",nextWeek:"dddd [à ] LT",lastDay:"[Hier à ] LT",lastWeek:"dddd [dernier à ] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(e===1?"er":"e");case"w":case"W":return e+(e===1?"re":"e")}},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var n="jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.".split("_"),a="jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),t;e.defineLocale("fy",{months:"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber".split("_"),monthsShort:function(e,t){if(!e)return n;else if(/-MMM-/.test(t))return a[e.month()];else return n[e.month()]},monthsParseExact:true,weekdays:"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon".split("_"),weekdaysShort:"si._mo._ti._wo._to._fr._so.".split("_"),weekdaysMin:"Si_Mo_Ti_Wo_To_Fr_So".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[hjoed om] LT",nextDay:"[moarn om] LT",nextWeek:"dddd [om] LT",lastDay:"[juster om] LT",lastWeek:"[ôfrûne] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oer %s",past:"%s lyn",s:"in pear sekonden",ss:"%d sekonden",m:"ien minút",mm:"%d minuten",h:"ien oere",hh:"%d oeren",d:"ien dei",dd:"%d dagen",M:"ien moanne",MM:"%d moannen",y:"ien jier",yy:"%d jierren"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(e===1||e===8||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t,n,a,r,o,i;e.defineLocale("ga",{months:["Eanáir","Feabhra","Márta","Aibreán","Bealtaine","Meitheamh","Iúil","Lúnasa","Meán Fómhair","Deireadh Fómhair","Samhain","Nollaig"],monthsShort:["Ean","Feabh","Márt","Aib","Beal","Meith","Iúil","Lún","M.F.","D.F.","Samh","Noll"],monthsParseExact:true,weekdays:["Dé Domhnaigh","Dé Luain","Dé Máirt","Dé Céadaoin","Déardaoin","Dé hAoine","Dé Sathairn"],weekdaysShort:["Domh","Luan","Máirt","Céad","Déar","Aoine","Sath"],weekdaysMin:["Do","Lu","Má","Cé","Dé","A","Sa"],longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Inniu ag] LT",nextDay:"[Amárach ag] LT",nextWeek:"dddd [ag] LT",lastDay:"[Inné ag] LT",lastWeek:"dddd [seo caite] [ag] LT",sameElse:"L"},relativeTime:{future:"i %s",past:"%s ó shin",s:"cúpla soicind",ss:"%d soicind",m:"nóiméad",mm:"%d nóiméad",h:"uair an chloig",hh:"%d uair an chloig",d:"lá",dd:"%d lá",M:"mÃ",MM:"%d mÃonna",y:"bliain",yy:"%d bliain"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(e){var t=e===1?"d":e%10===2?"na":"mh";return e+t},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t,n,a,r,o,i;e.defineLocale("gd",{months:["Am Faoilleach","An Gearran","Am Mà rt","An Giblean","An Cèitean","An t-Ãgmhios","An t-Iuchar","An Lùnastal","An t-Sultain","An Dà mhair","An t-Samhain","An Dùbhlachd"],monthsShort:["Faoi","Gear","Mà rt","Gibl","Cèit","Ãgmh","Iuch","Lùn","Sult","Dà mh","Samh","Dùbh"],monthsParseExact:true,weekdays:["Didòmhnaich","Diluain","Dimà irt","Diciadain","Diardaoin","Dihaoine","Disathairne"],weekdaysShort:["Did","Dil","Dim","Dic","Dia","Dih","Dis"],weekdaysMin:["Dò","Lu","Mà ","Ci","Ar","Ha","Sa"],longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[An-diugh aig] LT",nextDay:"[A-mà ireach aig] LT",nextWeek:"dddd [aig] LT",lastDay:"[An-dè aig] LT",lastWeek:"dddd [seo chaidh] [aig] LT",sameElse:"L"},relativeTime:{future:"ann an %s",past:"bho chionn %s",s:"beagan diogan",ss:"%d diogan",m:"mionaid",mm:"%d mionaidean",h:"uair",hh:"%d uairean",d:"latha",dd:"%d latha",M:"mìos",MM:"%d mìosan",y:"bliadhna",yy:"%d bliadhna"},dayOfMonthOrdinalParse:/\d{1,2}(d|na|mh)/,ordinal:function(e){var t=e===1?"d":e%10===2?"na":"mh";return e+t},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("gl",{months:"xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),monthsShort:"xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.".split("_"),monthsParseExact:true,weekdays:"domingo_luns_martes_mércores_xoves_venres_sábado".split("_"),weekdaysShort:"dom._lun._mar._mér._xov._ven._sáb.".split("_"),weekdaysMin:"do_lu_ma_mé_xo_ve_sá".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(this.hours()!==1?"ás":"á")+"] LT"},nextDay:function(){return"[mañá "+(this.hours()!==1?"ás":"á")+"] LT"},nextWeek:function(){return"dddd ["+(this.hours()!==1?"ás":"a")+"] LT"},lastDay:function(){return"[onte "+(this.hours()!==1?"á":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(this.hours()!==1?"ás":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(e){if(e.indexOf("un")===0)return"n"+e;return"en "+e},past:"hai %s",s:"uns segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un dÃa",dd:"%d dÃas",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n,a){var r={s:["थà¥à¤¡à¤¯à¤¾ सà¥
à¤à¤à¤¡à¤¾à¤à¤¨à¥","थà¥à¤¡à¥ सà¥
à¤à¤à¤¡"],ss:[e+" सà¥
à¤à¤à¤¡à¤¾à¤à¤¨à¥",e+" सà¥
à¤à¤à¤¡"],m:["à¤à¤à¤¾ मिणà¤à¤¾à¤¨","à¤à¤ मिनà¥à¤"],mm:[e+" मिणà¤à¤¾à¤à¤¨à¥",e+" मिणà¤à¤¾à¤"],h:["à¤à¤à¤¾ वरान","à¤à¤ वर"],hh:[e+" वराà¤à¤¨à¥",e+" वराà¤"],d:["à¤à¤à¤¾ दिसान","à¤à¤ दà¥à¤¸"],dd:[e+" दिसाà¤à¤¨à¥",e+" दà¥à¤¸"],M:["à¤à¤à¤¾ मà¥à¤¹à¤¯à¤¨à¥à¤¯à¤¾à¤¨","à¤à¤ मà¥à¤¹à¤¯à¤¨à¥"],MM:[e+" मà¥à¤¹à¤¯à¤¨à¥à¤¯à¤¾à¤¨à¥",e+" मà¥à¤¹à¤¯à¤¨à¥"],y:["à¤à¤à¤¾ वरà¥à¤¸à¤¾à¤¨","à¤à¤ वरà¥à¤¸"],yy:[e+" वरà¥à¤¸à¤¾à¤à¤¨à¥",e+" वरà¥à¤¸à¤¾à¤"]};return a?r[n][0]:r[n][1]}var n;e.defineLocale("gom-deva",{months:{standalone:"à¤à¤¾à¤¨à¥à¤µà¤¾à¤°à¥_फà¥à¤¬à¥à¤°à¥à¤µà¤¾à¤°à¥_मारà¥à¤_à¤à¤ªà¥à¤°à¥à¤²_मà¥_à¤à¥à¤¨_à¤à¥à¤²à¤¯_à¤à¤à¤¸à¥à¤_सपà¥à¤à¥à¤à¤¬à¤°_à¤à¤à¥à¤à¥à¤¬à¤°_नà¥à¤µà¥à¤¹à¥à¤à¤¬à¤°_डिसà¥à¤à¤¬à¤°".split("_"),format:"à¤à¤¾à¤¨à¥à¤µà¤¾à¤°à¥à¤à¥à¤¯à¤¾_फà¥à¤¬à¥à¤°à¥à¤µà¤¾à¤°à¥à¤à¥à¤¯à¤¾_मारà¥à¤à¤¾à¤à¥à¤¯à¤¾_à¤à¤ªà¥à¤°à¥à¤²à¤¾à¤à¥à¤¯à¤¾_मà¥à¤¯à¤¾à¤à¥à¤¯à¤¾_à¤à¥à¤¨à¤¾à¤à¥à¤¯à¤¾_à¤à¥à¤²à¤¯à¤¾à¤à¥à¤¯à¤¾_à¤à¤à¤¸à¥à¤à¤¾à¤à¥à¤¯à¤¾_सपà¥à¤à¥à¤à¤¬à¤°à¤¾à¤à¥à¤¯à¤¾_à¤à¤à¥à¤à¥à¤¬à¤°à¤¾à¤à¥à¤¯à¤¾_नà¥à¤µà¥à¤¹à¥à¤à¤¬à¤°à¤¾à¤à¥à¤¯à¤¾_डिसà¥à¤à¤¬à¤°à¤¾à¤à¥à¤¯à¤¾".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"à¤à¤¾à¤¨à¥._फà¥à¤¬à¥à¤°à¥._मारà¥à¤_à¤à¤ªà¥à¤°à¥._मà¥_à¤à¥à¤¨_à¤à¥à¤²._à¤à¤._सपà¥à¤à¥à¤._à¤à¤à¥à¤à¥._नà¥à¤µà¥à¤¹à¥à¤._डिसà¥à¤.".split("_"),monthsParseExact:true,weekdays:"à¤à¤¯à¤¤à¤¾à¤°_सà¥à¤®à¤¾à¤°_मà¤à¤à¤³à¤¾à¤°_बà¥à¤§à¤µà¤¾à¤°_बिरà¥à¤¸à¥à¤¤à¤¾à¤°_सà¥à¤à¥à¤°à¤¾à¤°_शà¥à¤¨à¤µà¤¾à¤°".split("_"),weekdaysShort:"à¤à¤¯à¤¤._सà¥à¤®._मà¤à¤à¤³._बà¥à¤§._बà¥à¤°à¥à¤¸à¥à¤¤._सà¥à¤à¥à¤°._शà¥à¤¨.".split("_"),weekdaysMin:"à¤_सà¥_मà¤_बà¥_बà¥à¤°à¥_सà¥_शà¥".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"A h:mm [वाà¤à¤¤à¤¾à¤]",LTS:"A h:mm:ss [वाà¤à¤¤à¤¾à¤]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [वाà¤à¤¤à¤¾à¤]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [वाà¤à¤¤à¤¾à¤]",llll:"ddd, D MMM YYYY, A h:mm [वाà¤à¤¤à¤¾à¤]"},calendar:{sameDay:"[à¤à¤¯à¤] LT",nextDay:"[फालà¥à¤¯à¤¾à¤] LT",nextWeek:"[फà¥à¤¡à¤²à¥] dddd[,] LT",lastDay:"[à¤à¤¾à¤²] LT",lastWeek:"[फाà¤à¤²à¥] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s à¤à¤¦à¥à¤",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}(वà¥à¤°)/,ordinal:function(e,t){switch(t){case"D":return e+"वà¥à¤°";default:case"M":case"Q":case"DDD":case"d":case"w":case"W":return e}},week:{dow:0,doy:3},meridiemParse:/रातà¥|सà¤à¤¾à¤³à¥à¤|दनपाराà¤|साà¤à¤à¥/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="रातà¥")return e<4?e:e+12;else if(t==="सà¤à¤¾à¤³à¥à¤")return e;else if(t==="दनपाराà¤")return e>12?e:e+12;else if(t==="साà¤à¤à¥")return e+12},meridiem:function(e,t,n){if(e<4)return"रातà¥";else if(e<12)return"सà¤à¤¾à¤³à¥à¤";else if(e<16)return"दनपाराà¤";else if(e<20)return"साà¤à¤à¥";else return"रातà¥"}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n,a){var r={s:["thoddea sekondamni","thodde sekond"],ss:[e+" sekondamni",e+" sekond"],m:["eka mintan","ek minut"],mm:[e+" mintamni",e+" mintam"],h:["eka voran","ek vor"],hh:[e+" voramni",e+" voram"],d:["eka disan","ek dis"],dd:[e+" disamni",e+" dis"],M:["eka mhoinean","ek mhoino"],MM:[e+" mhoineamni",e+" mhoine"],y:["eka vorsan","ek voros"],yy:[e+" vorsamni",e+" vorsam"]};return a?r[n][0]:r[n][1]}var n;e.defineLocale("gom-latn",{months:{standalone:"Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr".split("_"),format:"Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea".split("_"),isFormat:/MMMM(\s)+D[oD]?/},monthsShort:"Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.".split("_"),monthsParseExact:true,weekdays:"Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var".split("_"),weekdaysShort:"Ait._Som._Mon._Bud._Bre._Suk._Son.".split("_"),weekdaysMin:"Ai_Sm_Mo_Bu_Br_Su_Sn".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"A h:mm [vazta]",LTS:"A h:mm:ss [vazta]",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY A h:mm [vazta]",LLLL:"dddd, MMMM Do, YYYY, A h:mm [vazta]",llll:"ddd, D MMM YYYY, A h:mm [vazta]"},calendar:{sameDay:"[Aiz] LT",nextDay:"[Faleam] LT",nextWeek:"[Fuddlo] dddd[,] LT",lastDay:"[Kal] LT",lastWeek:"[Fattlo] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s",past:"%s adim",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}(er)/,ordinal:function(e,t){switch(t){case"D":return e+"er";default:case"M":case"Q":case"DDD":case"d":case"w":case"W":return e}},week:{dow:0,doy:3},meridiemParse:/rati|sokallim|donparam|sanje/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="rati")return e<4?e:e+12;else if(t==="sokallim")return e;else if(t==="donparam")return e>12?e:e+12;else if(t==="sanje")return e+12},meridiem:function(e,t,n){if(e<4)return"rati";else if(e<12)return"sokallim";else if(e<16)return"donparam";else if(e<20)return"sanje";else return"rati"}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"à«§",2:"૨",3:"à«©",4:"૪",5:"à««",6:"૬",7:"à«",8:"à«®",9:"૯",0:"૦"},n={"à«§":"1","૨":"2","à«©":"3","૪":"4","à««":"5","૬":"6","à«":"7","à«®":"8","૯":"9","૦":"0"},a;e.defineLocale("gu",{months:"àªàª¾àª¨à«àª¯à«àªàª°à«_ફà«àª¬à«àª°à«àªàª°à«_મારà«àª_àªàªªà«àª°àª¿àª²_મà«_àªà«àª¨_àªà«àª²àª¾àª_àªàªàª¸à«àª_સપà«àªà«àª®à«àª¬àª°_àªàªà«àªà«àª¬àª°_નવà«àª®à«àª¬àª°_ડિસà«àª®à«àª¬àª°".split("_"),monthsShort:"àªàª¾àª¨à«àª¯à«._ફà«àª¬à«àª°à«._મારà«àª_àªàªªà«àª°àª¿._મà«_àªà«àª¨_àªà«àª²àª¾._àªàª._સપà«àªà«._àªàªà«àªà«._નવà«._ડિસà«.".split("_"),monthsParseExact:true,weekdays:"રવિવાર_સà«àª®àªµàª¾àª°_મàªàªàª³àªµàª¾àª°_બà«àª§à«àªµàª¾àª°_àªà«àª°à«àªµàª¾àª°_શà«àªà«àª°àªµàª¾àª°_શનિવાર".split("_"),weekdaysShort:"રવિ_સà«àª®_મàªàªàª³_બà«àª§à«_àªà«àª°à«_શà«àªà«àª°_શનિ".split("_"),weekdaysMin:"ર_સà«_મàª_બà«_àªà«_શà«_શ".split("_"),longDateFormat:{LT:"A h:mm વાàªà«àª¯à«",LTS:"A h:mm:ss વાàªà«àª¯à«",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm વાàªà«àª¯à«",LLLL:"dddd, D MMMM YYYY, A h:mm વાàªà«àª¯à«"},calendar:{sameDay:"[àªàª] LT",nextDay:"[àªàª¾àª²à«] LT",nextWeek:"dddd, LT",lastDay:"[àªàªàªàª¾àª²à«] LT",lastWeek:"[પાàªàª²àª¾] dddd, LT",sameElse:"L"},relativeTime:{future:"%s મા",past:"%s પહà«àª²àª¾",s:"àª
મà«àª પળà«",ss:"%d સà«àªàªàª¡",m:"àªàª મિનિàª",mm:"%d મિનિàª",h:"àªàª àªàª²àª¾àª",hh:"%d àªàª²àª¾àª",d:"àªàª દિવસ",dd:"%d દિવસ",M:"àªàª મહિનà«",MM:"%d મહિનà«",y:"àªàª વરà«àª·",yy:"%d વરà«àª·"},preparse:function(e){return e.replace(/[૧૨૩૪૫૬à«à«®à«¯à«¦]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/રાત|બપà«àª°|સવાર|સાàªàª/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="રાત")return e<4?e:e+12;else if(t==="સવાર")return e;else if(t==="બપà«àª°")return e>=10?e:e+12;else if(t==="સાàªàª")return e+12},meridiem:function(e,t,n){if(e<4)return"રાત";else if(e<10)return"સવાર";else if(e<17)return"બપà«àª°";else if(e<20)return"સાàªàª";else return"રાત"},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("he",{months:"×× ××ר_פ×ר××ר_×רץ_×פר××_×××_××× ×_××××_××××ס×_ספ×××ר_×××§×××ר_× ××××ר_×צ××ר".split("_"),monthsShort:"×× ×׳_פ×ר׳_×רץ_×פר׳_×××_××× ×_××××_×××׳_ספ×׳_××ק׳_× ××׳_×צ×׳".split("_"),weekdays:"ר×ש××_×©× ×_ש××ש×_ר×××¢×_×××ש×_ש×ש×_ש×ת".split("_"),weekdaysShort:"×׳_×׳_×׳_×׳_×׳_×׳_ש׳".split("_"),weekdaysMin:"×_×_×_×_×_×_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [×]MMMM YYYY",LLL:"D [×]MMMM YYYY HH:mm",LLLL:"dddd, D [×]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[×××× ×Ö¾]LT",nextDay:"[××ר ×Ö¾]LT",nextWeek:"dddd [×שע×] LT",lastDay:"[×ת××× ×Ö¾]LT",lastWeek:"[××××] dddd [×××ר×× ×שע×] LT",sameElse:"L"},relativeTime:{future:"××¢×× %s",past:"××¤× × %s",s:"×ספר ×©× ××ת",ss:"%d ×©× ××ת",m:"××§×",mm:"%d ××§×ת",h:"שע×",hh:function(e){if(e===2)return"שעת×××";return e+" שע×ת"},d:"×××",dd:function(e){if(e===2)return"××××××";return e+" ××××"},M:"×××ש",MM:function(e){if(e===2)return"×××ש×××";return e+" ×××ש××"},y:"×©× ×",yy:function(e){if(e===2)return"×©× ×ª×××";else if(e%10===0&&e!==10)return e+" ×©× ×";return e+" ×©× ××"}},meridiemParse:/×××"צ|××¤× ×"צ|×××¨× ×צ×ר×××|××¤× × ×צ×ר×××|××¤× ×ת ××קר|×××קר|×ער×/i,isPM:function(e){return/^(×××"צ|×××¨× ×צ×ר×××|×ער×)$/.test(e)},meridiem:function(e,t,n){if(e<5)return"××¤× ×ת ××קר";else if(e<10)return"×××קר";else if(e<12)return n?'××¤× ×"צ':"××¤× × ×צ×ר×××";else if(e<18)return n?'×××"צ':"×××¨× ×צ×ר×××";else return"×ער×"}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"à¥",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","à¥":"7","८":"8","९":"9","०":"0"},a=[/^à¤à¤¨/i,/^फ़र|फर/i,/^मारà¥à¤/i,/^à¤
पà¥à¤°à¥/i,/^मà¤/i,/^à¤à¥à¤¨/i,/^à¤à¥à¤²/i,/^à¤
à¤/i,/^सितà¤|सित/i,/^à¤
à¤à¥à¤à¥/i,/^नव|नवà¤/i,/^दिसà¤|दिस/i],r=[/^à¤à¤¨/i,/^फ़र/i,/^मारà¥à¤/i,/^à¤
पà¥à¤°à¥/i,/^मà¤/i,/^à¤à¥à¤¨/i,/^à¤à¥à¤²/i,/^à¤
à¤/i,/^सित/i,/^à¤
à¤à¥à¤à¥/i,/^नव/i,/^दिस/i],o;e.defineLocale("hi",{months:{format:"à¤à¤¨à¤µà¤°à¥_फ़रवरà¥_मारà¥à¤_à¤
पà¥à¤°à¥à¤²_मà¤_à¤à¥à¤¨_à¤à¥à¤²à¤¾à¤_à¤
à¤à¤¸à¥à¤¤_सितमà¥à¤¬à¤°_à¤
à¤à¥à¤à¥à¤¬à¤°_नवमà¥à¤¬à¤°_दिसमà¥à¤¬à¤°".split("_"),standalone:"à¤à¤¨à¤µà¤°à¥_फरवरà¥_मारà¥à¤_à¤
पà¥à¤°à¥à¤²_मà¤_à¤à¥à¤¨_à¤à¥à¤²à¤¾à¤_à¤
à¤à¤¸à¥à¤¤_सितà¤à¤¬à¤°_à¤
à¤à¥à¤à¥à¤¬à¤°_नवà¤à¤¬à¤°_दिसà¤à¤¬à¤°".split("_")},monthsShort:"à¤à¤¨._फ़र._मारà¥à¤_à¤
पà¥à¤°à¥._मà¤_à¤à¥à¤¨_à¤à¥à¤²._à¤
à¤._सित._à¤
à¤à¥à¤à¥._नव._दिस.".split("_"),weekdays:"रविवार_सà¥à¤®à¤µà¤¾à¤°_मà¤à¤à¤²à¤µà¤¾à¤°_बà¥à¤§à¤µà¤¾à¤°_à¤à¥à¤°à¥à¤µà¤¾à¤°_शà¥à¤à¥à¤°à¤µà¤¾à¤°_शनिवार".split("_"),weekdaysShort:"रवि_सà¥à¤®_मà¤à¤à¤²_बà¥à¤§_à¤à¥à¤°à¥_शà¥à¤à¥à¤°_शनि".split("_"),weekdaysMin:"र_सà¥_मà¤_बà¥_à¤à¥_शà¥_श".split("_"),longDateFormat:{LT:"A h:mm बà¤à¥",LTS:"A h:mm:ss बà¤à¥",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm बà¤à¥",LLLL:"dddd, D MMMM YYYY, A h:mm बà¤à¥"},monthsParse:a,longMonthsParse:a,shortMonthsParse:r,monthsRegex:/^(à¤à¤¨à¤µà¤°à¥|à¤à¤¨\.?|फ़रवरà¥|फरवरà¥|फ़र\.?|मारà¥à¤?|à¤
पà¥à¤°à¥à¤²|à¤
पà¥à¤°à¥\.?|मà¤?|à¤à¥à¤¨?|à¤à¥à¤²à¤¾à¤|à¤à¥à¤²\.?|à¤
à¤à¤¸à¥à¤¤|à¤
à¤\.?|सितमà¥à¤¬à¤°|सितà¤à¤¬à¤°|सित\.?|à¤
à¤à¥à¤à¥à¤¬à¤°|à¤
à¤à¥à¤à¥\.?|नवमà¥à¤¬à¤°|नवà¤à¤¬à¤°|नव\.?|दिसमà¥à¤¬à¤°|दिसà¤à¤¬à¤°|दिस\.?)/i,monthsShortRegex:/^(à¤à¤¨à¤µà¤°à¥|à¤à¤¨\.?|फ़रवरà¥|फरवरà¥|फ़र\.?|मारà¥à¤?|à¤
पà¥à¤°à¥à¤²|à¤
पà¥à¤°à¥\.?|मà¤?|à¤à¥à¤¨?|à¤à¥à¤²à¤¾à¤|à¤à¥à¤²\.?|à¤
à¤à¤¸à¥à¤¤|à¤
à¤\.?|सितमà¥à¤¬à¤°|सितà¤à¤¬à¤°|सित\.?|à¤
à¤à¥à¤à¥à¤¬à¤°|à¤
à¤à¥à¤à¥\.?|नवमà¥à¤¬à¤°|नवà¤à¤¬à¤°|नव\.?|दिसमà¥à¤¬à¤°|दिसà¤à¤¬à¤°|दिस\.?)/i,monthsStrictRegex:/^(à¤à¤¨à¤µà¤°à¥?|फ़रवरà¥|फरवरà¥?|मारà¥à¤?|à¤
पà¥à¤°à¥à¤²?|मà¤?|à¤à¥à¤¨?|à¤à¥à¤²à¤¾à¤?|à¤
à¤à¤¸à¥à¤¤?|सितमà¥à¤¬à¤°|सितà¤à¤¬à¤°|सित?\.?|à¤
à¤à¥à¤à¥à¤¬à¤°|à¤
à¤à¥à¤à¥\.?|नवमà¥à¤¬à¤°|नवà¤à¤¬à¤°?|दिसमà¥à¤¬à¤°|दिसà¤à¤¬à¤°?)/i,monthsShortStrictRegex:/^(à¤à¤¨\.?|फ़र\.?|मारà¥à¤?|à¤
पà¥à¤°à¥\.?|मà¤?|à¤à¥à¤¨?|à¤à¥à¤²\.?|à¤
à¤\.?|सित\.?|à¤
à¤à¥à¤à¥\.?|नव\.?|दिस\.?)/i,calendar:{sameDay:"[à¤à¤] LT",nextDay:"[à¤à¤²] LT",nextWeek:"dddd, LT",lastDay:"[à¤à¤²] LT",lastWeek:"[पिà¤à¤²à¥] dddd, LT",sameElse:"L"},relativeTime:{future:"%s मà¥à¤",past:"%s पहलà¥",s:"à¤à¥à¤ हॠà¤à¥à¤·à¤£",ss:"%d सà¥à¤à¤à¤¡",m:"à¤à¤ मिनà¤",mm:"%d मिनà¤",h:"à¤à¤ à¤à¤à¤à¤¾",hh:"%d à¤à¤à¤à¥",d:"à¤à¤ दिन",dd:"%d दिन",M:"à¤à¤ महà¥à¤¨à¥",MM:"%d महà¥à¤¨à¥",y:"à¤à¤ वरà¥à¤·",yy:"%d वरà¥à¤·"},preparse:function(e){return e.replace(/[१२३४५६à¥à¥®à¥¯à¥¦]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/रात|सà¥à¤¬à¤¹|दà¥à¤ªà¤¹à¤°|शाम/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="रात")return e<4?e:e+12;else if(t==="सà¥à¤¬à¤¹")return e;else if(t==="दà¥à¤ªà¤¹à¤°")return e>=10?e:e+12;else if(t==="शाम")return e+12},meridiem:function(e,t,n){if(e<4)return"रात";else if(e<10)return"सà¥à¤¬à¤¹";else if(e<17)return"दà¥à¤ªà¤¹à¤°";else if(e<20)return"शाम";else return"रात"},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n){var a=e+" ";switch(n){case"ss":if(e===1)a+="sekunda";else if(e===2||e===3||e===4)a+="sekunde";else a+="sekundi";return a;case"m":return t?"jedna minuta":"jedne minute";case"mm":if(e===1)a+="minuta";else if(e===2||e===3||e===4)a+="minute";else a+="minuta";return a;case"h":return t?"jedan sat":"jednog sata";case"hh":if(e===1)a+="sat";else if(e===2||e===3||e===4)a+="sata";else a+="sati";return a;case"dd":if(e===1)a+="dan";else a+="dana";return a;case"MM":if(e===1)a+="mjesec";else if(e===2||e===3||e===4)a+="mjeseca";else a+="mjeseci";return a;case"yy":if(e===1)a+="godina";else if(e===2||e===3||e===4)a+="godine";else a+="godina";return a}}var n;e.defineLocale("hr",{months:{format:"sijeÄnja_veljaÄe_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"sijeÄanj_veljaÄa_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:true,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_Äetvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._Äet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_Äe_pe_su".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"Do MMMM YYYY",LLL:"Do MMMM YYYY H:mm",LLLL:"dddd, Do MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juÄer u] LT",lastWeek:function(){switch(this.day()){case 0:return"[proÅ¡lu] [nedjelju] [u] LT";case 3:return"[proÅ¡lu] [srijedu] [u] LT";case 6:return"[proÅ¡le] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[proÅ¡li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:t,m:t,mm:t,h:t,hh:t,d:"dan",dd:t,M:"mjesec",MM:t,y:"godinu",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t="vasárnap hétfÅn kedden szerdán csütörtökön pénteken szombaton".split(" "),n;function a(e,t,n,a){var r=e;switch(n){case"s":return a||t?"néhány másodperc":"néhány másodperce";case"ss":return r+(a||t)?" másodperc":" másodperce";case"m":return"egy"+(a||t?" perc":" perce");case"mm":return r+(a||t?" perc":" perce");case"h":return"egy"+(a||t?" óra":" órája");case"hh":return r+(a||t?" óra":" órája");case"d":return"egy"+(a||t?" nap":" napja");case"dd":return r+(a||t?" nap":" napja");case"M":return"egy"+(a||t?" hónap":" hónapja");case"MM":return r+(a||t?" hónap":" hónapja");case"y":return"egy"+(a||t?" év":" éve");case"yy":return r+(a||t?" év":" éve")}return""}function r(e){return(e?"":"[múlt] ")+"["+t[this.day()]+"] LT[-kor]"}e.defineLocale("hu",{months:"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),monthsShort:"jan._feb._márc._ápr._máj._jún._júl._aug._szept._okt._nov._dec.".split("_"),monthsParseExact:true,weekdays:"vasárnap_hétfÅ_kedd_szerda_csütörtök_péntek_szombat".split("_"),weekdaysShort:"vas_hét_kedd_sze_csüt_pén_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(e){return e.charAt(1).toLowerCase()==="u"},meridiem:function(e,t,n){if(e<12)return n===true?"de":"DE";else return n===true?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return r.call(this,true)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return r.call(this,false)},sameElse:"L"},relativeTime:{future:"%s múlva",past:"%s",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("hy-am",{months:{format:"Õ°Õ¸ÖÕ¶Õ¾Õ¡ÖÕ«_ÖÕ¥Õ¿ÖÕ¾Õ¡ÖÕ«_Õ´Õ¡ÖÕ¿Õ«_Õ¡ÕºÖÕ«Õ¬Õ«_Õ´Õ¡ÕµÕ«Õ½Õ«_Õ°Õ¸ÖÕ¶Õ«Õ½Õ«_Õ°Õ¸ÖÕ¬Õ«Õ½Õ«_Ö
Õ£Õ¸Õ½Õ¿Õ¸Õ½Õ«_Õ½Õ¥ÕºÕ¿Õ¥Õ´Õ¢Õ¥ÖÕ«_Õ°Õ¸Õ¯Õ¿Õ¥Õ´Õ¢Õ¥ÖÕ«_Õ¶Õ¸ÕµÕ¥Õ´Õ¢Õ¥ÖÕ«_Õ¤Õ¥Õ¯Õ¿Õ¥Õ´Õ¢Õ¥ÖÕ«".split("_"),standalone:"Õ°Õ¸ÖÕ¶Õ¾Õ¡Ö_ÖÕ¥Õ¿ÖÕ¾Õ¡Ö_Õ´Õ¡ÖÕ¿_Õ¡ÕºÖÕ«Õ¬_Õ´Õ¡ÕµÕ«Õ½_Õ°Õ¸ÖÕ¶Õ«Õ½_Õ°Õ¸ÖÕ¬Õ«Õ½_Ö
Õ£Õ¸Õ½Õ¿Õ¸Õ½_Õ½Õ¥ÕºÕ¿Õ¥Õ´Õ¢Õ¥Ö_Õ°Õ¸Õ¯Õ¿Õ¥Õ´Õ¢Õ¥Ö_Õ¶Õ¸ÕµÕ¥Õ´Õ¢Õ¥Ö_Õ¤Õ¥Õ¯Õ¿Õ¥Õ´Õ¢Õ¥Ö".split("_")},monthsShort:"Õ°Õ¶Õ¾_ÖÕ¿Ö_Õ´ÖÕ¿_Õ¡ÕºÖ_Õ´ÕµÕ½_Õ°Õ¶Õ½_Õ°Õ¬Õ½_Ö
Õ£Õ½_Õ½ÕºÕ¿_Õ°Õ¯Õ¿_Õ¶Õ´Õ¢_Õ¤Õ¯Õ¿".split("_"),weekdays:"Õ¯Õ«ÖÕ¡Õ¯Õ«_Õ¥ÖÕ¯Õ¸ÖÕ·Õ¡Õ¢Õ©Õ«_Õ¥ÖÕ¥ÖÕ·Õ¡Õ¢Õ©Õ«_Õ¹Õ¸ÖÕ¥ÖÕ·Õ¡Õ¢Õ©Õ«_Õ°Õ«Õ¶Õ£Õ·Õ¡Õ¢Õ©Õ«_Õ¸ÖÖÕ¢Õ¡Õ©_Õ·Õ¡Õ¢Õ¡Õ©".split("_"),weekdaysShort:"Õ¯ÖÕ¯_Õ¥ÖÕ¯_Õ¥ÖÖ_Õ¹ÖÖ_Õ°Õ¶Õ£_Õ¸ÖÖÕ¢_Õ·Õ¢Õ©".split("_"),weekdaysMin:"Õ¯ÖÕ¯_Õ¥ÖÕ¯_Õ¥ÖÖ_Õ¹ÖÖ_Õ°Õ¶Õ£_Õ¸ÖÖÕ¢_Õ·Õ¢Õ©".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY Õ©.",LLL:"D MMMM YYYY Õ©., HH:mm",LLLL:"dddd, D MMMM YYYY Õ©., HH:mm"},calendar:{sameDay:"[Õ¡ÕµÕ½Ö
Ö] LT",nextDay:"[Õ¾Õ¡Õ²Õ¨] LT",lastDay:"[Õ¥ÖÕ¥Õ¯] LT",nextWeek:function(){return"dddd [Ö
ÖÕ¨ ÕªÕ¡Õ´Õ¨] LT"},lastWeek:function(){return"[Õ¡Õ¶ÖÕ¡Õ®] dddd [Ö
ÖÕ¨ ÕªÕ¡Õ´Õ¨] LT"},sameElse:"L"},relativeTime:{future:"%s Õ°Õ¥Õ¿Õ¸",past:"%s Õ¡Õ¼Õ¡Õ»",s:"Õ´Õ« ÖÕ¡Õ¶Õ« Õ¾Õ¡ÕµÖÕ¯ÕµÕ¡Õ¶",ss:"%d Õ¾Õ¡ÕµÖÕ¯ÕµÕ¡Õ¶",m:"ÖÕ¸ÕºÕ¥",mm:"%d ÖÕ¸ÕºÕ¥",h:"ÕªÕ¡Õ´",hh:"%d ÕªÕ¡Õ´",d:"Ö
Ö",dd:"%d Ö
Ö",M:"Õ¡Õ´Õ«Õ½",MM:"%d Õ¡Õ´Õ«Õ½",y:"Õ¿Õ¡ÖÕ«",yy:"%d Õ¿Õ¡ÖÕ«"},meridiemParse:/Õ£Õ«Õ·Õ¥ÖÕ¾Õ¡|Õ¡Õ¼Õ¡Õ¾Õ¸Õ¿Õ¾Õ¡|ÖÕ¥ÖÕ¥Õ¯Õ¾Õ¡|Õ¥ÖÕ¥Õ¯Õ¸ÕµÕ¡Õ¶/,isPM:function(e){return/^(ÖÕ¥ÖÕ¥Õ¯Õ¾Õ¡|Õ¥ÖÕ¥Õ¯Õ¸ÕµÕ¡Õ¶)$/.test(e)},meridiem:function(e){if(e<4)return"Õ£Õ«Õ·Õ¥ÖÕ¾Õ¡";else if(e<12)return"Õ¡Õ¼Õ¡Õ¾Õ¸Õ¿Õ¾Õ¡";else if(e<17)return"ÖÕ¥ÖÕ¥Õ¯Õ¾Õ¡";else return"Õ¥ÖÕ¥Õ¯Õ¸ÕµÕ¡Õ¶"},dayOfMonthOrdinalParse:/\d{1,2}|\d{1,2}-(Õ«Õ¶|ÖÕ¤)/,ordinal:function(e,t){switch(t){case"DDD":case"w":case"W":case"DDDo":if(e===1)return e+"-Õ«Õ¶";return e+"-ÖÕ¤";default:return e}},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="pagi")return e;else if(t==="siang")return e>=11?e:e+12;else if(t==="sore"||t==="malam")return e+12},meridiem:function(e,t,n){if(e<11)return"pagi";else if(e<15)return"siang";else if(e<19)return"sore";else return"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",ss:"%d detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function o(e){if(e%100===11)return true;else if(e%10===1)return false;return true}function t(e,t,n,a){var r=e+" ";switch(n){case"s":return t||a?"nokkrar sekúndur":"nokkrum sekúndum";case"ss":if(o(e))return r+(t||a?"sekúndur":"sekúndum");return r+"sekúnda";case"m":return t?"mÃnúta":"mÃnútu";case"mm":if(o(e))return r+(t||a?"mÃnútur":"mÃnútum");else if(t)return r+"mÃnúta";return r+"mÃnútu";case"hh":if(o(e))return r+(t||a?"klukkustundir":"klukkustundum");return r+"klukkustund";case"d":if(t)return"dagur";return a?"dag":"degi";case"dd":if(o(e)){if(t)return r+"dagar";return r+(a?"daga":"dögum")}else if(t)return r+"dagur";return r+(a?"dag":"degi");case"M":if(t)return"mánuður";return a?"mánuð":"mánuði";case"MM":if(o(e)){if(t)return r+"mánuðir";return r+(a?"mánuði":"mánuðum")}else if(t)return r+"mánuður";return r+(a?"mánuð":"mánuði");case"y":return t||a?"ár":"ári";case"yy":if(o(e))return r+(t||a?"ár":"árum");return r+(t||a?"ár":"ári")}}var n;e.defineLocale("is",{months:"janúar_febrúar_mars_aprÃl_maÃ_júnÃ_júlÃ_ágúst_september_október_nóvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maÃ_jún_júl_ágú_sep_okt_nóv_des".split("_"),weekdays:"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_þri_mið_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Ãr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[à dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[à gær kl.] LT",lastWeek:"[sÃðasta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s sÃðan",s:t,ss:t,m:t,mm:t,h:"klukkustund",hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:function(){return"[Oggi a"+(this.hours()>1?"lle ":this.hours()===0?" ":"ll'")+"]LT"},nextDay:function(){return"[Domani a"+(this.hours()>1?"lle ":this.hours()===0?" ":"ll'")+"]LT"},nextWeek:function(){return"dddd [a"+(this.hours()>1?"lle ":this.hours()===0?" ":"ll'")+"]LT"},lastDay:function(){return"[Ieri a"+(this.hours()>1?"lle ":this.hours()===0?" ":"ll'")+"]LT"},lastWeek:function(){switch(this.day()){case 0:return"[La scorsa] dddd [a"+(this.hours()>1?"lle ":this.hours()===0?" ":"ll'")+"]LT";default:return"[Lo scorso] dddd [a"+(this.hours()>1?"lle ":this.hours()===0?" ":"ll'")+"]LT"}},sameElse:"L"},relativeTime:{future:"tra %s",past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",w:"una settimana",ww:"%d settimane",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("it-ch",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ja",{eras:[{since:"2019-05-01",offset:1,name:"令å",narrow:"ã¿",abbr:"R"},{since:"1989-01-08",until:"2019-04-30",offset:1,name:"å¹³æ",narrow:"ã»",abbr:"H"},{since:"1926-12-25",until:"1989-01-07",offset:1,name:"æå",narrow:"ã¼",abbr:"S"},{since:"1912-07-30",until:"1926-12-24",offset:1,name:"大æ£",narrow:"ã½",abbr:"T"},{since:"1873-01-01",until:"1912-07-29",offset:6,name:"ææ²»",narrow:"ã¾",abbr:"M"},{since:"0001-01-01",until:"1873-12-31",offset:1,name:"西æ¦",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-Infinity,offset:1,name:"ç´å
å",narrow:"BC",abbr:"BC"}],eraYearOrdinalRegex:/(å
|\d+)å¹´/,eraYearOrdinalParse:function(e,t){return t[1]==="å
"?1:parseInt(t[1]||e,10)},months:"1æ_2æ_3æ_4æ_5æ_6æ_7æ_8æ_9æ_10æ_11æ_12æ".split("_"),monthsShort:"1æ_2æ_3æ_4æ_5æ_6æ_7æ_8æ_9æ_10æ_11æ_12æ".split("_"),weekdays:"æ¥ææ¥_æææ¥_ç«ææ¥_æ°´ææ¥_æ¨ææ¥_éææ¥_åææ¥".split("_"),weekdaysShort:"æ¥_æ_ç«_æ°´_æ¨_é_å".split("_"),weekdaysMin:"æ¥_æ_ç«_æ°´_æ¨_é_å".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYYå¹´MæDæ¥",LLL:"YYYYå¹´MæDæ¥ HH:mm",LLLL:"YYYYå¹´MæDæ¥ dddd HH:mm",l:"YYYY/MM/DD",ll:"YYYYå¹´MæDæ¥",lll:"YYYYå¹´MæDæ¥ HH:mm",llll:"YYYYå¹´MæDæ¥(ddd) HH:mm"},meridiemParse:/åå|åå¾/i,isPM:function(e){return e==="åå¾"},meridiem:function(e,t,n){if(e<12)return"åå";else return"åå¾"},calendar:{sameDay:"[仿¥] LT",nextDay:"[ææ¥] LT",nextWeek:function(e){if(e.week()!==this.week())return"[æ¥é±]dddd LT";else return"dddd LT"},lastDay:"[æ¨æ¥] LT",lastWeek:function(e){if(this.week()!==e.week())return"[å
é±]dddd LT";else return"dddd LT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}æ¥/,ordinal:function(e,t){switch(t){case"y":return e===1?"å
å¹´":e+"å¹´";case"d":case"D":case"DDD":return e+"æ¥";default:return e}},relativeTime:{future:"%så¾",past:"%så",s:"æ°ç§",ss:"%dç§",m:"1å",mm:"%då",h:"1æé",hh:"%dæé",d:"1æ¥",dd:"%dæ¥",M:"1ã¶æ",MM:"%dã¶æ",y:"1å¹´",yy:"%då¹´"}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("jv",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des".split("_"),weekdays:"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu".split("_"),weekdaysShort:"Min_Sen_Sel_Reb_Kem_Jem_Sep".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sp".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="enjing")return e;else if(t==="siyang")return e>=11?e:e+12;else if(t==="sonten"||t==="ndalu")return e+12},meridiem:function(e,t,n){if(e<11)return"enjing";else if(e<15)return"siyang";else if(e<19)return"sonten";else return"ndalu"},calendar:{sameDay:"[Dinten puniko pukul] LT",nextDay:"[Mbenjang pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kala wingi pukul] LT",lastWeek:"dddd [kepengker pukul] LT",sameElse:"L"},relativeTime:{future:"wonten ing %s",past:"%s ingkang kepengker",s:"sawetawis detik",ss:"%d detik",m:"setunggal menit",mm:"%d menit",h:"setunggal jam",hh:"%d jam",d:"sedinten",dd:"%d dinten",M:"sewulan",MM:"%d wulan",y:"setaun",yy:"%d taun"},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ka",{months:"áááááá á_ááááá áááá_ááá á¢á_ááá ááá_áááá¡á_ááááá¡á_ááááá¡á_ááááá¡á¢á_á¡áá¥á¢ááááá á_áá¥á¢ááááá á_ááááááá á_áááááááá á".split("_"),monthsShort:"ááá_ááá_ááá _ááá _ááá_ááá_ááá_ááá_á¡áá¥_áá¥á¢_ááá_ááá".split("_"),weekdays:{standalone:"áááá á_áá á¨ááááá_á¡ááá¨ááááá_ááá®á¨ááááá_á®á£áá¨ááááá_ááá áá¡áááá_á¨ááááá".split("_"),format:"áááá áá¡_áá á¨ááááá¡_á¡ááá¨ááááá¡_ááá®á¨ááááá¡_á®á£áá¨ááááá¡_ááá áá¡áááá¡_á¨ááááá¡".split("_"),isFormat:/(á¬ááá|á¨ááááá)/},weekdaysShort:"ááá_áá á¨_á¡áá_ááá®_á®á£á_ááá _á¨áá".split("_"),weekdaysMin:"áá_áá _á¡á_áá_á®á£_áá_á¨á".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[áá¦áá¡] LT[-áá]",nextDay:"[á®ááá] LT[-áá]",lastDay:"[áá£á¨áá] LT[-áá]",nextWeek:"[á¨ááááá] dddd LT[-áá]",lastWeek:"[á¬ááá] dddd LT-áá",sameElse:"L"},relativeTime:{future:function(e){return e.replace(/(á¬áá|á¬á£á|á¡ááá|á¬áá|áá¦|áá)(á|á)/,function(e,t,n){return n==="á"?t+"á¨á":t+n+"á¨á"})},past:function(e){if(/(á¬ááá|á¬á£áá|á¡áááá|áá¦á|ááá)/.test(e))return e.replace(/(á|á)$/,"áá¡ á¬áá");if(/á¬ááá/.test(e))return e.replace(/á¬ááá$/,"á¬ááá¡ á¬áá");return e},s:"á áááááááá á¬ááá",ss:"%d á¬ááá",m:"á¬á£áá",mm:"%d á¬á£áá",h:"á¡áááá",hh:"%d á¡áááá",d:"áá¦á",dd:"%d áá¦á",M:"ááá",MM:"%d ááá",y:"á¬ááá",yy:"%d á¬ááá"},dayOfMonthOrdinalParse:/0|1-áá|áá-\d{1,2}|\d{1,2}-á/,ordinal:function(e){if(e===0)return e;if(e===1)return e+"-áá";if(e<20||e<=100&&e%20===0||e%100===0)return"áá-"+e;return e+"-á"},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var a={0:"-ÑÑ",1:"-ÑÑ",2:"-ÑÑ",3:"-ÑÑ",4:"-ÑÑ",5:"-ÑÑ",6:"-ÑÑ",7:"-ÑÑ",8:"-ÑÑ",9:"-ÑÑ",10:"-ÑÑ",20:"-ÑÑ",30:"-ÑÑ",40:"-ÑÑ",50:"-ÑÑ",60:"-ÑÑ",70:"-ÑÑ",80:"-ÑÑ",90:"-ÑÑ",100:"-ÑÑ"},t;e.defineLocale("kk",{months:"ÒаңÑаÑ_аÒпан_наÑÑÑз_ÑÓÑÑÑ_мамÑÑ_маÑÑÑм_ÑÑлде_ÑамÑз_ÒÑÑкүйек_Òазан_ÒаÑаÑа_желÑоÒÑан".split("_"),monthsShort:"Òаң_аÒп_наÑ_ÑÓÑ_мам_маÑ_ÑÑл_Ñам_ÒÑÑ_Òаз_ÒаÑ_жел".split("_"),weekdays:"жекÑенбÑ_дүйÑенбÑ_ÑейÑенбÑ_ÑÓÑÑенбÑ_бейÑенбÑ_жұма_ÑенбÑ".split("_"),weekdaysShort:"жек_дүй_Ñей_ÑÓÑ_бей_жұм_Ñен".split("_"),weekdaysMin:"жк_дй_Ñй_ÑÑ_бй_жм_Ñн".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[ÐүгÑн ÑаÒаÑ] LT",nextDay:"[ÐÑÑең ÑаÒаÑ] LT",nextWeek:"dddd [ÑаÒаÑ] LT",lastDay:"[ÐеÑе ÑаÒаÑ] LT",lastWeek:"[Ó¨Ñкен апÑанÑÒ£] dddd [ÑаÒаÑ] LT",sameElse:"L"},relativeTime:{future:"%s ÑÑÑнде",past:"%s бұÑÑн",s:"бÑÑнеÑе ÑекÑнд",ss:"%d ÑекÑнд",m:"бÑÑ Ð¼Ð¸Ð½ÑÑ",mm:"%d минÑÑ",h:"бÑÑ ÑаÒаÑ",hh:"%d ÑаÒаÑ",d:"бÑÑ ÐºÒ¯Ð½",dd:"%d күн",M:"бÑÑ Ð°Ð¹",MM:"%d ай",y:"бÑÑ Ð¶Ñл",yy:"%d жÑл"},dayOfMonthOrdinalParse:/\d{1,2}-(ÑÑ|ÑÑ)/,ordinal:function(e){var t=e%10,n=e>=100?100:null;return e+(a[e]||a[t]||a[n])},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"á¡",2:"á¢",3:"á£",4:"á¤",5:"á¥",6:"á¦",7:"á§",8:"á¨",9:"á©",0:"á "},n={"á¡":"1","á¢":"2","á£":"3","á¤":"4","á¥":"5","á¦":"6","á§":"7","á¨":"8","á©":"9","á ":"0"},a;e.defineLocale("km",{months:"áááá¶_áá»áááá_áá¸áá¶_áááá¶_á§ááá¶_áá·áá»áá¶_áááááá¶_áá¸á á¶_ááááá¶_áá»áá¶_áá·á
ááá·áá¶_áááá¼".split("_"),monthsShort:"áááá¶_áá»áááá_áá¸áá¶_áááá¶_á§ááá¶_áá·áá»áá¶_áááááá¶_áá¸á á¶_ááááá¶_áá»áá¶_áá·á
ááá·áá¶_áááá¼".split("_"),weekdays:"á¢á¶áá·ááá_á
áááá_á¢áááá¶á_áá»á_áááá ááááá·á_áá»ááá_áá
áá".split("_"),weekdaysShort:"á¢á¶_á
_á¢_á_ááá_áá»_á".split("_"),weekdaysMin:"á¢á¶_á
_á¢_á_ááá_áá»_á".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/áááá¹á|áááá¶á
/,isPM:function(e){return e==="áááá¶á
"},meridiem:function(e,t,n){if(e<12)return"áááá¹á";else return"áááá¶á
"},calendar:{sameDay:"[ááááááá áááá] LT",nextDay:"[ááá¢áá áááá] LT",nextWeek:"dddd [áááá] LT",lastDay:"[áááá·ááá·á áááá] LT",lastWeek:"dddd [ááááá¶á ááá»á] [áááá] LT",sameElse:"L"},relativeTime:{future:"%sááá",past:"%sáá»á",s:"ááá»áááá¶ááá·áá¶áá¸",ss:"%d áá·áá¶áá¸",m:"áá½ááá¶áá¸",mm:"%d áá¶áá¸",h:"áá½ááááá",hh:"%d áááá",d:"áá½ááááá",dd:"%d áááá",M:"áá½ááá",MM:"%d áá",y:"áá½ááááá¶á",yy:"%d áááá¶á"},dayOfMonthOrdinalParse:/áá¸\d{1,2}/,ordinal:"áá¸%d",preparse:function(e){return e.replace(/[á¡á¢á£á¤á¥á¦á§á¨á©á ]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"à³§",2:"೨",3:"೩",4:"೪",5:"೫",6:"೬",7:"à³",8:"à³®",9:"೯",0:"೦"},n={"à³§":"1","೨":"2","೩":"3","೪":"4","೫":"5","೬":"6","à³":"7","à³®":"8","೯":"9","೦":"0"},a;e.defineLocale("kn",{months:"à²à²¨à²µà²°à²¿_ಫà³à²¬à³à²°à²µà²°à²¿_ಮಾರà³à²à³_à²à²ªà³à²°à²¿à²²à³_ಮà³à³_à²à³à²¨à³_à²à³à²²à³à³_à²à²à²¸à³à²à³_ಸà³à²ªà³à²à³à²à²¬à²°à³_à²
à²à³à²à³à³à³à²¬à²°à³_ನವà³à²à²¬à²°à³_ಡಿಸà³à²à²¬à²°à³".split("_"),monthsShort:"à²à²¨_ಫà³à²¬à³à²°_ಮಾರà³à²à³_à²à²ªà³à²°à²¿à²²à³_ಮà³à³_à²à³à²¨à³_à²à³à²²à³à³_à²à²à²¸à³à²à³_ಸà³à²ªà³à²à³à²_à²
à²à³à²à³à³à³_ನವà³à²_ಡಿಸà³à²".split("_"),monthsParseExact:true,weekdays:"à²à²¾à²¨à³à²µà²¾à²°_ಸà³à³à³à²®à²µà²¾à²°_ಮà²à²à²³à²µà²¾à²°_ಬà³à²§à²µà²¾à²°_à²à³à²°à³à²µà²¾à²°_ಶà³à²à³à²°à²µà²¾à²°_ಶನಿವಾರ".split("_"),weekdaysShort:"à²à²¾à²¨à³_ಸà³à³à³à²®_ಮà²à²à²³_ಬà³à²§_à²à³à²°à³_ಶà³à²à³à²°_ಶನಿ".split("_"),weekdaysMin:"à²à²¾_ಸà³à³à³_ಮà²_ಬà³_à²à³_ಶà³_ಶ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[à²à²à²¦à³] LT",nextDay:"[ನಾಳà³] LT",nextWeek:"dddd, LT",lastDay:"[ನಿನà³à²¨à³] LT",lastWeek:"[à²à³à³à²¨à³à²¯] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ನà²à²¤à²°",past:"%s ಹಿà²à²¦à³",s:"à²à³à²²à²µà³ à²à³à²·à²£à²à²³à³",ss:"%d ಸà³à²à³à²à²¡à³à²à²³à³",m:"à²à²à²¦à³ ನಿಮಿಷ",mm:"%d ನಿಮಿಷ",h:"à²à²à²¦à³ à²à²à²à³",hh:"%d à²à²à²à³",d:"à²à²à²¦à³ ದಿನ",dd:"%d ದಿನ",M:"à²à²à²¦à³ ತಿà²à²à²³à³",MM:"%d ತಿà²à²à²³à³",y:"à²à²à²¦à³ ವರà³à²·",yy:"%d ವರà³à²·"},preparse:function(e){return e.replace(/[೧೨೩೪೫೬à³à³®à³¯à³¦]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/ರಾತà³à²°à²¿|ಬà³à²³à²¿à²à³à²à³|ಮಧà³à²¯à²¾à²¹à³à²¨|ಸà²à²à³/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="ರಾತà³à²°à²¿")return e<4?e:e+12;else if(t==="ಬà³à²³à²¿à²à³à²à³")return e;else if(t==="ಮಧà³à²¯à²¾à²¹à³à²¨")return e>=10?e:e+12;else if(t==="ಸà²à²à³")return e+12},meridiem:function(e,t,n){if(e<4)return"ರಾತà³à²°à²¿";else if(e<10)return"ಬà³à²³à²¿à²à³à²à³";else if(e<17)return"ಮಧà³à²¯à²¾à²¹à³à²¨";else if(e<20)return"ಸà²à²à³";else return"ರಾತà³à²°à²¿"},dayOfMonthOrdinalParse:/\d{1,2}(ನà³à³)/,ordinal:function(e){return e+"ನà³à³"},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ko",{months:"1ì_2ì_3ì_4ì_5ì_6ì_7ì_8ì_9ì_10ì_11ì_12ì".split("_"),monthsShort:"1ì_2ì_3ì_4ì_5ì_6ì_7ì_8ì_9ì_10ì_11ì_12ì".split("_"),weekdays:"ì¼ìì¼_ììì¼_íìì¼_ììì¼_목ìì¼_ê¸ìì¼_í ìì¼".split("_"),weekdaysShort:"ì¼_ì_í_ì_목_ê¸_í ".split("_"),weekdaysMin:"ì¼_ì_í_ì_목_ê¸_í ".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"YYYY.MM.DD.",LL:"YYYYë
MMMM Dì¼",LLL:"YYYYë
MMMM Dì¼ A h:mm",LLLL:"YYYYë
MMMM Dì¼ dddd A h:mm",l:"YYYY.MM.DD.",ll:"YYYYë
MMMM Dì¼",lll:"YYYYë
MMMM Dì¼ A h:mm",llll:"YYYYë
MMMM Dì¼ dddd A h:mm"},calendar:{sameDay:"ì¤ë LT",nextDay:"ë´ì¼ LT",nextWeek:"dddd LT",lastDay:"ì´ì LT",lastWeek:"ì§ë주 dddd LT",sameElse:"L"},relativeTime:{future:"%s í",past:"%s ì ",s:"ëª ì´",ss:"%dì´",m:"1ë¶",mm:"%dë¶",h:"í ìê°",hh:"%dìê°",d:"í루",dd:"%dì¼",M:"í ë¬",MM:"%dë¬",y:"ì¼ ë
",yy:"%dë
"},dayOfMonthOrdinalParse:/\d{1,2}(ì¼|ì|주)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"ì¼";case"M":return e+"ì";case"w":case"W":return e+"주";default:return e}},meridiemParse:/ì¤ì |ì¤í/,isPM:function(e){return e==="ì¤í"},meridiem:function(e,t,n){return e<12?"ì¤ì ":"ì¤í"}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"Ù¡",2:"Ù¢",3:"Ù£",4:"Ù¤",5:"Ù¥",6:"Ù¦",7:"Ù§",8:"Ù¨",9:"Ù©",0:"Ù "},n={"Ù¡":"1","Ù¢":"2","Ù£":"3","Ù¤":"4","Ù¥":"5","Ù¦":"6","Ù§":"7","Ù¨":"8","Ù©":"9","Ù ":"0"},a=["کاÙÙÙÛ Ø¯ÙÙÛÙ
","Ø´ÙØ¨Ø§Øª","ئازار","ÙÛØ³Ø§Ù","Ø¦Ø§ÛØ§Ø±","ØÙزÛÛØ±Ø§Ù","تÛÙ
Ù
ÙØ²","ئاب","ئÛÛÙÙÙÙ","تشرÛÙÛ ÛÛÙÛÙ
","تشرÛÙÛ Ø¯ÙÙÛÙ
","ÙØ§ÙÙÙÛ ÛÛÚ©ÛÙ
"],r;e.defineLocale("ku",{months:a,monthsShort:a,weekdays:"ÛÙâÙØ´ÙâÙ
Ù
Ùâ_دÙÙØ´ÙâÙ
Ù
Ùâ_Ø³ÛØ´ÙâÙ
Ù
Ùâ_ÚÙØ§Ø±Ø´ÙâÙ
Ù
Ùâ_Ù¾ÛÙØ¬Ø´ÙâÙ
Ù
Ùâ_ÙÙâÛÙÛ_Ø´ÙâÙ
Ù
Ùâ".split("_"),weekdaysShort:"ÛÙâÙØ´ÙâÙ
_دÙÙØ´ÙâÙ
_Ø³ÛØ´ÙâÙ
_ÚÙØ§Ø±Ø´ÙâÙ
_Ù¾ÛÙØ¬Ø´ÙâÙ
_ÙÙâÛÙÛ_Ø´ÙâÙ
Ù
Ùâ".split("_"),weekdaysMin:"Û_د_س_Ú_Ù¾_Ù_Ø´".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/ئÛÙØ§Ø±Ùâ|بÙâÛØ§ÙÛ/,isPM:function(e){return/ئÛÙØ§Ø±Ùâ/.test(e)},meridiem:function(e,t,n){if(e<12)return"بÙâÛØ§ÙÛ";else return"ئÛÙØ§Ø±Ùâ"},calendar:{sameDay:"[ئÙâÙ
Ø±Û ÙØ§ØªÚÙ
ÛØ±] LT",nextDay:"[بÙâÛØ§ÙÛ ÙØ§ØªÚÙ
ÛØ±] LT",nextWeek:"dddd [ÙØ§ØªÚÙ
ÛØ±] LT",lastDay:"[دÙÛÙÛ ÙØ§ØªÚÙ
ÛØ±] LT",lastWeek:"dddd [ÙØ§ØªÚÙ
ÛØ±] LT",sameElse:"L"},relativeTime:{future:"ÙÙâ %s",past:"%s",s:"ÚÙâÙØ¯ ÚØ±ÙÙâÛÙâÙ",ss:"ÚØ±ÙÙâ %d",m:"ÛÙâÙ Ø®ÙÙÙâÙ",mm:"%d Ø®ÙÙÙâÙ",h:"ÛÙâÙ ÙØ§ØªÚÙ
ÛØ±",hh:"%d ÙØ§ØªÚÙ
ÛØ±",d:"ÛÙâÙ ÚÛÚ",dd:"%d ÚÛÚ",M:"ÛÙâÙ Ù
اÙÚ¯",MM:"%d Ù
اÙÚ¯",y:"ÛÙâ٠ساڵ",yy:"%d ساڵ"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return n[e]}).replace(/Ø/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"Ø")},week:{dow:6,doy:12}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var a={0:"-ÑÒ¯",1:"-Ñи",2:"-Ñи",3:"-ÑÒ¯",4:"-ÑÒ¯",5:"-Ñи",6:"-ÑÑ",7:"-Ñи",8:"-Ñи",9:"-ÑÑ",10:"-ÑÑ",20:"-ÑÑ",30:"-ÑÑ",40:"-ÑÑ",50:"-ÑÒ¯",60:"-ÑÑ",70:"-Ñи",80:"-Ñи",90:"-ÑÑ",100:"-ÑÒ¯"},t;e.defineLocale("ky",{months:"ÑнваÑÑ_ÑевÑалÑ_маÑÑ_апÑелÑ_май_иÑнÑ_иÑлÑ_авгÑÑÑ_ÑенÑÑбÑÑ_окÑÑбÑÑ_ноÑбÑÑ_декабÑÑ".split("_"),monthsShort:"Ñнв_Ñев_маÑÑ_апÑ_май_иÑнÑ_иÑлÑ_авг_Ñен_окÑ_ноÑ_дек".split("_"),weekdays:"ÐекÑемби_ÐүйÑөмбү_ШейÑемби_ШаÑÑемби_ÐейÑемби_ÐÑма_ÐÑемби".split("_"),weekdaysShort:"Ðек_Ðүй_Шей_ШаÑ_Ðей_ÐÑм_ÐÑе".split("_"),weekdaysMin:"Ðк_Ðй_Шй_ШÑ_Ðй_Ðм_ÐÑ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ðүгүн ÑааÑ] LT",nextDay:"[ÐÑÑең ÑааÑ] LT",nextWeek:"dddd [ÑааÑ] LT",lastDay:"[ÐеÑÑÑ ÑааÑ] LT",lastWeek:"[Ó¨Ñкөн апÑанÑн] dddd [күнү] [ÑааÑ] LT",sameElse:"L"},relativeTime:{future:"%s иÑинде",past:"%s мÑÑÑн",s:"биÑнеÑе ÑекÑнд",ss:"%d ÑекÑнд",m:"Ð±Ð¸Ñ Ð¼Ò¯Ð½Ó©Ñ",mm:"%d мүнөÑ",h:"Ð±Ð¸Ñ ÑааÑ",hh:"%d ÑааÑ",d:"Ð±Ð¸Ñ ÐºÒ¯Ð½",dd:"%d күн",M:"Ð±Ð¸Ñ Ð°Ð¹",MM:"%d ай",y:"Ð±Ð¸Ñ Ð¶Ñл",yy:"%d жÑл"},dayOfMonthOrdinalParse:/\d{1,2}-(Ñи|ÑÑ|ÑÒ¯|ÑÑ)/,ordinal:function(e){var t=e%10,n=e>=100?100:null;return e+(a[e]||a[t]||a[n])},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n,a){var r={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return t?r[n][0]:r[n][1]}function n(e){var t=e.substr(0,e.indexOf(" "));if(r(t))return"a "+e;return"an "+e}function a(e){var t=e.substr(0,e.indexOf(" "));if(r(t))return"viru "+e;return"virun "+e}function r(e){e=parseInt(e,10);if(isNaN(e))return false;if(e<0)return true;else if(e<10){if(4<=e&&e<=7)return true;return false}else if(e<100){var t=e%10,n=e/10;if(t===0)return r(n);return r(t)}else if(e<1e4){while(e>=10)e=e/10;return r(e)}else{e=e/1e3;return r(e)}}var o;e.defineLocale("lb",{months:"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:true,weekdays:"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._Mé._Dë._Më._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mé_Dë_Më_Do_Fr_Sa".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[Gëschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:n,past:a,s:"e puer Sekonnen",ss:"%d Sekonnen",m:t,mm:"%d Minutten",h:t,hh:"%d Stonnen",d:t,dd:"%d Deeg",M:t,MM:"%d Méint",y:t,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("lo",{months:"ມັàºàºàºàº_àºàº¸àº¡àºàº²_ມີàºàº²_à»àº¡àºªàº²_àºàº¶àºàºªàº°àºàº²_ມິàºàº¸àºàº²_àºà»àº¥àº°àºàº»àº_ສິàºàº«àº²_àºàº±àºàºàº²_àºàº¸àº¥àº²_àºàº°àºàº´àº_àºàº±àºàº§àº²".split("_"),monthsShort:"ມັàºàºàºàº_àºàº¸àº¡àºàº²_ມີàºàº²_à»àº¡àºªàº²_àºàº¶àºàºªàº°àºàº²_ມິàºàº¸àºàº²_àºà»àº¥àº°àºàº»àº_ສິàºàº«àº²_àºàº±àºàºàº²_àºàº¸àº¥àº²_àºàº°àºàº´àº_àºàº±àºàº§àº²".split("_"),weekdays:"àºàº²àºàº´àº_àºàº±àº_àºàº±àºàºàº²àº_àºàº¸àº_àºàº°àº«àº±àº_ສຸàº_à»àºªàº»àº²".split("_"),weekdaysShort:"àºàº´àº_àºàº±àº_àºàº±àºàºàº²àº_àºàº¸àº_àºàº°àº«àº±àº_ສຸàº_à»àºªàº»àº²".split("_"),weekdaysMin:"àº_àº_àºàº_àº_àºàº«_ສàº_ສ".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"ວັàºdddd D MMMM YYYY HH:mm"},meridiemParse:/àºàºàºà»àºàº»à»àº²|àºàºàºà»àº¥àº/,isPM:function(e){return e==="àºàºàºà»àº¥àº"},meridiem:function(e,t,n){if(e<12)return"àºàºàºà»àºàº»à»àº²";else return"àºàºàºà»àº¥àº"},calendar:{sameDay:"[ມືà»àºàºµà»à»àº§àº¥àº²] LT",nextDay:"[ມືà»àºàº·à»àºà»àº§àº¥àº²] LT",nextWeek:"[ວັàº]dddd[à»à»àº²à»àº§àº¥àº²] LT",lastDay:"[ມືà»àº§àº²àºàºàºµà»à»àº§àº¥àº²] LT",lastWeek:"[ວັàº]dddd[à»àº¥à»àº§àºàºµà»à»àº§àº¥àº²] LT",sameElse:"L"},relativeTime:{future:"àºàºµàº %s",past:"%sàºà»àº²àºàº¡àº²",s:"àºà»à»à»àºàº»à»àº²à»àºàº§àº´àºàº²àºàºµ",ss:"%d ວິàºàº²àºàºµ",m:"1 àºàº²àºàºµ",mm:"%d àºàº²àºàºµ",h:"1 àºàº»à»àº§à»àº¡àº",hh:"%d àºàº»à»àº§à»àº¡àº",d:"1 ມືà»",dd:"%d ມືà»",M:"1 à»àºàº·àºàº",MM:"%d à»àºàº·àºàº",y:"1 àºàºµ",yy:"%d àºàºµ"},dayOfMonthOrdinalParse:/(àºàºµà»)\d{1,2}/,ordinal:function(e){return"àºàºµà»"+e}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={ss:"sekundÄ_sekundžių_sekundes",m:"minutÄ_minutÄs_minutÄ",mm:"minutÄs_minuÄių_minutes",h:"valanda_valandos_valandÄ
",hh:"valandos_valandų_valandas",d:"diena_dienos_dienÄ
",dd:"dienos_dienų_dienas",M:"mÄnuo_mÄnesio_mÄnesį",MM:"mÄnesiai_mÄnesių_mÄnesius",y:"metai_metų_metus",yy:"metai_metų_metus"},n;function a(e,t,n,a){if(t)return"kelios sekundÄs";else return a?"kelių sekundžių":"kelias sekundes"}function o(e,t,n,a){return t?l(n)[0]:a?l(n)[1]:l(n)[2]}function i(e){return e%10===0||e>10&&e<20}function l(e){return t[e].split("_")}function r(e,t,n,a){var r=e+" ";if(e===1)return r+o(e,t,n[0],a);else if(t)return r+(i(e)?l(n)[1]:l(n)[0]);else if(a)return r+l(n)[1];else return r+(i(e)?l(n)[1]:l(n)[2])}e.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužÄs_birželio_liepos_rugpjÅ«Äio_rugsÄjo_spalio_lapkriÄio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužÄ_birželis_liepa_rugpjÅ«tis_rugsÄjis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienį_pirmadienį_antradienį_treÄiadienį_ketvirtadienį_penktadienį_Å¡eÅ¡tadienį".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_treÄiadienis_ketvirtadienis_penktadienis_Å¡eÅ¡tadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Å eÅ¡".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Å ".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Å iandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[PraÄjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieÅ¡ %s",s:a,ss:r,m:o,mm:r,h:o,hh:r,d:o,dd:r,M:o,MM:r,y:o,yy:r},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var a={ss:"sekundes_sekundÄm_sekunde_sekundes".split("_"),m:"minÅ«tes_minÅ«tÄm_minÅ«te_minÅ«tes".split("_"),mm:"minÅ«tes_minÅ«tÄm_minÅ«te_minÅ«tes".split("_"),h:"stundas_stundÄm_stunda_stundas".split("_"),hh:"stundas_stundÄm_stunda_stundas".split("_"),d:"dienas_dienÄm_diena_dienas".split("_"),dd:"dienas_dienÄm_diena_dienas".split("_"),M:"mÄneÅ¡a_mÄneÅ¡iem_mÄnesis_mÄneÅ¡i".split("_"),MM:"mÄneÅ¡a_mÄneÅ¡iem_mÄnesis_mÄneÅ¡i".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")},t;function r(e,t,n){if(n)return t%10===1&&t%100!==11?e[2]:e[3];else return t%10===1&&t%100!==11?e[0]:e[1]}function n(e,t,n){return e+" "+r(a[n],e,t)}function o(e,t,n){return r(a[n],e,t)}function i(e,t){return t?"dažas sekundes":"dažÄm sekundÄm"}e.defineLocale("lv",{months:"janvÄris_februÄris_marts_aprÄ«lis_maijs_jÅ«nijs_jÅ«lijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jÅ«n_jÅ«l_aug_sep_okt_nov_dec".split("_"),weekdays:"svÄtdiena_pirmdiena_otrdiena_treÅ¡diena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Å odien pulksten] LT",nextDay:"[RÄ«t pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[PagÄjuÅ¡Ä] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pÄc %s",past:"pirms %s",s:i,ss:n,m:o,mm:n,h:o,hh:n,d:o,dd:n,M:o,MM:n,y:o,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var r={words:{ss:["sekund","sekunda","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mjesec","mjeseca","mjeseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return e===1?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,t,n){var a=r.words[n];if(n.length===1)return t?a[0]:a[1];else return e+" "+r.correctGrammaticalCase(e,a)}},t;e.defineLocale("me",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:true,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_Äetvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._Äet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_Äe_pe_su".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sjutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juÄe u] LT",lastWeek:function(){var e=["[proÅ¡le] [nedjelje] [u] LT","[proÅ¡log] [ponedjeljka] [u] LT","[proÅ¡log] [utorka] [u] LT","[proÅ¡le] [srijede] [u] LT","[proÅ¡log] [Äetvrtka] [u] LT","[proÅ¡log] [petka] [u] LT","[proÅ¡le] [subote] [u] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"nekoliko sekundi",ss:r.translate,m:r.translate,mm:r.translate,h:r.translate,hh:r.translate,d:"dan",dd:r.translate,M:"mjesec",MM:r.translate,y:"godinu",yy:r.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("mi",{months:"Kohi-tÄte_Hui-tanguru_PoutÅ«-te-rangi_Paenga-whÄwhÄ_Haratua_Pipiri_HÅngoingoi_Here-turi-kÅkÄ_Mahuru_Whiringa-Ä-nuku_Whiringa-Ä-rangi_Hakihea".split("_"),monthsShort:"Kohi_Hui_Pou_Pae_Hara_Pipi_HÅngoi_Here_Mahu_Whi-nu_Whi-ra_Haki".split("_"),monthsRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,weekdays:"RÄtapu_Mane_TÅ«rei_Wenerei_TÄite_Paraire_HÄtarei".split("_"),weekdaysShort:"Ta_Ma_TÅ«_We_TÄi_Pa_HÄ".split("_"),weekdaysMin:"Ta_Ma_TÅ«_We_TÄi_Pa_HÄ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [i] HH:mm",LLLL:"dddd, D MMMM YYYY [i] HH:mm"},calendar:{sameDay:"[i teie mahana, i] LT",nextDay:"[apopo i] LT",nextWeek:"dddd [i] LT",lastDay:"[inanahi i] LT",lastWeek:"dddd [whakamutunga i] LT",sameElse:"L"},relativeTime:{future:"i roto i %s",past:"%s i mua",s:"te hÄkona ruarua",ss:"%d hÄkona",m:"he meneti",mm:"%d meneti",h:"te haora",hh:"%d haora",d:"he ra",dd:"%d ra",M:"he marama",MM:"%d marama",y:"he tau",yy:"%d tau"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("mk",{months:"ÑанÑаÑи_ÑевÑÑаÑи_маÑÑ_апÑил_маÑ_ÑÑни_ÑÑли_авгÑÑÑ_ÑепÑемвÑи_окÑомвÑи_ноемвÑи_декемвÑи".split("_"),monthsShort:"Ñан_Ñев_маÑ_апÑ_маÑ_ÑÑн_ÑÑл_авг_Ñеп_окÑ_ное_дек".split("_"),weekdays:"недела_понеделник_вÑоÑник_ÑÑеда_ÑеÑвÑÑок_пеÑок_ÑабоÑа".split("_"),weekdaysShort:"нед_пон_вÑо_ÑÑе_ÑеÑ_пеÑ_Ñаб".split("_"),weekdaysMin:"нe_пo_вÑ_ÑÑ_Ñе_пе_Ña".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[ÐÐµÐ½ÐµÑ Ð²Ð¾] LT",nextDay:"[УÑÑе во] LT",nextWeek:"[Ðо] dddd [во] LT",lastDay:"[ÐÑеÑа во] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[ÐзминаÑаÑа] dddd [во] LT";case 1:case 2:case 4:case 5:return"[ÐзминаÑиоÑ] dddd [во] LT"}},sameElse:"L"},relativeTime:{future:"за %s",past:"пÑед %s",s:"Ð½ÐµÐºÐ¾Ð»ÐºÑ ÑекÑнди",ss:"%d ÑекÑнди",m:"една минÑÑа",mm:"%d минÑÑи",h:"еден ÑаÑ",hh:"%d ÑаÑа",d:"еден ден",dd:"%d дена",M:"еден меÑеÑ",MM:"%d меÑеÑи",y:"една година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|Ñи|ви|Ñи|ми)/,ordinal:function(e){var t=e%10,n=e%100;if(e===0)return e+"-ев";else if(n===0)return e+"-ен";else if(n>10&&n<20)return e+"-Ñи";else if(t===1)return e+"-ви";else if(t===2)return e+"-Ñи";else if(t===7||t===8)return e+"-ми";else return e+"-Ñи"},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ml",{months:"à´à´¨àµà´µà´°à´¿_à´«àµà´¬àµà´°àµà´µà´°à´¿_മാർà´àµà´àµ_à´à´ªàµà´°à´¿àµ½_à´®àµà´¯àµ_à´àµàµº_à´àµà´²àµ_à´à´à´¸àµà´±àµà´±àµ_à´¸àµà´ªàµà´±àµà´±à´à´¬àµ¼_à´à´àµà´àµà´¬àµ¼_നവà´à´¬àµ¼_à´¡à´¿à´¸à´à´¬àµ¼".split("_"),monthsShort:"à´à´¨àµ._à´«àµà´¬àµà´°àµ._മാർ._à´à´ªàµà´°à´¿._à´®àµà´¯àµ_à´àµàµº_à´àµà´²àµ._à´à´._à´¸àµà´ªàµà´±àµà´±._à´à´àµà´àµ._നവà´._à´¡à´¿à´¸à´.".split("_"),monthsParseExact:true,weekdays:"à´à´¾à´¯à´±à´¾à´´àµà´_തിà´àµà´à´³à´¾à´´àµà´_à´àµà´µàµà´µà´¾à´´àµà´_à´¬àµà´§à´¨à´¾à´´àµà´_à´µàµà´¯à´¾à´´à´¾à´´àµà´_à´µàµà´³àµà´³à´¿à´¯à´¾à´´àµà´_ശനിയാഴàµà´".split("_"),weekdaysShort:"à´à´¾à´¯àµ¼_തിà´àµà´àµ¾_à´àµà´µàµà´µ_à´¬àµà´§àµ»_à´µàµà´¯à´¾à´´à´_à´µàµà´³àµà´³à´¿_ശനി".split("_"),weekdaysMin:"à´à´¾_തി_à´àµ_à´¬àµ_à´µàµà´¯à´¾_à´µàµ_à´¶".split("_"),longDateFormat:{LT:"A h:mm -à´¨àµ",LTS:"A h:mm:ss -à´¨àµ",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm -à´¨àµ",LLLL:"dddd, D MMMM YYYY, A h:mm -à´¨àµ"},calendar:{sameDay:"[à´à´¨àµà´¨àµ] LT",nextDay:"[നാളàµ] LT",nextWeek:"dddd, LT",lastDay:"[à´à´¨àµà´¨à´²àµ] LT",lastWeek:"[à´à´´à´¿à´àµà´] dddd, LT",sameElse:"L"},relativeTime:{future:"%s à´à´´à´¿à´àµà´àµ",past:"%s à´®àµàµ»à´ªàµ",s:"à´
ൽപ നിമിഷà´àµà´àµ¾",ss:"%d à´¸àµà´àµà´àµ»à´¡àµ",m:"à´à´°àµ മിനിറàµà´±àµ",mm:"%d മിനിറàµà´±àµ",h:"à´à´°àµ മണിà´àµà´àµàµ¼",hh:"%d മണിà´àµà´àµàµ¼",d:"à´à´°àµ ദിവസà´",dd:"%d ദിവസà´",M:"à´à´°àµ മാസà´",MM:"%d മാസà´",y:"à´à´°àµ വർഷà´",yy:"%d വർഷà´"},meridiemParse:/രാതàµà´°à´¿|രാവിലàµ|à´à´àµà´ à´à´´à´¿à´àµà´àµ|à´µàµà´àµà´¨àµà´¨àµà´°à´|രാതàµà´°à´¿/i,meridiemHour:function(e,t){if(e===12)e=0;if(t==="രാതàµà´°à´¿"&&e>=4||t==="à´à´àµà´ à´à´´à´¿à´àµà´àµ"||t==="à´µàµà´àµà´¨àµà´¨àµà´°à´")return e+12;else return e},meridiem:function(e,t,n){if(e<4)return"രാതàµà´°à´¿";else if(e<12)return"രാവിലàµ";else if(e<17)return"à´à´àµà´ à´à´´à´¿à´àµà´àµ";else if(e<20)return"à´µàµà´àµà´¨àµà´¨àµà´°à´";else return"രാതàµà´°à´¿"}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n,a){switch(n){case"s":return t?"Ñ
ÑдÑ
Ñн ÑекÑнд":"Ñ
ÑдÑ
Ñн ÑекÑндÑн";case"ss":return e+(t?" ÑекÑнд":" ÑекÑндÑн");case"m":case"mm":return e+(t?" минÑÑ":" минÑÑÑн");case"h":case"hh":return e+(t?" Ñаг":" Ñагийн");case"d":case"dd":return e+(t?" өдөÑ":" өдÑийн");case"M":case"MM":return e+(t?" ÑаÑ":" ÑаÑÑн");case"y":case"yy":return e+(t?" жил":" жилийн");default:return e}}var n;e.defineLocale("mn",{months:"ÐÑгдүгÑÑÑ ÑаÑ_ХоÑÑдÑÐ³Ð°Ð°Ñ ÑаÑ_ÐÑÑавдÑÐ³Ð°Ð°Ñ ÑаÑ_ÐÓ©ÑөвдүгÑÑÑ ÑаÑ_ТавдÑÐ³Ð°Ð°Ñ ÑаÑ_ÐÑÑгадÑÐ³Ð°Ð°Ñ ÑаÑ_ÐолдÑÐ³Ð°Ð°Ñ ÑаÑ_ÐаймдÑÐ³Ð°Ð°Ñ ÑаÑ_ÐÑдүгÑÑÑ ÑаÑ_ÐÑавдÑÐ³Ð°Ð°Ñ ÑаÑ_ÐÑван нÑгдүгÑÑÑ ÑаÑ_ÐÑван Ñ
оÑÑдÑÐ³Ð°Ð°Ñ ÑаÑ".split("_"),monthsShort:"1 ÑаÑ_2 ÑаÑ_3 ÑаÑ_4 ÑаÑ_5 ÑаÑ_6 ÑаÑ_7 ÑаÑ_8 ÑаÑ_9 ÑаÑ_10 ÑаÑ_11 ÑаÑ_12 ÑаÑ".split("_"),monthsParseExact:true,weekdays:"ÐÑм_Ðаваа_ÐÑгмаÑ_ÐÑ
агва_ÐÒ¯ÑÑв_ÐааÑан_ÐÑмба".split("_"),weekdaysShort:"ÐÑм_Ðав_ÐÑг_ÐÑ
а_ÐÒ¯Ñ_Ðаа_ÐÑм".split("_"),weekdaysMin:"ÐÑ_Ðа_ÐÑ_ÐÑ
_ÐÒ¯_Ðа_ÐÑ".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY Ð¾Ð½Ñ MMMMÑн D",LLL:"YYYY Ð¾Ð½Ñ MMMMÑн D HH:mm",LLLL:"dddd, YYYY Ð¾Ð½Ñ MMMMÑн D HH:mm"},meridiemParse:/Ò®Ó¨|ҮХ/i,isPM:function(e){return e==="ҮХ"},meridiem:function(e,t,n){if(e<12)return"Ò®Ó¨";else return"ҮХ"},calendar:{sameDay:"[ӨнөөдөÑ] LT",nextDay:"[ÐаÑгааÑ] LT",nextWeek:"[ÐÑÑÑ
] dddd LT",lastDay:"[Ó¨ÑигдөÑ] LT",lastWeek:"[ӨнгөÑÑөн] dddd LT",sameElse:"L"},relativeTime:{future:"%s даÑаа",past:"%s өмнө",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2} өдөÑ/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+" өдөÑ";default:return e}}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"à¥",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","à¥":"7","८":"8","९":"9","०":"0"},a;function r(e,t,n,a){var r="";if(t)switch(n){case"s":r="à¤à¤¾à¤¹à¥ सà¥à¤à¤à¤¦";break;case"ss":r="%d सà¥à¤à¤à¤¦";break;case"m":r="à¤à¤ मिनिà¤";break;case"mm":r="%d मिनिà¤à¥";break;case"h":r="à¤à¤ तास";break;case"hh":r="%d तास";break;case"d":r="à¤à¤ दिवस";break;case"dd":r="%d दिवस";break;case"M":r="à¤à¤ महिना";break;case"MM":r="%d महिनà¥";break;case"y":r="à¤à¤ वरà¥à¤·";break;case"yy":r="%d वरà¥à¤·à¥";break}else switch(n){case"s":r="à¤à¤¾à¤¹à¥ सà¥à¤à¤à¤¦à¤¾à¤";break;case"ss":r="%d सà¥à¤à¤à¤¦à¤¾à¤";break;case"m":r="à¤à¤à¤¾ मिनिà¤à¤¾";break;case"mm":r="%d मिनिà¤à¤¾à¤";break;case"h":r="à¤à¤à¤¾ तासा";break;case"hh":r="%d तासाà¤";break;case"d":r="à¤à¤à¤¾ दिवसा";break;case"dd":r="%d दिवसाà¤";break;case"M":r="à¤à¤à¤¾ महिनà¥à¤¯à¤¾";break;case"MM":r="%d महिनà¥à¤¯à¤¾à¤";break;case"y":r="à¤à¤à¤¾ वरà¥à¤·à¤¾";break;case"yy":r="%d वरà¥à¤·à¤¾à¤";break}return r.replace(/%d/i,e)}e.defineLocale("mr",{months:"à¤à¤¾à¤¨à¥à¤µà¤¾à¤°à¥_फà¥à¤¬à¥à¤°à¥à¤µà¤¾à¤°à¥_मारà¥à¤_à¤à¤ªà¥à¤°à¤¿à¤²_मà¥_à¤à¥à¤¨_à¤à¥à¤²à¥_à¤à¤à¤¸à¥à¤_सपà¥à¤à¥à¤à¤¬à¤°_à¤à¤à¥à¤à¥à¤¬à¤°_नà¥à¤µà¥à¤¹à¥à¤à¤¬à¤°_डिसà¥à¤à¤¬à¤°".split("_"),monthsShort:"à¤à¤¾à¤¨à¥._फà¥à¤¬à¥à¤°à¥._मारà¥à¤._à¤à¤ªà¥à¤°à¤¿._मà¥._à¤à¥à¤¨._à¤à¥à¤²à¥._à¤à¤._सपà¥à¤à¥à¤._à¤à¤à¥à¤à¥._नà¥à¤µà¥à¤¹à¥à¤._डिसà¥à¤.".split("_"),monthsParseExact:true,weekdays:"रविवार_सà¥à¤®à¤µà¤¾à¤°_मà¤à¤à¤³à¤µà¤¾à¤°_बà¥à¤§à¤µà¤¾à¤°_à¤à¥à¤°à¥à¤µà¤¾à¤°_शà¥à¤à¥à¤°à¤µà¤¾à¤°_शनिवार".split("_"),weekdaysShort:"रवि_सà¥à¤®_मà¤à¤à¤³_बà¥à¤§_à¤à¥à¤°à¥_शà¥à¤à¥à¤°_शनि".split("_"),weekdaysMin:"र_सà¥_मà¤_बà¥_à¤à¥_शà¥_श".split("_"),longDateFormat:{LT:"A h:mm वाà¤à¤¤à¤¾",LTS:"A h:mm:ss वाà¤à¤¤à¤¾",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm वाà¤à¤¤à¤¾",LLLL:"dddd, D MMMM YYYY, A h:mm वाà¤à¤¤à¤¾"},calendar:{sameDay:"[à¤à¤] LT",nextDay:"[à¤à¤¦à¥à¤¯à¤¾] LT",nextWeek:"dddd, LT",lastDay:"[à¤à¤¾à¤²] LT",lastWeek:"[माà¤à¥à¤²] dddd, LT",sameElse:"L"},relativeTime:{future:"%sमधà¥à¤¯à¥",past:"%sपà¥à¤°à¥à¤µà¥",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},preparse:function(e){return e.replace(/[१२३४५६à¥à¥®à¥¯à¥¦]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/पहाà¤à¥|सà¤à¤¾à¤³à¥|दà¥à¤ªà¤¾à¤°à¥|सायà¤à¤à¤¾à¤³à¥|रातà¥à¤°à¥/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="पहाà¤à¥"||t==="सà¤à¤¾à¤³à¥")return e;else if(t==="दà¥à¤ªà¤¾à¤°à¥"||t==="सायà¤à¤à¤¾à¤³à¥"||t==="रातà¥à¤°à¥")return e>=12?e:e+12},meridiem:function(e,t,n){if(e>=0&&e<6)return"पहाà¤à¥";else if(e<12)return"सà¤à¤¾à¤³à¥";else if(e<17)return"दà¥à¤ªà¤¾à¤°à¥";else if(e<20)return"सायà¤à¤à¤¾à¤³à¥";else return"रातà¥à¤°à¥"},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ms",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="pagi")return e;else if(t==="tengahari")return e>=11?e:e+12;else if(t==="petang"||t==="malam")return e+12},meridiem:function(e,t,n){if(e<11)return"pagi";else if(e<15)return"tengahari";else if(e<19)return"petang";else return"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="pagi")return e;else if(t==="tengahari")return e>=11?e:e+12;else if(t==="petang"||t==="malam")return e+12},meridiem:function(e,t,n){if(e<11)return"pagi";else if(e<15)return"tengahari";else if(e<19)return"petang";else return"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("mt",{months:"Jannar_Frar_Marzu_April_Mejju_Ä unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_DiÄembru".split("_"),monthsShort:"Jan_Fra_Mar_Apr_Mej_Ä un_Lul_Aww_Set_Ott_Nov_DiÄ".split("_"),weekdays:"Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ä imgħa_Is-Sibt".split("_"),weekdaysShort:"Ħad_Tne_Tli_Erb_Ħam_Ä im_Sib".split("_"),weekdaysMin:"Ħa_Tn_Tl_Er_Ħa_Ä i_Si".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Illum fil-]LT",nextDay:"[Għada fil-]LT",nextWeek:"dddd [fil-]LT",lastDay:"[Il-bieraħ fil-]LT",lastWeek:"dddd [li għadda] [fil-]LT",sameElse:"L"},relativeTime:{future:"fâ %s",past:"%s ilu",s:"ftit sekondi",ss:"%d sekondi",m:"minuta",mm:"%d minuti",h:"siegħa",hh:"%d siegħat",d:"Ä¡urnata",dd:"%d Ä¡ranet",M:"xahar",MM:"%d xhur",y:"sena",yy:"%d sni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"á",2:"á",3:"á",4:"á",5:"á
",6:"á",7:"á",8:"á",9:"á",0:"á"},n={"á":"1","á":"2","á":"3","á":"4","á
":"5","á":"6","á":"7","á":"8","á":"9","á":"0"},a;e.defineLocale("my",{months:"áááºááá«áá®_áá±áá±á¬áºáá«áá®_áááº_á§áá¼á®_áá±_áá½ááº_áá°ááá¯ááº_áá¼áá¯ááº_á
ááºáááºáá¬_á¡á±á¬ááºááá¯áá¬_ááá¯áááºáá¬_áá®áááºáá¬".split("_"),monthsShort:"áááº_áá±_áááº_áá¼á®_áá±_áá½ááº_ááá¯ááº_áá¼_á
ááº_á¡á±á¬ááº_ááá¯_áá®".split("_"),weekdays:"ááááºá¹ááá½á±_ááááºá¹áá¬_á¡ááºá¹áá«_áá¯áá¹ááá°á¸_áá¼á¬áááá±á¸_áá±á¬áá¼á¬_á
áá±".split("_"),weekdaysShort:"áá½á±_áá¬_áá«_áá°á¸_áá¼á¬_áá±á¬_áá±".split("_"),weekdaysMin:"áá½á±_áá¬_áá«_áá°á¸_áá¼á¬_áá±á¬_áá±".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[ááá±.] LT [áá¾á¬]",nextDay:"[ááááºáá¼ááº] LT [áá¾á¬]",nextWeek:"dddd LT [áá¾á¬]",lastDay:"[ááá±.á] LT [áá¾á¬]",lastWeek:"[áá¼á®á¸áá²á·áá±á¬] dddd LT [áá¾á¬]",sameElse:"L"},relativeTime:{future:"áá¬áááºá· %s áá¾á¬",past:"áá½ááºáá²á·áá±á¬ %s á",s:"á
áá¹áááº.á¡áááºá¸áááº",ss:"%d á
áá¹ááá·áº",m:"áá
áºáááá
áº",mm:"%d áááá
áº",h:"áá
áºáá¬áá®",hh:"%d áá¬áá®",d:"áá
áºáááº",dd:"%d áááº",M:"áá
áºá",MM:"%d á",y:"áá
áºáá¾á
áº",yy:"%d áá¾á
áº"},preparse:function(e){return e.replace(/[ááááá
ááááá]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:true,weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",ss:"%d sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",w:"en uke",ww:"%d uker",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"à¥",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","à¥":"7","८":"8","९":"9","०":"0"},a;e.defineLocale("ne",{months:"à¤à¤¨à¤µà¤°à¥_फà¥à¤¬à¥à¤°à¥à¤µà¤°à¥_मारà¥à¤_à¤
पà¥à¤°à¤¿à¤²_मà¤_à¤à¥à¤¨_à¤à¥à¤²à¤¾à¤_à¤
à¤à¤·à¥à¤_सà¥à¤ªà¥à¤à¥à¤®à¥à¤¬à¤°_à¤
à¤à¥à¤à¥à¤¬à¤°_नà¥à¤à¥à¤®à¥à¤¬à¤°_डिसà¥à¤®à¥à¤¬à¤°".split("_"),monthsShort:"à¤à¤¨._फà¥à¤¬à¥à¤°à¥._मारà¥à¤_à¤
पà¥à¤°à¤¿._मà¤_à¤à¥à¤¨_à¤à¥à¤²à¤¾à¤._à¤
à¤._सà¥à¤ªà¥à¤._à¤
à¤à¥à¤à¥._नà¥à¤à¥._डिसà¥.".split("_"),monthsParseExact:true,weekdays:"à¤à¤à¤¤à¤¬à¤¾à¤°_सà¥à¤®à¤¬à¤¾à¤°_मà¤à¥à¤à¤²à¤¬à¤¾à¤°_बà¥à¤§à¤¬à¤¾à¤°_बिहिबार_शà¥à¤à¥à¤°à¤¬à¤¾à¤°_शनिबार".split("_"),weekdaysShort:"à¤à¤à¤¤._सà¥à¤®._मà¤à¥à¤à¤²._बà¥à¤§._बिहि._शà¥à¤à¥à¤°._शनि.".split("_"),weekdaysMin:"à¤._सà¥._मà¤._बà¥._बि._शà¥._श.".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"Aà¤à¥ h:mm बà¤à¥",LTS:"Aà¤à¥ h:mm:ss बà¤à¥",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, Aà¤à¥ h:mm बà¤à¥",LLLL:"dddd, D MMMM YYYY, Aà¤à¥ h:mm बà¤à¥"},preparse:function(e){return e.replace(/[१२३४५६à¥à¥®à¥¯à¥¦]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/राति|बिहान|दिà¤à¤à¤¸à¥|साà¤à¤/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="राति")return e<4?e:e+12;else if(t==="बिहान")return e;else if(t==="दिà¤à¤à¤¸à¥")return e>=10?e:e+12;else if(t==="साà¤à¤")return e+12},meridiem:function(e,t,n){if(e<3)return"राति";else if(e<12)return"बिहान";else if(e<16)return"दिà¤à¤à¤¸à¥";else if(e<20)return"साà¤à¤";else return"राति"},calendar:{sameDay:"[à¤à¤] LT",nextDay:"[à¤à¥à¤²à¤¿] LT",nextWeek:"[à¤à¤à¤à¤¦à¥] dddd[,] LT",lastDay:"[हिà¤à¥] LT",lastWeek:"[à¤à¤à¤à¥] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%sमा",past:"%s à¤
à¤à¤¾à¤¡à¤¿",s:"à¤à¥à¤¹à¥ à¤à¥à¤·à¤£",ss:"%d सà¥à¤à¥à¤£à¥à¤¡",m:"à¤à¤ मिनà¥à¤",mm:"%d मिनà¥à¤",h:"à¤à¤ à¤à¤£à¥à¤à¤¾",hh:"%d à¤à¤£à¥à¤à¤¾",d:"à¤à¤ दिन",dd:"%d दिन",M:"à¤à¤ महिना",MM:"%d महिना",y:"à¤à¤ बरà¥à¤·",yy:"%d बरà¥à¤·"},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var n="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),a="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),t=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,o;e.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,t){if(!e)return n;else if(/-MMM-/.test(t))return a[e.month()];else return n[e.month()]},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:t,longMonthsParse:t,shortMonthsParse:t,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",w:"één week",ww:"%d weken",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(e===1||e===8||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var n="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),a="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),t=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,o;e.defineLocale("nl-be",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,t){if(!e)return n;else if(/-MMM-/.test(t))return a[e.month()];else return n[e.month()]},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:t,longMonthsParse:t,shortMonthsParse:t,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(e===1||e===8||e>=20?"ste":"de")},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:true,weekdays:"sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"su._må._ty._on._to._fr._lau.".split("_"),weekdaysMin:"su_må_ty_on_to_fr_la".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[I dag klokka] LT",nextDay:"[I morgon klokka] LT",nextWeek:"dddd [klokka] LT",lastDay:"[I går klokka] LT",lastWeek:"[Føregåande] dddd [klokka] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s sidan",s:"nokre sekund",ss:"%d sekund",m:"eit minutt",mm:"%d minutt",h:"ein time",hh:"%d timar",d:"ein dag",dd:"%d dagar",w:"ei veke",ww:"%d veker",M:"ein månad",MM:"%d månader",y:"eit år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("oc-lnc",{months:{standalone:"genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octòbre_novembre_decembre".split("_"),format:"de genièr_de febrièr_de març_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'octòbre_de novembre_de decembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._març_abr._mai_junh_julh._ago._set._oct._nov._dec.".split("_"),monthsParseExact:true,weekdays:"dimenge_diluns_dimars_dimècres_dijòus_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dm._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dm_dc_dj_dv_ds".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:"[uèi a] LT",nextDay:"[deman a] LT",nextWeek:"dddd [a] LT",lastDay:"[ièr a] LT",lastWeek:"dddd [passat a] LT",sameElse:"L"},relativeTime:{future:"d'aquà %s",past:"fa %s",s:"unas segondas",ss:"%d segondas",m:"una minuta",mm:"%d minutas",h:"una ora",hh:"%d oras",d:"un jorn",dd:"%d jorns",M:"un mes",MM:"%d meses",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,t){var n=e===1?"r":e===2?"n":e===3?"r":e===4?"t":"è";if(t==="w"||t==="W")n="a";return e+n},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"à©§",2:"੨",3:"à©©",4:"੪",5:"à©«",6:"੬",7:"à©",8:"à©®",9:"੯",0:"੦"},n={"à©§":"1","੨":"2","à©©":"3","੪":"4","à©«":"5","੬":"6","à©":"7","à©®":"8","੯":"9","੦":"0"},a;e.defineLocale("pa-in",{months:"à¨à¨¨à¨µà¨°à©_ਫ਼ਰਵਰà©_ਮਾਰà¨_à¨
ਪà©à¨°à©à¨²_ਮà¨_à¨à©à¨¨_à¨à©à¨²à¨¾à¨_à¨
à¨à¨¸à¨¤_ਸਤੰਬਰ_à¨
à¨à¨¤à©à¨¬à¨°_ਨਵੰਬਰ_ਦਸੰਬਰ".split("_"),monthsShort:"à¨à¨¨à¨µà¨°à©_ਫ਼ਰਵਰà©_ਮਾਰà¨_à¨
ਪà©à¨°à©à¨²_ਮà¨_à¨à©à¨¨_à¨à©à¨²à¨¾à¨_à¨
à¨à¨¸à¨¤_ਸਤੰਬਰ_à¨
à¨à¨¤à©à¨¬à¨°_ਨਵੰਬਰ_ਦਸੰਬਰ".split("_"),weekdays:"à¨à¨¤à¨µà¨¾à¨°_ਸà©à¨®à¨µà¨¾à¨°_ਮੰà¨à¨²à¨µà¨¾à¨°_ਬà©à¨§à¨µà¨¾à¨°_ਵà©à¨°à¨µà¨¾à¨°_ਸ਼à©à©±à¨à¨°à¨µà¨¾à¨°_ਸ਼ਨà©à¨à¨°à¨µà¨¾à¨°".split("_"),weekdaysShort:"à¨à¨¤_ਸà©à¨®_ਮੰà¨à¨²_ਬà©à¨§_ਵà©à¨°_ਸ਼à©à¨à¨°_ਸ਼ਨà©".split("_"),weekdaysMin:"à¨à¨¤_ਸà©à¨®_ਮੰà¨à¨²_ਬà©à¨§_ਵà©à¨°_ਸ਼à©à¨à¨°_ਸ਼ਨà©".split("_"),longDateFormat:{LT:"A h:mm ਵà¨à©",LTS:"A h:mm:ss ਵà¨à©",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm ਵà¨à©",LLLL:"dddd, D MMMM YYYY, A h:mm ਵà¨à©"},calendar:{sameDay:"[à¨
à¨] LT",nextDay:"[à¨à¨²] LT",nextWeek:"[à¨
à¨à¨²à¨¾] dddd, LT",lastDay:"[à¨à¨²] LT",lastWeek:"[ਪਿà¨à¨²à©] dddd, LT",sameElse:"L"},relativeTime:{future:"%s ਵਿੱà¨",past:"%s ਪਿà¨à¨²à©",s:"à¨à©à¨ ਸà¨à¨¿à©°à¨",ss:"%d ਸà¨à¨¿à©°à¨",m:"à¨à¨ ਮਿੰà¨",mm:"%d ਮਿੰà¨",h:"à¨à©±à¨ à¨à©°à¨à¨¾",hh:"%d à¨à©°à¨à©",d:"à¨à©±à¨ ਦਿਨ",dd:"%d ਦਿਨ",M:"à¨à©±à¨ ਮਹà©à¨¨à¨¾",MM:"%d ਮਹà©à¨¨à©",y:"à¨à©±à¨ ਸਾਲ",yy:"%d ਸਾਲ"},preparse:function(e){return e.replace(/[੧੨੩੪੫੬à©à©®à©¯à©¦]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/ਰਾਤ|ਸਵà©à¨°|ਦà©à¨ªà¨¹à¨¿à¨°|ਸ਼ਾਮ/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="ਰਾਤ")return e<4?e:e+12;else if(t==="ਸਵà©à¨°")return e;else if(t==="ਦà©à¨ªà¨¹à¨¿à¨°")return e>=10?e:e+12;else if(t==="ਸ਼ਾਮ")return e+12},meridiem:function(e,t,n){if(e<4)return"ਰਾਤ";else if(e<10)return"ਸਵà©à¨°";else if(e<17)return"ਦà©à¨ªà¨¹à¨¿à¨°";else if(e<20)return"ਸ਼ਾਮ";else return"ਰਾਤ"},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var n="styczeÅ_luty_marzec_kwiecieÅ_maj_czerwiec_lipiec_sierpieÅ_wrzesieÅ_październik_listopad_grudzieÅ".split("_"),a="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrzeÅnia_października_listopada_grudnia".split("_"),t=[/^sty/i,/^lut/i,/^mar/i,/^kwi/i,/^maj/i,/^cze/i,/^lip/i,/^sie/i,/^wrz/i,/^paź/i,/^lis/i,/^gru/i],r;function o(e){return e%10<5&&e%10>1&&~~(e/10)%10!==1}function i(e,t,n){var a=e+" ";switch(n){case"ss":return a+(o(e)?"sekundy":"sekund");case"m":return t?"minuta":"minutÄ";case"mm":return a+(o(e)?"minuty":"minut");case"h":return t?"godzina":"godzinÄ";case"hh":return a+(o(e)?"godziny":"godzin");case"ww":return a+(o(e)?"tygodnie":"tygodni");case"MM":return a+(o(e)?"miesiÄ
ce":"miesiÄcy");case"yy":return a+(o(e)?"lata":"lat")}}e.defineLocale("pl",{months:function(e,t){if(!e)return n;else if(/D MMMM/.test(t))return a[e.month()];else return n[e.month()]},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),monthsParse:t,longMonthsParse:t,shortMonthsParse:t,weekdays:"niedziela_poniedziaÅek_wtorek_Åroda_czwartek_piÄ
tek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_År_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_År_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DziÅ o] LT",nextDay:"[Jutro o] LT",nextWeek:function(){switch(this.day()){case 0:return"[W niedzielÄ o] LT";case 2:return"[We wtorek o] LT";case 3:return"[W ÅrodÄ o] LT";case 6:return"[W sobotÄ o] LT";default:return"[W] dddd [o] LT"}},lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszÅÄ
niedzielÄ o] LT";case 3:return"[W zeszÅÄ
ÅrodÄ o] LT";case 6:return"[W zeszÅÄ
sobotÄ o] LT";default:return"[W zeszÅy] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",ss:i,m:i,mm:i,h:i,hh:i,d:"1 dzieÅ",dd:"%d dni",w:"tydzieÅ",ww:i,M:"miesiÄ
c",MM:i,y:"rok",yy:i},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("pt",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sá".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje à s] LT",nextDay:"[Amanhã à s] LT",nextWeek:"dddd [à s] LT",lastDay:"[Ontem à s] LT",lastWeek:function(){return this.day()===0||this.day()===6?"[Ãltimo] dddd [à s] LT":"[Ãltima] dddd [à s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",w:"uma semana",ww:"%d semanas",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("pt-br",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sáb".split("_"),weekdaysMin:"do_2ª_3ª_4ª_5ª_6ª_sá".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [à s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [à s] HH:mm"},calendar:{sameDay:"[Hoje à s] LT",nextDay:"[Amanhã à s] LT",nextWeek:"dddd [à s] LT",lastDay:"[Ontem à s] LT",lastWeek:function(){return this.day()===0||this.day()===6?"[Ãltimo] dddd [à s] LT":"[Ãltima] dddd [à s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"poucos segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",invalidDate:"Data inválida"})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n){var a={ss:"secunde",mm:"minute",hh:"ore",dd:"zile",ww:"sÄptÄmâni",MM:"luni",yy:"ani"},r=" ";if(e%100>=20||e>=100&&e%100===0)r=" de ";return e+r+a[n]}var n;e.defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._feb._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:true,weekdays:"duminicÄ_luni_marÈi_miercuri_joi_vineri_sâmbÄtÄ".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mâine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s în urmÄ",s:"câteva secunde",ss:t,m:"un minut",mm:t,h:"o orÄ",hh:t,d:"o zi",dd:t,w:"o sÄptÄmânÄ",ww:t,M:"o lunÄ",MM:t,y:"un an",yy:t},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function r(e,t){var n=e.split("_");return t%10===1&&t%100!==11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function t(e,t,n){var a={ss:t?"ÑекÑнда_ÑекÑндÑ_ÑекÑнд":"ÑекÑндÑ_ÑекÑндÑ_ÑекÑнд",mm:t?"минÑÑа_минÑÑÑ_минÑÑ":"минÑÑÑ_минÑÑÑ_минÑÑ",hh:"ÑаÑ_ÑаÑа_ÑаÑов",dd:"денÑ_днÑ_дней",ww:"неделÑ_недели_неделÑ",MM:"меÑÑÑ_меÑÑÑа_меÑÑÑев",yy:"год_года_леÑ"};if(n==="m")return t?"минÑÑа":"минÑÑÑ";else return e+" "+r(a[n],+e)}var n=[/^Ñнв/i,/^Ñев/i,/^маÑ/i,/^апÑ/i,/^ма[йÑ]/i,/^иÑн/i,/^иÑл/i,/^авг/i,/^Ñен/i,/^окÑ/i,/^ноÑ/i,/^дек/i],a;e.defineLocale("ru",{months:{format:"ÑнваÑÑ_ÑевÑалÑ_маÑÑа_апÑелÑ_маÑ_иÑнÑ_иÑлÑ_авгÑÑÑа_ÑенÑÑбÑÑ_окÑÑбÑÑ_ноÑбÑÑ_декабÑÑ".split("_"),standalone:"ÑнваÑÑ_ÑевÑалÑ_маÑÑ_апÑелÑ_май_иÑнÑ_иÑлÑ_авгÑÑÑ_ÑенÑÑбÑÑ_окÑÑбÑÑ_ноÑбÑÑ_декабÑÑ".split("_")},monthsShort:{format:"Ñнв._ÑевÑ._маÑ._апÑ._маÑ_иÑнÑ_иÑлÑ_авг._ÑенÑ._окÑ._ноÑб._дек.".split("_"),standalone:"Ñнв._ÑевÑ._маÑÑ_апÑ._май_иÑнÑ_иÑлÑ_авг._ÑенÑ._окÑ._ноÑб._дек.".split("_")},weekdays:{standalone:"воÑкÑеÑенÑе_понеделÑник_вÑоÑник_ÑÑеда_ÑеÑвеÑг_пÑÑниÑа_ÑÑббоÑа".split("_"),format:"воÑкÑеÑенÑе_понеделÑник_вÑоÑник_ÑÑедÑ_ÑеÑвеÑг_пÑÑниÑÑ_ÑÑббоÑÑ".split("_"),isFormat:/\[ ?[Ðв] ?(?:пÑоÑлÑÑ|ÑледÑÑÑÑÑ|ÑÑÑ)? ?] ?dddd/},weekdaysShort:"вÑ_пн_вÑ_ÑÑ_ÑÑ_пÑ_Ñб".split("_"),weekdaysMin:"вÑ_пн_вÑ_ÑÑ_ÑÑ_пÑ_Ñб".split("_"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(ÑнваÑ[ÑÑ]|Ñнв\.?|ÑевÑал[ÑÑ]|ÑевÑ?\.?|маÑÑа?|маÑ\.?|апÑел[ÑÑ]|апÑ\.?|ма[йÑ]|иÑн[ÑÑ]|иÑн\.?|иÑл[ÑÑ]|иÑл\.?|авгÑÑÑа?|авг\.?|ÑенÑÑбÑ[ÑÑ]|ÑенÑ?\.?|окÑÑбÑ[ÑÑ]|окÑ\.?|ноÑбÑ[ÑÑ]|ноÑб?\.?|декабÑ[ÑÑ]|дек\.?)/i,monthsShortRegex:/^(ÑнваÑ[ÑÑ]|Ñнв\.?|ÑевÑал[ÑÑ]|ÑевÑ?\.?|маÑÑа?|маÑ\.?|апÑел[ÑÑ]|апÑ\.?|ма[йÑ]|иÑн[ÑÑ]|иÑн\.?|иÑл[ÑÑ]|иÑл\.?|авгÑÑÑа?|авг\.?|ÑенÑÑбÑ[ÑÑ]|ÑенÑ?\.?|окÑÑбÑ[ÑÑ]|окÑ\.?|ноÑбÑ[ÑÑ]|ноÑб?\.?|декабÑ[ÑÑ]|дек\.?)/i,monthsStrictRegex:/^(ÑнваÑ[ÑÑ]|ÑевÑал[ÑÑ]|маÑÑа?|апÑел[ÑÑ]|ма[Ñй]|иÑн[ÑÑ]|иÑл[ÑÑ]|авгÑÑÑа?|ÑенÑÑбÑ[ÑÑ]|окÑÑбÑ[ÑÑ]|ноÑбÑ[ÑÑ]|декабÑ[ÑÑ])/i,monthsShortStrictRegex:/^(Ñнв\.|ÑевÑ?\.|маÑ[Ñ.]|апÑ\.|ма[Ñй]|иÑн[ÑÑ.]|иÑл[ÑÑ.]|авг\.|ÑенÑ?\.|окÑ\.|ноÑб?\.|дек\.)/i,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., H:mm",LLLL:"dddd, D MMMM YYYY г., H:mm"},calendar:{sameDay:"[СегоднÑ, в] LT",nextDay:"[ÐавÑÑа, в] LT",lastDay:"[ÐÑеÑа, в] LT",nextWeek:function(e){if(e.week()!==this.week())switch(this.day()){case 0:return"[Ð ÑледÑÑÑее] dddd, [в] LT";case 1:case 2:case 4:return"[Ð ÑледÑÑÑий] dddd, [в] LT";case 3:case 5:case 6:return"[Ð ÑледÑÑÑÑÑ] dddd, [в] LT"}else if(this.day()===2)return"[Ðо] dddd, [в] LT";else return"[Ð] dddd, [в] LT"},lastWeek:function(e){if(e.week()!==this.week())switch(this.day()){case 0:return"[РпÑоÑлое] dddd, [в] LT";case 1:case 2:case 4:return"[РпÑоÑлÑй] dddd, [в] LT";case 3:case 5:case 6:return"[РпÑоÑлÑÑ] dddd, [в] LT"}else if(this.day()===2)return"[Ðо] dddd, [в] LT";else return"[Ð] dddd, [в] LT"},sameElse:"L"},relativeTime:{future:"ÑеÑез %s",past:"%s назад",s:"неÑколÑко ÑекÑнд",ss:t,m:t,mm:t,h:"ÑаÑ",hh:t,d:"денÑ",dd:t,w:"неделÑ",ww:t,M:"меÑÑÑ",MM:t,y:"год",yy:t},meridiemParse:/ноÑи|ÑÑÑа|днÑ|веÑеÑа/i,isPM:function(e){return/^(днÑ|веÑеÑа)$/.test(e)},meridiem:function(e,t,n){if(e<4)return"ноÑи";else if(e<12)return"ÑÑÑа";else if(e<17)return"днÑ";else return"веÑеÑа"},dayOfMonthOrdinalParse:/\d{1,2}-(й|го|Ñ)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":return e+"-й";case"D":return e+"-го";case"w":case"W":return e+"-Ñ";default:return e}},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t=["جÙÙØ±Ù","ÙÙØ¨Ø±ÙرÙ","Ù
ارÚ","اپرÙÙ","Ù
ئÙ","جÙÙ","جÙÙØ§Ø¡Ù","آگسٽ","سÙپٽÙ
بر","Ø¢ÚªÙ½ÙØ¨Ø±","ÙÙÙ
بر","ÚØ³Ù
بر"],n=["Ø¢ÚØ±","سÙÙ
ر","اڱارÙ","اربع","Ø®Ù
ÙØ³","جÙ
ع","ÚÙÚØ±"],a;e.defineLocale("sd",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"ddddØ D MMMM YYYY HH:mm"},meridiemParse:/صبØ|شاÙ
/,isPM:function(e){return"شاÙ
"===e},meridiem:function(e,t,n){if(e<12)return"صبØ";return"شاÙ
"},calendar:{sameDay:"[اÚ] LT",nextDay:"[Ø³ÚØ§Ú»Ù] LT",nextWeek:"dddd [اڳÙÙ ÙÙØªÙ تÙ] LT",lastDay:"[ڪاÙÙÙ] LT",lastWeek:"[گزرÙÙ ÙÙØªÙ] dddd [تÙ] LT",sameElse:"L"},relativeTime:{future:"%s Ù¾ÙØ¡",past:"%s اڳ",s:"ÚÙØ¯ سÙÚªÙÚ",ss:"%d سÙÚªÙÚ",m:"ÙÚª Ù
ÙÙ½",mm:"%d Ù
ÙÙ½",h:"ÙÚª ÚªÙØ§Úª",hh:"%d ÚªÙØ§Úª",d:"ÙÚª ÚÙÙÙÙ",dd:"%d ÚÙÙÙÙ",M:"ÙÚª Ù
ÙÙÙÙ",MM:"%d Ù
ÙÙÙØ§",y:"ÙÚª ساÙ",yy:"%d ساÙ"},preparse:function(e){return e.replace(/Ø/g,",")},postformat:function(e){return e.replace(/,/g,"Ø")},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("se",{months:"oÄÄajagemánnu_guovvamánnu_njukÄamánnu_cuoÅománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_ÄakÄamánnu_golggotmánnu_skábmamánnu_juovlamánnu".split("_"),monthsShort:"oÄÄj_guov_njuk_cuo_mies_geas_suoi_borg_ÄakÄ_golg_skáb_juov".split("_"),weekdays:"sotnabeaivi_vuossárga_maÅÅebárga_gaskavahkku_duorastat_bearjadat_lávvardat".split("_"),weekdaysShort:"sotn_vuos_maÅ_gask_duor_bear_láv".split("_"),weekdaysMin:"s_v_m_g_d_b_L".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"MMMM D. [b.] YYYY",LLL:"MMMM D. [b.] YYYY [ti.] HH:mm",LLLL:"dddd, MMMM D. [b.] YYYY [ti.] HH:mm"},calendar:{sameDay:"[otne ti] LT",nextDay:"[ihttin ti] LT",nextWeek:"dddd [ti] LT",lastDay:"[ikte ti] LT",lastWeek:"[ovddit] dddd [ti] LT",sameElse:"L"},relativeTime:{future:"%s geažes",past:"maÅit %s",s:"moadde sekunddat",ss:"%d sekunddat",m:"okta minuhta",mm:"%d minuhtat",h:"okta diimmu",hh:"%d diimmut",d:"okta beaivi",dd:"%d beaivvit",M:"okta mánnu",MM:"%d mánut",y:"okta jahki",yy:"%d jagit"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("si",{months:"ජනà·à·à¶»à·_à¶´à·à¶¶à¶»à·à·à¶»à·_මà·à¶»à·à¶à·_à¶
à¶´à·âà¶»à·à¶½à·_මà·à¶ºà·_à¶¢à·à¶±à·_à¶¢à·à¶½à·_à¶
à¶à·à·à·à¶à·_à·à·à¶´à·à¶à·à¶¸à·à¶¶à¶»à·_à¶à¶à·à¶à·à¶¶à¶»à·_à¶±à·à·à·à¶¸à·à¶¶à¶»à·_දà·à·à·à¶¸à·à¶¶à¶»à·".split("_"),monthsShort:"ජන_à¶´à·à¶¶_මà·à¶»à·_à¶
à¶´à·_මà·à¶ºà·_à¶¢à·à¶±à·_à¶¢à·à¶½à·_à¶
à¶à·_à·à·à¶´à·_à¶à¶à·_à¶±à·à·à·_දà·à·à·".split("_"),weekdays:"à¶à¶»à·à¶¯à·_à·à¶³à·à¶¯à·_à¶
à¶à·à¶»à·à·à·à¶¯à·_බදà·à¶¯à·_à¶¶à·âà¶»à·à·à·à¶´à¶à·à¶±à·à¶¯à·_à·à·à¶à·à¶»à·à¶¯à·_à·à·à¶±à·à·à¶»à·à¶¯à·".split("_"),weekdaysShort:"à¶à¶»à·_à·à¶³à·_à¶
à¶_බදà·_à¶¶à·âà¶»à·_à·à·à¶à·_à·à·à¶±".split("_"),weekdaysMin:"à¶_à·_à¶
_à¶¶_à¶¶à·âà¶»_à·à·_à·à·".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"a h:mm",LTS:"a h:mm:ss",L:"YYYY/MM/DD",LL:"YYYY MMMM D",LLL:"YYYY MMMM D, a h:mm",LLLL:"YYYY MMMM D [à·à·à¶±à·] dddd, a h:mm:ss"},calendar:{sameDay:"[à¶
ද] LT[à¶§]",nextDay:"[à·à·à¶§] LT[à¶§]",nextWeek:"dddd LT[à¶§]",lastDay:"[à¶à¶ºà·] LT[à¶§]",lastWeek:"[à¶´à·à·à¶à·à¶º] dddd LT[à¶§]",sameElse:"L"},relativeTime:{future:"%sà¶à·à¶±à·",past:"%sà¶à¶§ à¶´à·à¶»",s:"à¶à¶à·à¶´à¶» à¶à·à·à·à¶´à¶º",ss:"à¶à¶à·à¶´à¶» %d",m:"මà·à¶±à·à¶à·à¶à·à·",mm:"මà·à¶±à·à¶à·à¶à· %d",h:"à¶´à·à¶º",hh:"à¶´à·à¶º %d",d:"දà·à¶±à¶º",dd:"දà·à¶± %d",M:"මà·à·à¶º",MM:"මà·à· %d",y:"à·à·à¶»",yy:"à·à·à¶» %d"},dayOfMonthOrdinalParse:/\d{1,2} à·à·à¶±à·/,ordinal:function(e){return e+" à·à·à¶±à·"},meridiemParse:/à¶´à·à¶» à·à¶»à·|à¶´à·à· à·à¶»à·|à¶´à·.à·|à¶´.à·./,isPM:function(e){return e==="à¶´.à·."||e==="à¶´à·à· à·à¶»à·"},meridiem:function(e,t,n){if(e>11)return n?"à¶´.à·.":"à¶´à·à· à·à¶»à·";else return n?"à¶´à·.à·.":"à¶´à·à¶» à·à¶»à·"}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t="január_február_marec_aprÃl_máj_jún_júl_august_september_október_november_december".split("_"),n="jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec".split("_"),a;function o(e){return e>1&&e<5}function r(e,t,n,a){var r=e+" ";switch(n){case"s":return t||a?"pár sekúnd":"pár sekundami";case"ss":if(t||a)return r+(o(e)?"sekundy":"sekúnd");else return r+"sekundami";case"m":return t?"minúta":a?"minútu":"minútou";case"mm":if(t||a)return r+(o(e)?"minúty":"minút");else return r+"minútami";case"h":return t?"hodina":a?"hodinu":"hodinou";case"hh":if(t||a)return r+(o(e)?"hodiny":"hodÃn");else return r+"hodinami";case"d":return t||a?"deÅ":"dÅom";case"dd":if(t||a)return r+(o(e)?"dni":"dnÃ");else return r+"dÅami";case"M":return t||a?"mesiac":"mesiacom";case"MM":if(t||a)return r+(o(e)?"mesiace":"mesiacov");else return r+"mesiacmi";case"y":return t||a?"rok":"rokom";case"yy":if(t||a)return r+(o(e)?"roky":"rokov");else return r+"rokmi"}}e.defineLocale("sk",{months:t,monthsShort:n,weekdays:"nedeľa_pondelok_utorok_streda_Å¡tvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_Å¡t_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_Å¡t_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo Å¡tvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[vÄera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulú nedeľu o] LT";case 1:case 2:return"[minulý] dddd [o] LT";case 3:return"[minulú stredu o] LT";case 4:case 5:return"[minulý] dddd [o] LT";case 6:return"[minulú sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function t(e,t,n,a){var r=e+" ";switch(n){case"s":return t||a?"nekaj sekund":"nekaj sekundami";case"ss":if(e===1)r+=t?"sekundo":"sekundi";else if(e===2)r+=t||a?"sekundi":"sekundah";else if(e<5)r+=t||a?"sekunde":"sekundah";else r+="sekund";return r;case"m":return t?"ena minuta":"eno minuto";case"mm":if(e===1)r+=t?"minuta":"minuto";else if(e===2)r+=t||a?"minuti":"minutama";else if(e<5)r+=t||a?"minute":"minutami";else r+=t||a?"minut":"minutami";return r;case"h":return t?"ena ura":"eno uro";case"hh":if(e===1)r+=t?"ura":"uro";else if(e===2)r+=t||a?"uri":"urama";else if(e<5)r+=t||a?"ure":"urami";else r+=t||a?"ur":"urami";return r;case"d":return t||a?"en dan":"enim dnem";case"dd":if(e===1)r+=t||a?"dan":"dnem";else if(e===2)r+=t||a?"dni":"dnevoma";else r+=t||a?"dni":"dnevi";return r;case"M":return t||a?"en mesec":"enim mesecem";case"MM":if(e===1)r+=t||a?"mesec":"mesecem";else if(e===2)r+=t||a?"meseca":"mesecema";else if(e<5)r+=t||a?"mesece":"meseci";else r+=t||a?"mesecev":"meseci";return r;case"y":return t||a?"eno leto":"enim letom";case"yy":if(e===1)r+=t||a?"leto":"letom";else if(e===2)r+=t||a?"leti":"letoma";else if(e<5)r+=t||a?"leta":"leti";else r+=t||a?"let":"leti";return r}}var n;e.defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:true,weekdays:"nedelja_ponedeljek_torek_sreda_Äetrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._Äet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_Äe_pe_so".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[vÄeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prejÅ¡njo] [nedeljo] [ob] LT";case 3:return"[prejÅ¡njo] [sredo] [ob] LT";case 6:return"[prejÅ¡njo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejÅ¡nji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"Äez %s",past:"pred %s",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("sq",{months:"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor".split("_"),monthsShort:"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj".split("_"),weekdays:"E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë".split("_"),weekdaysShort:"Die_Hën_Mar_Mër_Enj_Pre_Sht".split("_"),weekdaysMin:"D_H_Ma_Më_E_P_Sh".split("_"),weekdaysParseExact:true,meridiemParse:/PD|MD/,isPM:function(e){return e.charAt(0)==="M"},meridiem:function(e,t,n){return e<12?"PD":"MD"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Sot në] LT",nextDay:"[Nesër në] LT",nextWeek:"dddd [në] LT",lastDay:"[Dje në] LT",lastWeek:"dddd [e kaluar në] LT",sameElse:"L"},relativeTime:{future:"në %s",past:"%s më parë",s:"disa sekonda",ss:"%d sekonda",m:"një minutë",mm:"%d minuta",h:"një orë",hh:"%d orë",d:"një ditë",dd:"%d ditë",M:"një muaj",MM:"%d muaj",y:"një vit",yy:"%d vite"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var i={words:{ss:["sekunda","sekunde","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],d:["jedan dan","jednog dana"],dd:["dan","dana","dana"],M:["jedan mesec","jednog meseca"],MM:["mesec","meseca","meseci"],y:["jednu godinu","jedne godine"],yy:["godinu","godine","godina"]},correctGrammaticalCase:function(e,t){if(e%10>=1&&e%10<=4&&(e%100<10||e%100>=20))return e%10===1?t[0]:t[1];return t[2]},translate:function(e,t,n,a){var r=i.words[n],o;if(n.length===1){if(n==="y"&&t)return"jedna godina";return a||t?r[0]:r[1]}o=i.correctGrammaticalCase(e,r);if(n==="yy"&&t&&o==="godinu")return e+" godina";return e+" "+o}},t;e.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:true,weekdays:"nedelja_ponedeljak_utorak_sreda_Äetvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._Äet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_Äe_pe_su".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D. M. YYYY.",LL:"D. MMMM YYYY.",LLL:"D. MMMM YYYY. H:mm",LLLL:"dddd, D. MMMM YYYY. H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juÄe u] LT",lastWeek:function(){var e=["[proÅ¡le] [nedelje] [u] LT","[proÅ¡log] [ponedeljka] [u] LT","[proÅ¡log] [utorka] [u] LT","[proÅ¡le] [srede] [u] LT","[proÅ¡log] [Äetvrtka] [u] LT","[proÅ¡log] [petka] [u] LT","[proÅ¡le] [subote] [u] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",ss:i.translate,m:i.translate,mm:i.translate,h:i.translate,hh:i.translate,d:i.translate,dd:i.translate,M:i.translate,MM:i.translate,y:i.translate,yy:i.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var i={words:{ss:["ÑекÑнда","ÑекÑнде","ÑекÑнди"],m:["Ñедан минÑÑ","Ñедног минÑÑа"],mm:["минÑÑ","минÑÑа","минÑÑа"],h:["Ñедан ÑаÑ","Ñедног ÑаÑа"],hh:["ÑаÑ","ÑаÑа","ÑаÑи"],d:["Ñедан дан","Ñедног дана"],dd:["дан","дана","дана"],M:["Ñедан меÑеÑ","Ñедног меÑеÑа"],MM:["меÑеÑ","меÑеÑа","меÑеÑи"],y:["ÑÐµÐ´Ð½Ñ Ð³Ð¾Ð´Ð¸Ð½Ñ","Ñедне године"],yy:["годинÑ","године","година"]},correctGrammaticalCase:function(e,t){if(e%10>=1&&e%10<=4&&(e%100<10||e%100>=20))return e%10===1?t[0]:t[1];return t[2]},translate:function(e,t,n,a){var r=i.words[n],o;if(n.length===1){if(n==="y"&&t)return"Ñедна година";return a||t?r[0]:r[1]}o=i.correctGrammaticalCase(e,r);if(n==="yy"&&t&&o==="годинÑ")return e+" година";return e+" "+o}},t;e.defineLocale("sr-cyrl",{months:"ÑанÑаÑ_ÑебÑÑаÑ_маÑÑ_апÑил_маÑ_ÑÑн_ÑÑл_авгÑÑÑ_ÑепÑембаÑ_окÑобаÑ_новембаÑ_деÑембаÑ".split("_"),monthsShort:"Ñан._Ñеб._маÑ._апÑ._маÑ_ÑÑн_ÑÑл_авг._Ñеп._окÑ._нов._деÑ.".split("_"),monthsParseExact:true,weekdays:"недеÑа_понедеÑак_ÑÑоÑак_ÑÑеда_ÑеÑвÑÑак_пеÑак_ÑÑбоÑа".split("_"),weekdaysShort:"нед._пон._ÑÑо._ÑÑе._ÑеÑ._пеÑ._ÑÑб.".split("_"),weekdaysMin:"не_по_ÑÑ_ÑÑ_Ñе_пе_ÑÑ".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D. M. YYYY.",LL:"D. MMMM YYYY.",LLL:"D. MMMM YYYY. H:mm",LLLL:"dddd, D. MMMM YYYY. H:mm"},calendar:{sameDay:"[Ð´Ð°Ð½Ð°Ñ Ñ] LT",nextDay:"[ÑÑÑÑа Ñ] LT",nextWeek:function(){switch(this.day()){case 0:return"[Ñ] [недеÑÑ] [Ñ] LT";case 3:return"[Ñ] [ÑÑедÑ] [Ñ] LT";case 6:return"[Ñ] [ÑÑбоÑÑ] [Ñ] LT";case 1:case 2:case 4:case 5:return"[Ñ] dddd [Ñ] LT"}},lastDay:"[ÑÑÑе Ñ] LT",lastWeek:function(){var e=["[пÑоÑле] [недеÑе] [Ñ] LT","[пÑоÑлог] [понедеÑка] [Ñ] LT","[пÑоÑлог] [ÑÑоÑка] [Ñ] LT","[пÑоÑле] [ÑÑеде] [Ñ] LT","[пÑоÑлог] [ÑеÑвÑÑка] [Ñ] LT","[пÑоÑлог] [пеÑка] [Ñ] LT","[пÑоÑле] [ÑÑбоÑе] [Ñ] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"за %s",past:"пÑе %s",s:"неколико ÑекÑнди",ss:i.translate,m:i.translate,mm:i.translate,h:i.translate,hh:i.translate,d:i.translate,dd:i.translate,M:i.translate,MM:i.translate,y:i.translate,yy:i.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ss",{months:"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split("_"),monthsShort:"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo".split("_"),weekdays:"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo".split("_"),weekdaysShort:"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg".split("_"),weekdaysMin:"Li_Us_Lb_Lt_Ls_Lh_Ug".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",ss:"%d mzuzwana",m:"umzuzu",mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){if(e<11)return"ekuseni";else if(e<15)return"emini";else if(e<19)return"entsambama";else return"ebusuku"},meridiemHour:function(e,t){if(e===12)e=0;if(t==="ekuseni")return e;else if(t==="emini")return e>=11?e:e+12;else if(t==="entsambama"||t==="ebusuku"){if(e===0)return 0;return e+12}},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mån_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_må_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Igår] LT",nextWeek:"[På] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"några sekunder",ss:"%d sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en månad",MM:"%d månader",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}(\:e|\:a)/,ordinal:function(e){var t=e%10,n=~~(e%100/10)===1?":e":t===1?":a":t===2?":a":t===3?":e":":e";return e+n},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("sw",{months:"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des".split("_"),weekdays:"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi".split("_"),weekdaysShort:"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos".split("_"),weekdaysMin:"J2_J3_J4_J5_Al_Ij_J1".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"hh:mm A",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[leo saa] LT",nextDay:"[kesho saa] LT",nextWeek:"[wiki ijayo] dddd [saat] LT",lastDay:"[jana] LT",lastWeek:"[wiki iliyopita] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s baadaye",past:"tokea %s",s:"hivi punde",ss:"sekunde %d",m:"dakika moja",mm:"dakika %d",h:"saa limoja",hh:"masaa %d",d:"siku moja",dd:"siku %d",M:"mwezi mmoja",MM:"miezi %d",y:"mwaka mmoja",yy:"miaka %d"},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t={1:"௧",2:"௨",3:"௩",4:"௪",5:"௫",6:"௬",7:"à¯",8:"௮",9:"௯",0:"௦"},n={"௧":"1","௨":"2","௩":"3","௪":"4","௫":"5","௬":"6","à¯":"7","௮":"8","௯":"9","௦":"0"},a;e.defineLocale("ta",{months:"à®à®©à®µà®°à®¿_பிபà¯à®°à®µà®°à®¿_மாரà¯à®à¯_à®à®ªà¯à®°à®²à¯_à®®à¯_à®à¯à®©à¯_à®à¯à®²à¯_à®à®à®¸à¯à®à¯_à®à¯à®ªà¯à®à¯à®®à¯à®ªà®°à¯_à®
à®à¯à®à¯à®¾à®ªà®°à¯_நவமà¯à®ªà®°à¯_à®à®¿à®à®®à¯à®ªà®°à¯".split("_"),monthsShort:"à®à®©à®µà®°à®¿_பிபà¯à®°à®µà®°à®¿_மாரà¯à®à¯_à®à®ªà¯à®°à®²à¯_à®®à¯_à®à¯à®©à¯_à®à¯à®²à¯_à®à®à®¸à¯à®à¯_à®à¯à®ªà¯à®à¯à®®à¯à®ªà®°à¯_à®
à®à¯à®à¯à®¾à®ªà®°à¯_நவமà¯à®ªà®°à¯_à®à®¿à®à®®à¯à®ªà®°à¯".split("_"),weekdays:"à®à®¾à®¯à®¿à®±à¯à®±à¯à®à¯à®à®¿à®´à®®à¯_திà®à¯à®à®à¯à®à®¿à®´à®®à¯_à®à¯à®µà¯à®µà®¾à®¯à¯à®à®¿à®´à®®à¯_பà¯à®¤à®©à¯à®à®¿à®´à®®à¯_வியாழà®à¯à®à®¿à®´à®®à¯_வà¯à®³à¯à®³à®¿à®à¯à®à®¿à®´à®®à¯_à®à®©à®¿à®à¯à®à®¿à®´à®®à¯".split("_"),weekdaysShort:"à®à®¾à®¯à®¿à®±à¯_திà®à¯à®à®³à¯_à®à¯à®µà¯à®µà®¾à®¯à¯_பà¯à®¤à®©à¯_வியாழனà¯_வà¯à®³à¯à®³à®¿_à®à®©à®¿".split("_"),weekdaysMin:"à®à®¾_தி_à®à¯_பà¯_வி_வà¯_à®".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, HH:mm",LLLL:"dddd, D MMMM YYYY, HH:mm"},calendar:{sameDay:"[à®à®©à¯à®±à¯] LT",nextDay:"[நாளà¯] LT",nextWeek:"dddd, LT",lastDay:"[நà¯à®±à¯à®±à¯] LT",lastWeek:"[à®à®à®¨à¯à®¤ வாரமà¯] dddd, LT",sameElse:"L"},relativeTime:{future:"%s à®à®²à¯",past:"%s à®®à¯à®©à¯",s:"à®à®°à¯ à®à®¿à®² விநாà®à®¿à®à®³à¯",ss:"%d விநாà®à®¿à®à®³à¯",m:"à®à®°à¯ நிமிà®à®®à¯",mm:"%d நிமிà®à®à¯à®à®³à¯",h:"à®à®°à¯ மணி நà¯à®°à®®à¯",hh:"%d மணி நà¯à®°à®®à¯",d:"à®à®°à¯ நாளà¯",dd:"%d நாà®à¯à®à®³à¯",M:"à®à®°à¯ மாதமà¯",MM:"%d மாதà®à¯à®à®³à¯",y:"à®à®°à¯ வரà¯à®à®®à¯",yy:"%d à®à®£à¯à®à¯à®à®³à¯"},dayOfMonthOrdinalParse:/\d{1,2}வதà¯/,ordinal:function(e){return e+"வதà¯"},preparse:function(e){return e.replace(/[௧௨௩௪௫௬à¯à¯®à¯¯à¯¦]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/யாமமà¯|வà¯à®à®±à¯|à®à®¾à®²à¯|நணà¯à®ªà®à®²à¯|à®à®±à¯à®ªà®¾à®à¯|மாலà¯/,meridiem:function(e,t,n){if(e<2)return" யாமமà¯";else if(e<6)return" வà¯à®à®±à¯";else if(e<10)return" à®à®¾à®²à¯";else if(e<14)return" நணà¯à®ªà®à®²à¯";else if(e<18)return" à®à®±à¯à®ªà®¾à®à¯";else if(e<22)return" மாலà¯";else return" யாமமà¯"},meridiemHour:function(e,t){if(e===12)e=0;if(t==="யாமமà¯")return e<2?e:e+12;else if(t==="வà¯à®à®±à¯"||t==="à®à®¾à®²à¯")return e;else if(t==="நணà¯à®ªà®à®²à¯")return e>=10?e:e+12;else return e+12},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("te",{months:"à°à°¨à°µà°°à°¿_à°«à°¿à°¬à±à°°à°µà°°à°¿_మారà±à°à°¿_à°à°ªà±à°°à°¿à°²à±_à°®à±_à°à±à°¨à±_à°à±à°²à±_à°à°à°¸à±à°à±_à°¸à±à°ªà±à°à±à°à°¬à°°à±_à°
à°à±à°à±à°¬à°°à±_నవà°à°¬à°°à±_à°¡à°¿à°¸à±à°à°¬à°°à±".split("_"),monthsShort:"à°à°¨._à°«à°¿à°¬à±à°°._మారà±à°à°¿_à°à°ªà±à°°à°¿._à°®à±_à°à±à°¨à±_à°à±à°²à±_à°à°._à°¸à±à°ªà±._à°
à°à±à°à±._నవ._à°¡à°¿à°¸à±.".split("_"),monthsParseExact:true,weekdays:"à°à°¦à°¿à°µà°¾à°°à°_à°¸à±à°®à°µà°¾à°°à°_à°®à°à°à°³à°µà°¾à°°à°_à°¬à±à°§à°µà°¾à°°à°_à°à±à°°à±à°µà°¾à°°à°_à°¶à±à°à±à°°à°µà°¾à°°à°_శనివారà°".split("_"),weekdaysShort:"à°à°¦à°¿_à°¸à±à°®_à°®à°à°à°³_à°¬à±à°§_à°à±à°°à±_à°¶à±à°à±à°°_శని".split("_"),weekdaysMin:"à°_à°¸à±_à°®à°_à°¬à±_à°à±_à°¶à±_à°¶".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm",LLLL:"dddd, D MMMM YYYY, A h:mm"},calendar:{sameDay:"[à°¨à±à°¡à±] LT",nextDay:"[à°°à±à°ªà±] LT",nextWeek:"dddd, LT",lastDay:"[నినà±à°¨] LT",lastWeek:"[à°à°¤] dddd, LT",sameElse:"L"},relativeTime:{future:"%s à°²à±",past:"%s à°à±à°°à°¿à°¤à°",s:"à°à±à°¨à±à°¨à°¿ à°à±à°·à°£à°¾à°²à±",ss:"%d à°¸à±à°à°¨à±à°²à±",m:"à°à° నిమిషà°",mm:"%d నిమిషాలà±",h:"à°à° à°à°à°",hh:"%d à°à°à°à°²à±",d:"à°à° à°°à±à°à±",dd:"%d à°°à±à°à±à°²à±",M:"à°à° à°¨à±à°²",MM:"%d à°¨à±à°²à°²à±",y:"à°à° à°¸à°à°µà°¤à±à°¸à°°à°",yy:"%d à°¸à°à°µà°¤à±à°¸à°°à°¾à°²à±"},dayOfMonthOrdinalParse:/\d{1,2}à°µ/,ordinal:"%dà°µ",meridiemParse:/రాతà±à°°à°¿|à°à°¦à°¯à°|మధà±à°¯à°¾à°¹à±à°¨à°|సాయà°à°¤à±à°°à°/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="రాతà±à°°à°¿")return e<4?e:e+12;else if(t==="à°à°¦à°¯à°")return e;else if(t==="మధà±à°¯à°¾à°¹à±à°¨à°")return e>=10?e:e+12;else if(t==="సాయà°à°¤à±à°°à°")return e+12},meridiem:function(e,t,n){if(e<4)return"రాతà±à°°à°¿";else if(e<10)return"à°à°¦à°¯à°";else if(e<17)return"మధà±à°¯à°¾à°¹à±à°¨à°";else if(e<20)return"సాయà°à°¤à±à°°à°";else return"రాతà±à°°à°¿"},week:{dow:0,doy:6}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("tet",{months:"Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu".split("_"),weekdaysShort:"Dom_Seg_Ters_Kua_Kint_Sest_Sab".split("_"),weekdaysMin:"Do_Seg_Te_Ku_Ki_Ses_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Ohin iha] LT",nextDay:"[Aban iha] LT",nextWeek:"dddd [iha] LT",lastDay:"[Horiseik iha] LT",lastWeek:"dddd [semana kotuk] [iha] LT",sameElse:"L"},relativeTime:{future:"iha %s",past:"%s liuba",s:"segundu balun",ss:"segundu %d",m:"minutu ida",mm:"minutu %d",h:"oras ida",hh:"oras %d",d:"loron ida",dd:"loron %d",M:"fulan ida",MM:"fulan %d",y:"tinan ida",yy:"tinan %d"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=~~(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var a={0:"-Ñм",1:"-Ñм",2:"-Ñм",3:"-Ñм",4:"-Ñм",5:"-Ñм",6:"-Ñм",7:"-Ñм",8:"-Ñм",9:"-Ñм",10:"-Ñм",12:"-Ñм",13:"-Ñм",20:"-Ñм",30:"-Ñм",40:"-Ñм",50:"-Ñм",60:"-Ñм",70:"-Ñм",80:"-Ñм",90:"-Ñм",100:"-Ñм"},t;e.defineLocale("tg",{months:{format:"ÑнваÑи_ÑевÑали_маÑÑи_апÑели_майи_иÑни_иÑли_авгÑÑÑи_ÑенÑÑбÑи_окÑÑбÑи_ноÑбÑи_декабÑи".split("_"),standalone:"ÑнваÑ_ÑевÑал_маÑÑ_апÑел_май_иÑн_иÑл_авгÑÑÑ_ÑенÑÑбÑ_окÑÑбÑ_ноÑбÑ_декабÑ".split("_")},monthsShort:"Ñнв_Ñев_маÑ_апÑ_май_иÑн_иÑл_авг_Ñен_окÑ_ноÑ_дек".split("_"),weekdays:"ÑкÑанбе_дÑÑанбе_ÑеÑанбе_ÑоÑÑанбе_панҷÑанбе_Ò·ÑмÑа_Ñанбе".split("_"),weekdaysShort:"ÑÑб_дÑб_ÑÑб_ÑÑб_пÑб_Ò·Ñм_Ñнб".split("_"),weekdaysMin:"ÑÑ_дÑ_ÑÑ_ÑÑ_пÑ_ҷм_Ñб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[ÐмÑӯз ÑоаÑи] LT",nextDay:"[ФаÑдо ÑоаÑи] LT",lastDay:"[ÐиÑӯз ÑоаÑи] LT",nextWeek:"dddd[и] [ҳаÑÑаи оÑнда ÑоаÑи] LT",lastWeek:"dddd[и] [ҳаÑÑаи гÑзаÑÑа ÑоаÑи] LT",sameElse:"L"},relativeTime:{future:"баÑди %s",past:"%s пеÑ",s:"ÑкÑанд ÑониÑ",m:"Ñк даÒиÒа",mm:"%d даÒиÒа",h:"Ñк ÑоаÑ",hh:"%d ÑоаÑ",d:"Ñк Ñӯз",dd:"%d Ñӯз",M:"Ñк моҳ",MM:"%d моҳ",y:"Ñк Ñол",yy:"%d Ñол"},meridiemParse:/Ñаб|ÑÑбҳ|Ñӯз|бегоҳ/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="Ñаб")return e<4?e:e+12;else if(t==="ÑÑбҳ")return e;else if(t==="Ñӯз")return e>=11?e:e+12;else if(t==="бегоҳ")return e+12},meridiem:function(e,t,n){if(e<4)return"Ñаб";else if(e<11)return"ÑÑбҳ";else if(e<16)return"Ñӯз";else if(e<19)return"бегоҳ";else return"Ñаб"},dayOfMonthOrdinalParse:/\d{1,2}-(Ñм|Ñм)/,ordinal:function(e){var t=e%10,n=e>=100?100:null;return e+(a[e]||a[t]||a[n])},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("th",{months:"มà¸à¸£à¸²à¸à¸¡_à¸à¸¸à¸¡à¸ าà¸à¸±à¸à¸à¹_มีà¸à¸²à¸à¸¡_à¹à¸¡à¸©à¸²à¸¢à¸_à¸à¸¤à¸©à¸ าà¸à¸¡_มิà¸à¸¸à¸à¸²à¸¢à¸_à¸à¸£à¸à¸à¸²à¸à¸¡_สิà¸à¸«à¸²à¸à¸¡_à¸à¸±à¸à¸¢à¸²à¸¢à¸_à¸à¸¸à¸¥à¸²à¸à¸¡_à¸à¸¤à¸¨à¸à¸´à¸à¸²à¸¢à¸_à¸à¸±à¸à¸§à¸²à¸à¸¡".split("_"),monthsShort:"ม.à¸._à¸.à¸._มี.à¸._à¹à¸¡.ย._à¸.à¸._มิ.ย._à¸.à¸._ส.à¸._à¸.ย._à¸.à¸._à¸.ย._à¸.à¸.".split("_"),monthsParseExact:true,weekdays:"à¸à¸²à¸à¸´à¸à¸¢à¹_à¸à¸±à¸à¸à¸£à¹_à¸à¸±à¸à¸à¸²à¸£_à¸à¸¸à¸_à¸à¸¤à¸«à¸±à¸ªà¸à¸à¸µ_ศุà¸à¸£à¹_à¹à¸ªà¸²à¸£à¹".split("_"),weekdaysShort:"à¸à¸²à¸à¸´à¸à¸¢à¹_à¸à¸±à¸à¸à¸£à¹_à¸à¸±à¸à¸à¸²à¸£_à¸à¸¸à¸_à¸à¸¤à¸«à¸±à¸ª_ศุà¸à¸£à¹_à¹à¸ªà¸²à¸£à¹".split("_"),weekdaysMin:"à¸à¸²._à¸._à¸._à¸._à¸à¸¤._ศ._ส.".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY à¹à¸§à¸¥à¸² H:mm",LLLL:"วัà¸ddddà¸à¸µà¹ D MMMM YYYY à¹à¸§à¸¥à¸² H:mm"},meridiemParse:/à¸à¹à¸à¸à¹à¸à¸µà¹à¸¢à¸|หลัà¸à¹à¸à¸µà¹à¸¢à¸/,isPM:function(e){return e==="หลัà¸à¹à¸à¸µà¹à¸¢à¸"},meridiem:function(e,t,n){if(e<12)return"à¸à¹à¸à¸à¹à¸à¸µà¹à¸¢à¸";else return"หลัà¸à¹à¸à¸µà¹à¸¢à¸"},calendar:{sameDay:"[วัà¸à¸à¸µà¹ à¹à¸§à¸¥à¸²] LT",nextDay:"[à¸à¸£à¸¸à¹à¸à¸à¸µà¹ à¹à¸§à¸¥à¸²] LT",nextWeek:"dddd[หà¸à¹à¸² à¹à¸§à¸¥à¸²] LT",lastDay:"[à¹à¸¡à¸·à¹à¸à¸§à¸²à¸à¸à¸µà¹ à¹à¸§à¸¥à¸²] LT",lastWeek:"[วัà¸]dddd[à¸à¸µà¹à¹à¸¥à¹à¸§ à¹à¸§à¸¥à¸²] LT",sameElse:"L"},relativeTime:{future:"à¸à¸µà¸ %s",past:"%sà¸à¸µà¹à¹à¸¥à¹à¸§",s:"à¹à¸¡à¹à¸à¸µà¹à¸§à¸´à¸à¸²à¸à¸µ",ss:"%d วิà¸à¸²à¸à¸µ",m:"1 à¸à¸²à¸à¸µ",mm:"%d à¸à¸²à¸à¸µ",h:"1 à¸à¸±à¹à¸§à¹à¸¡à¸",hh:"%d à¸à¸±à¹à¸§à¹à¸¡à¸",d:"1 วัà¸",dd:"%d วัà¸",w:"1 สัà¸à¸à¸²à¸«à¹",ww:"%d สัà¸à¸à¸²à¸«à¹",M:"1 à¹à¸à¸·à¸à¸",MM:"%d à¹à¸à¸·à¸à¸",y:"1 à¸à¸µ",yy:"%d à¸à¸µ"}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var o={1:"'inji",5:"'inji",8:"'inji",70:"'inji",80:"'inji",2:"'nji",7:"'nji",20:"'nji",50:"'nji",3:"'ünji",4:"'ünji",100:"'ünji",6:"'njy",9:"'unjy",10:"'unjy",30:"'unjy",60:"'ynjy",90:"'ynjy"},t;e.defineLocale("tk",{months:"Ãanwar_Fewral_Mart_Aprel_Maý_Iýun_Iýul_Awgust_Sentýabr_Oktýabr_Noýabr_Dekabr".split("_"),monthsShort:"Ãan_Few_Mar_Apr_Maý_Iýn_Iýl_Awg_Sen_Okt_Noý_Dek".split("_"),weekdays:"ÃekÅenbe_DuÅenbe_SiÅenbe_ÃarÅenbe_PenÅenbe_Anna_Åenbe".split("_"),weekdaysShort:"Ãek_DuÅ_SiÅ_Ãar_Pen_Ann_Åen".split("_"),weekdaysMin:"Ãk_DÅ_SÅ_Ãr_Pn_An_Ån".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün sagat] LT",nextDay:"[ertir sagat] LT",nextWeek:"[indiki] dddd [sagat] LT",lastDay:"[düýn] LT",lastWeek:"[geçen] dddd [sagat] LT",sameElse:"L"},relativeTime:{future:"%s soÅ",past:"%s öÅ",s:"birnäçe sekunt",m:"bir minut",mm:"%d minut",h:"bir sagat",hh:"%d sagat",d:"bir gün",dd:"%d gün",M:"bir aý",MM:"%d aý",y:"bir ýyl",yy:"%d ýyl"},ordinal:function(e,t){switch(t){case"d":case"D":case"Do":case"DD":return e;default:if(e===0)return e+"'unjy";var n=e%10,a=e%100-n,r=e>=100?100:null;return e+(o[n]||o[a]||o[r])}},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("tl-ph",{months:"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre".split("_"),monthsShort:"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis".split("_"),weekdays:"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado".split("_"),weekdaysShort:"Lin_Lun_Mar_Miy_Huw_Biy_Sab".split("_"),weekdaysMin:"Li_Lu_Ma_Mi_Hu_Bi_Sab".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"MM/D/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY HH:mm",LLLL:"dddd, MMMM DD, YYYY HH:mm"},calendar:{sameDay:"LT [ngayong araw]",nextDay:"[Bukas ng] LT",nextWeek:"LT [sa susunod na] dddd",lastDay:"LT [kahapon]",lastWeek:"LT [noong nakaraang] dddd",sameElse:"L"},relativeTime:{future:"sa loob ng %s",past:"%s ang nakalipas",s:"ilang segundo",ss:"%d segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var o="pagh_waâ_chaâ_wej_loS_vagh_jav_Soch_chorgh_Hut".split("_"),t;function n(e){var t=e;t=e.indexOf("jaj")!==-1?t.slice(0,-3)+"leS":e.indexOf("jar")!==-1?t.slice(0,-3)+"waQ":e.indexOf("DIS")!==-1?t.slice(0,-3)+"nem":t+" pIq";return t}function a(e){var t=e;t=e.indexOf("jaj")!==-1?t.slice(0,-3)+"Huâ":e.indexOf("jar")!==-1?t.slice(0,-3)+"wen":e.indexOf("DIS")!==-1?t.slice(0,-3)+"ben":t+" ret";return t}function r(e,t,n,a){var r=i(e);switch(n){case"ss":return r+" lup";case"mm":return r+" tup";case"hh":return r+" rep";case"dd":return r+" jaj";case"MM":return r+" jar";case"yy":return r+" DIS"}}function i(e){var t=Math.floor(e%1e3/100),n=Math.floor(e%100/10),a=e%10,r="";if(t>0)r+=o[t]+"vatlh";if(n>0)r+=(r!==""?" ":"")+o[n]+"maH";if(a>0)r+=(r!==""?" ":"")+o[a];return r===""?"pagh":r}e.defineLocale("tlh",{months:"teraâ jar waâ_teraâ jar chaâ_teraâ jar wej_teraâ jar loS_teraâ jar vagh_teraâ jar jav_teraâ jar Soch_teraâ jar chorgh_teraâ jar Hut_teraâ jar waâmaH_teraâ jar waâmaH waâ_teraâ jar waâmaH chaâ".split("_"),monthsShort:"jar waâ_jar chaâ_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar waâmaH_jar waâmaH waâ_jar waâmaH chaâ".split("_"),monthsParseExact:true,weekdays:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysShort:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),weekdaysMin:"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DaHjaj] LT",nextDay:"[waâleS] LT",nextWeek:"LLL",lastDay:"[waâHuâ] LT",lastWeek:"LLL",sameElse:"L"},relativeTime:{future:n,past:a,s:"puS lup",ss:r,m:"waâ tup",mm:r,h:"waâ rep",hh:r,d:"waâ jaj",dd:r,M:"waâ jar",MM:r,y:"waâ DIS",yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var o={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"},t;e.defineLocale("tr",{months:"Ocak_Åubat_Mart_Nisan_Mayıs_Haziran_Temmuz_AÄustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Åub_Mar_Nis_May_Haz_Tem_AÄu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_ÃarÅamba_PerÅembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pzt_Sal_Ãar_Per_Cum_Cmt".split("_"),weekdaysMin:"Pz_Pt_Sa_Ãa_Pe_Cu_Ct".split("_"),meridiem:function(e,t,n){if(e<12)return n?"öö":"ÃÃ";else return n?"ös":"ÃS"},meridiemParse:/öö|ÃÃ|ös|ÃS/,isPM:function(e){return e==="ös"||e==="ÃS"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[gelecek] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",ss:"%d saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",w:"bir hafta",ww:"%d hafta",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinal:function(e,t){switch(t){case"d":case"D":case"Do":case"DD":return e;default:if(e===0)return e+"'ıncı";var n=e%10,a=e%100-n,r=e>=100?100:null;return e+(o[n]||o[a]||o[r])}},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;function n(e,t,n,a){var r={s:["viensas secunds","'iensas secunds"],ss:[e+" secunds",""+e+" secunds"],m:["'n mÃut","'iens mÃut"],mm:[e+" mÃuts",""+e+" mÃuts"],h:["'n þora","'iensa þora"],hh:[e+" þoras",""+e+" þoras"],d:["'n ziua","'iensa ziua"],dd:[e+" ziuas",""+e+" ziuas"],M:["'n mes","'iens mes"],MM:[e+" mesen",""+e+" mesen"],y:["'n ar","'iens ar"],yy:[e+" ars",""+e+" ars"]};return a?r[n][0]:t?r[n][0]:r[n][1]}e.defineLocale("tzl",{months:"Januar_Fevraglh_Març_Avrïu_Mai_Gün_Julia_Guscht_Setemvar_Listopäts_Noemvar_Zecemvar".split("_"),monthsShort:"Jan_Fev_Mar_Avr_Mai_Gün_Jul_Gus_Set_Lis_Noe_Zec".split("_"),weekdays:"Súladi_Lúneçi_Maitzi_Márcuri_Xhúadi_Viénerçi_Sáturi".split("_"),weekdaysShort:"Súl_Lún_Mai_Már_Xhú_Vié_Sát".split("_"),weekdaysMin:"Sú_Lú_Ma_Má_Xh_Vi_Sá".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"D. MMMM [dallas] YYYY",LLL:"D. MMMM [dallas] YYYY HH.mm",LLLL:"dddd, [li] D. MMMM [dallas] YYYY HH.mm"},meridiemParse:/d\'o|d\'a/i,isPM:function(e){return"d'o"===e.toLowerCase()},meridiem:function(e,t,n){if(e>11)return n?"d'o":"D'O";else return n?"d'a":"D'A"},calendar:{sameDay:"[oxhi à ] LT",nextDay:"[demà à ] LT",nextWeek:"dddd [à ] LT",lastDay:"[ieiri à ] LT",lastWeek:"[sür el] dddd [lasteu à ] LT",sameElse:"L"},relativeTime:{future:"osprei %s",past:"ja%s",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("tzm",{months:"âµâµâµâ´°âµ¢âµ_â´±âµâ´°âµ¢âµ_âµâ´°âµâµ_âµâ´±âµâµâµ_âµâ´°âµ¢âµ¢âµ_âµ¢âµâµâµ¢âµ_âµ¢âµâµâµ¢âµâµ£_âµâµâµâµ_âµâµâµâ´°âµâ´±âµâµ_â´½âµâµâ´±âµ_âµâµâµ¡â´°âµâ´±âµâµ_â´·âµâµâµâ´±âµâµ".split("_"),monthsShort:"âµâµâµâ´°âµ¢âµ_â´±âµâ´°âµ¢âµ_âµâ´°âµâµ_âµâ´±âµâµâµ_âµâ´°âµ¢âµ¢âµ_âµ¢âµâµâµ¢âµ_âµ¢âµâµâµ¢âµâµ£_âµâµâµâµ_âµâµâµâ´°âµâ´±âµâµ_â´½âµâµâ´±âµ_âµâµâµ¡â´°âµâ´±âµâµ_â´·âµâµâµâ´±âµâµ".split("_"),weekdays:"â´°âµâ´°âµâ´°âµ_â´°âµ¢âµâ´°âµ_â´°âµâµâµâ´°âµ_â´°â´½âµâ´°âµ_ⴰⴽⵡⴰâµ_â´°âµâµâµâµ¡â´°âµ_â´°âµâµâ´¹âµ¢â´°âµ".split("_"),weekdaysShort:"â´°âµâ´°âµâ´°âµ_â´°âµ¢âµâ´°âµ_â´°âµâµâµâ´°âµ_â´°â´½âµâ´°âµ_ⴰⴽⵡⴰâµ_â´°âµâµâµâµ¡â´°âµ_â´°âµâµâ´¹âµ¢â´°âµ".split("_"),weekdaysMin:"â´°âµâ´°âµâ´°âµ_â´°âµ¢âµâ´°âµ_â´°âµâµâµâ´°âµ_â´°â´½âµâ´°âµ_ⴰⴽⵡⴰâµ_â´°âµâµâµâµ¡â´°âµ_â´°âµâµâ´¹âµ¢â´°âµ".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[â´°âµâ´·âµ
â´´] LT",nextDay:"[â´°âµâ´½â´° â´´] LT",nextWeek:"dddd [â´´] LT",lastDay:"[â´°âµâ´°âµâµ â´´] LT",lastWeek:"dddd [â´´] LT",sameElse:"L"},relativeTime:{future:"â´·â´°â´·âµ
ⵠⵢⴰⵠ%s",past:"ⵢⴰⵠ%s",s:"âµâµâµâ´½",ss:"%d âµâµâµâ´½",m:"âµâµâµâµâ´º",mm:"%d âµâµâµâµâ´º",h:"âµâ´°âµâ´°",hh:"%d âµâ´°âµâµâ´°âµâµâµ",d:"â´°âµâµ",dd:"%d oâµâµâ´°âµ",M:"â´°âµ¢oâµâµ",MM:"%d âµâµ¢âµ¢âµâµâµ",y:"â´°âµâ´³â´°âµ",yy:"%d âµâµâ´³â´°âµâµ"},week:{dow:6,doy:12}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("tzm-latn",{months:"innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_É£wÅ¡t_Å¡wtanbir_ktˤwbrˤ_nwwanbir_dwjnbir".split("_"),monthsShort:"innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_É£wÅ¡t_Å¡wtanbir_ktˤwbrˤ_nwwanbir_dwjnbir".split("_"),weekdays:"asamas_aynas_asinas_akras_akwas_asimwas_asiá¸yas".split("_"),weekdaysShort:"asamas_aynas_asinas_akras_akwas_asimwas_asiá¸yas".split("_"),weekdaysMin:"asamas_aynas_asinas_akras_akwas_asimwas_asiá¸yas".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[asdkh g] LT",nextDay:"[aska g] LT",nextWeek:"dddd [g] LT",lastDay:"[assant g] LT",lastWeek:"dddd [g] LT",sameElse:"L"},relativeTime:{future:"dadkh s yan %s",past:"yan %s",s:"imik",ss:"%d imik",m:"minuá¸",mm:"%d minuá¸",h:"saÉa",hh:"%d tassaÉin",d:"ass",dd:"%d ossan",M:"ayowr",MM:"%d iyyirn",y:"asgas",yy:"%d isgasn"},week:{dow:6,doy:12}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("ug-cn",{months:"ÙØ§ÙÛØ§Ø±_ÙÛÛØ±Ø§Ù_Ù
ارت_ئاپرÛÙ_Ù
اÙ_ئÙÙÛÙ_ئÙÙÛÙ_Ø¦Ø§ÛØºÛست_سÛÙØªÛØ¨ÙØ±_ئÛÙØªÛØ¨ÙØ±_ÙÙÙØ§Ø¨Ùر_دÛÙØ§Ø¨Ùر".split("_"),monthsShort:"ÙØ§ÙÛØ§Ø±_ÙÛÛØ±Ø§Ù_Ù
ارت_ئاپرÛÙ_Ù
اÙ_ئÙÙÛÙ_ئÙÙÛÙ_Ø¦Ø§ÛØºÛست_سÛÙØªÛØ¨ÙØ±_ئÛÙØªÛØ¨ÙØ±_ÙÙÙØ§Ø¨Ùر_دÛÙØ§Ø¨Ùر".split("_"),weekdays:"ÙÛÙØ´ÛÙØ¨Û_Ø¯ÛØ´ÛÙØ¨Û_سÛÙØ´ÛÙØ¨Û_ÚØ§Ø±Ø´ÛÙØ¨Û_Ù¾ÛÙØ´ÛÙØ¨Û_جÛÙ
Û_Ø´ÛÙØ¨Û".split("_"),weekdaysShort:"ÙÛ_دÛ_سÛ_ÚØ§_Ù¾Û_جÛ_Ø´Û".split("_"),weekdaysMin:"ÙÛ_دÛ_سÛ_ÚØ§_Ù¾Û_جÛ_Ø´Û".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY-ÙÙÙÙM-ئاÙÙÙÚD-ÙÛÙÙ",LLL:"YYYY-ÙÙÙÙM-ئاÙÙÙÚD-ÙÛÙÙØ HH:mm",LLLL:"ddddØ YYYY-ÙÙÙÙM-ئاÙÙÙÚD-ÙÛÙÙØ HH:mm"},meridiemParse:/ÙÛØ±ÙÙ
ÙÛÚÛ|سÛÚ¾ÛØ±|ÚÛØ´ØªÙÙ Ø¨ÛØ±ÛÙ|ÚÛØ´|ÚÛØ´ØªÙÙ ÙÛÙÙÙ|ÙÛÚ/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="ÙÛØ±ÙÙ
ÙÛÚÛ"||t==="سÛÚ¾ÛØ±"||t==="ÚÛØ´ØªÙÙ Ø¨ÛØ±ÛÙ")return e;else if(t==="ÚÛØ´ØªÙÙ ÙÛÙÙÙ"||t==="ÙÛÚ")return e+12;else return e>=11?e:e+12},meridiem:function(e,t,n){var a=e*100+t;if(a<600)return"ÙÛØ±ÙÙ
ÙÛÚÛ";else if(a<900)return"سÛÚ¾ÛØ±";else if(a<1130)return"ÚÛØ´ØªÙÙ Ø¨ÛØ±ÛÙ";else if(a<1230)return"ÚÛØ´";else if(a<1800)return"ÚÛØ´ØªÙÙ ÙÛÙÙÙ";else return"ÙÛÚ"},calendar:{sameDay:"[بÛÚ¯ÛÙ Ø³Ø§Ø¦ÛØª] LT",nextDay:"[Ø¦ÛØªÛ Ø³Ø§Ø¦ÛØª] LT",nextWeek:"[ÙÛÙÛØ±ÙÙ] dddd [Ø³Ø§Ø¦ÛØª] LT",lastDay:"[تÛÙÛÚ¯ÛÙ] LT",lastWeek:"[Ø¦Ø§ÙØ¯ÙÙÙÙ] dddd [Ø³Ø§Ø¦ÛØª] LT",sameElse:"L"},relativeTime:{future:"%s ÙÛÙÙÙ",past:"%s Ø¨ÛØ±ÛÙ",s:"ÙÛÚÚÛ Ø³ÛÙÙÙØª",ss:"%d سÛÙÙÙØª",m:"Ø¨ÙØ± Ù
ÙÙÛØª",mm:"%d Ù
ÙÙÛØª",h:"Ø¨ÙØ± Ø³Ø§Ø¦ÛØª",hh:"%d Ø³Ø§Ø¦ÛØª",d:"Ø¨ÙØ± ÙÛÙ",dd:"%d ÙÛÙ",M:"Ø¨ÙØ± ئاÙ",MM:"%d ئاÙ",y:"Ø¨ÙØ± ÙÙÙ",yy:"%d ÙÙÙ"},dayOfMonthOrdinalParse:/\d{1,2}(-ÙÛÙÙ|-ئاÙ|-Ú¾ÛپتÛ)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"-ÙÛÙÙ";case"w":case"W":return e+"-Ú¾ÛپتÛ";default:return e}},preparse:function(e){return e.replace(/Ø/g,",")},postformat:function(e){return e.replace(/,/g,"Ø")},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | function r(e,t){var n=e.split("_");return t%10===1&&t%100!==11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function t(e,t,n){var a={ss:t?"ÑекÑнда_ÑекÑнди_ÑекÑнд":"ÑекÑндÑ_ÑекÑнди_ÑекÑнд",mm:t?"Ñ
вилина_Ñ
вилини_Ñ
вилин":"Ñ
вилинÑ_Ñ
вилини_Ñ
вилин",hh:t?"година_години_годин":"годинÑ_години_годин",dd:"денÑ_днÑ_днÑв",MM:"мÑÑÑÑÑ_мÑÑÑÑÑ_мÑÑÑÑÑв",yy:"ÑÑк_Ñоки_ÑокÑв"};if(n==="m")return t?"Ñ
вилина":"Ñ
вилинÑ";else if(n==="h")return t?"година":"годинÑ";else return e+" "+r(a[n],+e)}function n(e,t){var n={nominative:"недÑлÑ_понедÑлок_вÑвÑоÑок_ÑеÑеда_ÑеÑвеÑ_пâÑÑниÑÑ_ÑÑбоÑа".split("_"),accusative:"недÑлÑ_понедÑлок_вÑвÑоÑок_ÑеÑедÑ_ÑеÑвеÑ_пâÑÑниÑÑ_ÑÑбоÑÑ".split("_"),genitive:"недÑлÑ_понедÑлка_вÑвÑоÑка_ÑеÑеди_ÑеÑвеÑга_пâÑÑниÑÑ_ÑÑбоÑи".split("_")},a;if(e===true)return n["nominative"].slice(1,7).concat(n["nominative"].slice(0,1));if(!e)return n["nominative"];a=/(\[[ÐвУÑ]\]) ?dddd/.test(t)?"accusative":/\[?(?:минÑлоÑ|наÑÑÑпноÑ)? ?\] ?dddd/.test(t)?"genitive":"nominative";return n[a][e.day()]}function a(e){return function(){return e+"о"+(this.hours()===11?"б":"")+"] LT"}}var o;e.defineLocale("uk",{months:{format:"ÑÑÑнÑ_лÑÑого_беÑезнÑ_квÑÑнÑ_ÑÑавнÑ_ÑеÑвнÑ_липнÑ_ÑеÑпнÑ_веÑеÑнÑ_жовÑнÑ_лиÑÑопада_гÑÑднÑ".split("_"),standalone:"ÑÑÑенÑ_лÑÑий_беÑезенÑ_квÑÑенÑ_ÑÑавенÑ_ÑеÑвенÑ_липенÑ_ÑеÑпенÑ_веÑеÑенÑ_жовÑенÑ_лиÑÑопад_гÑÑденÑ".split("_")},monthsShort:"ÑÑÑ_лÑÑ_беÑ_квÑÑ_ÑÑав_ÑеÑв_лип_ÑеÑп_веÑ_жовÑ_лиÑÑ_гÑÑд".split("_"),weekdays:n,weekdaysShort:"нд_пн_вÑ_ÑÑ_ÑÑ_пÑ_Ñб".split("_"),weekdaysMin:"нд_пн_вÑ_ÑÑ_ÑÑ_пÑ_Ñб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY Ñ.",LLL:"D MMMM YYYY Ñ., HH:mm",LLLL:"dddd, D MMMM YYYY Ñ., HH:mm"},calendar:{sameDay:a("[СÑÐ¾Ð³Ð¾Ð´Ð½Ñ "),nextDay:a("[ÐавÑÑа "),lastDay:a("[ÐÑоÑа "),nextWeek:a("[У] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return a("[ÐинÑлоÑ] dddd [").call(this);case 1:case 2:case 4:return a("[ÐинÑлого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"за %s",past:"%s ÑомÑ",s:"декÑлÑка ÑекÑнд",ss:t,m:t,mm:t,h:"годинÑ",hh:t,d:"денÑ",dd:t,M:"мÑÑÑÑÑ",MM:t,y:"ÑÑк",yy:t},meridiemParse:/ноÑÑ|ÑанкÑ|днÑ|веÑоÑа/,isPM:function(e){return/^(днÑ|веÑоÑа)$/.test(e)},meridiem:function(e,t,n){if(e<4)return"ноÑÑ";else if(e<12)return"ÑанкÑ";else if(e<17)return"днÑ";else return"веÑоÑа"},dayOfMonthOrdinalParse:/\d{1,2}-(й|го)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e+"-й";case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t=["جÙÙØ±Û","ÙØ±ÙرÛ","Ù
ارÚ","اپرÛÙ","Ù
ئÛ","جÙÙ","جÙÙØ§Ø¦Û","اگست","ستÙ
بر","Ø§Ú©ØªÙØ¨Ø±","ÙÙÙ
بر","دسÙ
بر"],n=["Ø§ØªÙØ§Ø±","Ù¾ÛØ±","Ù
ÙÚ¯Ù","بدھ","جÙ
عرات","جÙ
عÛ","ÛÙØªÛ"],a;e.defineLocale("ur",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"ddddØ D MMMM YYYY HH:mm"},meridiemParse:/صبØ|شاÙ
/,isPM:function(e){return"شاÙ
"===e},meridiem:function(e,t,n){if(e<12)return"صبØ";return"شاÙ
"},calendar:{sameDay:"[آج بÙÙØª] LT",nextDay:"[ک٠بÙÙØª] LT",nextWeek:"dddd [بÙÙØª] LT",lastDay:"[Ú¯Ø°Ø´ØªÛ Ø±ÙØ² بÙÙØª] LT",lastWeek:"[گذشتÛ] dddd [بÙÙØª] LT",sameElse:"L"},relativeTime:{future:"%s بعد",past:"%s ÙØ¨Ù",s:"ÚÙØ¯ سÛÚ©ÙÚ",ss:"%d سÛÚ©ÙÚ",m:"اÛÚ© Ù
ÙÙ¹",mm:"%d Ù
ÙÙ¹",h:"اÛÚ© Ú¯Ú¾ÙÙ¹Û",hh:"%d Ú¯Ú¾ÙÙ¹Û",d:"اÛÚ© دÙ",dd:"%d دÙ",M:"اÛÚ© Ù
اÛ",MM:"%d Ù
اÛ",y:"اÛÚ© ساÙ",yy:"%d ساÙ"},preparse:function(e){return e.replace(/Ø/g,",")},postformat:function(e){return e.replace(/,/g,"Ø")},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("uz",{months:"ÑнваÑ_ÑевÑал_маÑÑ_апÑел_май_иÑн_иÑл_авгÑÑÑ_ÑенÑÑбÑ_окÑÑбÑ_ноÑбÑ_декабÑ".split("_"),monthsShort:"Ñнв_Ñев_маÑ_апÑ_май_иÑн_иÑл_авг_Ñен_окÑ_ноÑ_дек".split("_"),weekdays:"ЯкÑанба_ÐÑÑанба_СеÑанба_ЧоÑÑанба_ÐайÑанба_ÐÑма_Шанба".split("_"),weekdaysShort:"ЯкÑ_ÐÑÑ_СеÑ_ЧоÑ_Ðай_ÐÑм_Шан".split("_"),weekdaysMin:"Як_ÐÑ_Се_Чо_Ðа_ÐÑ_Ша".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[ÐÑгÑн ÑоаÑ] LT [да]",nextDay:"[ÐÑÑага] LT [да]",nextWeek:"dddd [кÑни ÑоаÑ] LT [да]",lastDay:"[ÐеÑа ÑоаÑ] LT [да]",lastWeek:"[УÑган] dddd [кÑни ÑоаÑ] LT [да]",sameElse:"L"},relativeTime:{future:"Якин %s иÑида",past:"ÐÐ¸Ñ Ð½ÐµÑа %s олдин",s:"ÑÑÑÑаÑ",ss:"%d ÑÑÑÑаÑ",m:"Ð±Ð¸Ñ Ð´Ð°ÐºÐ¸ÐºÐ°",mm:"%d дакика",h:"Ð±Ð¸Ñ ÑоаÑ",hh:"%d ÑоаÑ",d:"Ð±Ð¸Ñ ÐºÑн",dd:"%d кÑн",M:"Ð±Ð¸Ñ Ð¾Ð¹",MM:"%d ой",y:"Ð±Ð¸Ñ Ð¹Ð¸Ð»",yy:"%d йил"},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("uz-latn",{months:"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr".split("_"),monthsShort:"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek".split("_"),weekdays:"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba".split("_"),weekdaysShort:"Yak_Dush_Sesh_Chor_Pay_Jum_Shan".split("_"),weekdaysMin:"Ya_Du_Se_Cho_Pa_Ju_Sha".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[Bugun soat] LT [da]",nextDay:"[Ertaga] LT [da]",nextWeek:"dddd [kuni soat] LT [da]",lastDay:"[Kecha soat] LT [da]",lastWeek:"[O'tgan] dddd [kuni soat] LT [da]",sameElse:"L"},relativeTime:{future:"Yaqin %s ichida",past:"Bir necha %s oldin",s:"soniya",ss:"%d soniya",m:"bir daqiqa",mm:"%d daqiqa",h:"bir soat",hh:"%d soat",d:"bir kun",dd:"%d kun",M:"bir oy",MM:"%d oy",y:"bir yil",yy:"%d yil"},week:{dow:1,doy:7}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12".split("_"),monthsParseExact:true,weekdays:"chá»§ nháºt_thứ hai_thứ ba_thứ tư_thứ nÄm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:true,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){if(e<12)return n?"sa":"SA";else return n?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [nÄm] YYYY",LLL:"D MMMM [nÄm] YYYY HH:mm",LLLL:"dddd, D MMMM [nÄm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[Hôm nay lúc] LT",nextDay:"[Ngà y mai lúc] LT",nextWeek:"dddd [tuần tá»i lúc] LT",lastDay:"[Hôm qua lúc] LT",lastWeek:"dddd [tuần trưá»c lúc] LT",sameElse:"L"},relativeTime:{future:"%s tá»i",past:"%s trưá»c",s:"và i giây",ss:"%d giây",m:"má»t phút",mm:"%d phút",h:"má»t giá»",hh:"%d giá»",d:"má»t ngà y",dd:"%d ngà y",w:"má»t tuần",ww:"%d tuần",M:"má»t tháng",MM:"%d tháng",y:"má»t nÄm",yy:"%d nÄm"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("x-pseudo",{months:"J~áñúá~rý_F~ébrú~árý_~Márc~h_Ãp~rÃl_~Máý_~Júñé~_Júl~ý_Ãú~gúst~_Sép~témb~ér_Ã~ctób~ér_Ã~óvém~bér_~Décé~mbér".split("_"),monthsShort:"J~áñ_~Féb_~Már_~Ãpr_~Máý_~Júñ_~Júl_~Ãúg_~Sép_~Ãct_~Ãóv_~Déc".split("_"),monthsParseExact:true,weekdays:"S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~FrÃd~áý_S~átúr~dáý".split("_"),weekdaysShort:"S~úñ_~Móñ_~Túé_~Wéd_~Thú_~FrÃ_~Sát".split("_"),weekdaysMin:"S~ú_Mó~_Tú_~Wé_T~h_Fr~_Sá".split("_"),weekdaysParseExact:true,longDateFormat:{LT:"HH:mm",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[T~ódá~ý át] LT",nextDay:"[T~ómó~rró~w át] LT",nextWeek:"dddd [át] LT",lastDay:"[Ã~ést~érdá~ý át] LT",lastWeek:"[L~ást] dddd [át] LT",sameElse:"L"},relativeTime:{future:"Ã~ñ %s",past:"%s á~gó",s:"á ~féw ~sécó~ñds",ss:"%d s~écóñ~ds",m:"á ~mÃñ~úté",mm:"%d m~Ãñú~tés",h:"á~ñ hó~úr",hh:"%d h~óúrs",d:"á ~dáý",dd:"%d d~áýs",M:"á ~móñ~th",MM:"%d m~óñt~hs",y:"á ~ýéár",yy:"%d ý~éárs"},dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10,n=~~(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+n},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("yo",{months:"SẹÌrẹÌ_EÌreÌleÌ_ẸrẹÌnaÌ_IÌgbeÌ_EÌbibi_OÌkuÌdu_Agẹmo_OÌguÌn_Owewe_á»ÌwaÌraÌ_BeÌluÌ_á»ÌpẹÌÌ".split("_"),monthsShort:"SẹÌr_EÌrl_Ẹrn_IÌgb_EÌbi_OÌkuÌ_Agẹ_OÌguÌ_Owe_á»ÌwaÌ_BeÌl_á»ÌpẹÌÌ".split("_"),weekdays:"AÌiÌkuÌ_AjeÌ_IÌsẹÌgun_á»já»ÌruÌ_á»já»Ìbá»_ẸtiÌ_AÌbaÌmẹÌta".split("_"),weekdaysShort:"AÌiÌk_AjeÌ_IÌsẹÌ_á»jr_á»jb_ẸtiÌ_AÌbaÌ".split("_"),weekdaysMin:"AÌiÌ_Aj_IÌs_á»r_á»b_Ẹt_AÌb".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[OÌniÌ ni] LT",nextDay:"[á»Ìla ni] LT",nextWeek:"dddd [á»sáº¹Ì toÌn'bá»] [ni] LT",lastDay:"[AÌna ni] LT",lastWeek:"dddd [á»sáº¹Ì toÌlá»Ì] [ni] LT",sameElse:"L"},relativeTime:{future:"niÌ %s",past:"%s ká»jaÌ",s:"iÌsẹjuÌ aayaÌ die",ss:"aayaÌ %d",m:"iÌsẹjuÌ kan",mm:"iÌsẹjuÌ %d",h:"waÌkati kan",hh:"waÌkati %d",d:"á»já»Ì kan",dd:"á»já»Ì %d",M:"osuÌ kan",MM:"osuÌ %d",y:"á»duÌn kan",yy:"á»duÌn %d"},dayOfMonthOrdinalParse:/á»já»Ì\s\d{1,2}/,ordinal:"á»já»Ì %d",week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("zh-cn",{months:"䏿_äºæ_䏿_åæ_äºæ_å
æ_䏿_å
«æ_乿_åæ_å䏿_åäºæ".split("_"),monthsShort:"1æ_2æ_3æ_4æ_5æ_6æ_7æ_8æ_9æ_10æ_11æ_12æ".split("_"),weekdays:"æææ¥_ææä¸_ææäº_ææä¸_ææå_ææäº_ææå
".split("_"),weekdaysShort:"卿¥_å¨ä¸_å¨äº_å¨ä¸_å¨å_å¨äº_å¨å
".split("_"),weekdaysMin:"æ¥_ä¸_äº_ä¸_å_äº_å
".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYYå¹´MæDæ¥",LLL:"YYYYå¹´MæDæ¥Ahç¹mmå",LLLL:"YYYYå¹´MæDæ¥ddddAhç¹mmå",l:"YYYY/M/D",ll:"YYYYå¹´MæDæ¥",lll:"YYYYå¹´MæDæ¥ HH:mm",llll:"YYYYå¹´MæDæ¥dddd HH:mm"},meridiemParse:/忍|æ©ä¸|ä¸å|ä¸å|ä¸å|æä¸/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="忍"||t==="æ©ä¸"||t==="ä¸å")return e;else if(t==="ä¸å"||t==="æä¸")return e+12;else return e>=11?e:e+12},meridiem:function(e,t,n){var a=e*100+t;if(a<600)return"忍";else if(a<900)return"æ©ä¸";else if(a<1130)return"ä¸å";else if(a<1230)return"ä¸å";else if(a<1800)return"ä¸å";else return"æä¸"},calendar:{sameDay:"[ä»å¤©]LT",nextDay:"[æå¤©]LT",nextWeek:function(e){if(e.week()!==this.week())return"[ä¸]dddLT";else return"[æ¬]dddLT"},lastDay:"[æ¨å¤©]LT",lastWeek:function(e){if(this.week()!==e.week())return"[ä¸]dddLT";else return"[æ¬]dddLT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(æ¥|æ|å¨)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"æ¥";case"M":return e+"æ";case"w":case"W":return e+"å¨";default:return e}},relativeTime:{future:"%så",past:"%så",s:"å ç§",ss:"%d ç§",m:"1 åé",mm:"%d åé",h:"1 å°æ¶",hh:"%d å°æ¶",d:"1 天",dd:"%d 天",w:"1 å¨",ww:"%d å¨",M:"1 个æ",MM:"%d 个æ",y:"1 å¹´",yy:"%d å¹´"},week:{dow:1,doy:4}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("zh-hk",{months:"䏿_äºæ_䏿_åæ_äºæ_å
æ_䏿_å
«æ_乿_åæ_å䏿_åäºæ".split("_"),monthsShort:"1æ_2æ_3æ_4æ_5æ_6æ_7æ_8æ_9æ_10æ_11æ_12æ".split("_"),weekdays:"æææ¥_ææä¸_ææäº_ææä¸_ææå_ææäº_ææå
".split("_"),weekdaysShort:"鱿¥_é±ä¸_é±äº_é±ä¸_é±å_é±äº_é±å
".split("_"),weekdaysMin:"æ¥_ä¸_äº_ä¸_å_äº_å
".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYYå¹´MæDæ¥",LLL:"YYYYå¹´MæDæ¥ HH:mm",LLLL:"YYYYå¹´MæDæ¥dddd HH:mm",l:"YYYY/M/D",ll:"YYYYå¹´MæDæ¥",lll:"YYYYå¹´MæDæ¥ HH:mm",llll:"YYYYå¹´MæDæ¥dddd HH:mm"},meridiemParse:/忍|æ©ä¸|ä¸å|ä¸å|ä¸å|æä¸/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="忍"||t==="æ©ä¸"||t==="ä¸å")return e;else if(t==="ä¸å")return e>=11?e:e+12;else if(t==="ä¸å"||t==="æä¸")return e+12},meridiem:function(e,t,n){var a=e*100+t;if(a<600)return"忍";else if(a<900)return"æ©ä¸";else if(a<1200)return"ä¸å";else if(a===1200)return"ä¸å";else if(a<1800)return"ä¸å";else return"æä¸"},calendar:{sameDay:"[ä»å¤©]LT",nextDay:"[æå¤©]LT",nextWeek:"[ä¸]ddddLT",lastDay:"[æ¨å¤©]LT",lastWeek:"[ä¸]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(æ¥|æ|é±)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"æ¥";case"M":return e+"æ";case"w":case"W":return e+"é±";default:return e}},relativeTime:{future:"%så¾",past:"%så",s:"å¹¾ç§",ss:"%d ç§",m:"1 åé",mm:"%d åé",h:"1 å°æ",hh:"%d å°æ",d:"1 天",dd:"%d 天",M:"1 åæ",MM:"%d åæ",y:"1 å¹´",yy:"%d å¹´"}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("zh-mo",{months:"䏿_äºæ_䏿_åæ_äºæ_å
æ_䏿_å
«æ_乿_åæ_å䏿_åäºæ".split("_"),monthsShort:"1æ_2æ_3æ_4æ_5æ_6æ_7æ_8æ_9æ_10æ_11æ_12æ".split("_"),weekdays:"æææ¥_ææä¸_ææäº_ææä¸_ææå_ææäº_ææå
".split("_"),weekdaysShort:"鱿¥_é±ä¸_é±äº_é±ä¸_é±å_é±äº_é±å
".split("_"),weekdaysMin:"æ¥_ä¸_äº_ä¸_å_äº_å
".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"YYYYå¹´MæDæ¥",LLL:"YYYYå¹´MæDæ¥ HH:mm",LLLL:"YYYYå¹´MæDæ¥dddd HH:mm",l:"D/M/YYYY",ll:"YYYYå¹´MæDæ¥",lll:"YYYYå¹´MæDæ¥ HH:mm",llll:"YYYYå¹´MæDæ¥dddd HH:mm"},meridiemParse:/忍|æ©ä¸|ä¸å|ä¸å|ä¸å|æä¸/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="忍"||t==="æ©ä¸"||t==="ä¸å")return e;else if(t==="ä¸å")return e>=11?e:e+12;else if(t==="ä¸å"||t==="æä¸")return e+12},meridiem:function(e,t,n){var a=e*100+t;if(a<600)return"忍";else if(a<900)return"æ©ä¸";else if(a<1130)return"ä¸å";else if(a<1230)return"ä¸å";else if(a<1800)return"ä¸å";else return"æä¸"},calendar:{sameDay:"[ä»å¤©] LT",nextDay:"[æå¤©] LT",nextWeek:"[ä¸]dddd LT",lastDay:"[æ¨å¤©] LT",lastWeek:"[ä¸]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(æ¥|æ|é±)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"æ¥";case"M":return e+"æ";case"w":case"W":return e+"é±";default:return e}},relativeTime:{future:"%så
§",past:"%så",s:"å¹¾ç§",ss:"%d ç§",m:"1 åé",mm:"%d åé",h:"1 å°æ",hh:"%d å°æ",d:"1 天",dd:"%d 天",M:"1 åæ",MM:"%d åæ",y:"1 å¹´",yy:"%d å¹´"}})}(n(9))},function(e,t,n){!function(e){"use strict"; |
| | | //! moment.js locale configuration |
| | | var t;e.defineLocale("zh-tw",{months:"䏿_äºæ_䏿_åæ_äºæ_å
æ_䏿_å
«æ_乿_åæ_å䏿_åäºæ".split("_"),monthsShort:"1æ_2æ_3æ_4æ_5æ_6æ_7æ_8æ_9æ_10æ_11æ_12æ".split("_"),weekdays:"æææ¥_ææä¸_ææäº_ææä¸_ææå_ææäº_ææå
".split("_"),weekdaysShort:"鱿¥_é±ä¸_é±äº_é±ä¸_é±å_é±äº_é±å
".split("_"),weekdaysMin:"æ¥_ä¸_äº_ä¸_å_äº_å
".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYYå¹´MæDæ¥",LLL:"YYYYå¹´MæDæ¥ HH:mm",LLLL:"YYYYå¹´MæDæ¥dddd HH:mm",l:"YYYY/M/D",ll:"YYYYå¹´MæDæ¥",lll:"YYYYå¹´MæDæ¥ HH:mm",llll:"YYYYå¹´MæDæ¥dddd HH:mm"},meridiemParse:/忍|æ©ä¸|ä¸å|ä¸å|ä¸å|æä¸/,meridiemHour:function(e,t){if(e===12)e=0;if(t==="忍"||t==="æ©ä¸"||t==="ä¸å")return e;else if(t==="ä¸å")return e>=11?e:e+12;else if(t==="ä¸å"||t==="æä¸")return e+12},meridiem:function(e,t,n){var a=e*100+t;if(a<600)return"忍";else if(a<900)return"æ©ä¸";else if(a<1130)return"ä¸å";else if(a<1230)return"ä¸å";else if(a<1800)return"ä¸å";else return"æä¸"},calendar:{sameDay:"[ä»å¤©] LT",nextDay:"[æå¤©] LT",nextWeek:"[ä¸]dddd LT",lastDay:"[æ¨å¤©] LT",lastWeek:"[ä¸]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(æ¥|æ|é±)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"æ¥";case"M":return e+"æ";case"w":case"W":return e+"é±";default:return e}},relativeTime:{future:"%så¾",past:"%så",s:"å¹¾ç§",ss:"%d ç§",m:"1 åé",mm:"%d åé",h:"1 å°æ",hh:"%d å°æ",d:"1 天",dd:"%d 天",M:"1 åæ",MM:"%d åæ",y:"1 å¹´",yy:"%d å¹´"}})}(n(9))},function(e,t,n){"use strict";t.__esModule=!0;var u=p(n(2)),a=p(n(4)),r=p(n(6)),o=p(n(7)),i=n(0),d=p(i),l=p(n(3)),c=p(n(13)),s=p(n(8)),f=n(11);function p(e){return e&&e.__esModule?e:{default:e}}h=i.Component,(0,o.default)(m,h),m.prototype.render=function(){var e,t=this.props,n=t.prefix,a=t.type,r=t.size,o=t.className,i=t.rtl,l=t.style,t=t.children,s=f.obj.pickOthers((0,u.default)({},m.propTypes),this.props),n=(0,c.default)(((e={})[n+"icon"]=!0,e[n+"icon-"+a]=!!a,e[""+n+r]=!!r&&"string"==typeof r,e[o]=!!o,e)),o=(i&&-1!==["arrow-left","arrow-right","arrow-double-left","arrow-double-right","switch","sorting","descending","ascending"].indexOf(a)&&(s.dir="rtl"),"number"==typeof r?{width:r,height:r,lineHeight:r+"px",fontSize:r}:{});return d.default.createElement("i",(0,u.default)({},s,{style:(0,u.default)({},o,l),className:n}),t)},i=n=m,n.propTypes=(0,u.default)({},s.default.propTypes,{type:l.default.string,children:l.default.node,size:l.default.oneOfType([l.default.oneOf(["xxs","xs","small","medium","large","xl","xxl","xxxl","inherit"]),l.default.number]),className:l.default.string,style:l.default.object}),n.defaultProps={prefix:"next-",size:"medium"},n._typeMark="icon";var h,o=i;function m(){return(0,a.default)(this,m),(0,r.default)(this,h.apply(this,arguments))}o.displayName="Icon",t.default=o,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var g=s(n(2)),y=s(n(12)),a=s(n(38)),r=s(n(4)),o=s(n(6)),i=s(n(7)),v=n(0),_=s(v),l=s(n(3)),b=n(157),w=s(n(525));function s(e){return e&&e.__esModule?e:{default:e}}function u(){}function M(e){return _.default.Children.toArray(e.children)[0]||null}d=v.Component,(0,i.default)(c,d),c.prototype.normalizeNames=function(e){return"string"==typeof e?{appear:e+"-appear",appearActive:e+"-appear-active",enter:e+"-enter",enterActive:e+"-enter-active",leave:e+"-leave",leaveActive:e+"-leave-active"}:"object"===(void 0===e?"undefined":(0,a.default)(e))?{appear:e.appear,appearActive:e.appear+"-active",enter:""+e.enter,enterActive:e.enter+"-active",leave:""+e.leave,leaveActive:e.leave+"-active"}:void 0},c.prototype.render=function(){var t=this,e=this.props,n=e.animation,a=e.children,r=e.animationAppear,o=e.singleMode,i=e.component,l=e.beforeAppear,s=e.onAppear,u=e.afterAppear,d=e.beforeEnter,c=e.onEnter,f=e.afterEnter,p=e.beforeLeave,h=e.onLeave,m=e.afterLeave,e=(0,y.default)(e,["animation","children","animationAppear","singleMode","component","beforeAppear","onAppear","afterAppear","beforeEnter","onEnter","afterEnter","beforeLeave","onLeave","afterLeave"]),a=v.Children.map(a,function(e){return _.default.createElement(w.default,{key:e.key,names:t.normalizeNames(n),onAppear:l,onAppearing:s,onAppeared:u,onEnter:d,onEntering:c,onEntered:f,onExit:p,onExiting:h,onExited:m},e)});return _.default.createElement(b.TransitionGroup,(0,g.default)({appear:r,component:o?M:i},e),a)},i=n=c,n.propTypes={animation:l.default.oneOfType([l.default.string,l.default.object]),animationAppear:l.default.bool,component:l.default.any,singleMode:l.default.bool,children:l.default.oneOfType([l.default.element,l.default.arrayOf(l.default.element)]),beforeAppear:l.default.func,onAppear:l.default.func,afterAppear:l.default.func,beforeEnter:l.default.func,onEnter:l.default.func,afterEnter:l.default.func,beforeLeave:l.default.func,onLeave:l.default.func,afterLeave:l.default.func},n.defaultProps={animationAppear:!0,component:"div",singleMode:!0,beforeAppear:u,onAppear:u,afterAppear:u,beforeEnter:u,onEnter:u,afterEnter:u,beforeLeave:u,onLeave:u,afterLeave:u};var d,l=i;function c(){return(0,r.default)(this,c),(0,o.default)(this,d.apply(this,arguments))}l.displayName="Animate",t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=t.EXITING=t.ENTERED=t.ENTERING=t.EXITED=t.UNMOUNTED=void 0;var a=function(e){{if(e&&e.__esModule)return e;var t,n={};if(null!=e)for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&((t=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(e,a):{}).get||t.set?Object.defineProperty(n,a,t):n[a]=e[a]);return n.default=e,n}}(n(3)),o=l(n(0)),i=l(n(23)),r=n(30);n(346);function l(e){return e&&e.__esModule?e:{default:e}}var s="unmounted",u=(t.UNMOUNTED=s,"exited"),d=(t.EXITED=u,"entering"),c=(t.ENTERING=d,"entered"),f=(t.ENTERED=c,"exiting"),n=(t.EXITING=f,function(r){var e;function t(e,t){var n,a=r.call(this,e,t)||this,t=t.transitionGroup,t=t&&!t.isMounting?e.enter:e.appear;return a.appearStatus=null,e.in?t?(n=u,a.appearStatus=d):n=c:n=e.unmountOnExit||e.mountOnEnter?s:u,a.state={status:n},a.nextCallback=null,a}e=r,(n=t).prototype=Object.create(e.prototype),(n.prototype.constructor=n).__proto__=e;var n=t.prototype;return n.getChildContext=function(){return{transitionGroup:null}},t.getDerivedStateFromProps=function(e,t){return e.in&&t.status===s?{status:u}:null},n.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},n.componentDidUpdate=function(e){var t=null;e!==this.props&&(e=this.state.status,this.props.in?e!==d&&e!==c&&(t=d):e!==d&&e!==c||(t=f)),this.updateStatus(!1,t)},n.componentWillUnmount=function(){this.cancelNextCallback()},n.getTimeouts=function(){var e,t,n=this.props.timeout,a=e=t=n;return null!=n&&"number"!=typeof n&&(a=n.exit,e=n.enter,t=void 0!==n.appear?n.appear:e),{exit:a,enter:e,appear:t}},n.updateStatus=function(e,t){var n;void 0===e&&(e=!1),null!==t?(this.cancelNextCallback(),n=i.default.findDOMNode(this),t===d?this.performEnter(n,e):this.performExit(n)):this.props.unmountOnExit&&this.state.status===u&&this.setState({status:s})},n.performEnter=function(e,t){var n=this,a=this.props.enter,r=this.context.transitionGroup?this.context.transitionGroup.isMounting:t,o=this.getTimeouts(),i=r?o.appear:o.enter;t||a?(this.props.onEnter(e,r),this.safeSetState({status:d},function(){n.props.onEntering(e,r),n.onTransitionEnd(e,i,function(){n.safeSetState({status:c},function(){n.props.onEntered(e,r)})})})):this.safeSetState({status:c},function(){n.props.onEntered(e)})},n.performExit=function(e){var t=this,n=this.props.exit,a=this.getTimeouts();n?(this.props.onExit(e),this.safeSetState({status:f},function(){t.props.onExiting(e),t.onTransitionEnd(e,a.exit,function(){t.safeSetState({status:u},function(){t.props.onExited(e)})})})):this.safeSetState({status:u},function(){t.props.onExited(e)})},n.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},n.safeSetState=function(e,t){t=this.setNextCallback(t),this.setState(e,t)},n.setNextCallback=function(t){var n=this,a=!0;return this.nextCallback=function(e){a&&(a=!1,n.nextCallback=null,t(e))},this.nextCallback.cancel=function(){a=!1},this.nextCallback},n.onTransitionEnd=function(e,t,n){this.setNextCallback(n);n=null==t&&!this.props.addEndListener;!e||n?setTimeout(this.nextCallback,0):(this.props.addEndListener&&this.props.addEndListener(e,this.nextCallback),null!=t&&setTimeout(this.nextCallback,t))},n.render=function(){var e=this.state.status;if(e===s)return null;var t=this.props,n=t.children,t=function(e,t){if(null==e)return{};for(var n,a={},r=Object.keys(e),o=0;o<r.length;o++)n=r[o],0<=t.indexOf(n)||(a[n]=e[n]);return a}(t,["children"]);if(delete t.in,delete t.mountOnEnter,delete t.unmountOnExit,delete t.appear,delete t.enter,delete t.exit,delete t.timeout,delete t.addEndListener,delete t.onEnter,delete t.onEntering,delete t.onEntered,delete t.onExit,delete t.onExiting,delete t.onExited,"function"==typeof n)return n(e,t);e=o.default.Children.only(n);return o.default.cloneElement(e,t)},t}(o.default.Component));function p(){}n.contextTypes={transitionGroup:a.object},n.childContextTypes={transitionGroup:function(){}},n.propTypes={},n.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:p,onEntering:p,onEntered:p,onExit:p,onExiting:p,onExited:p},n.UNMOUNTED=0,n.EXITED=1,n.ENTERING=2,n.ENTERED=3,n.EXITING=4;a=(0,r.polyfill)(n);t.default=a},function(e,t,n){"use strict";t.__esModule=!0,t.classNamesShape=t.timeoutsShape=void 0;(n=n(3))&&n.__esModule;t.timeoutsShape=null;t.classNamesShape=null},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=l(n(3)),r=l(n(0)),o=n(30),i=n(524);function l(e){return e&&e.__esModule?e:{default:e}}function s(){return(s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,a=arguments[t];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n])}return e}).apply(this,arguments)}function u(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var d=Object.values||function(t){return Object.keys(t).map(function(e){return t[e]})},n=function(n){var e;function t(e,t){e=n.call(this,e,t)||this,t=e.handleExited.bind(u(u(e)));return e.state={handleExited:t,firstRender:!0},e}e=n,(a=t).prototype=Object.create(e.prototype),(a.prototype.constructor=a).__proto__=e;var a=t.prototype;return a.getChildContext=function(){return{transitionGroup:{isMounting:!this.appeared}}},a.componentDidMount=function(){this.appeared=!0,this.mounted=!0},a.componentWillUnmount=function(){this.mounted=!1},t.getDerivedStateFromProps=function(e,t){var n=t.children,a=t.handleExited;return{children:t.firstRender?(0,i.getInitialChildMapping)(e,a):(0,i.getNextChildMapping)(e,n,a),firstRender:!1}},a.handleExited=function(t,e){var n=(0,i.getChildMapping)(this.props.children);t.key in n||(t.props.onExited&&t.props.onExited(e),this.mounted&&this.setState(function(e){e=s({},e.children);return delete e[t.key],{children:e}}))},a.render=function(){var e=this.props,t=e.component,n=e.childFactory,e=function(e,t){if(null==e)return{};for(var n,a={},r=Object.keys(e),o=0;o<r.length;o++)n=r[o],0<=t.indexOf(n)||(a[n]=e[n]);return a}(e,["component","childFactory"]),n=d(this.state.children).map(n);return delete e.appear,delete e.enter,delete e.exit,null===t?n:r.default.createElement(t,e,n)},t}(r.default.Component),a=(n.childContextTypes={transitionGroup:a.default.object.isRequired},n.propTypes={},n.defaultProps={component:"div",childFactory:function(e){return e}},(0,o.polyfill)(n));t.default=a,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a,L=p(n(2)),r=p(n(4)),o=p(n(6)),i=p(n(7)),T=n(0),D=p(T),l=n(23),s=p(n(3)),O=p(n(13)),u=n(30),d=n(11),c=p(n(529)),N=p(n(349)),P=p(n(350)),f=p(n(125));function p(e){return e&&e.__esModule?e:{default:e}}function h(e,t){for(var n=window.getComputedStyle(e),a="",r=0;r<b.length&&!(a=n.getPropertyValue(b[r]+t));r++);return a}var m,g=d.focus.saveLastFocusNode,y=d.focus.getFocusNodeList,v=d.focus.backLastFocusNode,j=d.func.makeChain,n=d.func.noop,_=d.func.bindCtx,b=["-webkit-","-moz-","-o-","ms-",""],w=[],s=(m=T.Component,(0,i.default)(M,m),M.getDerivedStateFromProps=function(e,t){var n=!t.visible&&e.visible,a=t.visible&&!e.visible,r={willOpen:n,willClose:a};return n?e.beforeOpen&&e.beforeOpen():a&&e.beforeClose&&e.beforeClose(),!e.animation&&!1!==e.animation||(r.animation=e.animation),!1!==e.animation&&d.support.animation?n?(r.visible=!0,r.status="mounting"):a&&(r.status="leaving"):"visible"in e&&e.visible!==t.visible&&(r.visible=e.visible),r},M.prototype.componentDidMount=function(){this.state.willOpen?this.beforeOpen():this.state.willClose&&this.beforeClose(),this.state.visible&&(this.doAnimation(!0,!1),this._isMounted=!0),this.addDocumentEvents(),c.default.addOverlay(this)},M.prototype.componentDidUpdate=function(e){this.state.willOpen?this.beforeOpen():this.state.willClose&&this.beforeClose(),!this._isMounted&&this.props.visible&&(this._isMounted=!0),this.props.align!==e.align&&(this.lastAlign=e.align);var t=!e.visible&&this.props.visible,e=e.visible&&!this.props.visible;(t||e)&&this.doAnimation(t,e)},M.prototype.componentWillUnmount=function(){this._isDestroyed=!0,this._isMounted=!1,c.default.removeOverlay(this),this.removeDocumentEvents(),this.focusTimeout&&clearTimeout(this.focusTimeout),this._animation&&(this._animation.off(),this._animation=null),this.beforeClose()},M.prototype.doAnimation=function(e,t){var n=this;this.state.animation&&d.support.animation?(e?this.onEntering():t&&this.onLeaving(),this.addAnimationEvents()):(e?setTimeout(function(){n.props.onOpen(),d.dom.addClass(n.getWrapperNode(),"opened"),c.default.addOverlay(n),n.props.afterOpen()}):t&&(this.props.onClose(),d.dom.removeClass(this.getWrapperNode(),"opened"),c.default.removeOverlay(this),this.props.afterClose()),this.setFocusNode())},M.prototype.getAnimation=function(e){return!1!==e.animation&&(e.animation||this.getAnimationByAlign(e.align))},M.prototype.getAnimationByAlign=function(e){switch(e[0]){case"t":return{in:"expandInDown fadeInDownSmall",out:"expandOutUp fadeOutUpSmall"};case"b":return{in:"fadeInUp",out:"fadeOutDown"};default:return{in:"expandInDown fadeInDownSmall",out:"expandOutUp fadeOutUpSmall"}}},M.prototype.addAnimationEvents=function(){var n=this;setTimeout(function(){var e,t=n.getContentNode();t&&(e=(0,d.guid)(),n._animation=d.events.on(t,d.support.animation.end,n.handleAnimateEnd.bind(n,e)),(t=(parseFloat(h(t,"animation-delay"))||0)+(parseFloat(h(t,"animation-duration"))||0))&&(n.timeoutMap[e]=setTimeout(function(){n.handleAnimateEnd(e)},1e3*t+200)))})},M.prototype.handlePosition=function(e){e=e.align.join(" ");"animation"in this.props||!this.props.needAdjust||this.lastAlign===e||this.setState({animation:this.getAnimationByAlign(e)}),"mounting"===this.state.status&&this.setState({status:"entering"}),this.lastAlign=e},M.prototype.handleAnimateEnd=function(e){this.timeoutMap[e]&&clearTimeout(this.timeoutMap[e]),delete this.timeoutMap[e],this._animation&&(this._animation.off(),this._animation=null),this._isMounted&&("leaving"===this.state.status?(this.setState({visible:!1,status:"none"}),this.onLeaved()):"entering"!==this.state.status&&"mounting"!==this.state.status||(this.setState({status:"none"}),this.onEntered()))},M.prototype.onEntering=function(){var t=this;this._isDestroyed||setTimeout(function(){var e=t.getWrapperNode();d.dom.addClass(e,"opened"),t.props.onOpen()})},M.prototype.onLeaving=function(){var e=this.getWrapperNode();d.dom.removeClass(e,"opened"),this.props.onClose()},M.prototype.onEntered=function(){c.default.addOverlay(this),this.setFocusNode(),this.props.afterOpen()},M.prototype.onLeaved=function(){c.default.removeOverlay(this),this.setFocusNode(),this.props.afterClose()},M.prototype.beforeOpen=function(){var t,e,n,a,r;this.props.disableScroll&&(a=this.props,r=(0,f.default)(a.target),r=(a=(t=(0,f.default)(a.container,r)||document.body).style).overflow,a=a.paddingRight,0===(e=w.find(function(e){return e.containerNode===t})||{containerNode:t,count:0}).count&&"hidden"!==r?(n={overflow:"hidden"},e.overflow=r,d.dom.hasScroll(t)&&(e.paddingRight=a,n.paddingRight=d.dom.getStyle(t,"paddingRight")+d.dom.scrollbar().width+"px"),d.dom.setStyle(t,n),w.push(e),e.count++):e.count&&e.count++,this._containerNode=t)},M.prototype.beforeClose=function(){var e,t,n,a,r=this;this.props.disableScroll&&(-1!==(e=w.findIndex(function(e){return e.containerNode===r._containerNode}))&&(a=(t=w[e]).overflow,n=t.paddingRight,1===t.count&&this._containerNode&&"hidden"===this._containerNode.style.overflow&&(a={overflow:a},void 0!==n&&(a.paddingRight=n),d.dom.setStyle(this._containerNode,a)),t.count--,0===t.count&&w.splice(e,1)),this._containerNode=void 0)},M.prototype.setFocusNode=function(){var t=this;this.props.autoFocus&&(this.state.visible&&!this._hasFocused?(g(),this.focusTimeout=setTimeout(function(){var e=t.getContentNode();e&&((e=y(e)).length&&e[0].focus(),t._hasFocused=!0)},100)):!this.state.visible&&this._hasFocused&&(v(),this._hasFocused=!1))},M.prototype.getContent=function(){return this.contentRef},M.prototype.getContentNode=function(){try{return(0,l.findDOMNode)(this.contentRef)}catch(e){return null}},M.prototype.getWrapperNode=function(){return this.gatewayRef?this.gatewayRef.getChildNode():null},M.prototype.addDocumentEvents=function(){var e=this.props.useCapture;this.props.canCloseByEsc&&(this._keydownEvents=d.events.on(document,"keydown",this.handleDocumentKeyDown,e)),this.props.canCloseByOutSideClick&&(this._clickEvents=d.events.on(document,"click",this.handleDocumentClick,e),this._touchEvents=d.events.on(document,"touchend",this.handleDocumentClick,e))},M.prototype.removeDocumentEvents=function(){var t=this;["_keydownEvents","_clickEvents","_touchEvents"].forEach(function(e){t[e]&&(t[e].off(),t[e]=null)})},M.prototype.handleDocumentKeyDown=function(e){this.state.visible&&e.keyCode===d.KEYCODE.ESC&&c.default.isCurrentOverlay(this)&&this.props.onRequestClose("keyboard",e)},M.prototype.isInShadowDOM=function(e){return!!e.getRootNode&&11===e.getRootNode().nodeType},M.prototype.getEventPath=function(e){return e.path||e.composedPath&&e.composedPath()||this.composedPath(e.target)},M.prototype.composedPath=function(e){for(var t=[];e;){if(t.push(e),"HTML"===e.tagName)return t.push(document),t.push(window),t;e=e.parentElement}},M.prototype.matchInShadowDOM=function(e,t){return!!this.isInShadowDOM(e)&&(e===(t=this.getEventPath(t))[0]||e.contains(t[0]))},M.prototype.handleDocumentClick=function(e){var t=this;if(this.state.visible){var n=this.props.safeNode,a=Array.isArray(n)?[].concat(n):[n];a.unshift(function(){return t.getWrapperNode()});for(var r=0;r<a.length;r++){var o=(0,f.default)(a[r],this.props);if(o&&(o===e.target||o.contains(e.target)||this.matchInShadowDOM(o,e)||e.target!==document&&!document.documentElement.contains(e.target)))return}this.props.onRequestClose("docClick",e)}},M.prototype.handleMaskClick=function(e){e.currentTarget===e.target&&this.props.canCloseByMask&&this.props.onRequestClose("maskClick",e)},M.prototype.getInstance=function(){return this},M.prototype.render=function(){var e=this.props,t=e.prefix,n=e.className,a=e.style,r=e.children,o=e.target,i=e.align,l=e.offset,s=e.container,u=e.hasMask,d=e.needAdjust,c=e.autoFit,f=e.beforePosition,p=e.onPosition,h=e.wrapperStyle,m=e.rtl,g=e.shouldUpdatePosition,y=e.cache,v=e.wrapperClassName,_=e.onMaskMouseEnter,b=e.onMaskMouseLeave,w=e.maskClass,M=e.isChildrenInMask,e=e.pinFollowBaseElementWhenFixed,k=this.state,S=k.visible,E=k.status,k=k.animation;if(r=S||y&&this._isMounted?r:null){var x=T.Children.only(r),k=("function"!=typeof x.type||x.type.prototype instanceof T.Component||(x=D.default.createElement("div",{role:"none"},x)),(0,O.default)(((C={})[t+"overlay-inner"]=!0,C[k.in]="entering"===E||"mounting"===E,C[k.out]="leaving"===E,C[x.props.className]=!!x.props.className,C[n]=!!n,C)));if("string"==typeof x.ref)throw new Error("Can not set ref by string in Overlay, use function instead.");r=D.default.cloneElement(x,{className:k,style:(0,L.default)({},x.props.style,a),ref:j(this.saveContentRef,x.ref),"aria-hidden":!S&&y&&this._isMounted,onClick:j(this.props.onClick,x.props.onClick),onTouchEnd:j(this.props.onTouchEnd,x.props.onTouchEnd)}),i&&(n="leaving"!==E&&g,r=D.default.createElement(P.default,{children:r,target:o,align:i,offset:l,autoFit:c,container:s,needAdjust:d,pinFollowBaseElementWhenFixed:e,beforePosition:f,onPosition:j(this.handlePosition,p),shouldUpdatePosition:n,rtl:m}));var C=(0,O.default)([t+"overlay-wrapper",v]),k=(0,L.default)({},{display:S?"":"none"},h),y=(0,O.default)(((a={})[t+"overlay-backdrop"]=!0,a[w]=!!w,a));r=D.default.createElement("div",{className:C,style:k,dir:m?"rtl":void 0},u?D.default.createElement("div",{className:y,onClick:this.handleMaskClick,onMouseEnter:_,onMouseLeave:b,dir:m?"rtl":void 0},M&&r):null,!M&&r)}return D.default.createElement(N.default,(0,L.default)({container:s,target:o,children:r},{ref:this.saveGatewayRef}))},a=i=M,i.propTypes={prefix:s.default.string,pure:s.default.bool,rtl:s.default.bool,className:s.default.string,style:s.default.object,children:s.default.any,visible:s.default.bool,onRequestClose:s.default.func,target:s.default.any,align:s.default.string,offset:s.default.array,container:s.default.any,hasMask:s.default.bool,canCloseByEsc:s.default.bool,canCloseByOutSideClick:s.default.bool,canCloseByMask:s.default.bool,beforeOpen:s.default.func,onOpen:s.default.func,afterOpen:s.default.func,beforeClose:s.default.func,onClose:s.default.func,afterClose:s.default.func,beforePosition:s.default.func,onPosition:s.default.func,shouldUpdatePosition:s.default.bool,autoFocus:s.default.bool,needAdjust:s.default.bool,disableScroll:s.default.bool,useCapture:s.default.bool,cache:s.default.bool,safeNode:s.default.any,wrapperClassName:s.default.string,wrapperStyle:s.default.object,animation:s.default.oneOfType([s.default.object,s.default.bool]),onMaskMouseEnter:s.default.func,onMaskMouseLeave:s.default.func,onClick:s.default.func,maskClass:s.default.string,isChildrenInMask:s.default.bool,pinFollowBaseElementWhenFixed:s.default.bool,v2:s.default.bool,points:s.default.array},i.defaultProps={prefix:"next-",pure:!1,visible:!1,onRequestClose:n,target:P.default.VIEWPORT,align:"tl bl",offset:[0,0],hasMask:!1,canCloseByEsc:!0,canCloseByOutSideClick:!0,canCloseByMask:!0,beforeOpen:n,onOpen:n,afterOpen:n,beforeClose:n,onClose:n,afterClose:n,beforePosition:n,onPosition:n,onMaskMouseEnter:n,onMaskMouseLeave:n,shouldUpdatePosition:!1,autoFocus:!1,needAdjust:!0,disableScroll:!1,cache:!1,isChildrenInMask:!1,onTouchEnd:function(e){e.stopPropagation()},onClick:function(e){return e.stopPropagation()},maskClass:"",useCapture:!0},a);function M(e){(0,r.default)(this,M);var t=(0,o.default)(this,m.call(this,e));return t.saveContentRef=function(e){t.contentRef=e},t.saveGatewayRef=function(e){t.gatewayRef=e},t.lastAlign=e.align,_(t,["handlePosition","handleAnimateEnd","handleDocumentKeyDown","handleDocumentClick","handleMaskClick","beforeOpen","beforeClose"]),t.state={visible:!1,status:"none",animation:t.getAnimation(e),willOpen:!1,willClose:!1},t.timeoutMap={},t}s.displayName="Overlay",t.default=(0,u.polyfill)(s),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=p(n(4)),r=p(n(6)),o=p(n(7)),i=n(0),l=p(i),s=n(23),u=p(n(3)),d=n(30),c=n(11),f=p(n(125));function p(e){return e&&e.__esModule?e:{default:e}}var h,m=c.func.makeChain,o=(h=i.Component,(0,o.default)(g,h),g.prototype.componentDidMount=function(){this.updateContainer()},g.prototype.componentDidUpdate=function(){this.updateContainer()},g.prototype.getChildNode=function(){try{return(0,s.findDOMNode)(this.child)}catch(e){return null}},g.prototype.render=function(){var e=this.state.containerNode;if(!e)return null;var t=this.props.children,t=t?i.Children.only(t):null;if(!t)return null;if("string"==typeof t.ref)throw new Error("Can not set ref by string in Gateway, use function instead.");return t=l.default.cloneElement(t,{ref:m(this.saveChildRef,t.ref)}),(0,s.createPortal)(t,e)},c=n=g,n.propTypes={children:u.default.node,container:u.default.any,target:u.default.any},n.defaultProps={container:function(){return document.body}},c);function g(e){(0,a.default)(this,g);var n=(0,r.default)(this,h.call(this,e));return n.updateContainer=function(){t=n.props,e=(0,f.default)(t.target);var e,t=(0,f.default)(t.container,e);t!==n.state.containerNode&&n.setState({containerNode:t})},n.saveChildRef=function(e){n.child=e},n.state={containerNode:null},n}o.displayName="Gateway",t.default=(0,d.polyfill)(o),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a,r=h(n(4)),o=h(n(6)),i=h(n(7)),l=n(0),s=n(23),u=h(n(3)),d=h(n(133)),c=n(11),f=h(n(530)),p=h(n(125));function h(e){return e&&e.__esModule?e:{default:e}}var m,n=c.func.noop,g=c.func.bindCtx,y=c.dom.getStyle,v=f.default.place,u=(m=l.Component,(0,i.default)(_,m),_.prototype.componentDidMount=function(){this.setPosition(),this.props.needListenResize&&(c.events.on(window,"resize",this.handleResize),this.observe())},_.prototype.componentDidUpdate=function(e){var t=this.props;("align"in t&&t.align!==e.align||t.shouldUpdatePosition)&&(this.shouldUpdatePosition=!0),this.shouldUpdatePosition&&(clearTimeout(this.resizeTimeout),this.setPosition(),this.shouldUpdatePosition=!1)},_.prototype.componentWillUnmount=function(){this.props.needListenResize&&(c.events.off(window,"resize",this.handleResize),this.unobserve()),clearTimeout(this.resizeTimeout)},_.prototype.setPosition=function(){var e=this.props,t=e.align,n=e.offset,a=e.beforePosition,r=e.onPosition,o=e.needAdjust,i=e.container,l=e.rtl,s=e.pinFollowBaseElementWhenFixed,e=e.autoFit,a=(a(),this.getContentNode()),u=this.getTargetNode();a&&u&&(u=v({pinElement:a,baseElement:u,pinFollowBaseElementWhenFixed:s,align:t,offset:n,autoFit:e,container:i,needAdjust:o,isRtl:l}),s=y(a,"top"),t=y(a,"left"),r({align:u.split(" "),top:s,left:t},a))},_.prototype.getContentNode=function(){try{return(0,s.findDOMNode)(this)}catch(e){return null}},_.prototype.getTargetNode=function(){var e=this.props.target;return e===f.default.VIEWPORT?f.default.VIEWPORT:(0,p.default)(e,this.props)},_.prototype.handleResize=function(){var e=this;clearTimeout(this.resizeTimeout),this.resizeTimeout=setTimeout(function(){e.setPosition()},200)},_.prototype.render=function(){return l.Children.only(this.props.children)},a=i=_,i.VIEWPORT=f.default.VIEWPORT,i.propTypes={children:u.default.node,target:u.default.any,container:u.default.any,align:u.default.oneOfType([u.default.string,u.default.bool]),offset:u.default.array,beforePosition:u.default.func,onPosition:u.default.func,needAdjust:u.default.bool,autoFit:u.default.bool,needListenResize:u.default.bool,shouldUpdatePosition:u.default.bool,rtl:u.default.bool,pinFollowBaseElementWhenFixed:u.default.bool},i.defaultProps={align:"tl bl",offset:[0,0],beforePosition:n,onPosition:n,needAdjust:!0,autoFit:!1,needListenResize:!0,shouldUpdatePosition:!1,rtl:!1},a);function _(e){(0,r.default)(this,_);var t=(0,o.default)(this,m.call(this,e));return t.observe=function(){var e=t.getContentNode();e&&t.resizeObserver.observe(e)},t.unobserve=function(){t.resizeObserver.disconnect()},g(t,["handleResize"]),t.resizeObserver=new d.default(t.handleResize),t}u.displayName="Position",t.default=u,e.exports=t.default},function(e,t){var n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){function a(e,t){for(var n=0;n<t.length;n++){var a=t[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}}e.exports=function(e,t,n){return t&&a(e.prototype,t),n&&a(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){var n,a,e=e.exports={};function r(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}try{n="function"==typeof setTimeout?setTimeout:r}catch(e){n=r}try{a="function"==typeof clearTimeout?clearTimeout:o}catch(e){a=o}function i(t){if(n===setTimeout)return setTimeout(t,0);if((n===r||!n)&&setTimeout)return(n=setTimeout)(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}var l,s=[],u=!1,d=-1;function c(){u&&l&&(u=!1,l.length?s=l.concat(s):d=-1,s.length&&f())}function f(){if(!u){for(var e=i(c),t=(u=!0,s.length);t;){for(l=s,s=[];++d<t;)l&&l[d].run();d=-1,t=s.length}l=null,u=!1,!function(t){if(a===clearTimeout)return clearTimeout(t);if((a===o||!a)&&clearTimeout)return(a=clearTimeout)(t);try{a(t)}catch(e){try{return a.call(null,t)}catch(e){return a.call(this,t)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function h(){}e.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];s.push(new p(e,t)),1!==s.length||u||i(f)},p.prototype.run=function(){this.fun.apply(null,this.array)},e.title="browser",e.browser=!0,e.env={},e.argv=[],e.version="",e.versions={},e.on=h,e.addListener=h,e.once=h,e.off=h,e.removeListener=h,e.removeAllListeners=h,e.emit=h,e.prependListener=h,e.prependOnceListener=h,e.listeners=function(e){return[]},e.binding=function(e){throw new Error("process.binding is not supported")},e.cwd=function(){return"/"},e.chdir=function(e){throw new Error("process.chdir is not supported")},e.umask=function(){return 0}},function(e,t,n){"use strict";t.__esModule=!0;var a=y(n(4)),r=y(n(6)),o=y(n(7)),d=y(n(2)),i=y(n(38)),l=n(0),c=y(l),s=y(n(3)),f=y(n(13)),u=y(n(8)),p=y(n(568)),h=n(11),m=n(356),g=y(m),n=y(n(570));function y(e){return e&&e.__esModule?e:{default:e}}function v(e,t,n){var a=c.default.Children.toArray(e);return e?a.map(function(e){return M(e)?v(e.props.children,t,n):c.default.isValidElement(e)&&-1<["function","object"].indexOf((0,i.default)(e.type))&&-1<["form_item","responsive_grid_cell"].indexOf(e.type._typeMark)?c.default.cloneElement(e,{style:(0,d.default)({},(0,m.getGridChildProps)(e.props,t,n),e.props.style||{})}):e}):null}var _,b=h.env.ieVersion,w=h.obj.pickOthers,M=h.obj.isReactFragment,o=(_=l.Component,(0,o.default)(k,_),k.prototype.render=function(){var e=this.props,t=e.prefix,n=e.component,a=e.style,r=e.className,o=e.children,i=e.device,l=e.rows,s=e.columns,u=e.gap,l={rows:l,columns:s,gap:u,device:i,rowSpan:e.rowSpan,colSpan:e.colSpan,component:e.component,dense:e.dense},s=w(Object.keys(k.propTypes),this.props),e=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};return(0,d.default)({},(0,g.default)((0,d.default)({display:"grid"},arguments[1])),e)}(a,l),l=(0,f.default)(((a={})[t+"responsive-grid"]=!0,a[t+"responsive-grid-ie"]=b,a),r);return b?c.default.createElement(p.default,(0,d.default)({},this.props,{direction:"row",wrap:!0,spacing:u,children:v(o,i,u)})):c.default.createElement(n,(0,d.default)({style:e,className:l},s),v(o,i,u))},l=h=k,h._typeMark="responsive_grid",h.propTypes={prefix:s.default.string,className:s.default.any,device:s.default.oneOf(["phone","tablet","desktop"]),rows:s.default.oneOfType([s.default.number,s.default.string]),columns:s.default.oneOfType([s.default.number,s.default.string]),gap:s.default.oneOfType([s.default.arrayOf(s.default.number),s.default.number]),component:s.default.elementType,dense:s.default.bool,style:s.default.object},h.defaultProps={prefix:"next-",component:"div",device:"desktop",dense:!1},l);function k(){return(0,a.default)(this,k),(0,r.default)(this,_.apply(this,arguments))}o.displayName="ResponsiveGrid",o.Cell=n.default,t.default=u.default.config(o),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.getGridChildProps=t.filterHelperStyle=t.filterOuterStyle=t.filterInnerStyle=t.getSpacingHelperMargin=t.getSpacingMargin=t.getChildMargin=t.getMargin=void 0;var u=a(n(38)),M=a(n(2)),k=n(569);function a(e){return e&&e.__esModule?e:{default:e}}function S(n){var e=(t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{isNegative:!1,half:!1}).isNegative,t=t.half;if(!n)return{};var a={},r=(e?-1:1)*(t?.5:1),o=void 0;return["marginTop","marginRight","marginBottom","marginLeft"].forEach(function(e,t){if(Array.isArray(n))switch(n.length){case 1:o=r*(n[0]||0);break;case 2:o=r*(n[t]||n[t-2]||0);break;case 3:o=r*(2===t?n[2]:n[t]||n[t-2]||0);break;default:o=r*(n[t]||0)}else o=r*n;a[e]=o}),a}function E(e){return isNaN(e)&&"string"!=typeof e?e:"repeat("+e+", minmax(0,1fr))"}function x(e,t,n){var a=void 0===(a=e.row)?"initial":a,r=void 0===(r=e.col)?"initial":r,o=void 0===(o=e.rowSpan)?1:o,i=void 0===(e=e.colSpan)?1:e,l=12,s="object"===(void 0===i?"undefined":(0,u.default)(i))&&"desktop"in i?i.desktop:i,e=(["tablet","phone"].forEach(function(e){if(e===t)if("object"===(void 0===i?"undefined":(0,u.default)(i))&&t in i)s=i[t];else switch(e){case"tablet":l=8,s=5<i?8:2<i?4:2;break;case"phone":l=4,s=2<i?4:2}}),n),n=(Array.isArray(n)&&(e=n[1]),!d||1===o&&1===i?{}:{display:"inline-block",width:e?"calc("+s/l*100+"% - "+e+"px)":s/l*100+"%"});return(0,k.filterUndefinedValue)((0,M.default)({gridRowStart:a,gridRowEnd:"span "+o,gridColumnStart:r,gridColumnEnd:"span "+s},n))}function C(e){var t=e.alignSelf,e=e.flex;return(0,k.filterUndefinedValue)((0,M.default)({alignSelf:t},function(e){if(!Array.isArray(e))return{flex:e};var n=["flexGrow","flexShrink","flexBasis"],a={};return e.forEach(function(e,t){a[n[t]]=e}),a}(e)))}var d=n(11).env.ieVersion,r=["margin","marginTop","marginLeft","marginRight","marginBottom"],o=["flexDirection","flexWrap","alignContent","alignItems","display"];t.default=function(e){var t=e.device,n=e.display,a=e.gap,r=e.direction,o=e.dense,i=e.rowSpan,l=e.colSpan,s=e.row,u=e.col,d=e.rows,c=e.columns,f=e.justify,p=e.align,h=e.alignSelf,m=e.wrap,g=e.flex,y=e.padding,v=e.margin,_=(0,M.default)({},function(n){if(!Array.isArray(n))return{padding:n};var a={},r=void 0;return["paddingTop","paddingRight","paddingBottom","paddingLeft"].forEach(function(e,t){switch(n.length){case 1:r=n[0]||0;break;case 2:r=n[t]||n[t-2]||0;break;case 3:r=2===t?n[2]:n[t]||n[t-2]||0;break;default:r=n[t]||0}a[e]=r}),a}(y)),b="auto";switch(t){case"phone":b=4;break;case"tablet":b=8;break;case"desktop":b=12}var w=isNaN(c)&&"string"!=typeof c?b:c;switch(n){case"grid":_=(0,M.default)({},function(e){if(!Array.isArray(e))return{gap:e};var n=["rowGap","columnGap"],a={};return e.forEach(function(e,t){a[n[t]]=e}),a}(a),{gridTemplateRows:E(d),gridTemplateColumns:E(w),gridAutoFlow:""+(r||"")+(o&&" dense")},x({row:s,rowSpan:i,col:u,colSpan:l},t),_);break;case"flex":_=(0,M.default)({msFlexDirection:r,flexDirection:r,msFlexWrap:m?"wrap":"none",flexWrap:m?"wrap":"nowrap",msFlexPack:f,justifyContent:f,msFlexAlign:p,alignItems:p},S(v),C({alignSelf:h,flex:g}),_)}return(0,k.filterUndefinedValue)(_)},t.getMargin=S,t.getChildMargin=function(e){return S(e,{half:!0})},t.getSpacingMargin=function(e){return S(e,{half:!0})},t.getSpacingHelperMargin=function(e){return S(e,{isNegative:!0,half:!0})},t.filterInnerStyle=function(t){var n={};return o.forEach(function(e){n[e]=t[e]}),(0,k.filterUndefinedValue)(n)},t.filterOuterStyle=function(t){var n={};return[].concat(o).forEach(function(e){n[e]=t[e]}),(0,k.filterUndefinedValue)((0,k.stripObject)(t,n))},t.filterHelperStyle=function(t){var n={};return r.forEach(function(e){n[e]=t[e]}),(0,k.filterUndefinedValue)((0,M.default)({},n,{overflow:"hidden"}))},t.getGridChildProps=x},function(e,t,n){"use strict";t.__esModule=!0;var a,c=s(n(2)),f=s(n(12)),o=s(n(4)),i=s(n(6)),r=s(n(7)),p=s(n(0)),l=s(n(3)),h=s(n(13)),n=s(n(8));function s(e){return e&&e.__esModule?e:{default:e}}u=p.default.Component,(0,r.default)(d,u),d.prototype.render=function(){var e=this.props,t=e.children,n=e.name,a=e.prefix,r=e.style,o=e.className,i=e.field,e=(0,f.default)(e,["children","name","prefix","style","className","field"]);if(t&&"function"!=typeof t)return p.default.createElement("div",{className:a+"form-item-help"},t);i=this.context._formField||i;if(!i||!n)return null;var l,s="string"==typeof n,u=s?[n]:n,d=[],u=(u.length&&(l=i.getErrors(u),Object.keys(l).forEach(function(e){l[e]&&d.push(l[e])})),null);if(!(u="function"==typeof t?t(d,s?i.getState(n):void 0):this.itemRender(d)))return null;s=(0,h.default)(((t={})[a+"form-item-help"]=!0,t[o]=o,t));return p.default.createElement("div",(0,c.default)({},e,{className:s,style:r}),u)},a=r=d,r.propTypes={name:l.default.oneOfType([l.default.string,l.default.array]),field:l.default.object,style:l.default.object,className:l.default.string,children:l.default.oneOfType([l.default.node,l.default.func]),prefix:l.default.string},r.defaultProps={prefix:"next-"},r.contextTypes={_formField:l.default.object},r._typeMark="form_error";var u,l=a;function d(){var e,t;(0,o.default)(this,d);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,u.call.apply(u,[this].concat(a)))).itemRender=function(e){return e.length?e:null},(0,i.default)(t,e)}l.displayName="Error",t.default=n.default.config(l),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var g=d(n(12)),v=d(n(2)),a=d(n(4)),r=d(n(6)),o=d(n(7)),i=n(0),_=d(i),l=d(n(3)),y=d(n(62)),s=d(n(44)),u=n(11),b=d(n(164));function d(e){return e&&e.__esModule?e:{default:e}}function w(){}var c=u.focus.limitTabRange,f=u.func.bindCtx,M=u.obj.pickOthers,p=u.dom.getStyle,h=u.dom.setStyle;function m(e,t){var n=p(e,"boxSizing");return u.env.ieVersion&&-1!==["width","height"].indexOf(t)&&"border-box"===n?parseFloat(e.getBoundingClientRect()[t].toFixed(1)):p(e,t)}k=i.Component,(0,o.default)(S,k),S.prototype.componentDidMount=function(){u.events.on(document,"keydown",this.onKeyDown),this.useCSSToPosition()||this.adjustPosition()},S.prototype.componentWillUnmount=function(){u.events.off(document,"keydown",this.onKeyDown)},S.prototype.useCSSToPosition=function(){var e=this.props,t=e.align,e=e.isFullScreen;return"cc cc"===t&&e},S.prototype.onKeyDown=function(e){var t=this.getInnerNode();t&&c(t,e)},S.prototype.beforePosition=function(){var e,t;this.props.visible&&this.overlay&&((e=this.getInner())&&(t=this.getInnerNode(),this._lastDialogHeight!==m(t,"height")&&this.revertSize(e.bodyNode)))},S.prototype.adjustPosition=function(){var e,t,n,a,r;this.props.visible&&this.overlay&&((e=this.getInner())&&(t=this.getInnerNode(),(n=p(t,"top"))<(a=this.props.minMargin)&&h(t,"top",(n=a)+"px"),a=m(t,"height"),(r=window.innerHeight||document.documentElement.clientHeight)<a+2*n-1||this.props.height?this.adjustSize(e,t,Math.min(a,r-2*n)):this.revertSize(e.bodyNode),this._lastDialogHeight=a))},S.prototype.adjustSize=function(e,n,t){var a=e.headerNode,r=e.bodyNode,a=[a,e.footerNode].map(function(e){return e?m(e,"height"):0}),e=t-a[0]-a[1]-["padding-top","padding-bottom"].reduce(function(e,t){return e+p(n,t)},0);e<0&&(e=1),r&&(this.dialogBodyStyleMaxHeight=r.style.maxHeight,this.dialogBodyStyleOverflowY=r.style.overflowY,h(r,{"max-height":e+"px","overflow-y":"auto"}))},S.prototype.revertSize=function(e){h(e,{"max-height":this.dialogBodyStyleMaxHeight,"overflow-y":this.dialogBodyStyleOverflowY})},S.prototype.mapcloseableToConfig=function(r){return["esc","close","mask"].reduce(function(e,t){var n=t.charAt(0).toUpperCase()+t.substr(1),a="boolean"==typeof r?r:-1<r.split(",").indexOf(t);return"esc"===t||"mask"===t?e["canCloseBy"+n]=a:e["canCloseBy"+n+"Click"]=a,e},{})},S.prototype.getOverlayRef=function(e){this.overlay=e},S.prototype.getInner=function(){return this.overlay.getInstance().getContent()},S.prototype.getInnerNode=function(){return this.overlay.getInstance().getContentNode()},S.prototype.renderInner=function(e){var t=this.props,n=t.prefix,a=t.className,r=t.title,o=t.children,i=t.footer,l=t.footerAlign,s=t.footerActions,u=t.onOk,d=t.onCancel,c=t.okProps,f=t.cancelProps,p=t.onClose,h=t.locale,m=t.visible,g=t.rtl,t=t.height,y=M(Object.keys(S.propTypes),this.props);return _.default.createElement(b.default,(0,v.default)({prefix:n,className:a,title:r,footer:i,footerAlign:l,footerActions:s,onOk:m?u:w,onCancel:m?d:w,okProps:c,cancelProps:f,locale:h,closeable:e,rtl:g,onClose:p.bind(this,"closeClick"),height:t},y),o)},S.prototype.render=function(){var e=this.props,t=e.prefix,n=e.visible,a=e.hasMask,r=e.animation,o=e.autoFocus,i=e.closeable,l=e.closeMode,s=e.onClose,u=e.afterClose,d=e.shouldUpdatePosition,c=e.align,f=e.popupContainer,p=e.cache,h=e.overlayProps,e=e.rtl,m=this.useCSSToPosition(),l="closeMode"in this.props?Array.isArray(l)?l.join(","):l:i,i=this.mapcloseableToConfig(l),l=i.canCloseByCloseClick,i=(0,g.default)(i,["canCloseByCloseClick"]),f=(0,v.default)({disableScroll:!0,container:f,cache:p},h,{prefix:t,visible:n,animation:r,hasMask:a,autoFocus:o,afterClose:u},i,{canCloseByOutSideClick:!1,align:!m&&c,onRequestClose:s,needAdjust:!1,ref:this.getOverlayRef,rtl:e,maskClass:m?t+"dialog-container":"",isChildrenInMask:m&&a}),p=(m||(f.beforePosition=this.beforePosition,f.onPosition=this.adjustPosition,f.shouldUpdatePosition=d),this.renderInner(l));return _.default.createElement(y.default,f,m&&!a?_.default.createElement("div",{className:t+"dialog-container",dir:e?"rtl":void 0},p):p)},i=n=S,n.propTypes={prefix:l.default.string,pure:l.default.bool,rtl:l.default.bool,className:l.default.string,visible:l.default.bool,title:l.default.node,children:l.default.node,footer:l.default.oneOfType([l.default.bool,l.default.node]),footerAlign:l.default.oneOf(["left","center","right"]),footerActions:l.default.array,onOk:l.default.func,onCancel:l.default.func,okProps:l.default.object,cancelProps:l.default.object,closeMode:l.default.oneOfType([l.default.arrayOf(l.default.oneOf(["close","mask","esc"])),l.default.oneOf(["close","mask","esc"])]),cache:l.default.bool,afterClose:l.default.func,hasMask:l.default.bool,animation:l.default.oneOfType([l.default.object,l.default.bool]),autoFocus:l.default.bool,overlayProps:l.default.object,locale:l.default.object,popupContainer:l.default.any,height:l.default.oneOfType([l.default.string,l.default.number]),v2:l.default.bool,width:l.default.oneOfType([l.default.string,l.default.number]),top:l.default.number,bottom:l.default.number,closeIcon:l.default.node,centered:l.default.bool,overflowScroll:l.default.bool,closeable:l.default.oneOfType([l.default.string,l.default.bool]),onClose:l.default.func,align:l.default.oneOfType([l.default.string,l.default.bool]),isFullScreen:l.default.bool,shouldUpdatePosition:l.default.bool,minMargin:l.default.number},n.defaultProps={prefix:"next-",pure:!1,visible:!1,footerAlign:"right",footerActions:["ok","cancel"],onOk:w,onCancel:w,cache:!1,okProps:{},cancelProps:{},closeable:"esc,close",onClose:w,afterClose:w,centered:!1,hasMask:!0,animation:{in:"fadeInUp",out:"fadeOutUp"},autoFocus:!1,align:"cc cc",isFullScreen:!1,overflowScroll:!0,shouldUpdatePosition:!1,minMargin:40,bottom:40,overlayProps:{},locale:s.default.Dialog};var k,o=i;function S(e,t){(0,a.default)(this,S);e=(0,r.default)(this,k.call(this,e,t));return f(e,["onKeyDown","beforePosition","adjustPosition","getOverlayRef"]),e}o.displayName="Dialog",t.default=o,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var oe=r(n(2)),ie=r(n(12)),le=n(0),se=r(le),ue=r(n(23)),de=r(n(13)),a=r(n(183)),ce=r(n(164)),fe=r(n(79)),pe=r(n(44)),he=n(11),me=r(n(579));function r(e){return e&&e.__esModule?e:{default:e}}var ge=a.default.OverlayContext,ye=he.func.noop;t.default=function(e){if(!le.useState||!le.useRef||!le.useEffect)return he.log.warning("need react version > 16.8.0"),null;function t(e){j.current=e,ne({})}function a(e,t){N(te,null),"function"==typeof S&&S(e,t)}function n(e){27===e.keyCode&&Y&&!P.current.size&&a("esc",e)}function r(){j.current||(t(!0),he.dom.setStyle(D.current,"display","none"),me.default.unlock(document.body,ee.current),s&&O.current&&(O.current.focus(),O.current=null),I())}var o=e.prefix,o=void 0===o?"next-":o,i=e.afterClose,I=void 0===i?ye:i,i=e.hasMask,l=void 0===i||i,i=e.autoFocus,s=void 0!==i&&i,i=e.className,R=e.title,A=e.children,H=e.footer,F=e.footerAlign,z=e.footerActions,u=e.onOk,u=void 0===u?ye:u,d=e.onCancel,W=e.okProps,V=e.cancelProps,c=e.locale,c=void 0===c?pe.default.Dialog:c,B=e.rtl,f=e.visible,p=e.closeMode,p=void 0===p?["close","esc"]:p,U=e.closeIcon,h=e.animation,h=void 0===h?{in:"fadeInUp",out:"fadeOutUp"}:h,m=e.cache,K=e.wrapperStyle,g=e.popupContainer,y=void 0===g?document.body:g,g=e.dialogRender,v=e.centered,_=e.top,_=void 0===_?v?40:100:_,b=e.bottom,b=void 0===b?40:b,w=e.width,w=void 0===w?520:w,G=e.height,M=e.isFullScreen,k=e.overflowScroll,M=void 0===k?!M:k,k=e.minMargin,S=e.onClose,q=e.style,E=(0,ie.default)(e,["prefix","afterClose","hasMask","autoFocus","className","title","children","footer","footerAlign","footerActions","onOk","onCancel","okProps","cancelProps","locale","rtl","visible","closeMode","closeIcon","animation","cache","wrapperStyle","popupContainer","dialogRender","centered","top","bottom","width","height","isFullScreen","overflowScroll","minMargin","onClose","style"]),x=("isFullScreen"in e&&he.log.deprecated("isFullScreen","overflowScroll","Dialog v2"),"minMargin"in e&&he.log.deprecated("minMargin","top/bottom","Dialog v2"),(0,le.useState)(f||!1)),$=x[0],J=x[1],x=(0,le.useState)(f),C=x[0],X=x[1],Q="string"==typeof y?function(){return document.getElementById(y)}:"function"!=typeof y?function(){return y}:y,x=(0,le.useState)(Q()),L=x[0],Z=x[1],T=(0,le.useRef)(null),D=(0,le.useRef)(null),O=(0,le.useRef)(null),ee=(0,le.useRef)(null),te=(0,le.useState)((0,he.guid)())[0],x=(0,le.useContext)(ge),N=x.setVisibleOverlayToParent,x=(0,ie.default)(x,["setVisibleOverlayToParent"]),P=(0,le.useRef)(new Map),j=(0,le.useRef)(!1),ne=(0,le.useState)()[1],Y=!1,ae=!1,re=!1;(Array.isArray(p)?p:[p]).forEach(function(e){switch(e){case"esc":Y=!0;break;case"mask":ae=!0;break;case"close":re=!0}}),(0,le.useEffect)(function(){"visible"in e&&X(f)},[f]),(0,le.useEffect)(function(){var e;C&&l&&(e={overflow:"hidden"},he.dom.hasScroll(document.body)&&he.dom.scrollbar().width&&(e.paddingRight=he.dom.getStyle(document.body,"paddingRight")+he.dom.scrollbar().width+"px"),ee.current=me.default.lock(document.body,e))},[C&&l]),(0,le.useEffect)(function(){if(C&&Y)return document.body.addEventListener("keydown",n,!1),function(){document.body.removeEventListener("keydown",n,!1)}},[C&&Y]),(0,le.useEffect)(function(){!$&&C&&J(!0)},[C]),(0,le.useEffect)(function(){L||setTimeout(function(){Z(Q())})},[L]);if((0,le.useEffect)(function(){return function(){r()}},[]),!1===$||!L)return null;if(!C&&!m&&j.current)return null;m=(0,de.default)(((p={})[o+"overlay-wrapper"]=!0,p.opened=C,p)),i=(0,de.default)(((p={})[o+"dialog-v2"]=!0,p[i]=!!i,p)),p={},k=void(v?_||b||!k?(_&&(p.marginTop=_),b&&(p.marginBottom=b)):(p.marginTop=k,p.marginBottom=k):(_&&(p.top=_),b&&(p.paddingBottom=b))),M&&(k="calc(100vh - "+(_+b)+"px)"),M={appear:300,enter:300,exit:250},_=se.default.createElement(fe.default.OverlayAnimate,{visible:C,animation:h,timeout:M,onEnter:function(){t(!1),he.dom.setStyle(D.current,"display","")},onEntered:function(){var e;s&&T.current&&T.current.bodyNode&&(0<(e=he.focus.getFocusNodeList(T.current.bodyNode)).length&&e[0]&&(O.current=document.activeElement,e[0].focus())),N(te,D.current)},onExited:r},se.default.createElement(ce.default,(0,oe.default)({},E,{style:v?(0,oe.default)({},p,q):q,v2:!0,ref:T,prefix:o,className:i,title:R,footer:H,footerAlign:F,footerActions:z,onOk:C?u:ye,onCancel:C?function(e){"function"==typeof d?d(e):a("cancelBtn",e)}:ye,okProps:W,cancelProps:V,locale:c,closeable:re,rtl:B,onClose:function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return a.apply(void 0,["closeClick"].concat(t))},closeIcon:U,height:G,maxHeight:k,width:w}),A)),"function"==typeof g&&(_=g(_)),E=(0,de.default)(((b={})[o+"overlay-inner"]=!0,b[o+"dialog-wrapper"]=!0,b[o+"dialog-centered"]=v,b));return se.default.createElement(ge.Provider,{value:(0,oe.default)({},x,{setVisibleOverlayToParent:function(e,t){t?P.current.set(e,t):P.current.delete(e),N(e,t)}})},ue.default.createPortal(se.default.createElement("div",{className:m,style:K,ref:D},l?se.default.createElement(fe.default.OverlayAnimate,{visible:C,animation:!!h&&{in:"fadeIn",out:"fadeOut"},timeout:M,unmountOnExit:!0},se.default.createElement("div",{className:o+"overlay-backdrop"})):null,se.default.createElement("div",{className:E,onClick:function(e){if(ae){if("click"===e.type&&T.current){var t=ue.default.findDOMNode(T.current);if(t&&t.contains(e.target))return}a("maskClick",e)}}},v?_:se.default.createElement("div",{style:p,className:o+"dialog-inner-wrapper"},_))),L))},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var T=s(n(2)),a=s(n(4)),r=s(n(6)),o=s(n(7)),p=n(0),D=s(p),i=s(n(3)),O=s(n(13)),h=s(n(24)),N=n(11),l=s(n(361)),P=s(n(362));function s(e){return e&&e.__esModule?e:{default:e}}function m(e){e.preventDefault()}u=l.default,(0,o.default)(j,u),j.prototype.getValueLength=function(e){var e=""+e,t=this.props.getValueLength(e);return t="number"!=typeof t?e.length:t},j.prototype.renderControl=function(){var e=this,t=this.props,n=t.hasClear,a=t.readOnly,r=t.state,o=t.prefix,i=t.hint,l=t.extra,s=t.locale,u=t.disabled,t=t.hoverShowClear,d=this.renderLength(),c=null,f=("success"===r?c=D.default.createElement(h.default,{type:"success-filling",className:o+"input-success-icon"}):"loading"===r?c=D.default.createElement(h.default,{type:"loading",className:o+"input-loading-icon"}):"warning"===r&&(c=D.default.createElement(h.default,{type:"warning",className:o+"input-warning-icon"})),null),a=n&&!a&&!!(""+this.state.value)&&!u;return(i||a)&&(u=null,u=i?"string"==typeof i?D.default.createElement(h.default,{type:i,className:o+"input-hint"}):(0,p.isValidElement)(i)?(0,p.cloneElement)(i,{className:(0,O.default)(i.props.className,o+"input-hint")}):i:(t=(0,O.default)(((a={})[o+"input-hint"]=!0,a[o+"input-clear-icon"]=!0,a[o+"input-hover-show"]=t,a)),D.default.createElement(h.default,{type:"delete-filling",role:"button",tabIndex:"0",className:t,"aria-label":s.clear,onClick:this.onClear.bind(this),onMouseDown:m,onKeyDown:this.handleKeyDownFromClear})),f=D.default.createElement("span",{className:o+"input-hint-wrap"},n&&i?D.default.createElement(h.default,{type:"delete-filling",role:"button",tabIndex:"0",className:o+"input-clear "+o+"input-clear-icon","aria-label":s.clear,onClick:this.onClear.bind(this),onMouseDown:m,onKeyDown:this.handleKeyDownFromClear}):null,u)),(f="loading"===r?null:f)||d||c||l?D.default.createElement("span",{onClick:function(){return e.focus()},className:o+"input-control"},f,d,c,l):null},j.prototype.renderLabel=function(){var e=this.props,t=e.label,n=e.prefix,e=e.id;return t?D.default.createElement("label",{className:n+"input-label",htmlFor:e},t):null},j.prototype.renderInner=function(e,t){return e?D.default.createElement("span",{className:t},e):null},j.prototype.onClear=function(e){this.props.disabled||("value"in this.props||this.setState({value:""}),this.props.onChange("",e,"clear"),this.focus())},j.prototype.render=function(){var e=this.props,t=e.size,n=e.htmlType,a=e.htmlSize,r=e.autoComplete,o=e.autoFocus,i=e.disabled,l=e.style,s=e.innerBefore,u=e.innerAfter,d=e.innerBeforeClassName,c=e.innerAfterClassName,f=e.className,p=e.hasBorder,h=e.prefix,m=e.isPreview,g=e.renderPreview,y=e.addonBefore,v=e.addonAfter,_=e.addonTextBefore,b=e.addonTextAfter,w=e.inputRender,M=e.rtl,e=e.composition,k=y||v||_||b,p=(0,O.default)(this.getClass(),((S={})[""+h+t]=!0,S[h+"hidden"]="hidden"===this.props.htmlType,S[h+"noborder"]=!p||"file"===this.props.htmlType,S[h+"input-group-auto-width"]=k,S[h+"disabled"]=i,S[f]=!!f&&!k,S)),S=h+"input-inner",d=(0,O.default)(((E={})[S]=!0,E[h+"before"]=!0,E[d]=d,E)),S=(0,O.default)(((E={})[S]=!0,E[h+"after"]=!0,E[h+"input-inner-text"]="string"==typeof u,E[c]=c,E)),E=(0,O.default)(((c={})[h+"form-preview"]=!0,c[f]=!!f,c)),c=this.getProps(),x=N.obj.pickAttrsWith(this.props,"data-"),C=N.obj.pickOthers((0,T.default)({},x,j.propTypes),this.props);if(m)return m=c.value,L=this.props.label,"function"==typeof g?D.default.createElement("div",(0,T.default)({},C,{className:E}),g(m,this.props)):D.default.createElement("div",(0,T.default)({},C,{className:E}),y||_,L,s,m,u,v||b);var g={},E=(e&&(g.onCompositionStart=this.handleCompositionStart,g.onCompositionEnd=this.handleCompositionEnd),D.default.createElement("input",(0,T.default)({},C,c,g,{height:"100%",type:n,size:a,autoFocus:o,autoComplete:r,onKeyDown:this.handleKeyDown,ref:this.saveRef}))),L=D.default.createElement("span",(0,T.default)({},x,{dir:M?"rtl":void 0,className:p,style:k?void 0:l}),this.renderLabel(),this.renderInner(s,d),w(E),this.renderInner(u,S),this.renderControl()),e=(0,O.default)(((m={})[h+"input-group-text"]=!0,m[""+h+t]=!!t,m[h+"disabled"]=i,m)),c=(0,O.default)(((C={})[e]=_,C)),n=(0,O.default)(((g={})[e]=b,g));return k?D.default.createElement(P.default,(0,T.default)({},x,{prefix:h,className:f,style:l,disabled:i,addonBefore:y||_,addonBeforeClassName:c,addonAfter:v||b,addonAfterClassName:n}),L):L},o=n=j,n.getDerivedStateFromProps=l.default.getDerivedStateFromProps,n.propTypes=(0,T.default)({},l.default.propTypes,{label:i.default.node,hasClear:i.default.bool,hasBorder:i.default.bool,state:i.default.oneOf(["error","loading","success","warning"]),onPressEnter:i.default.func,onClear:i.default.func,htmlType:i.default.string,htmlSize:i.default.string,hint:i.default.oneOfType([i.default.string,i.default.node]),innerBefore:i.default.node,innerAfter:i.default.node,addonBefore:i.default.node,addonAfter:i.default.node,addonTextBefore:i.default.node,addonTextAfter:i.default.node,autoComplete:i.default.string,autoFocus:i.default.bool,inputRender:i.default.func,extra:i.default.node,innerBeforeClassName:i.default.string,innerAfterClassName:i.default.string,isPreview:i.default.bool,renderPreview:i.default.func,hoverShowClear:i.default.bool}),n.defaultProps=(0,T.default)({},l.default.defaultProps,{autoComplete:"off",hasBorder:!0,isPreview:!1,hoverShowClear:!1,onPressEnter:N.func.noop,inputRender:function(e){return e}});var u,i=o;function j(e){(0,a.default)(this,j);var t=(0,r.default)(this,u.call(this,e)),n=(t.handleKeyDown=function(e){13===e.keyCode&&t.props.onPressEnter(e),t.onKeyDown(e)},t.handleKeyDownFromClear=function(e){13===e.keyCode&&t.onClear(e)},void 0),n="value"in e?e.value:e.defaultValue;return t.state={value:void 0===n?"":n},t}t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a,r=h(n(2)),o=h(n(4)),i=h(n(6)),l=h(n(7)),s=h(n(0)),u=h(n(3)),d=h(n(13)),c=n(30),f=h(n(8)),p=n(11),n=h(n(44));function h(e){return e&&e.__esModule?e:{default:e}}m=s.default.Component,(0,l.default)(g,m),g.getDerivedStateFromProps=function(e,t){return"value"in e&&e.value!==t.value&&!t.composition?{value:null==(t=e.value)?"":t}:null},g.prototype.ieHack=function(e){return e},g.prototype.onChange=function(e){"stopPropagation"in e?e.stopPropagation():"cancelBubble"in e&&e.cancelBubble();var t=e.target.value;this.props.trim&&(t=t.trim()),t=this.ieHack(t),"value"in this.props&&!this.state.composition||this.setState({value:t}),this.state.composition||(t&&"number"===this.props.htmlType&&(t=Number(t)),this.props.onChange(t,e))},g.prototype.onKeyDown=function(e){var t=e.target.value,n=this.props.maxLength,t=0<n&&t?this.getValueLength(t):0,a={};this.props.trim&&32===e.keyCode&&(a.beTrimed=!0),0<n&&(n+1<t||(t===n||t===n+1)&&8!==e.keyCode&&46!==e.keyCode)&&(a.overMaxLength=!0),this.props.onKeyDown(e,a)},g.prototype.onFocus=function(e){this.setState({focus:!0}),this.props.onFocus(e)},g.prototype.onBlur=function(e){this.setState({focus:!1}),this.props.onBlur(e)},g.prototype.renderLength=function(){var e,t=this.props,n=t.maxLength,a=t.showLimitHint,r=t.prefix,t=t.rtl,o=0<n&&this.state.value?this.getValueLength(this.state.value):0,r=(0,d.default)(((e={})[r+"input-len"]=!0,e[r+"error"]=n<o,e));return n&&a?s.default.createElement("span",{className:r},t?n+"/"+o:o+"/"+n):null},g.prototype.renderControl=function(){var e=this,t=this.renderLength();return t?s.default.createElement("span",{onClick:function(){return e.focus()},className:this.props.prefix+"input-control"},t):null},g.prototype.getClass=function(){var e,t=this.props,n=t.disabled,a=t.state,t=t.prefix;return(0,d.default)(((e={})[t+"input"]=!0,e[t+"disabled"]=!!n,e[t+"error"]="error"===a,e[t+"warning"]="warning"===a,e[t+"focus"]=this.state.focus,e))},g.prototype.getProps=function(){var e=this.props,t=e.placeholder,n=e.inputStyle,a=e.disabled,r=e.readOnly,o=e.cutString,i=e.maxLength,l=e.name,s=e.onCompositionStart,e=e.onCompositionEnd,n={style:n,placeholder:t,disabled:a,readOnly:r,name:l,maxLength:o?i:void 0,value:this.state.value,onChange:this.onChange.bind(this),onBlur:this.onBlur.bind(this),onFocus:this.onFocus.bind(this),onCompositionStart:s,onCompositionEnd:e};return a&&(n["aria-disabled"]=a),n},g.prototype.getInputNode=function(){return this.inputRef},g.prototype.focus=function(e,t){this.inputRef.focus(),"number"==typeof e&&(this.inputRef.selectionStart=e),"number"==typeof t&&(this.inputRef.selectionEnd=t)},a=l=g,l.propTypes=(0,r.default)({},f.default.propTypes,{value:u.default.oneOfType([u.default.string,u.default.number]),defaultValue:u.default.oneOfType([u.default.string,u.default.number]),onChange:u.default.func,onKeyDown:u.default.func,disabled:u.default.bool,maxLength:u.default.number,showLimitHint:u.default.bool,cutString:u.default.bool,readOnly:u.default.bool,trim:u.default.bool,placeholder:u.default.string,onFocus:u.default.func,onBlur:u.default.func,getValueLength:u.default.func,inputStyle:u.default.object,className:u.default.string,style:u.default.object,htmlType:u.default.string,name:u.default.string,rtl:u.default.bool,state:u.default.oneOf(["error","loading","success","warning"]),locale:u.default.object,isPreview:u.default.bool,renderPreview:u.default.func,size:u.default.oneOf(["small","medium","large"]),composition:u.default.bool,onCompositionStart:u.default.func,onCompositionEnd:u.default.func}),l.defaultProps={disabled:!1,prefix:"next-",size:"medium",maxLength:null,showLimitHint:!1,cutString:!0,readOnly:!1,isPreview:!1,trim:!1,composition:!1,onFocus:p.func.noop,onBlur:p.func.noop,onChange:p.func.noop,onKeyDown:p.func.noop,getValueLength:p.func.noop,onCompositionStart:p.func.noop,onCompositionEnd:p.func.noop,locale:n.default.Input};var m,r=a;function g(){var e,n;(0,o.default)(this,g);for(var t=arguments.length,a=Array(t),r=0;r<t;r++)a[r]=arguments[r];return(e=n=(0,i.default)(this,m.call.apply(m,[this].concat(a)))).handleCompositionStart=function(e){n.setState({composition:!0}),n.props.onCompositionStart(e)},n.handleCompositionEnd=function(e){n.setState({composition:!1}),n.props.onCompositionEnd(e);var t=e.target.value;n.props.onChange(t,e)},n.saveRef=function(e){n.inputRef=e},(0,i.default)(n,e)}r.displayName="Base",t.default=(0,c.polyfill)(r),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a,p=s(n(2)),h=s(n(12)),r=s(n(4)),o=s(n(6)),i=s(n(7)),m=s(n(0)),l=s(n(3)),g=s(n(13)),n=s(n(8));function s(e){return e&&e.__esModule?e:{default:e}}u=m.default.Component,(0,i.default)(d,u),d.prototype.render=function(){var e,t=this.props,n=t.className,a=t.style,r=t.children,o=t.prefix,i=t.addonBefore,l=t.addonAfter,s=t.addonBeforeClassName,u=t.addonAfterClassName,d=t.rtl,c=t.disabled,t=(0,h.default)(t,["className","style","children","prefix","addonBefore","addonAfter","addonBeforeClassName","addonAfterClassName","rtl","disabled"]),n=(0,g.default)(((f={})[o+"input-group"]=!0,f[o+"disabled"]=c,f[n]=!!n,f)),f=o+"input-group-addon",s=(0,g.default)(f,((e={})[o+"before"]=!0,e[s]=s,e)),f=(0,g.default)(f,((e={})[o+"after"]=!0,e[u]=u,e)),o=i?m.default.createElement("span",{className:s},i):null,u=l?m.default.createElement("span",{className:f},l):null;return m.default.createElement("span",(0,p.default)({},t,{disabled:c,dir:d?"rtl":void 0,className:n,style:a}),o,r,u)},a=i=d,i.propTypes={prefix:l.default.string,className:l.default.string,style:l.default.object,children:l.default.node,addonBefore:l.default.node,addonBeforeClassName:l.default.string,addonAfter:l.default.node,addonAfterClassName:l.default.string,rtl:l.default.bool},i.defaultProps={prefix:"next-"};var u,l=a;function d(){return(0,r.default)(this,d),(0,o.default)(this,u.apply(this,arguments))}l.displayName="Group",t.default=n.default.config(l),e.exports=t.default},function(e,t,n){"use strict";e.exports=function(n,a){return function(){for(var e=new Array(arguments.length),t=0;t<e.length;t++)e[t]=arguments[t];return n.apply(a,e)}}},function(e,t,n){"use strict";var r=n(56);function o(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,n){var a;return!t||(n=n?n(t):r.isURLSearchParams(t)?t.toString():(a=[],r.forEach(t,function(e,t){null!=e&&(r.isArray(e)?t+="[]":e=[e],r.forEach(e,function(e){r.isDate(e)?e=e.toISOString():r.isObject(e)&&(e=JSON.stringify(e)),a.push(o(t)+"="+o(e))}))}),a.join("&")))&&(-1!==(t=e.indexOf("#"))&&(e=e.slice(0,t)),e+=(-1===e.indexOf("?")?"?":"&")+n),e}},function(e,t,n){"use strict";e.exports=function(e,t,n,a,r){return e.config=t,n&&(e.code=n),e.request=a,e.response=r,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e}},function(e,t,n){"use strict";var d=n(56),c=n(589),f=n(590),p=n(364),h=n(591),m=n(594),g=n(595),y=n(367);e.exports=function(u){return new Promise(function(t,n){var e,a=u.data,r=u.headers,o=u.responseType,i=(d.isFormData(a)&&delete r["Content-Type"],new XMLHttpRequest),l=(u.auth&&(l=u.auth.username||"",e=u.auth.password?unescape(encodeURIComponent(u.auth.password)):"",r.Authorization="Basic "+btoa(l+":"+e)),h(u.baseURL,u.url));function s(){var e;i&&(e="getAllResponseHeaders"in i?m(i.getAllResponseHeaders()):null,e={data:o&&"text"!==o&&"json"!==o?i.response:i.responseText,status:i.status,statusText:i.statusText,headers:e,config:u,request:i},c(t,n,e),i=null)}i.open(u.method.toUpperCase(),p(l,u.params,u.paramsSerializer),!0),i.timeout=u.timeout,"onloadend"in i?i.onloadend=s:i.onreadystatechange=function(){i&&4===i.readyState&&(0!==i.status||i.responseURL&&0===i.responseURL.indexOf("file:"))&&setTimeout(s)},i.onabort=function(){i&&(n(y("Request aborted",u,"ECONNABORTED",i)),i=null)},i.onerror=function(){n(y("Network Error",u,null,i)),i=null},i.ontimeout=function(){var e="timeout of "+u.timeout+"ms exceeded";u.timeoutErrorMessage&&(e=u.timeoutErrorMessage),n(y(e,u,u.transitional&&u.transitional.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",i)),i=null},d.isStandardBrowserEnv()&&(e=(u.withCredentials||g(l))&&u.xsrfCookieName?f.read(u.xsrfCookieName):void 0)&&(r[u.xsrfHeaderName]=e),"setRequestHeader"in i&&d.forEach(r,function(e,t){void 0===a&&"content-type"===t.toLowerCase()?delete r[t]:i.setRequestHeader(t,e)}),d.isUndefined(u.withCredentials)||(i.withCredentials=!!u.withCredentials),o&&"json"!==o&&(i.responseType=u.responseType),"function"==typeof u.onDownloadProgress&&i.addEventListener("progress",u.onDownloadProgress),"function"==typeof u.onUploadProgress&&i.upload&&i.upload.addEventListener("progress",u.onUploadProgress),u.cancelToken&&u.cancelToken.promise.then(function(e){i&&(i.abort(),n(e),i=null)}),a=a||null,i.send(a)})}},function(e,t,n){"use strict";var o=n(365);e.exports=function(e,t,n,a,r){e=new Error(e);return o(e,t,n,a,r)}},function(e,t,n){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t,n){"use strict";var d=n(56);e.exports=function(t,n){n=n||{};var a={},e=["url","method","data"],r=["headers","auth","proxy","params"],o=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],i=["validateStatus"];function l(e,t){return d.isPlainObject(e)&&d.isPlainObject(t)?d.merge(e,t):d.isPlainObject(t)?d.merge({},t):d.isArray(t)?t.slice():t}function s(e){d.isUndefined(n[e])?d.isUndefined(t[e])||(a[e]=l(void 0,t[e])):a[e]=l(t[e],n[e])}d.forEach(e,function(e){d.isUndefined(n[e])||(a[e]=l(void 0,n[e]))}),d.forEach(r,s),d.forEach(o,function(e){d.isUndefined(n[e])?d.isUndefined(t[e])||(a[e]=l(void 0,t[e])):a[e]=l(void 0,n[e])}),d.forEach(i,function(e){e in n?a[e]=l(t[e],n[e]):e in t&&(a[e]=l(void 0,t[e]))});var u=e.concat(r).concat(o).concat(i),e=Object.keys(t).concat(Object.keys(n)).filter(function(e){return-1===u.indexOf(e)});return d.forEach(e,s),a}},function(e,t,n){"use strict";function a(e){this.message=e}a.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},a.prototype.__CANCEL__=!0,e.exports=a},function(e,t,n){"use strict";function N(e,t){a.apply(e,I(t)?t:[t])}function P(e,t,n,a,r,o,i,l,s,u,d,c,f,p,h,m){for(var g=e,y=m,v=0,_=!1;void 0!==(y=y.get(H))&&!_;){var b=y.get(e);if(v+=1,void 0!==b){if(b===v)throw new RangeError("Cyclic object value");_=!0}void 0===y.get(H)&&(v=0)}if("function"==typeof l?g=l(t,g):g instanceof Date?g=d(g):"comma"===n&&I(g)&&(g=Y.maybeMap(g,function(e){return e instanceof Date?d(e):e})),null===g){if(r)return i&&!p?i(t,A.encoder,h,"key",c):t;g=""}if("string"==typeof(w=g)||"number"==typeof w||"boolean"==typeof w||"symbol"==typeof w||"bigint"==typeof w||Y.isBuffer(g)){if(i){var w=p?t:i(t,A.encoder,h,"key",c);if("comma"===n&&p){for(var M=R.call(String(g),","),k="",S=0;S<M.length;++S)k+=(0===S?"":",")+f(i(M[S],A.encoder,h,"value",c));return[f(w)+(a&&I(g)&&1===M.length?"[]":"")+"="+k]}return[f(w)+"="+f(i(g,A.encoder,h,"value",c))]}return[f(t)+"="+f(String(g))]}var E=[];if(void 0!==g)for(var x,x="comma"===n&&I(g)?[{value:0<g.length?g.join(",")||null:void 0}]:I(l)?l:(w=Object.keys(g),s?w.sort(s):w),C=a&&I(g)&&1===g.length?t+"[]":t,L=0;L<x.length;++L){var T,D=x[L],O="object"==typeof D&&void 0!==D.value?D.value:g[D];o&&null===O||(D=I(g)?"function"==typeof n?n(C,D):C:C+(u?"."+D:"["+D+"]"),m.set(e,v),(T=j()).set(H,m),N(E,P(O,D,n,a,r,o,i,l,s,u,d,c,f,p,h,T)))}return E}var j=n(601),Y=n(372),c=n(168),f=Object.prototype.hasOwnProperty,p={brackets:function(e){return e+"[]"},comma:"comma",indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},I=Array.isArray,R=String.prototype.split,a=Array.prototype.push,r=Date.prototype.toISOString,n=c.default,A={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:Y.encode,encodeValuesOnly:!1,format:n,formatter:c.formatters[n],indices:!1,serializeDate:function(e){return r.call(e)},skipNulls:!1,strictNullHandling:!1},H={};e.exports=function(e,t){var n=e,a=function(e){if(!e)return A;if(null!==e.encoder&&void 0!==e.encoder&&"function"!=typeof e.encoder)throw new TypeError("Encoder has to be a function.");var t=e.charset||A.charset;if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=c.default;if(void 0!==e.format){if(!f.call(c.formatters,e.format))throw new TypeError("Unknown format option provided.");n=e.format}var a=c.formatters[n],r=A.filter;return"function"!=typeof e.filter&&!I(e.filter)||(r=e.filter),{addQueryPrefix:("boolean"==typeof e.addQueryPrefix?e:A).addQueryPrefix,allowDots:void 0===e.allowDots?A.allowDots:!!e.allowDots,charset:t,charsetSentinel:("boolean"==typeof e.charsetSentinel?e:A).charsetSentinel,delimiter:(void 0===e.delimiter?A:e).delimiter,encode:("boolean"==typeof e.encode?e:A).encode,encoder:("function"==typeof e.encoder?e:A).encoder,encodeValuesOnly:("boolean"==typeof e.encodeValuesOnly?e:A).encodeValuesOnly,filter:r,format:n,formatter:a,serializeDate:("function"==typeof e.serializeDate?e:A).serializeDate,skipNulls:("boolean"==typeof e.skipNulls?e:A).skipNulls,sort:"function"==typeof e.sort?e.sort:null,strictNullHandling:("boolean"==typeof e.strictNullHandling?e:A).strictNullHandling}}(t),r=("function"==typeof a.filter?n=(0,a.filter)("",n):I(a.filter)&&(l=a.filter),[]);if("object"!=typeof n||null===n)return"";var e=t&&t.arrayFormat in p?t.arrayFormat:!(t&&"indices"in t)||t.indices?"indices":"repeat",o=p[e];if(t&&"commaRoundTrip"in t&&"boolean"!=typeof t.commaRoundTrip)throw new TypeError("`commaRoundTrip` must be a boolean, or absent");var i="comma"===o&&t&&t.commaRoundTrip,l=l||Object.keys(n);a.sort&&l.sort(a.sort);for(var s=j(),u=0;u<l.length;++u){var d=l[u];a.skipNulls&&null===n[d]||N(r,P(n[d],d,o,i,a.strictNullHandling,a.skipNulls,a.encode?a.encoder:null,a.filter,a.sort,a.allowDots,a.serializeDate,a.format,a.formatter,a.encodeValuesOnly,a.charset,s))}e=r.join(a.delimiter),t=!0===a.addQueryPrefix?"?":"";return a.charsetSentinel&&("iso-8859-1"===a.charset?t+="utf8=%26%2310003%3B&":t+="utf8=%E2%9C%93&"),0<e.length?t+e:""}},function(e,t,n){"use strict";function l(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},a=0;a<e.length;++a)void 0!==e[a]&&(n[a]=e[a]);return n}var u=n(168),s=Object.prototype.hasOwnProperty,m=Array.isArray,d=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}();e.exports={arrayToObject:l,assign:function(e,n){return Object.keys(n).reduce(function(e,t){return e[t]=n[t],e},e)},combine:function(e,t){return[].concat(e,t)},compact:function(e){for(var t=[{obj:{o:e},prop:"o"}],n=[],a=0;a<t.length;++a)for(var r=t[a],o=r.obj[r.prop],i=Object.keys(o),l=0;l<i.length;++l){var s=i[l],u=o[s];"object"==typeof u&&null!==u&&-1===n.indexOf(u)&&(t.push({obj:o,prop:s}),n.push(u))}for(var d=t;1<d.length;){var c=d.pop(),f=c.obj[c.prop];if(m(f)){for(var p=[],h=0;h<f.length;++h)void 0!==f[h]&&p.push(f[h]);c.obj[c.prop]=p}}return e},decode:function(t,e,n){t=t.replace(/\+/g," ");if("iso-8859-1"===n)return t.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(t)}catch(e){return t}},encode:function(e,t,n,a,r){if(0===e.length)return e;var o=e;if("symbol"==typeof e?o=Symbol.prototype.toString.call(e):"string"!=typeof e&&(o=String(e)),"iso-8859-1"===n)return escape(o).replace(/%u[0-9a-f]{4}/gi,function(e){return"%26%23"+parseInt(e.slice(2),16)+"%3B"});for(var i="",l=0;l<o.length;++l){var s=o.charCodeAt(l);45===s||46===s||95===s||126===s||48<=s&&s<=57||65<=s&&s<=90||97<=s&&s<=122||r===u.RFC1738&&(40===s||41===s)?i+=o.charAt(l):s<128?i+=d[s]:s<2048?i+=d[192|s>>6]+d[128|63&s]:s<55296||57344<=s?i+=d[224|s>>12]+d[128|s>>6&63]+d[128|63&s]:(l+=1,s=65536+((1023&s)<<10|1023&o.charCodeAt(l)),i+=d[240|s>>18]+d[128|s>>12&63]+d[128|s>>6&63]+d[128|63&s])}return i},isBuffer:function(e){return!(!e||"object"!=typeof e)&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},isRegExp:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},maybeMap:function(e,t){if(m(e)){for(var n=[],a=0;a<e.length;a+=1)n.push(t(e[a]));return n}return t(e)},merge:function a(r,o,i){if(!o)return r;if("object"!=typeof o){if(m(r))r.push(o);else{if(!r||"object"!=typeof r)return[r,o];(i&&(i.plainObjects||i.allowPrototypes)||!s.call(Object.prototype,o))&&(r[o]=!0)}return r}if(!r||"object"!=typeof r)return[r].concat(o);var e=r;return m(r)&&!m(o)&&(e=l(r,i)),m(r)&&m(o)?(o.forEach(function(e,t){var n;s.call(r,t)?(n=r[t])&&"object"==typeof n&&e&&"object"==typeof e?r[t]=a(n,e,i):r.push(e):r[t]=e}),r):Object.keys(o).reduce(function(e,t){var n=o[t];return s.call(e,t)?e[t]=a(e[t],n,i):e[t]=n,e},e)}}},function(e,t,n){"use strict";t.__esModule=!0;var h=u(n(2)),c=u(n(4)),f=u(n(6)),a=u(n(7)),g=u(n(38)),y=n(0),m=u(y),r=n(23),o=u(n(3)),v=u(n(13)),i=n(30),l=u(n(374)),s=u(n(8)),p=n(11),_=n(170);function u(e){return e&&e.__esModule?e:{default:e}}function d(){}function b(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:"",a=arguments[3],n=(0,v.default)(((r={})[n+"menu-more"]=!0,r)),r={};return t?(r.visibility="hidden",r.display="inline-block"):e&&0===e.length&&(r.display="none",r.visibility="unset"),a&&"function"==typeof a?(t=a(e),a=(0,v.default)(n,t.props&&t.props.className),m.default.isValidElement(t)?m.default.cloneElement(t,{style:r,className:a}):t):m.default.createElement(l.default,{label:"···",noIcon:!0,className:n,style:r},e)}function w(e){var t=e.children,f=e.root,p=e.mode,n=e.lastVisibleIndex,a=e.hozInLine,r=e.prefix,e=e.renderMore,h={},m={};return{newChildren:function l(e,s){var u=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{index:0},d=3<arguments.length&&void 0!==arguments[3]?arguments[3]:1,c=[];return y.Children.map(e,function(e){if(e&&("function"==typeof e.type||"object"===(0,g.default)(e.type))&&"menuChildType"in e.type){var t=void 0,n=void 0,a={root:f};if(-1<["item","submenu","group"].indexOf(e.type.menuChildType)){var n=s+"-"+u.index++,r="string"==typeof e.key?e.key:n;if(-1<c.indexOf(r))return;c.push(r);var o=n.split("-").length-1;h[r]=m[n]={key:r,pos:n,mode:e.props.mode,type:e.type.menuChildType,disabled:e.props.disabled,label:e.props.label||e.props.children},a.level=o,a.inlineLevel=d,a._key=r,a.groupIndent="group"===e.type.menuChildType?1:0}var i="popup"===(e.props.mode||p)?1:d+1;switch(e.type.menuChildType){case"submenu":t=(0,y.cloneElement)(e,a,l(e.props.children,n,void 0,i));break;case"group":t=(0,y.cloneElement)(e,a,l(e.props.children,s,u,a.level));break;case"item":case"divider":t=(0,y.cloneElement)(e,a);break;default:t=e}return t}return e})}(a?C({children:t,lastVisibleIndex:n,prefix:r,renderMore:e}):t,"0"),_k2n:h,_p2n:m}}var M,k=p.func.bindCtx,S=p.obj.pickOthers,E=p.obj.isNil,x="menuitem-overflowed",C=function(e){var a=e.children,r=e.lastVisibleIndex,o=e.prefix,i=e.renderMore,l=[];return m.default.Children.forEach(a,function(e,n){var t;e&&(t=[],r<n&&(e=m.default.cloneElement(e,{key:e.key||"more-"+n,style:{display:"none"},className:(e&&e.className||"")+" "+x})),n===r+1&&(t=a.slice(r+1).map(function(e,t){return m.default.cloneElement(e,{key:e.key||"more-"+n+"-"+t})}),l.push(b(t,!1,o,i))),l.push(e))}),l.push(b([],!0,o,i)),l},s=(M=y.Component,(0,a.default)(L,M),L.getDerivedStateFromProps=function(e,t){var n={},a=("openKeys"in e?n.openKeys=(0,_.normalizeToArray)(e.openKeys):"mode"in e&&"popup"===e.mode&&"inline"===t.lastMode&&(n.openKeys=[]),"selectedKeys"in e&&(n.selectedKeys=(0,_.normalizeToArray)(e.selectedKeys)),"focusedKey"in e&&(n.focusedKey=e.focusedKey),n.lastMode=e.mode,w((0,h.default)({root:t.root,lastVisibleIndex:t.lastVisibleIndex},e))),r=a.newChildren,o=a._k2n,a=a._p2n;return n.newChildren=r,n._k2n=o,n._p2n=a,e.focusable&&(t.tabbableKey in o?t.focusedKey&&(n.tabbableKey=t.focusedKey):n.tabbableKey=(0,_.getFirstAvaliablelChildKey)("0",a)),n},L.prototype.componentDidMount=function(){this.menuNode=(0,r.findDOMNode)(this),this.adjustChildrenWidth(),this.props.hozInLine&&p.events.on(window,"resize",this.adjustChildrenWidth)},L.prototype.componentDidUpdate=function(e,t){t.lastVisibleIndex!==this.state.lastVisibleIndex&&this.adjustChildrenWidth()},L.prototype.componentWillUnmount=function(){p.events.off(window,"resize",this.adjustChildrenWidth)},L.prototype.adjustChildrenWidth=function(){var n,a,t,r,o,i,e=this.props,l=e.direction,s=e.prefix,u=e.header,d=e.footer,e=e.hozInLine;"hoz"===l&&e&&(this.menuNode||this.menuContent)&&(l=[],i=void 0,i=u||d?(l=this.menuContent.children,(0,_.getWidth)(this.menuNode)-(0,_.getWidth)(this.menuHeader)-(0,_.getWidth)(this.menuFooter)):(l=this.menuNode.children,(0,_.getWidth)(this.menuNode)),l.length<2||(n=0,a=-1,t="",(u=(e=[].slice.call(l).filter(function(e){return e.className.split(" ").indexOf(s+"menu-more")<0||(t=e,!1)})).filter(function(e){return 0<=e.className.split(" ").indexOf(x)})).forEach(function(e){p.dom.setStyle(e,"display","inline-block")}),p.dom.setStyle(t,"display","inline-block"),r=(0,_.getWidth)(t),this.menuItemSizes=e.map(function(e){return(0,_.getWidth)(e)}),o=this.menuItemSizes.length,u.forEach(function(e){p.dom.setStyle(e,"display","none")}),this.menuItemSizes.forEach(function(e,t){n+=e,(o-1<=t&&n<=i||n+r<=i)&&a++}),o-1<=a&&p.dom.setStyle(t,"display","none"),this.setState((0,h.default)({lastVisibleIndex:a},this.getUpdateChildren()))))},L.prototype.onBlur=function(e){this.setState({focusedKey:void 0}),this.props.onBlur&&this.props.onBlur(e)},L.prototype.getInitOpenKeys=function(e,t,n){var a=void 0,r=e.openKeys,o=e.defaultOpenKeys,i=e.defaultOpenAll,l=e.mode,e=e.openMode,a=r||(i&&"inline"===l&&"multiple"===e?Object.keys(t).filter(function(e){return"submenu"===t[e].type}):o);return(0,_.normalizeToArray)(a)},L.prototype.handleOpen=function(t,e,n,a){var r=void 0,o=this.props,i=o.mode,o=o.openMode,l=this.state,s=l.openKeys,u=l._k2n,l=s.indexOf(t);e&&-1===l?"inline"===i?"single"===o?(r=s.filter(function(e){return u[e]&&!(0,_.isSibling)(u[t].pos,u[e].pos)})).push(t):r=s.concat(t):(r=s.filter(function(e){return u[e]&&(0,_.isAncestor)(u[t].pos,u[e].pos)})).push(t):!e&&-1<l&&("inline"===i?r=[].concat(s.slice(0,l),s.slice(l+1)):"docClick"===n?this.popupNodes.concat(this.menuNode).some(function(e){return e.contains(a.target)})||(r=[]):r=s.filter(function(e){return e!==t&&u[e]&&!(0,_.isAncestor)(u[e].pos,u[t].pos)})),r&&(E(this.props.openKeys)&&this.setState((0,h.default)({openKeys:r},this.getUpdateChildren())),this.props.onOpen(r,{key:t,open:e}))},L.prototype.getPath=function(e,t,n){for(var a=[],r=[],o=t[e].pos.split("-"),i=1;i<o.length-1;i++){var l=n[o.slice(0,i+1).join("-")];a.push(l.key),r.push(l.label)}return{keyPath:a,labelPath:r}},L.prototype.handleSelect=function(e,t,n){var a,r,o,i=this.state,l=i._k2n,i=i._p2n,s=l[e].pos.split("-").length-1;this.props.shallowSelect&&1<s||(s=void 0,a=this.props.selectMode,o=(r=this.state.selectedKeys).indexOf(e),t&&-1===o?"single"===a?s=[e]:"multiple"===a&&(s=r.concat(e)):!t&&-1<o&&"multiple"===a&&(s=[].concat(r.slice(0,o),r.slice(o+1))),s&&(E(this.props.selectedKeys)&&this.setState({selectedKeys:s}),this.props.onSelect(s,n,(0,h.default)({key:e,select:t,label:l[e].label},this.getPath(e,l,i)))))},L.prototype.handleItemClick=function(e,t,n){var a=this.state._k2n;this.props.focusable&&(E(this.props.focusedKey)&&this.setState({focusedKey:e}),this.props.onItemFocus(e,t,n)),"item"===t.props.type&&("popup"===t.props.parentMode&&this.state.openKeys.length&&(E(this.props.openKeys)&&this.setState({openKeys:[]}),this.props.onOpen([],{key:this.state.openKeys.sort(function(e,t){return a[t].pos.split("-").length-a[e].pos.split("-").length})[0],open:!1})),this.props.onItemClick(e,t,n))},L.prototype.getAvailableKey=function(t,e){var n,a,r=this.state._p2n,o=Object.keys(r).filter(function(e){return(0,_.isAvailablePos)(t,e,r)});return 1<o.length?(n=o.indexOf(t),a=void 0,a=e?0===n?o.length-1:n-1:n===o.length-1?0:n+1,r[o[a]].key):null},L.prototype.getParentKey=function(e){return this.state._p2n[e.slice(0,e.length-2)].key},L.prototype.handleItemKeyDown=function(e,t,n,a){-1<[p.KEYCODE.UP,p.KEYCODE.DOWN,p.KEYCODE.RIGHT,p.KEYCODE.LEFT,p.KEYCODE.ENTER,p.KEYCODE.ESC,p.KEYCODE.SPACE].indexOf(a.keyCode)&&(a.preventDefault(),a.stopPropagation());var r=this.state.focusedKey,o=this.state,i=o._p2n,o=o._k2n,l=this.props.direction,s=o[e].pos,u=s.split("-").length-1;switch(a.keyCode){case p.KEYCODE.UP:var d=this.getAvailableKey(s,!0);d&&(r=d);break;case p.KEYCODE.DOWN:var d=void 0;(d="hoz"===l&&1==u&&"submenu"===t?(this.handleOpen(e,!0),(0,_.getFirstAvaliablelChildKey)(s,i)):this.getAvailableKey(s,!1))&&(r=d);break;case p.KEYCODE.RIGHT:var d=void 0;"hoz"===l&&1==u?d=this.getAvailableKey(s,!1):"submenu"===t&&(this.handleOpen(e,!0),d=(0,_.getFirstAvaliablelChildKey)(s,i)),d&&(r=d);break;case p.KEYCODE.ENTER:"submenu"===t&&(this.handleOpen(e,!0),(d=(0,_.getFirstAvaliablelChildKey)(s,i))&&(r=d));break;case p.KEYCODE.LEFT:"hoz"===l&&1==u?(d=this.getAvailableKey(s,!0))&&(r=d):1<u&&(d=this.getParentKey(s),this.handleOpen(d,!1),r=d);break;case p.KEYCODE.ESC:1<u&&(d=this.getParentKey(s),this.handleOpen(d,!1),r=d);break;case p.KEYCODE.TAB:r=null}r!==this.state.focusedKey&&(E(this.props.focusedKey)&&this.setState({focusedKey:r}),this.props.onItemKeyDown(r,n,a),this.props.onItemFocus(r,a))},L.prototype.render=function(){var e=this.props,t=e.prefix,n=e.className,a=e.direction,r=e.hozAlign,o=e.header,i=e.footer,l=e.embeddable,s=e.selectMode,u=e.hozInLine,d=e.rtl,e=e.flatenContent,c=this.state.newChildren,f=S(Object.keys(L.propTypes),this.props),l=(0,v.default)(((p={})[t+"menu"]=!0,p[t+"ver"]="ver"===a,p[t+"hoz"]="hoz"===a,p[t+"menu-embeddable"]=l,p[t+"menu-nowrap"]=u,p[t+"menu-selectable-"+s]=s,p[n]=!!n,p)),u="hoz"===a?"menubar":"menu",n=void 0,p=("selectMode"in this.props&&(u="listbox",n=!("multiple"!==s)),o?m.default.createElement("li",{className:t+"menu-header",ref:this.menuHeaderRef},o):null),a=e||!o&&!i?c:m.default.createElement("ul",{className:t+"menu-content",ref:this.menuContentRef},c),s=i?m.default.createElement("li",{className:t+"menu-footer",ref:this.menuFooterRef},i):null,e="right"===r&&!!o;return d&&(f.dir="rtl"),m.default.createElement("ul",(0,h.default)({role:u,onBlur:this.onBlur,className:l,onKeyDown:this.handleEnter,"aria-multiselectable":n},f),p,e?m.default.createElement("div",{className:t+"menu-hoz-right"},a,s):null,e?null:a,e?null:s)},a=n=L,n.isNextMenu=!0,n.propTypes=(0,h.default)({},s.default.propTypes,{prefix:o.default.string,pure:o.default.bool,rtl:o.default.bool,className:o.default.string,children:o.default.node,onItemClick:o.default.func,openKeys:o.default.oneOfType([o.default.string,o.default.array]),defaultOpenKeys:o.default.oneOfType([o.default.string,o.default.array]),defaultOpenAll:o.default.bool,onOpen:o.default.func,mode:o.default.oneOf(["inline","popup"]),triggerType:o.default.oneOf(["click","hover"]),openMode:o.default.oneOf(["single","multiple"]),inlineIndent:o.default.number,inlineArrowDirection:o.default.oneOf(["down","right"]),popupAutoWidth:o.default.bool,popupAlign:o.default.oneOf(["follow","outside"]),popupProps:o.default.oneOfType([o.default.object,o.default.func]),popupClassName:o.default.string,popupStyle:o.default.object,selectedKeys:o.default.oneOfType([o.default.string,o.default.array]),defaultSelectedKeys:o.default.oneOfType([o.default.string,o.default.array]),onSelect:o.default.func,selectMode:o.default.oneOf(["single","multiple"]),shallowSelect:o.default.bool,hasSelectedIcon:o.default.bool,labelToggleChecked:o.default.bool,isSelectIconRight:o.default.bool,direction:o.default.oneOf(["ver","hoz"]),hozAlign:o.default.oneOf(["left","right"]),hozInLine:o.default.bool,renderMore:o.default.func,header:o.default.node,footer:o.default.node,autoFocus:o.default.bool,focusedKey:o.default.oneOfType([o.default.string,o.default.number,o.default.object]),focusable:o.default.bool,onItemFocus:o.default.func,onBlur:o.default.func,embeddable:o.default.bool,onItemKeyDown:o.default.func,expandAnimation:o.default.bool,itemClassName:o.default.string,icons:o.default.object,flatenContent:o.default.bool}),n.defaultProps={prefix:"next-",pure:!1,defaultOpenKeys:[],defaultOpenAll:!1,onOpen:d,mode:"inline",triggerType:"click",openMode:"multiple",inlineIndent:20,inlineArrowDirection:"down",popupAutoWidth:!1,popupAlign:"follow",popupProps:{},defaultSelectedKeys:[],onSelect:d,shallowSelect:!1,hasSelectedIcon:!0,isSelectIconRight:!1,labelToggleChecked:!0,direction:"ver",hozAlign:"left",hozInLine:!1,autoFocus:!1,focusable:!0,embeddable:!1,onItemFocus:d,onItemKeyDown:d,onItemClick:d,expandAnimation:!0,icons:{}},a);function L(e){(0,c.default)(this,L);var n=(0,f.default)(this,M.call(this,e)),t=(n.getUpdateChildren=function(){var e=n.state,t=e.root,e=e.lastVisibleIndex;return w((0,h.default)({root:t,lastVisibleIndex:e},n.props))},n.menuContentRef=function(e){n.menuContent=e},n.menuHeaderRef=function(e){n.menuHeader=e},n.menuFooterRef=function(e){n.menuFooter=e},n.props),a=(t.prefix,t.children,t.selectedKeys),r=t.defaultSelectedKeys,o=t.focusedKey,i=t.focusable,l=t.autoFocus,t=(t.hozInLine,t.renderMore,n.state={lastVisibleIndex:void 0},w((0,h.default)({root:n},n.props))),s=t.newChildren,u=t._k2n,t=t._p2n,d=i?(0,_.getFirstAvaliablelChildKey)("0",t):void 0;return n.state={root:n,lastVisibleIndex:void 0,newChildren:s,_k2n:u,_p2n:t,tabbableKey:d,openKeys:n.getInitOpenKeys(e,u,t),selectedKeys:(0,_.normalizeToArray)(a||r),focusedKey:E(n.props.focusedKey)?i&&l?d:null:o},k(n,["handleOpen","handleSelect","handleItemClick","handleItemKeyDown","onBlur","adjustChildrenWidth"]),n.popupNodes=[],n}s.displayName="Menu",t.default=(0,i.polyfill)(s),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var u=p(n(12)),w=p(n(2)),o=p(n(38)),a=p(n(4)),r=p(n(6)),i=p(n(7)),l=n(0),M=p(l),s=n(23),d=p(n(3)),k=p(n(13)),c=p(n(79)),S=p(n(24)),E=n(11),x=p(n(98)),C=p(n(169)),f=p(n(375)),L=n(170);function p(e){return e&&e.__esModule?e:{default:e}}var h,T=c.default.Expand,m=E.func.bindCtx,i=(h=l.Component,(0,i.default)(D,h),D.prototype.componentDidMount=function(){this.itemNode=(0,s.findDOMNode)(this)},D.prototype.afterLeave=function(){var e=this.props,t=e.focused;e.root.props.focusable&&t&&this.itemNode.focus()},D.prototype.getOpen=function(){var e=this.props,t=e._key;return-1<e.root.state.openKeys.indexOf(t)},D.prototype.handleMouseEnter=function(e){this.handleOpen(!0),this.props.onMouseEnter&&this.props.onMouseEnter(e)},D.prototype.handleMouseLeave=function(e){this.handleOpen(!1),this.props.onMouseLeave&&this.props.onMouseLeave(e)},D.prototype.handleClick=function(e){var t=this.props,n=t.root,t=t.selectable,n=(n.props.selectMode&&t&&e.stopPropagation(),this.getOpen());this.handleOpen(!n)},D.prototype.handleOpen=function(e,t,n){var a=this.props,r=a._key;a.root.handleOpen(r,e,t,n)},D.prototype.passParentToChildren=function(e){var t=this,n=this.props,a=n.mode,r=n.root;return l.Children.map(e,function(e){return"function"!=typeof e&&"object"!==(void 0===e?"undefined":(0,o.default)(e))?e:(0,l.cloneElement)(e,{parent:t,parentMode:a||r.props.mode})})},D.prototype.renderInline=function(){var e,t=this.props,n=t._key,a=t.level,r=t.inlineLevel,o=t.root,i=t.className,l=t.selectable,s=t.label,u=t.children,d=t.noIcon,c=t.subMenuContentClassName,f=t.triggerType,t=t.parentMode,p=o.props,h=p.prefix,m=p.selectMode,g=p.triggerType,y=p.inlineArrowDirection,v=p.expandAnimation,p=p.rtl,f=f||g,g=this.getOpen(),_=o.state,b=_.selectedKeys,_=_._k2n,_=(0,L.getChildSelected)({_key:n,_k2n:_,selectMode:m,selectedKeys:b}),b=E.obj.pickOthers(Object.keys(D.propTypes),this.props),i={className:(0,k.default)(((e={})[h+"menu-sub-menu-wrapper"]=!0,e[i]=!!i,e))},n={"aria-expanded":g,_key:n,level:a,role:"listitem",inlineLevel:r,root:o,type:"submenu",component:"div",parentMode:t,className:(0,k.default)(((e={})[h+"opened"]=g,e[h+"child-selected"]=_,e))},r=("string"==typeof s&&(n.title=s),{type:"right"===y?"arrow-right":"arrow-down",className:(0,k.default)(((a={})[h+"menu-icon-arrow"]=!0,a[h+"menu-icon-arrow-down"]="down"===y,a[h+"menu-icon-arrow-right"]="right"===y,a[h+"open"]=g,a))}),t=!!m&&l,_=(t?C:x).default,y=("hover"===f?(i.onMouseEnter=this.handleMouseEnter,i.onMouseLeave=this.handleMouseLeave):t?r.onClick=this.handleClick:n.onClick=this.handleClick,(0,k.default)(((e={})[h+"menu-sub-menu"]=!0,e[c]=!!c,e))),a="menu",m="menuitem",l=("selectMode"in o.props&&(a="listbox",m="option"),g?M.default.createElement("ul",{role:a,dir:p?"rtl":void 0,className:y},this.passParentToChildren(u)):null);return M.default.createElement("li",(0,w.default)({role:m},b,i),M.default.createElement(_,n,M.default.createElement("span",{className:h+"menu-item-text"},s),d?null:M.default.createElement(S.default,r)),v?M.default.createElement(T,{animationAppear:!1,afterLeave:this.afterLeave},l):l)},D.prototype.renderPopup=function(){var e,t=this.props,n=t.children,a=t.subMenuContentClassName,r=t.noIcon,t=(0,u.default)(t,["children","subMenuContentClassName","noIcon"]),o=this.props.root.props,i=o.prefix,l=o.popupClassName,s=o.popupStyle,o=o.rtl,i=(0,k.default)(((e={})[i+"menu"]=!0,e[i+"ver"]=!0,e[l]=!!l,e[a]=!!a,e));return t.rtl=o,M.default.createElement(f.default,(0,w.default)({},t,{noIcon:r,hasSubMenu:!0}),M.default.createElement("ul",{role:"menu",dir:o?"rtl":void 0,className:i,style:s},this.passParentToChildren(n)))},D.prototype.render=function(){var e=this.props,t=e.mode,e=e.root;return"popup"===(t||e.props.mode)?this.renderPopup():this.renderInline()},c=n=D,n.menuChildType="submenu",n.propTypes={_key:d.default.string,root:d.default.object,level:d.default.number,inlineLevel:d.default.number,groupIndent:d.default.number,label:d.default.node,selectable:d.default.bool,mode:d.default.oneOf(["inline","popup"]),noIcon:d.default.bool,children:d.default.node,onMouseEnter:d.default.func,onMouseLeave:d.default.func,subMenuContentClassName:d.default.string,triggerType:d.default.oneOf(["click","hover"]),align:d.default.oneOf(["outside","follow"]),parentMode:d.default.oneOf(["inline","popup"]),parent:d.default.any},n.defaultProps={groupIndent:0,noIcon:!1,selectable:!1},c);function D(e){(0,a.default)(this,D);e=(0,r.default)(this,h.call(this,e));return m(e,["handleMouseEnter","handleMouseLeave","handleClick","handleOpen","afterLeave"]),e}i.displayName="SubMenu",t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var d=u(n(12)),h=u(n(2)),a=u(n(4)),r=u(n(6)),o=u(n(7)),i=n(0),m=u(i),g=n(23),l=u(n(3)),y=u(n(13)),v=u(n(24)),s=u(n(62)),_=n(11),b=u(n(98)),w=u(n(169)),M=n(170);function u(e){return e&&e.__esModule?e:{default:e}}var c,f=_.func.bindCtx,p=_.dom.setStyle,k=s.default.Popup,i=(c=i.Component,(0,o.default)(S,c),S.prototype.getPopup=function(e){this.popup=e},S.prototype.getOpen=function(){var e=this.props,t=e._key;return-1<e.root.state.openKeys.indexOf(t)},S.prototype.getPopupProps=function(){var e=this.props.root.props.popupProps;return e="function"==typeof e?e(this.props):e},S.prototype.handleOpen=function(e,t,n){var a=this.props,r=a._key,a=(a.root.handleOpen(r,e,t,n),this.popupProps);a.onVisibleChange&&a.onVisibleChange(e,t,n)},S.prototype.handlePopupOpen=function(){var e=this.props,t=e.root,n=e.level,a=e.align,e=e.autoWidth,r=t.props,o=r.popupAutoWidth,i=r.popupAlign,r=r.direction,a=a||i,i="autoWidth"in this.props?e:o;try{var l,s=(0,g.findDOMNode)(this),u=s.parentNode,d=(this.popupNode=this.popup.getInstance().overlay.getInstance().getContentNode(),t.popupNodes.push(this.popupNode),!i||(l="hoz"===r&&1===n?s:u).offsetWidth>this.popupNode.offsetWidth&&p(this.popupNode,"width",l.offsetWidth+"px"),"outside"!==a||"hoz"===r&&1===n||(p(this.popupNode,"height",u.offsetHeight+"px"),this.popupNode.firstElementChild&&p(this.popupNode.firstElementChild,"overflow-y","auto")),this.popupProps);d.onOpen&&d.onOpen()}catch(e){return null}},S.prototype.handlePopupClose=function(){var e=this.props.root.popupNodes,t=e.indexOf(this.popupNode),e=(-1<t&&e.splice(t,1),this.popupProps);e.onClose&&e.onClose()},S.prototype.renderItem=function(e,t,n){var a=this.props,r=a._key,o=a.root,i=a.level,l=a.inlineLevel,s=a.label,a=a.className,u=o.props,d=u.prefix,u=u.selectMode,e=(e?w:b).default,c=this.getOpen(),f=o.state,p=f.selectedKeys,f=f._k2n,f=(0,M.getChildSelected)({_key:r,_k2n:f,selectMode:u,selectedKeys:p}),u={"aria-haspopup":!0,"aria-expanded":c,_key:r,root:o,level:i,inlineLevel:l,type:"submenu"};return u.className=(0,y.default)(((p={})[d+"opened"]=c,p[d+"child-selected"]=f,p[a]=!!a,p)),m.default.createElement(e,(0,h.default)({},u,n),m.default.createElement("span",{className:d+"menu-item-text"},s),t)},S.prototype.renderPopup=function(e,t,n,a){var r=this,o=this.props,i=o.root,l=o.level,s=o.selectable,o=o.className,i=i.props.direction,u=(this.popupProps=this.getPopupProps(),this.getOpen()),i=("hoz"===i&&1===l&&s&&(n.target=function(){return(0,g.findDOMNode)(r)}),n.className),l=(0,d.default)(n,["className"]),s=(0,y.default)(o,i);return m.default.createElement(k,(0,h.default)({ref:this.getPopup},l,this.popupProps,{canCloseByEsc:!1,trigger:e,triggerType:t,visible:u,pinFollowBaseElementWhenFixed:!0,onVisibleChange:this.handleOpen,onOpen:this.handlePopupOpen,onClose:this.handlePopupClose}),m.default.createElement("div",{className:s},a))},S.prototype.render=function(){var e=this,t=this.props,n=t.root,a=t.level,r=t.hasSubMenu,o=t.selectable,i=t.children,l=t.triggerType,s=t.align,u=t.noIcon,t=(t.rtl,_.obj.pickOthers(Object.keys(S.propTypes),this.props)),d=n.props,c=d.prefix,f=d.selectMode,p=d.direction,h=d.popupAlign,d=d.triggerType,s=s||h,h=l||(r?d:"hover"),l=Array.isArray(i)?i[0]:i,r=f&&o,d=r&&"click"===h,i=this.getOpen(),f={},o=void 0,o="hoz"===p&&1===a?(f.align="tl bl",f.className=c+"menu-spacing-tb",{type:"arrow-down",className:(0,y.default)(((p={})[c+"menu-hoz-icon-arrow"]=!0,p[c+"open"]=i,p))}):("outside"===s?(f.target=function(){return(0,g.findDOMNode)(n)},f.align="tl tr",f.className=c+"menu-spacing-lr "+c+"menu-outside"):(d&&(f.target=function(){return(0,g.findDOMNode)(e)}),f.align="tl tr",f.className=c+"menu-spacing-lr"),{type:"arrow-right",className:c+"menu-icon-arrow "+c+"menu-symbol-popupfold"}),a=m.default.createElement(v.default,o),i=d?a:this.renderItem(r,u?null:a,t),p=this.renderPopup(i,h,f,l);return d?this.renderItem(r,p,t):p},s=n=S,n.menuChildType="submenu",n.propTypes={_key:l.default.string,root:l.default.object,level:l.default.number,hasSubMenu:l.default.bool,noIcon:l.default.bool,rtl:l.default.bool,selectable:l.default.bool,label:l.default.node,children:l.default.node,className:l.default.string,triggerType:l.default.oneOf(["click","hover"]),align:l.default.oneOf(["outside","follow"]),autoWidth:l.default.bool},n.defaultProps={selectable:!1,noIcon:!1},s);function S(e){(0,a.default)(this,S);e=(0,r.default)(this,c.call(this,e));return f(e,["handleOpen","handlePopupOpen","handlePopupClose","getPopup"]),e}i.displayName="PopupItem",t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var d=h(n(2)),a=h(n(4)),r=h(n(6)),o=h(n(7)),i=n(0),c=h(i),l=h(n(3)),s=h(n(71)),u=h(n(88)),f=n(11),p=h(n(98));function h(e){return e&&e.__esModule?e:{default:e}}var m,g=f.func.bindCtx,y=f.obj.pickOthers,o=(m=i.Component,(0,o.default)(v,m),v.prototype.stopPropagation=function(e){e.stopPropagation()},v.prototype.handleCheck=function(e){var t=this.props,n=t.checkType,a=t.checked,t=t.onChange;"radio"===n&&a||t(!a,e)},v.prototype.handleKeyDown=function(e){e.keyCode!==f.KEYCODE.SPACE||this.props.checkDisabled||this.handleCheck(e),this.props.onKeyDown&&this.props.onKeyDown(e)},v.prototype.handleClick=function(e){this.handleCheck(e),this.props.onClick&&this.props.onClick(e)},v.prototype.renderCheck=function(){var e=this.props,t=e.root,n=e.checked,a=e.indeterminate,r=e.disabled,o=e.checkType,i=e.checkDisabled,e=e.onChange,t=t.props.labelToggleChecked,l=("radio"===o?u:s).default,n={tabIndex:"-1",checked:n,disabled:r||i};return"checkbox"===o&&(n.indeterminate=a),t||(n.onChange=e,n.onClick=this.stopPropagation),c.default.createElement(l,(0,d.default)({"aria-labelledby":this.id},n))},v.prototype.render=function(){var e=this.props,t=e._key,n=e.root,a=e.checked,r=e.disabled,o=e.onClick,i=e.helper,e=e.children,l=n.props,s=l.prefix,l=l.labelToggleChecked,u=y(Object.keys(v.propTypes),this.props),t=(0,d.default)({_key:t,root:n,disabled:r,type:"item",onClick:o,onKeyDown:this.handleKeyDown},u),n=(l&&!r&&(t.onClick=this.handleClick),void 0);return c.default.createElement(p.default,(0,d.default)({"aria-checked":a,title:n="string"==typeof e?e:n},t),this.renderCheck(),c.default.createElement("span",{className:s+"menu-item-text",id:this.id},e),i?c.default.createElement("div",{className:s+"menu-item-helper"},i):null)},i=n=v,n.propTypes={_key:l.default.string,root:l.default.object,disabled:l.default.bool,inlineIndent:l.default.number,checked:l.default.bool,indeterminate:l.default.bool,onChange:l.default.func,checkType:l.default.oneOf(["checkbox","radio"]),checkDisabled:l.default.bool,helper:l.default.node,children:l.default.node,onKeyDown:l.default.func,onClick:l.default.func,id:l.default.string},n.defaultProps={disabled:!1,checked:!1,indeterminate:!1,checkType:"checkbox",checkDisabled:!1,onChange:{}},i);function v(e){(0,a.default)(this,v);var t=(0,r.default)(this,m.call(this,e));return g(t,["stopPropagation","handleKeyDown","handleClick"]),t.id=f.htmlId.escapeForId("checkable-item-"+(e.id||e._key)),t}o.displayName="CheckableItem",t.default=o,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var _=f(n(2)),b=f(n(12)),o=f(n(4)),a=f(n(378)),i=f(n(6)),r=f(n(7)),w=f(n(0)),l=f(n(3)),M=f(n(13)),s=n(30),u=f(n(379)),d=f(n(8)),k=f(n(24)),c=f(n(618)),S=n(11);function f(e){return e&&e.__esModule?e:{default:e}}n=S.func.noop;function p(e,t){return-1<e.indexOf(t)}h=u.default,(0,r.default)(E,h),E.getDerivedStateFromProps=function(e){var t=e.context,n={};return t.__group__?"selectedValue"in t&&(n.checked=p(t.selectedValue,e.value)):"checked"in e&&(n.checked=e.checked),"indeterminate"in e&&(n.indeterminate=e.indeterminate),n},E.prototype.shouldComponentUpdate=function(e,t,n){var a=S.obj.shallowEqual;return!a(this.props,e)||!a(this.state,t)||!a(this.context,n)},E.prototype.onChange=function(e){var t=this.props,n=t.context,t=t.value,a=e.target.checked;this.disabled||(n.__group__?n.onChange(t,e):("checked"in this.props||this.setState({checked:a}),"indeterminate"in this.props||this.setState({indeterminate:!1}),this.props.onChange(a,e)))},E.prototype.render=function(){var e=this.props,t=e.id,n=e.className,a=e.children,r=e.style,o=e.label,i=e.onMouseEnter,l=e.onMouseLeave,s=e.rtl,u=e.isPreview,d=e.renderPreview,c=e.context,f=e.value,p=e.name,e=(0,b.default)(e,["id","className","children","style","label","onMouseEnter","onMouseLeave","rtl","isPreview","renderPreview","context","value","name"]),h=!!this.state.checked,m=this.disabled,g=!!this.state.indeterminate,c=c.prefix||this.props.prefix,y=S.obj.pickOthers(E.propTypes,e),y=S.obj.pickAttrsWith(y,"data-"),e=(e.title&&(y.title=e.title),w.default.createElement("input",(0,_.default)({},S.obj.pickOthers(E.propTypes,e),{id:t,value:f,name:p,disabled:m,checked:h,type:"checkbox",onChange:this.onChange,"aria-checked":g?"mixed":h,className:c+"checkbox-input"}))),p=(m||(e=this.getStateElement(e)),(0,M.default)(((f={})[c+"checkbox-wrapper"]=!0,f[n]=!!n,f.checked=h,f.disabled=m,f.indeterminate=g,f[this.getStateClassName()]=!0,f))),v=c+"checkbox-label",m=g?"semi-select":"select";if(u)return f=(0,M.default)(n,c+"form-preview"),"renderPreview"in this.props?w.default.createElement("div",(0,_.default)({id:t,dir:s?"rtl":void 0},y,{className:f}),d(h,this.props)):w.default.createElement("p",(0,_.default)({id:t,dir:s?"rtl":void 0},y,{className:f}),h&&(a||o||this.state.value));n=(0,M.default)(((u={zoomIn:g})[c+"checkbox-semi-select-icon"]=g,u[c+"checkbox-select-icon"]=!g,u));return w.default.createElement("label",(0,_.default)({},y,{className:p,style:r,dir:s?"rtl":void 0,onMouseEnter:i,onMouseLeave:l}),w.default.createElement("span",{className:c+"checkbox"},w.default.createElement("span",{className:c+"checkbox-inner"},w.default.createElement(k.default,{type:m,size:"xs",className:n})),e),[o,a].map(function(e,t){return-1===[void 0,null].indexOf(e)?w.default.createElement("span",{key:t,className:v},e):null}))},(0,a.default)(E,[{key:"disabled",get:function(){var e=this.props,t=e.context;return e.disabled||"disabled"in t&&t.disabled}}]),r=u=E,u.displayName="Checkbox",u.propTypes=(0,_.default)({},d.default.propTypes,{prefix:l.default.string,rtl:l.default.bool,className:l.default.string,id:l.default.string,style:l.default.object,checked:l.default.bool,defaultChecked:l.default.bool,disabled:l.default.bool,label:l.default.node,indeterminate:l.default.bool,defaultIndeterminate:l.default.bool,onChange:l.default.func,onMouseEnter:l.default.func,onMouseLeave:l.default.func,value:l.default.oneOfType([l.default.string,l.default.number]),name:l.default.string,isPreview:l.default.bool,renderPreview:l.default.func}),u.defaultProps={defaultChecked:!1,defaultIndeterminate:!1,onChange:n,onMouseEnter:n,onMouseLeave:n,prefix:"next-",isPreview:!1};var h,a=r;function E(e){(0,o.default)(this,E);var t=(0,i.default)(this,h.call(this,e)),n=e.context,a=void 0,r=void 0,a="checked"in e?e.checked:e.defaultChecked,r="indeterminate"in e?e.indeterminate:e.defaultIndeterminate;return n.__group__&&(a=p(n.selectedValue,e.value)),t.state={checked:a,indeterminate:r},t.onChange=t.onChange.bind(t),t}t.default=d.default.config((0,c.default)((0,s.polyfill)(a))),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var n=n(615),r=(n=n)&&n.__esModule?n:{default:n};function a(e,t){for(var n=0;n<t.length;n++){var a=t[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),(0,r.default)(e,a.key,a)}}t.default=function(e,t,n){return t&&a(e.prototype,t),n&&a(e,n),e}},function(e,t,n){"use strict";t.__esModule=!0;var a=u(n(4)),r=u(n(6)),o=u(n(7)),i=n(0),l=u(i),s=u(n(13));function u(e){return e&&e.__esModule?e:{default:e}}var d,c=n(11).func.makeChain,n=(d=i.Component,(0,o.default)(f,d),f.prototype.getStateElement=function(e){var t=this.props,n=t.onFocus,t=t.onBlur;return l.default.cloneElement(e,{onFocus:c(this._onUIFocus,n),onBlur:c(this._onUIBlur,t)})},f.prototype.getStateClassName=function(){var e=this.state.focused;return(0,s.default)({focused:e})},f.prototype.resetUIState=function(){this.setState({focused:!1})},f.prototype._onUIFocus=function(){this.setState({focused:!0})},f.prototype._onUIBlur=function(){this.setState({focused:!1})},f);function f(e){(0,a.default)(this,f);var t=(0,r.default)(this,d.call(this,e));return t.state={},["_onUIFocus","_onUIBlur"].forEach(function(e){t[e]=t[e].bind(t)}),t}n.displayName="UIState",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var b=f(n(2)),w=f(n(12)),r=f(n(4)),a=f(n(378)),o=f(n(6)),i=f(n(7)),M=f(n(0)),l=f(n(3)),k=f(n(13)),s=n(30),u=f(n(379)),d=f(n(8)),c=f(n(620)),S=n(11);function f(e){return e&&e.__esModule?e:{default:e}}var p,E=S.func.makeChain,n=S.func.noop,a=(p=u.default,(0,i.default)(x,p),x.getDerivedStateFromProps=function(e){var t=e.context;return t.__group__&&"selectedValue"in t?{checked:t.selectedValue===e.value}:"checked"in e?{checked:e.checked}:null},x.prototype.shouldComponentUpdate=function(e,t,n){var a=S.obj.shallowEqual;return!a(this.props,e)||!a(this.state,t)||!a(this.context,n)},x.prototype.componentDidUpdate=function(){this.disabled&&this.resetUIState()},x.prototype.onChange=function(e){var t=e.target.checked,n=this.props,a=n.context,n=n.value;a.__group__?a.onChange(n,e):this.state.checked!==t&&("checked"in this.props||this.setState({checked:t}),this.props.onChange(t,e))},x.prototype.render=function(){var e=this.props,t=e.id,n=e.className,a=e.children,r=e.style,o=e.label,i=e.onMouseEnter,l=e.onMouseLeave,s=e.tabIndex,u=e.rtl,d=e.name,c=e.isPreview,f=e.renderPreview,p=e.value,h=e.context,e=(0,w.default)(e,["id","className","children","style","label","onMouseEnter","onMouseLeave","tabIndex","rtl","name","isPreview","renderPreview","value","context"]),m=!!this.state.checked,g=this.disabled,y=h.isButton,h=h.prefix||this.props.prefix,e=S.obj.pickOthers(x.propTypes,e),v=S.obj.pickAttrsWith(e,"data-");if(c)return c=(0,k.default)(n,h+"form-preview"),"renderPreview"in this.props?M.default.createElement("div",(0,b.default)({id:t,dir:u?"rtl":"ltr"},e,{className:c}),f(m,this.props)):M.default.createElement("p",(0,b.default)({id:t,dir:u?"rtl":"ltr"},e,{className:c}),m&&(a||o||p));var f=M.default.createElement("input",(0,b.default)({},S.obj.pickOthers(v,e),{name:d,id:t,tabIndex:s,disabled:g,checked:m,type:"radio",onChange:this.onChange,"aria-checked":m,className:h+"radio-input"})),p=(g||(f=this.getStateElement(f)),(0,k.default)(((c={})[h+"radio"]=!0,c.checked=m,c.disabled=g,c[this.getStateClassName()]=!0,c))),d=(0,k.default)(((e={})[h+"radio-inner"]=!0,e.press=m,e.unpress=!m,e)),s=(0,k.default)(((t={})[h+"radio-wrapper"]=!0,t[n]=!!n,t.checked=m,t.disabled=g,t[this.getStateClassName()]=!0,t)),_=h+"radio-label",c=y?M.default.createElement("span",{className:h+"radio-single-input"},f):M.default.createElement("span",{className:p},M.default.createElement("span",{className:d}),f);return M.default.createElement("label",(0,b.default)({},v,{dir:u?"rtl":"ltr",style:r,"aria-checked":m,"aria-disabled":g,className:s,onMouseEnter:g?i:E(this._onUIMouseEnter,i),onMouseLeave:g?l:E(this._onUIMouseLeave,l)}),c,[a,o].map(function(e,t){return void 0!==e?M.default.createElement("span",{key:t,className:_},e):null}))},(0,a.default)(x,[{key:"disabled",get:function(){var e=this.props,t=e.context;return e.disabled||t.__group__&&"disabled"in t&&t.disabled}}]),i=u=x,u.displayName="Radio",u.propTypes=(0,b.default)({},d.default.propTypes,{className:l.default.string,id:l.default.string,style:l.default.object,checked:l.default.bool,defaultChecked:l.default.bool,label:l.default.node,onChange:l.default.func,onMouseEnter:l.default.func,onMouseLeave:l.default.func,disabled:l.default.bool,value:l.default.oneOfType([l.default.string,l.default.number,l.default.bool]),name:l.default.string,isPreview:l.default.bool,renderPreview:l.default.func}),u.defaultProps={onChange:n,onMouseLeave:n,onMouseEnter:n,tabIndex:0,prefix:"next-",isPreview:!1},u.contextTypes={onChange:l.default.func,__group__:l.default.bool,isButton:l.default.bool,selectedValue:l.default.oneOfType([l.default.string,l.default.number,l.default.bool]),disabled:l.default.bool},i);function x(e){(0,r.default)(this,x);var t=(0,o.default)(this,p.call(this,e)),n=e.context,a=void 0,a=n.__group__?n.selectedValue===e.value:"checked"in e?e.checked:e.defaultChecked;return t.state={checked:a},t.onChange=t.onChange.bind(t),t}t.default=d.default.config((0,c.default)((0,s.polyfill)(a))),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=d(n(4)),r=d(n(6)),o=d(n(7)),i=n(0),l=d(i),s=d(n(3)),u=d(n(13)),n=d(n(8));function d(e){return e&&e.__esModule?e:{default:e}}c=i.Component,(0,o.default)(f,c),f.prototype.render=function(){var e=this.props,t=e.prefix,n=e.title,a=e.subTitle,r=e.extra,e=e.showTitleBullet;if(!n)return null;var e=(0,u.default)(((o={})[t+"card-head"]=!0,o[t+"card-head-show-bullet"]=e,o)),o=r?l.default.createElement("div",{className:t+"card-extra"},r):null;return l.default.createElement("div",{className:e},l.default.createElement("div",{className:t+"card-head-main"},l.default.createElement("div",{className:t+"card-title"},n,a?l.default.createElement("span",{className:t+"card-subtitle"},a):null),o))},o=i=f,i.propTypes={prefix:s.default.string,title:s.default.node,subTitle:s.default.node,showTitleBullet:s.default.bool,extra:s.default.node},i.defaultProps={prefix:"next-",showTitleBullet:!0};var c,s=o;function f(){return(0,a.default)(this,f),(0,r.default)(this,c.apply(this,arguments))}s.displayName="CardBulletHeader",t.default=n.default.config(s,{componentName:"Card"}),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=p(n(4)),r=p(n(6)),o=p(n(7)),i=n(0),l=p(i),s=p(n(23)),u=p(n(3)),d=p(n(24)),c=p(n(18)),f=p(n(8)),n=p(n(44));function p(e){return e&&e.__esModule?e:{default:e}}h=i.Component,(0,o.default)(m,h),m.prototype.componentDidMount=function(){this._setNeedMore(),this._setContentHeight()},m.prototype.componentDidUpdate=function(){this._setContentHeight()},m.prototype._setNeedMore=function(){var e=this.props.contentHeight,t=this._getNodeChildrenHeight(this.content);this.setState({needMore:"auto"!==e&&e<t})},m.prototype._setContentHeight=function(){var e,t;"auto"===this.props.contentHeight?this.content.style.height="auto":this.state.expand?(e=this._getNodeChildrenHeight(this.content),this.content.style.height=e+"px"):(e=s.default.findDOMNode(this.footer),t=this.props.contentHeight,e&&(t-=e.getBoundingClientRect().height),this.content.style.height=t+"px")},m.prototype._getNodeChildrenHeight=function(e){if(!e)return 0;var e=e.childNodes,t=e.length;if(!t)return 0;e=e[t-1];return e.offsetTop+e.offsetHeight},m.prototype.render=function(){var e=this.props,t=e.prefix,n=e.children,e=e.locale,a=this.state,r=a.needMore,a=a.expand;return l.default.createElement("div",{className:t+"card-body"},l.default.createElement("div",{className:t+"card-content",ref:this._contentRefHandler},n),r?l.default.createElement("div",{className:t+"card-footer",ref:this.saveFooter,onClick:this.handleToggle},l.default.createElement(c.default,{text:!0,type:"primary"},a?e.fold:e.expand,l.default.createElement(d.default,{type:"arrow-down",className:a?"expand":""}))):null)},o=i=m,i.propTypes={prefix:u.default.string,contentHeight:u.default.oneOfType([u.default.string,u.default.number]),locale:u.default.object,children:u.default.node},i.defaultProps={prefix:"next-",contentHeight:120,locale:n.default.Card};var h,u=o;function m(e,t){(0,a.default)(this,m);var n=(0,r.default)(this,h.call(this,e,t));return n.handleToggle=function(){n.setState(function(e){return{expand:!e.expand}})},n._contentRefHandler=function(e){n.content=e},n.saveFooter=function(e){n.footer=e},n.state={needMore:!1,expand:!1,contentHeight:"auto"},n}u.displayName="CardCollapseContent",t.default=f.default.config(u,{componentName:"Card"}),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var s=p(n(2)),u=p(n(12)),a=p(n(4)),r=p(n(6)),o=p(n(7)),i=n(0),d=p(i),l=p(n(3)),c=p(n(13)),f=p(n(8));function p(e){return e&&e.__esModule?e:{default:e}}var h,m=n(11).log.warning,g=["video","audio","picture","iframe","img"],o=(h=i.Component,(0,o.default)(y,h),y.prototype.render=function(){var e=this.props,t=e.prefix,n=e.style,a=e.className,r=e.component,o=e.image,i=e.src,e=(0,u.default)(e,["prefix","style","className","component","image","src"]),l=("children"in e||Boolean(o||i)||m("either `children`, `image` or `src` prop must be specified."),-1!==g.indexOf(r)),n=!l&&o?(0,s.default)({backgroundImage:'url("'+o+'")'},n):n;return d.default.createElement(r,(0,s.default)({},e,{style:n,className:(0,c.default)(t+"card-media",a),src:l?o||i:void 0}))},i=n=y,n.propTypes={prefix:l.default.string,component:l.default.elementType,image:l.default.string,src:l.default.string,style:l.default.object,className:l.default.string},n.defaultProps={prefix:"next-",component:"div",style:{}},i);function y(){return(0,a.default)(this,y),(0,r.default)(this,h.apply(this,arguments))}o.displayName="CardMedia",t.default=f.default.config(o),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var r=f(n(2)),o=f(n(12)),a=f(n(4)),i=f(n(6)),l=f(n(7)),s=n(0),u=f(s),d=f(n(3)),c=f(n(13)),n=f(n(8));function f(e){return e&&e.__esModule?e:{default:e}}p=s.Component,(0,l.default)(h,p),h.prototype.render=function(){var e=this.props,t=e.prefix,n=e.component,a=e.className,e=(0,o.default)(e,["prefix","component","className"]);return u.default.createElement(n,(0,r.default)({},e,{className:(0,c.default)(t+"card-actions",a)}))},l=s=h,s.propTypes={prefix:d.default.string,component:d.default.elementType,className:d.default.string},s.defaultProps={prefix:"next-",component:"div"};var p,d=l;function h(){return(0,a.default)(this,h),(0,i.default)(this,p.apply(this,arguments))}d.displayName="CardActions",t.default=n.default.config(d),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var F=c(n(2)),z=c(n(12)),a=c(n(4)),r=c(n(6)),o=c(n(7)),W=c(n(0)),i=c(n(3)),V=c(n(13)),l=c(n(386)),s=c(n(387)),u=c(n(129)),d=c(n(640));function c(e){return e&&e.__esModule?e:{default:e}}function f(){}p=W.default.Component,(0,o.default)(h,p),h.prototype.render=function(){var k=this,e=this.props,S=e.prefix,t=e.className,n=e.children,a=e.component,r=(e.colGroup,e.columns),E=e.locale,x=e.filterParams,C=e.onFilter,o=e.components,L=(e.affixRef,e.headerCellRef,e.onSort,e.sort),T=e.sortIcons,D=e.onResizeChange,O=e.pure,N=e.rtl,P=(e.tableWidth,e.tableEl),j=e.resizeProxyDomRef,e=(0,z.default)(e,["prefix","className","children","component","colGroup","columns","locale","filterParams","onFilter","components","affixRef","headerCellRef","onSort","sort","sortIcons","onResizeChange","pure","rtl","tableWidth","tableEl","resizeProxyDomRef"]),i=(this.checkHasLock(),o.Cell),Y=void 0===i?u.default:i,i=o.Filter,I=void 0===i?l.default:i,i=o.Sort,R=void 0===i?s.default:i,i=o.Resize,A=void 0===i?d.default:i,H=r.length,o=r.map(function(e,M){e=e.map(function(e,t){var n=k.getCellDomRefKey(M,t),a=e.title,r=e.colSpan,o=e.sortable,i=e.sortDirections,l=e.resizable,s=e.asyncResizable,u=e.dataIndex,d=e.filters,c=e.filterMode,f=e.filterMenuProps,p=e.filterProps,h=(e.width,e.align),m=e.alignHeader,g=e.className,y=(e.__normalized,e.lock,e.cellStyle,e.wordBreak),v=(0,z.default)(e,["title","colSpan","sortable","sortDirections","resizable","asyncResizable","dataIndex","filters","filterMode","filterMenuProps","filterProps","width","align","alignHeader","className","__normalized","lock","cellStyle","wordBreak"]),_=L?L[u]:"",g=(0,V.default)(((b={})[S+"table-header-node"]=!0,b[S+"table-header-resizable"]=l||s,b[S+"table-word-break-"+y]=!!y,b[S+"table-header-sort-"+_]=o&&_,b[g]=g,b)),y={},_=void 0,b=void 0,w=void 0;return y.colSpan=r,e.children&&e.children.length||(o&&(_=W.default.createElement(R,{prefix:S,className:S+"table-header-icon",dataIndex:u,onSort:k.onSort,sortDirections:i,sortIcons:T,sort:L,rtl:N,locale:E})),(s||l)&&(w=W.default.createElement(A,{asyncResizable:s,hasLock:k.hasLock,col:e,tableEl:P,prefix:S,rtl:N,dataIndex:u,resizeProxyDomRef:j,cellDomRef:k[n],onChange:D})),d&&(b=d.length?W.default.createElement(I,{dataIndex:u,className:S+"table-header-icon",filters:d,prefix:S,locale:E,rtl:N,filterParams:x,filterMode:c,filterMenuProps:f,filterProps:p,onFilter:C}):null),y.rowSpan=H-M),0==+y.colSpan?null:W.default.createElement(Y,(0,F.default)({},v,y,{key:t,prefix:S,pure:O,rtl:N,cell:a,component:"th",align:m||h,className:g,ref:k.getCellRef.bind(k,M,t),getCellDomRef:k.getCellDomRef.bind(k,M,t),type:"header"}),_,b,w)});return W.default.createElement("tr",{key:M},e)});return W.default.createElement(a,(0,F.default)({className:t},e),o,n)},o=n=h,n.propTypes={children:i.default.any,prefix:i.default.string,pure:i.default.bool,className:i.default.string,component:i.default.string,columns:i.default.array,colGroup:i.default.object,headerCellRef:i.default.func,locale:i.default.object,filterParams:i.default.object,onFilter:i.default.func,components:i.default.object,sort:i.default.object,sortIcons:i.default.object,onSort:i.default.func,onResizeChange:i.default.func,tableWidth:i.default.number,tableEl:i.default.any},n.defaultProps={component:"thead",columns:[],headerCellRef:f,onFilter:f,components:{},onSort:f,onResizeChange:f};var p,i=o;function h(){(0,a.default)(this,h);var o=(0,r.default)(this,p.call(this));return o.checkHasLock=function(){for(var e=o.props.columns,t=!1,n=0;n<e.length;n++){for(var a=e[n],r=0;r<a.length;r++)if(a[r].lock){t=!0;break}if(t)break}o.hasLock=t},o.getCellRef=function(e,t,n){o.props.headerCellRef(e,t,n);var a=o.props.columns,a=a[e]&&a[e][t];a&&a.ref&&"function"==typeof a.ref&&a.ref(n)},o.getCellDomRef=function(e,t,n){e=o.getCellDomRefKey(e,t);o[e]=n},o.getCellDomRefKey=function(e,t){return"header_cell_"+e+"_"+t},o.onSort=function(e,t,n){o.props.onSort(e,t,n)},o.hasLock=!1,o}i.displayName="Header",t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a,m=d(n(2)),g=d(n(12)),r=d(n(4)),o=d(n(6)),i=d(n(7)),y=d(n(0)),l=d(n(3)),s=n(30),v=d(n(13)),_=d(n(113)),b=d(n(50)),w=d(n(18)),M=d(n(24)),u=n(11);function d(e){return e&&e.__esModule?e:{default:e}}c=y.default.Component,(0,i.default)(f,c),f.getDerivedStateFromProps=function(e,t){var n,a={};return e.hasOwnProperty("filterParams")&&void 0!==e.filterParams&&(n=e.dataIndex||this.props.dataIndex,e=(e.filterParams||{})[n]||{},n=void 0,t.selectedKeysChangedByInner?(n=t.selectedKeys||[],a.selectedKeysChangedByInner=!1):n=e.selectedKeys||[],a.selectedKeys=n),a},f.prototype.componentDidUpdate=function(e,t){t=t.selectedKeys;this._selectedKeys=[].concat(t)},f.prototype.render=function(){var e,t=this.props,n=t.filters,a=t.prefix,r=t.locale,o=t.className,i=t.filterMode,l=t.filterMenuProps,s=t.filterProps,t=t.rtl,u=(0,v.default)(s&&s.className,((u={})[a+"table-filter-menu"]=!0,u)),d=this.state,c=d.visible,d=d.selectedKeys,l=l||{},f=l.subMenuSelectable,l=(0,g.default)(l,["subMenuSelectable"]);function p(e){return e.map(function(e){return e.children?(t=e.children,y.default.createElement(b.default.SubMenu,{label:e.label,key:e.value,selectable:f},p(t))):y.default.createElement(b.default.Item,{key:e.value},e.label);var t})}var n=p(n),h=y.default.createElement("div",{className:a+"table-filter-footer"},y.default.createElement(w.default,{type:"primary",onClick:this.onFilterConfirm},r.ok),y.default.createElement(w.default,{onClick:this.onFilterClear},r.reset)),o=(0,v.default)(((e={})[a+"table-filter"]=!0,e[o]=o,e)),a=(0,v.default)(((e={})[a+"table-filter-active"]=d&&0<d.length,e));return y.default.createElement(_.default,(0,m.default)({trigger:y.default.createElement("span",{role:"button","aria-label":r.filter,onKeyDown:this.filterKeydown,tabIndex:"0",className:o},y.default.createElement(M.default,{type:"filter",size:"small",className:a})),triggerType:"click",visible:c,autoFocus:!0,rtl:t,needAdjust:!1,onVisibleChange:this.onFilterVisible,className:u},s),y.default.createElement(b.default,(0,m.default)({footer:h,rtl:t,selectedKeys:d,selectMode:i,onSelect:this.onFilterSelect},l),n))},i=n=f,n.propTypes={dataIndex:l.default.string,filters:l.default.array,filterMode:l.default.string,filterParams:l.default.object,filterMenuProps:l.default.object,filterProps:l.default.object,locale:l.default.object,onFilter:l.default.func,prefix:l.default.string,rtl:l.default.bool},n.defaultProps={onFilter:function(){}},a=function(){var n=this;this.filterKeydown=function(e){e.preventDefault(),e.stopPropagation(),e.keyCode===u.KEYCODE.ENTER&&n.setState({visible:!n.state.visible})},this.onFilterVisible=function(e){n.setState({visible:e}),e||(e=[].concat(n._selectedKeys),n.setState({selectedKeysChangedByInner:!0,selectedKeys:e}))},this.onFilterSelect=function(e){n.setState({visible:!0,selectedKeysChangedByInner:!0,selectedKeys:e})},this.onFilterConfirm=function(){var e=n.state.selectedKeys,t={};t[n.props.dataIndex]={visible:!1,selectedKeys:e},n._selectedKeys=[].concat(e),n.setState({visible:!1,selectedKeysChangedByInner:!0}),n.props.onFilter(t)},this.onFilterClear=function(){var e={};e[n.props.dataIndex]={visible:!1,selectedKeys:[]},n._selectedKeys=[],n.setState({selectedKeys:[],visible:!1,selectedKeysChangedByInner:!0}),n.props.onFilter(e)}};var c,l=i;function f(e){(0,r.default)(this,f);var t=(0,o.default)(this,c.call(this,e));a.call(t);e=(e.filterParams||{})[e.dataIndex]||{};return t.state={visible:e.visible||!1,selectedKeys:e.selectedKeys||[],selectedKeysChangedByInner:!0},t._selectedKeys=[].concat(t.state.selectedKeys),t}l.displayName="Filter",t.default=(0,s.polyfill)(l),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var r=s(n(4)),o=s(n(6)),a=s(n(7)),c=s(n(0)),i=s(n(3)),f=s(n(13)),p=s(n(24)),l=n(11);function s(e){return e&&e.__esModule?e:{default:e}}u=c.default.Component,(0,a.default)(d,u),d.prototype.renderSort=function(){var e=this.props,t=e.prefix,n=e.sort,a=e.sortIcons,r=e.className,o=e.dataIndex,i=e.locale,l=e.sortDirections,s=e.rtl,u=n[o],d={desc:"descending",asc:"ascending"},e=l.map(function(e){return"default"===e?null:c.default.createElement("a",{key:e,className:u===e?"current":""},a?a[e]:c.default.createElement(p.default,{rtl:s,type:d[e],size:"xs"}))}),o=(0,f.default)(((n={})[t+"table-sort"]=!0,n[r]=r,n));return c.default.createElement("span",{role:"button",tabIndex:"0","aria-label":i[u],className:o,onClick:this.handleClick.bind(this),onKeyDown:this.keydownHandler},e)},d.prototype.render=function(){return this.renderSort()},a=n=d,n.propTypes={prefix:i.default.string,rtl:i.default.bool,className:i.default.string,sort:i.default.object,sortIcons:i.default.object,onSort:i.default.func,sortDirections:i.default.arrayOf(i.default.oneOf(["desc","asc","default"])),dataIndex:i.default.string,locale:i.default.object},n.defaultProps={sort:{},sortDirections:["desc","asc"]};var u,i=a;function d(){var e,i;(0,r.default)(this,d);for(var t=arguments.length,n=Array(t),a=0;a<t;a++)n[a]=arguments[a];return(e=i=(0,o.default)(this,u.call.apply(u,[this].concat(n)))).handleClick=function(){var e=i.props,n=e.sort,a=e.dataIndex,r=e.sortDirections,o="";r.forEach(function(e,t){n[a]===e&&(o=r.length-1>t?r[t+1]:r[0])}),n[a]||(o=r[0]),i.onSort(a,o)},i.keydownHandler=function(e){e.preventDefault(),e.stopPropagation(),e.keyCode===l.KEYCODE.ENTER&&i.handleClick()},i.onSort=function(e,t){var n={};n[e]=t,i.props.onSort(e,t,n)},(0,o.default)(i,e)}i.displayName="Sort",t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var r=c(n(2)),a=c(n(4)),o=c(n(6)),i=c(n(7)),l=c(n(0)),s=c(n(3)),u=c(n(13)),d=c(n(389));function c(e){return e&&e.__esModule?e:{default:e}}f=l.default.Component,(0,i.default)(p,f),p.prototype.render=function(){var e=this.props,t=e.className,n=e.record,e=e.primaryKey,a=this.context.selectedRowKeys,n=(0,u.default)(((a={selected:-1<a.indexOf(n[e])})[t]=t,a));return l.default.createElement(d.default,(0,r.default)({},this.props,{className:n}))},i=n=p,n.propTypes=(0,r.default)({},d.default.propTypes),n.defaultProps=(0,r.default)({},d.default.defaultProps),n.contextTypes={selectedRowKeys:s.default.array};var f,n=i;function p(){return(0,a.default)(this,p),(0,o.default)(this,f.apply(this,arguments))}n.displayName="SelectionRow",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var o=d(n(2)),i=d(n(12)),l=d(n(4)),s=d(n(6)),a=d(n(7)),_=d(n(0)),r=d(n(3)),b=n(11),u=d(n(174));function d(e){return e&&e.__esModule?e:{default:e}}c=_.default.Component,(0,a.default)(f,c),f.prototype.renderExpandedRow=function(e,r){var t=this.context,n=t.expandedRowRender,a=t.expandedRowIndent,o=t.openRowKeys,i=t.lockType,l=t.expandedIndexSimulate,t=t.expandedRowWidthEquals2Table,l=l?(r-1)/2:r,s=this.props,u=s.columns,d=s.cellRef,s=u.length,c=u[0]&&u[0].__colIndex||0;if(n){var f=this.props,p=f.primaryKey,f=f.prefix,h=a[0],a=a[1],m=h+a,g=function(e){for(var n=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0,a=[],t=0;t<e;t++)!function(t){a.push(_.default.createElement("td",{key:t,ref:function(e){return d(r,t+n,e)}}," "))}(t);return a},y=void 0;if(s<m&&!i&&b.log.warning("It's not allowed expandedRowIndent is more than the number of columns."),h<u.length&&"left"===i&&b.log.warning("expandedRowIndent left is less than the number of left lock columns."),a<u.length&&"right"===i&&b.log.warning("expandedRowIndent right is less than the number of right lock columns."),i)return-1<o.indexOf(e[p])?_.default.createElement("tr",{className:f+"table-expanded-row",key:"expanded-"+l},_.default.createElement("td",{colSpan:s,ref:function(e){return d(r,c,e)}}," ")):null;var i={position:"sticky",left:0},y=n(e,l),v=(y=_.default.isValidElement(y)?t?_.default.createElement("div",{className:f+"table-expanded-area",ref:this.getExpandedRow.bind(this,e[p]),style:i},y):y:_.default.createElement("div",{className:f+"table-cell-wrapper",ref:this.getExpandedRow.bind(this,e[p]),style:t&&i},y),u.length);return u.forEach(function(e){"right"===e.lock&&v--}),-1<o.indexOf(e[p])?_.default.createElement("tr",{className:f+"table-expanded-row",key:"expanded-"+(e[p]||l)},g(h),_.default.createElement("td",{colSpan:s-m},y),g(a,v)):null}return null},f.prototype.render=function(){var e=this.props,t=e.record,n=e.rowIndex,a=e.columns,e=(0,i.default)(e,["record","rowIndex","columns"]),r=this.context.expandedIndexSimulate;return t.__expanded?this.renderExpandedRow(t,n,a):_.default.createElement(u.default,(0,o.default)({},e,{record:t,columns:a,__rowIndex:n,rowIndex:r?n/2:n}))},a=n=f,n.propTypes=(0,o.default)({},u.default.propTypes),n.defaultProps=(0,o.default)({},u.default.defaultProps),n.contextTypes={openRowKeys:r.default.array,expandedRowRender:r.default.func,expandedRowIndent:r.default.array,expandedIndexSimulate:r.default.bool,expandedRowWidthEquals2Table:r.default.bool,lockType:r.default.oneOf(["left","right"]),getExpandedRowRef:r.default.func};var c,n=a;function f(){var e,a;(0,l.default)(this,f);for(var t=arguments.length,n=Array(t),r=0;r<t;r++)n[r]=arguments[r];return(e=a=(0,s.default)(this,c.call.apply(c,[this].concat(n)))).getExpandedRow=function(e,t){var n=a.context.getExpandedRowRef;n&&n(e,t)},(0,s.default)(a,e)}n.displayName="ExpandedRow",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var l=f(n(2)),s=f(n(12)),o=f(n(4)),i=f(n(6)),a=f(n(7)),u=f(n(0)),r=n(23),d=f(n(3)),c=f(n(127));function f(e){return e&&e.__esModule?e:{default:e}}p=u.default.Component,(0,a.default)(h,p),h.prototype.componentDidMount=function(){var e=this.context.getNode;e&&e("body",(0,r.findDOMNode)(this))},h.prototype.render=function(){var e=this.props,t=e.className,n=e.colGroup,a=(e.onLockScroll,e.tableWidth),e=(0,s.default)(e,["className","colGroup","onLockScroll","tableWidth"]),r=this.context,o=r.maxBodyHeight,i={};return r.fixedHeader&&(i.maxHeight=o,i.position="relative"),u.default.createElement("div",{style:i,className:t,onScroll:this.onBodyScroll},u.default.createElement("table",{style:{width:a}},n,u.default.createElement(c.default,(0,l.default)({},e,{colGroup:n}))))},a=n=h,n.propTypes={children:d.default.any,prefix:d.default.string,className:d.default.string,colGroup:d.default.any,onLockScroll:d.default.func,tableWidth:d.default.number},n.contextTypes={fixedHeader:d.default.bool,maxBodyHeight:d.default.oneOfType([d.default.number,d.default.string]),onFixedScrollSync:d.default.func,getNode:d.default.func};var p,n=a;function h(){var e,n;(0,o.default)(this,h);for(var t=arguments.length,a=Array(t),r=0;r<t;r++)a[r]=arguments[r];return(e=n=(0,i.default)(this,p.call.apply(p,[this].concat(a)))).onBodyScroll=function(e){var t=n.context.onFixedScrollSync;t&&t(e),"onLockScroll"in n.props&&"function"==typeof n.props.onLockScroll&&n.props.onLockScroll(e)},(0,i.default)(n,e)}n.displayName="FixedBody",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=c(n(2)),o=c(n(4)),i=c(n(6)),r=c(n(7)),l=c(n(0)),s=n(23),u=c(n(3)),d=c(n(390));function c(e){return e&&e.__esModule?e:{default:e}}f=l.default.Component,(0,r.default)(p,f),p.prototype.componentDidMount=function(){this.context.getLockNode("body",(0,s.findDOMNode)(this),this.context.lockType)},p.prototype.render=function(){var e={onLockScroll:this.onBodyScroll};return l.default.createElement(d.default,(0,a.default)({},this.props,e))},r=n=p,n.propTypes=(0,a.default)({},d.default.propTypes),n.contextTypes=(0,a.default)({},d.default.contextTypes,{getLockNode:u.default.func,onLockBodyScroll:u.default.func,lockType:u.default.oneOf(["left","right"])});var f,n=r;function p(){var e,t;(0,o.default)(this,p);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,f.call.apply(f,[this].concat(a)))).onBodyScroll=function(e){t.context.onLockBodyScroll(e)},(0,i.default)(t,e)}n.displayName="LockBody",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a,r=d(n(2)),o=d(n(4)),i=d(n(6)),l=d(n(7)),s=n(23),u=d(n(3)),n=d(n(130));function d(e){return e&&e.__esModule?e:{default:e}}c=n.default,(0,l.default)(f,c),f.prototype.componentDidMount=function(){var e=this.context,t=e.getNode,e=e.getLockNode;t&&t("header",(0,s.findDOMNode)(this),this.context.lockType),e&&e("header",(0,s.findDOMNode)(this),this.context.lockType)},a=l=f,l.propTypes=(0,r.default)({},n.default.propTypes),l.contextTypes=(0,r.default)({},n.default.contextTypes,{getLockNode:u.default.func,lockType:u.default.oneOf(["left","right"])});var c,l=a;function f(){return(0,o.default)(this,f),(0,i.default)(this,c.apply(this,arguments))}t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=l(n(4)),r=l(n(6)),o=l(n(7)),i=l(n(0)),n=l(n(3));function l(e){return e&&e.__esModule?e:{default:e}}s=i.default.Component,(0,o.default)(u,s),u.prototype.render=function(){return null},o=i=u,i.propTypes={cell:n.default.oneOfType([n.default.element,n.default.node,n.default.func]),hasChildrenSelection:n.default.bool,hasSelection:n.default.bool,useFirstLevelDataWhenNoChildren:n.default.bool},i.defaultProps={cell:function(){return""},hasSelection:!0,hasChildrenSelection:!1,useFirstLevelDataWhenNoChildren:!1},i._typeMark="listHeader";var s,n=o;function u(){return(0,a.default)(this,u),(0,r.default)(this,s.apply(this,arguments))}n.displayName="ListHeader",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=l(n(4)),r=l(n(6)),o=l(n(7)),i=l(n(0)),n=l(n(3));function l(e){return e&&e.__esModule?e:{default:e}}s=i.default.Component,(0,o.default)(u,s),u.prototype.render=function(){return null},o=i=u,i.propTypes={cell:n.default.oneOfType([n.default.element,n.default.node,n.default.func])},i.defaultProps={cell:function(){return""}},i._typeMark="listFooter";var s,n=o;function u(){return(0,a.default)(this,u),(0,r.default)(this,s.apply(this,arguments))}n.displayName="ListFooter",t.default=n,e.exports=t.default},function(e,t,n){"use strict";n(70),n(75),n(43),n(660)},function(e,t,n){var a,d,u,s,o,c,f=[].indexOf||function(e){for(var t=0,n=this.length;t<n;t++)if(t in this&&this[t]===e)return t;return-1};function r(){}s=n(111),o=n(665),a=n(667),c=n(112),d=n(397),u=n(398),n(668),r.REGEX_QUOTED_STRING="(?:\"(?:[^\"\\\\]*(?:\\\\.[^\"\\\\]*)*)\"|'(?:[^']*(?:''[^']*)*)')",r.PATTERN_TRAILING_COMMENTS=new s("^\\s*#.*$"),r.PATTERN_QUOTED_SCALAR=new s("^"+r.REGEX_QUOTED_STRING),r.PATTERN_THOUSAND_NUMERIC_SCALAR=new s("^(-|\\+)?[0-9,]+(\\.[0-9]+)?$"),r.PATTERN_SCALAR_BY_DELIMITERS={},r.settings={},r.configure=function(e,t){null==t&&(t=null),this.settings.exceptionOnInvalidType=e=null==e?null:e,this.settings.objectDecoder=t},r.parse=function(e,t,n){var a,r;if(null==n&&(n=null),this.settings.exceptionOnInvalidType=t=null==t?!1:t,this.settings.objectDecoder=n,null==e)return"";if(0===(e=c.trim(e)).length)return"";switch(a={exceptionOnInvalidType:t,objectDecoder:n,i:0},e.charAt(0)){case"[":r=this.parseSequence(e,a),++a.i;break;case"{":r=this.parseMapping(e,a),++a.i;break;default:r=this.parseScalar(e,null,['"',"'"],a)}if(""!==this.PATTERN_TRAILING_COMMENTS.replace(e.slice(a.i),""))throw new d('Unexpected characters near "'+e.slice(a.i)+'".');return r},r.dump=function(e,t,n){return null==t&&(t=!1),null==n&&(n=null),null==e?"null":"object"==(t=typeof e)?e instanceof Date?e.toISOString():null==n||"string"!=typeof(n=n(e))&&null==n?this.dumpObject(e):n:"boolean"==t?e?"true":"false":c.isDigits(e)?"string"==t?"'"+e+"'":String(parseInt(e)):c.isNumeric(e)?"string"==t?"'"+e+"'":String(parseFloat(e)):"number"==t?e===1/0?".Inf":e===-1/0?"-.Inf":isNaN(e)?".NaN":e:a.requiresDoubleQuoting(e)?a.escapeWithDoubleQuotes(e):a.requiresSingleQuoting(e)?a.escapeWithSingleQuotes(e):""===e?'""':c.PATTERN_DATE.test(e)||"null"===(n=e.toLowerCase())||"~"===n||"true"===n||"false"===n?"'"+e+"'":e},r.dumpObject=function(e,t,n){var a,r,o,i,l;if(null==n&&(n=null),e instanceof Array){for(i=[],a=0,o=e.length;a<o;a++)l=e[a],i.push(this.dump(l));return"["+i.join(", ")+"]"}for(r in i=[],e)l=e[r],i.push(this.dump(r)+": "+this.dump(l));return"{"+i.join(", ")+"}"},r.parseScalar=function(e,t,n,a,r){var o,i,l;if(null==t&&(t=null),null==n&&(n=['"',"'"]),null==r&&(r=!0),o=(a=null==(a=null==a?null:a)?{exceptionOnInvalidType:this.settings.exceptionOnInvalidType,objectDecoder:this.settings.objectDecoder,i:0}:a).i,l=e.charAt(o),0<=f.call(n,l)){if(i=this.parseQuotedScalar(e,a),o=a.i,null!=t&&(n=c.ltrim(e.slice(o)," ").charAt(0),!(0<=f.call(t,n))))throw new d("Unexpected characters ("+e.slice(o)+").")}else{if(t){if(l=t.join("|"),null==(n=this.PATTERN_SCALAR_BY_DELIMITERS[l])&&(n=new s("^(.+?)("+l+")"),this.PATTERN_SCALAR_BY_DELIMITERS[l]=n),!(t=n.exec(e.slice(o))))throw new d("Malformed inline YAML string ("+e+").");o+=(i=t[1]).length}else o+=(i=e.slice(o)).length,-1!==(l=i.indexOf(" #"))&&(i=c.rtrim(i.slice(0,l)));r&&(i=this.evaluateScalar(i,a))}return a.i=o,i},r.parseQuotedScalar=function(e,t){var n,a,r=t.i;if(n=this.PATTERN_QUOTED_SCALAR.exec(e.slice(r)))return a=n[0].substr(1,n[0].length-2),a='"'===e.charAt(r)?o.unescapeDoubleQuotedString(a):o.unescapeSingleQuotedString(a),r+=n[0].length,t.i=r,a;throw new u("Malformed inline YAML string ("+e.slice(r)+").")},r.parseSequence=function(e,t){var n,a,r=[],o=e.length,i=t.i;for(i+=1;i<o;){switch(t.i=i,e.charAt(i)){case"[":r.push(this.parseSequence(e,t)),i=t.i;break;case"{":r.push(this.parseMapping(e,t)),i=t.i;break;case"]":return r;case",":case" ":case"\n":break;default:if(n='"'===(n=e.charAt(i))||"'"===n,a=this.parseScalar(e,[",","]"],['"',"'"],t),i=t.i,!n&&"string"==typeof a&&(-1!==a.indexOf(": ")||-1!==a.indexOf(":\n")))try{a=this.parseMapping("{"+a+"}")}catch(e){0}r.push(a),--i}++i}throw new u("Malformed inline YAML string "+e)},r.parseMapping=function(e,t){var n,a,r,o,i={},l=e.length,s=t.i;for(s+=1,r=!1;s<l;){switch(t.i=s,e.charAt(s)){case" ":case",":case"\n":++s,t.i=s,r=!0;break;case"}":return i}if(r)r=!1;else for(a=this.parseScalar(e,[":"," ","\n"],['"',"'"],t,!1),s=t.i,n=!1;s<l;){switch(t.i=s,e.charAt(s)){case"[":o=this.parseSequence(e,t),s=t.i,void 0===i[a]&&(i[a]=o),n=!0;break;case"{":o=this.parseMapping(e,t),s=t.i,void 0===i[a]&&(i[a]=o),n=!0;break;case":":case" ":case"\n":break;default:o=this.parseScalar(e,[",","}"],['"',"'"],t),s=t.i,void 0===i[a]&&(i[a]=o),n=!0,--s}if(++s,n)break}}throw new u("Malformed inline YAML string "+e)},r.evaluateScalar=function(e,t){var n,a,r,o,i,l,s,u;switch(l=(e=c.trim(e)).toLowerCase()){case"null":case"":case"~":return null;case"true":return!0;case"false":return!1;case".inf":return 1/0;case".nan":return NaN;case"-.inf":return 1/0;default:switch(l.charAt(0)){case"!":switch(-1===(r=e.indexOf(" "))?l:l.slice(0,r)){case"!":return-1!==r?parseInt(this.parseScalar(e.slice(2))):null;case"!str":return c.ltrim(e.slice(4));case"!!str":return c.ltrim(e.slice(5));case"!!int":return parseInt(this.parseScalar(e.slice(5)));case"!!bool":return c.parseBoolean(this.parseScalar(e.slice(6)),!1);case"!!float":return parseFloat(this.parseScalar(e.slice(7)));case"!!timestamp":return c.stringToDate(c.ltrim(e.slice(11)));default:if(o=(t=null==t?{exceptionOnInvalidType:this.settings.exceptionOnInvalidType,objectDecoder:this.settings.objectDecoder,i:0}:t).objectDecoder,a=t.exceptionOnInvalidType,o)return-1===(r=(u=c.rtrim(e)).indexOf(" "))?o(u,null):(0<(s=c.ltrim(u.slice(r+1))).length||(s=null),o(u.slice(0,r),s));if(a)throw new d("Custom object support when parsing a YAML file has been disabled.");return null}break;case"0":return"0x"===e.slice(0,2)?c.hexDec(e):c.isDigits(e)?c.octDec(e):c.isNumeric(e)?parseFloat(e):e;case"+":return c.isDigits(e)?(i=e,n=parseInt(i),i===String(n)?n:i):c.isNumeric(e)?parseFloat(e):this.PATTERN_THOUSAND_NUMERIC_SCALAR.test(e)?parseFloat(e.replace(",","")):e;case"-":return c.isDigits(e.slice(1))?"0"===e.charAt(1)?-c.octDec(e.slice(1)):(i=e.slice(1),n=parseInt(i),i===String(n)?-n:-i):c.isNumeric(e)?parseFloat(e):this.PATTERN_THOUSAND_NUMERIC_SCALAR.test(e)?parseFloat(e.replace(",","")):e;default:return(n=c.stringToDate(e))?n:c.isNumeric(e)?parseFloat(e):this.PATTERN_THOUSAND_NUMERIC_SCALAR.test(e)?parseFloat(e.replace(",","")):e}}},e.exports=r},function(e,t){var i={}.hasOwnProperty,n=function(e){var t,n=o,a=e;for(t in a)i.call(a,t)&&(n[t]=a[t]);function r(){this.constructor=n}function o(e,t,n){this.message=e,this.parsedLine=t,this.snippet=n}return r.prototype=a.prototype,n.prototype=new r,n.__super__=a.prototype,o.prototype.toString=function(){return null!=this.parsedLine&&null!=this.snippet?"<ParseException> "+this.message+" (line "+this.parsedLine+": '"+this.snippet+"')":"<ParseException> "+this.message},o}(Error);e.exports=n},function(e,t){var i={}.hasOwnProperty,n=function(e){var t,n=o,a=e;for(t in a)i.call(a,t)&&(n[t]=a[t]);function r(){this.constructor=n}function o(e,t,n){this.message=e,this.parsedLine=t,this.snippet=n}return r.prototype=a.prototype,n.prototype=new r,n.__super__=a.prototype,o.prototype.toString=function(){return null!=this.parsedLine&&null!=this.snippet?"<ParseMore> "+this.message+" (line "+this.parsedLine+": '"+this.snippet+"')":"<ParseMore> "+this.message},o}(Error);e.exports=n},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var y=m(n(2)),a=m(n(4)),r=m(n(6)),o=m(n(7)),i=n(0),v=m(i),l=n(23),s=m(n(3)),_=m(n(13)),u=n(11),f=m(n(50)),d=m(n(62)),b=m(n(10)),c=m(n(44)),p=m(n(675)),h=m(n(400)),w=n(177);function m(e){return e&&e.__esModule?e:{default:e}}var M=d.default.Popup,g=f.default.Item,k=f.default.Group,n=u.func.noop,S=u.func.bindCtx,E=u.func.makeChain;x=v.default.Component,(0,o.default)(C,x),C.prototype.componentDidMount=function(){var e=this;setTimeout(function(){return e.syncWidth()},0),u.events.on(window,"resize",this.handleResize)},C.prototype.componentDidUpdate=function(e,t){e.label===this.props.label&&t.value===this.state.value||this.syncWidth()},C.prototype.componentWillUnmount=function(){u.events.off(window,"resize",this.handleResize),clearTimeout(this.resizeTimeout)},C.prototype.syncWidth=function(){var e=this,t=this.props,n=t.popupStyle,t=t.popupProps;n&&"width"in n||t&&t.style&&"width"in t.style||(n=u.dom.getStyle(this.selectDOM,"width"))&&this.width!==n&&(this.width=n,this.popupRef&&this.shouldAutoWidth()&&setTimeout(function(){e.popupRef&&u.dom.setStyle(e.popupRef,"width",e.width)},0))},C.prototype.handleResize=function(){var e=this;clearTimeout(this.resizeTimeout),this.state.visible&&(this.resizeTimeout=setTimeout(function(){e.syncWidth()},200))},C.prototype.setDataSource=function(e){var t=e.dataSource,e=e.children;return i.Children.count(e)?this.dataStore.updateByDS(e,!0):Array.isArray(t)?this.dataStore.updateByDS(t,!1):[]},C.prototype.setVisible=function(e,t){this.props.disabled&&e||this.state.visible===e||("visible"in this.props||this.setState({visible:e}),this.props.onVisibleChange(e,t))},C.prototype.setFirstHightLightKeyForMenu=function(e){var t=this.state.highlightKey;this.props.autoHighlightFirstItem&&(this.dataStore.getMenuDS().length&&this.dataStore.getEnableDS().length&&(!t||e)&&(t=""+this.dataStore.getEnableDS()[0].value,this.setState({highlightKey:t}),this.props.onToggleHighlightItem(t,"autoFirstItem")),e&&!this.dataStore.getEnableDS().length&&(this.setState({highlightKey:null}),this.props.onToggleHighlightItem(null,"highlightKeyToNull")))},C.prototype.handleChange=function(e){var t;"value"in this.props||this.setState({value:e});for(var n=arguments.length,a=Array(1<n?n-1:0),r=1;r<n;r++)a[r-1]=arguments[r];(t=this.props).onChange.apply(t,[e].concat(a))},C.prototype.handleMenuBodyClick=function(e){this.props.popupAutoFocus||this.focusInput(e)},C.prototype.toggleHighlightItem=function(e){if(this.state.visible){var t=this.dataStore.getEnableDS().length;if(!t)return!1;var n=this.state.highlightKey,a=-1,e=(null!==n&&this.dataStore.getEnableDS().some(function(e,t){return-1<(a=""+e.value===n?t:a)}),t<=(a=(a+=e)<0?t-1:a)&&(a=0),this.dataStore.getEnableDS()[a]),n=e?""+e.value:null;return this.setState({highlightKey:n,srReader:e.label}),this.scrollMenuIntoView(),e}this.setVisible(!0,"enter")},C.prototype.scrollMenuIntoView=function(){var t=this,n=this.props.prefix;clearTimeout(this.highlightTimer),this.highlightTimer=setTimeout(function(){try{var e=(0,l.findDOMNode)(t.menuRef).querySelector("."+n+"select-menu-item."+n+"focused");e&&e.scrollIntoViewIfNeeded&&e.scrollIntoViewIfNeeded()}catch(e){}})},C.prototype.renderMenuHeader=function(){var e=this.props.menuProps;return e&&"header"in e?e.header:null},C.prototype.handleSelect=function(){},C.prototype.renderMenu=function(){var n=this,e=this.props,t=e.prefix,a=e.mode,r=e.locale,o=e.notFoundContent,i=e.useVirtual,e=e.menuProps,l=this.state,s=l.dataSource,l=l.highlightKey,u=this.state.value,d=void 0,d=(0,w.isNull)(u)||0===u.length||this.isAutoComplete?[]:(0,w.isSingle)(a)?[(0,w.valueToSelectKey)(u)]:[].concat(u).map(function(e){return(0,w.valueToSelectKey)(e)}),u=this.renderMenuItem(s),s=(0,_.default)(((s={})[t+"select-menu"]=!0,s[t+"select-menu-empty"]=!u||!u.length,s)),c=(u&&u.length||(u=v.default.createElement("span",{className:t+"select-menu-empty-content"},o||r.notFoundContent)),(0,y.default)({},e,{children:u,role:"listbox",selectedKeys:d,focusedKey:l,focusable:!1,selectMode:(0,w.isSingle)(a)?"single":"multiple",onSelect:this.handleMenuSelect,onItemClick:this.handleItemClick,header:this.renderMenuHeader(),onClick:this.handleMenuBodyClick,onMouseDown:this.handleMouseDown,className:s})),o=this.shouldAutoWidth()?{width:"100%"}:{minWidth:this.width};return i&&10<u.length?v.default.createElement("div",{className:t+"select-menu-wrapper",style:(0,y.default)({position:"relative"},o)},v.default.createElement(h.default,{itemsRenderer:function(e,t){return v.default.createElement(f.default,(0,y.default)({ref:function(e){t(e),n.menuRef=e},flatenContent:!0},c),e)}},u)):v.default.createElement(f.default,(0,y.default)({},c,{style:o}))},C.prototype.renderMenuItem=function(e){var n=this,t=this.props,a=t.prefix,r=t.itemRender,o=t.showDataSourceChildren,i=void 0,i=this.isAutoComplete?this.state.value:this.state.searchValue;return e.map(function(e,t){return e?Array.isArray(e.children)&&o?v.default.createElement(k,{key:t,label:e.label},n.renderMenuItem(e.children)):(t={role:"option",key:e.value,className:a+"select-menu-item",disabled:e.disabled},"title"in e&&(t.title=e.title),v.default.createElement(g,t,r(e,i))):null})},C.prototype.focusInput=function(){this.inputRef.focus()},C.prototype.focus=function(){var e;(e=this.inputRef).focus.apply(e,arguments)},C.prototype.beforeOpen=function(){"single"===this.props.mode&&this.setFirstHightLightKeyForMenu(),this.syncWidth()},C.prototype.beforeClose=function(){},C.prototype.afterClose=function(){},C.prototype.shouldAutoWidth=function(){return!this.props.popupComponent&&this.props.autoWidth},C.prototype.render=function(e){var t,n=e.prefix,a=e.mode,r=e.popupProps,o=e.popupContainer,i=e.popupClassName,l=e.popupStyle,s=e.popupContent,u=e.canCloseByTrigger,d=e.followTrigger,c=e.cache,f=e.popupComponent,p=e.isPreview,h=e.renderPreview,m=e.style,e=e.className,g=(0,_.default)(((g={})[n+"select-auto-complete-menu"]=!s&&this.isAutoComplete,g[n+"select-"+a+"-menu"]=!s&&!!a,g),i||r.className);if(p)return this.isAutoComplete?v.default.createElement(b.default,{style:m,className:e,isPreview:p,renderPreview:h,value:this.state.value}):(i=this.state.value,t=this.state.value,this.useDetailValue()||(t=(i===this.valueDataSource.value?this.valueDataSource:(0,w.getValueDataSource)(i,this.valueDataSource.mapValueDS,this.dataStore.getMapDS())).valueDS),"function"==typeof h?(i=(0,_.default)(((i={})[n+"form-preview"]=!0,i[e]=!!e,i)),v.default.createElement("div",{style:m,className:i},h(t,this.props))):(i=this.props.fillProps,"single"===a?v.default.createElement(b.default,{style:m,className:e,isPreview:p,value:t?i?t[i]:t.label:""}):v.default.createElement(b.default,{style:m,className:e,isPreview:p,value:(t||[]).map(function(e){return e.label}).join(", ")})));h=(0,y.default)({triggerType:"click",autoFocus:!!this.props.popupAutoFocus,cache:c},r,{beforeOpen:E(this.beforeOpen,r.beforeOpen),beforeClose:E(this.beforeClose,r.beforeClose),afterClose:E(this.afterClose,r.afterClose),canCloseByTrigger:u,followTrigger:d,visible:this.state.visible,onVisibleChange:this.handleVisibleChange,shouldUpdatePosition:!0,container:o||r.container,className:g,style:l||r.style});return r.v2&&delete h.shouldUpdatePosition,v.default.createElement(f||M,(0,y.default)({},h,{trigger:this.renderSelect()}),s?v.default.createElement("div",{className:n+"select-popup-wrap",style:this.shouldAutoWidth()?{width:this.width}:{},ref:this.savePopupRef},s):v.default.createElement("div",{className:n+"select-spacing-tb",style:this.shouldAutoWidth()?{width:this.width}:{},ref:this.savePopupRef},this.renderMenu()))},o=d=C,d.propTypes={prefix:s.default.string,size:s.default.oneOf(["small","medium","large"]),value:s.default.any,defaultValue:s.default.any,placeholder:s.default.string,autoWidth:s.default.bool,label:s.default.node,hasClear:s.default.bool,state:s.default.oneOf(["error","loading","success","warning"]),readOnly:s.default.bool,disabled:s.default.bool,visible:s.default.bool,defaultVisible:s.default.bool,onVisibleChange:s.default.func,popupContainer:s.default.any,popupClassName:s.default.any,popupStyle:s.default.object,popupProps:s.default.object,followTrigger:s.default.bool,popupContent:s.default.node,menuProps:s.default.object,filterLocal:s.default.bool,filter:s.default.func,defaultHighlightKey:s.default.string,highlightKey:s.default.string,onToggleHighlightItem:s.default.func,autoHighlightFirstItem:s.default.bool,useVirtual:s.default.bool,className:s.default.any,children:s.default.any,dataSource:s.default.array,itemRender:s.default.func,mode:s.default.string,notFoundContent:s.default.node,locale:s.default.object,rtl:s.default.bool,popupComponent:s.default.any,isPreview:s.default.bool,renderPreview:s.default.func,showDataSourceChildren:s.default.bool},d.defaultProps={prefix:"next-",size:"medium",autoWidth:!0,onChange:n,onVisibleChange:n,onToggleHighlightItem:n,popupProps:{},filterLocal:!0,filter:w.filter,itemRender:function(e){return e.label||e.value},locale:c.default.Select,autoHighlightFirstItem:!0,showDataSourceChildren:!0,defaultHighlightKey:null};var x,s=o;function C(e){(0,a.default)(this,C);var t=(0,r.default)(this,x.call(this,e)),n=(t.handleMouseDown=function(e){t.props.popupAutoFocus||e.preventDefault()},t.saveSelectRef=function(e){t.selectDOM=(0,l.findDOMNode)(e)},t.saveInputRef=function(e){e&&e.getInstance()&&(t.inputRef=e.getInstance())},t.savePopupRef=function(e){t.popupRef=e},t.dataStore=new p.default({filter:e.filter,filterLocal:e.filterLocal,showDataSourceChildren:e.showDataSourceChildren}),e.mode,"value"in e?e.value:e.defaultValue);return"single"!==e.mode&&n&&!Array.isArray(n)&&(n=[n]),t.state={dataStore:t.dataStore,value:n,visible:"visible"in e?e.visible:e.defaultVisible,dataSource:t.setDataSource(t.props),width:100,highlightKey:"highlightKey"in e?e.highlightKey:"single"===e.mode?e.value||e.defaultHighlightKey||e.defaultValue:e.defaultHighlightKey,srReader:""},S(t,["handleMenuBodyClick","handleVisibleChange","focusInput","beforeOpen","beforeClose","afterClose","handleResize"]),t}s.displayName="Base",t.default=s,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=r(n(8)),n=r(n(676));function r(e){return e&&e.__esModule?e:{default:e}}t.default=a.default.config(n.default),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=o(n(2));t.getDisabledCompatibleTrigger=function(e){{var t,n;if("Config(Button)"===e.type.displayName&&e.props.disabled)return t=e.props.style&&e.props.style.display?e.props.style.display:"inline-block",n=r.default.cloneElement(e,{style:(0,a.default)({},e.props.style,{pointerEvents:"none"})}),r.default.createElement("span",{style:{display:t,cursor:"not-allowed"}},n)}return e};var r=o(n(0));function o(e){return e&&e.__esModule?e:{default:e}}},function(e,t,n){"use strict";t.__esModule=!0,t.triggerEvents=void 0;var a=o(n(38));t.getOffsetWH=function(e,t){var n="width";"left"!==t&&"right"!==t||(n="height");return e?e.getBoundingClientRect()[n]:0},t.getOffsetLT=function(e,t){var n="left";"left"!==t&&"right"!==t||(n="top");return e.getBoundingClientRect()[n]},t.isTransformSupported=function(e){return"transform"in e||"webkitTransform"in e||"MozTransform"in e},t.toArray=function(e){var n=[];return r.default.Children.forEach(e,function(e,t){r.default.isValidElement(e)&&n.push(r.default.cloneElement(e,{key:e.key||t,title:e.props.title||e.props.tab}))}),n},t.tabsArrayShallowEqual=function(e,t){if(e!==t){if(!e||!t||(void 0===e?"undefined":(0,a.default)(e))+(void 0===t?"undefined":(0,a.default)(t))!=="objectobject"||e.length!==t.length)return!1;for(var n=0;n<e.length;n++)if(e[n].key!==t[n].key||e[n].props.title!==t[n].props.title)return!1}return!0};var r=o(n(0));function o(e){return e&&e.__esModule?e:{default:e}}t.triggerEvents={CLICK:"click",HOVER:"hover"}},function(e,t,n){"use strict";n(43),n(703)},function(e,t,n){},function(e,t,n){"use strict";t.__esModule=!0,t.getTrackLeft=t.getTrackAnimateCSS=t.getTrackCSS=void 0;var o=a(n(2)),i=a(n(23));function a(e){return e&&e.__esModule?e:{default:e}}function l(n,e){e.reduce(function(e,t){return e&&n.hasOwnProperty(t)},!0)||console.error("Keys Missing",n)}var r=t.getTrackCSS=function(e){l(e,["left","variableWidth","slideCount","slidesToShow","slideWidth"]);var t=void 0,n=void 0,a=e.slideCount+2*e.slidesToShow,a=(e.vertical?n=a*e.slideHeight:t=!e.variableWidth&&e.centerMode?(e.slideCount+2*(e.slidesToShow+1))*e.slideWidth:(e.slideCount+2*e.slidesToShow)*e.slideWidth,{opacity:1}),r={WebkitTransform:e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",transform:e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",transition:"",WebkitTransition:"",msTransform:e.vertical?"translateY("+e.left+"px)":"translateX("+e.left+"px)"};return t&&(a=(0,o.default)({},a,{width:t})),n&&(a=(0,o.default)({},a,{height:n})),a="fade"!==e.animation?(0,o.default)({},a,r):a};t.getTrackAnimateCSS=function(e){l(e,["left","variableWidth","slideCount","slidesToShow","slideWidth","speed","cssEase"]);var t=r(e);return t.WebkitTransition="-webkit-transform "+e.speed+"ms "+e.cssEase,t.transition="transform "+e.speed+"ms "+e.cssEase,t},t.getTrackLeft=function(e){l(e,["slideIndex","trackRef","infinite","centerMode","slideCount","slidesToShow","slidesToScroll","slideWidth","listWidth","variableWidth","slideHeight"]);var t,n=0,a=void 0,r=void 0,o=0;return"fade"===e.animation?0:(e.infinite?(e.slideCount>e.slidesToShow&&(n=e.slideWidth*e.slidesToShow*-1,o=e.slideHeight*e.slidesToShow*-1),e.slideCount%e.slidesToScroll!=0&&(t=e.slideIndex+e.slidesToScroll>e.slideCount&&e.slideCount>e.slidesToShow,(t=e.rtl?(e.slideIndex>=e.slideCount?e.slideCount-e.slideIndex:e.slideIndex)+e.slidesToScroll>e.slideCount&&e.slideCount>e.slidesToShow:t)&&(o=e.slideIndex>e.slideCount?(n=(e.slidesToShow-(e.slideIndex-e.slideCount))*e.slideWidth*-1,(e.slidesToShow-(e.slideIndex-e.slideCount))*e.slideHeight*-1):(n=e.slideCount%e.slidesToScroll*e.slideWidth*-1,e.slideCount%e.slidesToScroll*e.slideHeight*-1)))):e.slideCount%e.slidesToScroll!=0&&e.slideIndex+e.slidesToScroll>e.slideCount&&e.slideCount>e.slidesToShow&&(n=(e.slidesToShow-e.slideCount%e.slidesToScroll)*e.slideWidth),e.centerMode&&(e.infinite?n+=e.slideWidth*Math.floor(e.slidesToShow/2):n=e.slideWidth*Math.floor(e.slidesToShow/2)),a=e.vertical?e.slideIndex*e.slideHeight*-1+o:e.slideIndex*e.slideWidth*-1+n,!0===e.variableWidth&&(t=void 0,a=(r=e.slideCount<=e.slidesToShow||!1===e.infinite?i.default.findDOMNode(e.trackRef).childNodes[e.slideIndex]:(t=e.slideIndex+e.slidesToShow,i.default.findDOMNode(e.trackRef).childNodes[t]))?-1*r.offsetLeft:0,!0===e.centerMode&&(r=!1===e.infinite?i.default.findDOMNode(e.trackRef).children[e.slideIndex]:i.default.findDOMNode(e.trackRef).children[e.slideIndex+e.slidesToShow+1])&&(a=-1*r.offsetLeft+(e.listWidth-r.offsetWidth)/2)),a)}},function(e,t,n){"use strict";t.__esModule=!0;var p=u(n(2)),h=u(n(12)),o=u(n(4)),i=u(n(6)),a=u(n(7)),m=u(n(0)),r=u(n(3)),g=u(n(13)),l=u(n(8)),y=u(n(24)),s=n(11);function u(e){return e&&e.__esModule?e:{default:e}}d=m.default.Component,(0,a.default)(c,d),c.prototype.render=function(){var e=this.props,t=e.title,n=e.children,a=e.className,r=e.isExpanded,o=e.disabled,i=e.style,l=e.prefix,s=e.onClick,u=e.id,e=(0,h.default)(e,["title","children","className","isExpanded","disabled","style","prefix","onClick","id"]),a=(0,g.default)(((d={})[l+"collapse-panel"]=!0,d[l+"collapse-panel-hidden"]=!r,d[l+"collapse-panel-expanded"]=r,d[l+"collapse-panel-disabled"]=o,d[a]=a,d)),d=(0,g.default)(((d={})[l+"collapse-panel-icon"]=!0,d[l+"collapse-panel-icon-expanded"]=r,d)),c=u?u+"-heading":void 0,f=u?u+"-region":void 0;return m.default.createElement("div",(0,p.default)({className:a,style:i,id:u},e),m.default.createElement("div",{id:c,className:l+"collapse-panel-title",onClick:s,onKeyDown:this.onKeyDown,tabIndex:"0","aria-disabled":o,"aria-expanded":r,"aria-controls":f,role:"button"},m.default.createElement(y.default,{type:"arrow-right",className:d,"aria-hidden":"true"}),t),m.default.createElement("div",{className:l+"collapse-panel-content",role:"region",id:f},n))},a=n=c,n.propTypes={prefix:r.default.string,style:r.default.object,children:r.default.any,isExpanded:r.default.bool,disabled:r.default.bool,title:r.default.node,className:r.default.string,onClick:r.default.func,id:r.default.string},n.defaultProps={prefix:"next-",isExpanded:!1,onClick:s.func.noop},n.isNextPanel=!0;var d,r=a;function c(){var e,n;(0,o.default)(this,c);for(var t=arguments.length,a=Array(t),r=0;r<t;r++)a[r]=arguments[r];return(e=n=(0,i.default)(this,d.call.apply(d,[this].concat(a)))).onKeyDown=function(e){var t;e.keyCode===s.KEYCODE.SPACE&&(t=n.props.onClick,e.preventDefault(),t&&t(e))},(0,i.default)(n,e)}r.displayName="Panel",t.default=l.default.config(r),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var n=n(12),i=(n=n)&&n.__esModule?n:{default:n};t.default=function(e,t){var n=e.listType,a=e.defaultFileList,r=e.fileList,o=(0,i.default)(e,["listType","defaultFileList","fileList"]);return"text-image"===n?(t("listType=text-image","listType=image","Upload"),o.listType="image"):"picture-card"===n?(t("listType=picture-card","listType=card","Upload"),o.listType="card"):o.listType=n,"defaultFileList"in e&&(t("defaultFileList","defaultValue","Upload"),o.defaultValue=a),"fileList"in e&&(t("fileList","value","Upload"),o.value=r),o},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var o=r(n(4)),i=r(n(6)),a=r(n(7)),n=n(0);function r(e){return e&&e.__esModule?e:{default:e}}l=n.Component,(0,a.default)(s,l),s.prototype.abort=function(e){this.uploaderRef.abort(e)},s.prototype.startUpload=function(){this.uploaderRef.startUpload()},s.prototype.isUploading=function(){return this.uploaderRef.isUploading()};var l,n=s;function s(){var e,t;(0,o.default)(this,s);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,l.call.apply(l,[this].concat(a)))).saveUploaderRef=function(e){e&&"function"==typeof e.getInstance?t.uploaderRef=e.getInstance():t.uploaderRef=e},(0,i.default)(t,e)}n.displayName="Base",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var m=d(n(2)),g=d(n(12)),o=d(n(4)),i=d(n(6)),a=d(n(7)),r=n(0),y=d(r),l=d(n(3)),s=n(11),u=d(n(410)),v=d(n(181));function d(e){return e&&e.__esModule?e:{default:e}}c=r.Component,(0,a.default)(f,c),f.prototype.componentDidMount=function(){var e=this.props,e=this.getUploadOptions(e);this.uploader=new u.default(e)},f.prototype.componentDidUpdate=function(e){for(var t=this.getUploadOptions(e),n=this.getUploadOptions(this.props),a=Object.keys(n),r=0;r<a.length;r++){var o=a[r];if(n[o]!==t[o])return void this.uploader.setOptions(n)}},f.prototype.componentWillUnmount=function(){this.abort()},f.prototype.abort=function(e){this.uploader.abort(e)},f.prototype.startUpload=function(e){this.uploader.startUpload(e)},f.prototype.render=function(){var e=this.props,t=e.accept,n=e.multiple,a=e.webkitdirectory,r=e.children,o=e.id,i=e.disabled,l=e.dragable,s=e.style,u=e.className,d=e.onSelect,c=e.onDragOver,f=e.onDragLeave,p=e.onDrop,h=e.name,e=(0,g.default)(e,["accept","multiple","webkitdirectory","children","id","disabled","dragable","style","className","onSelect","onDragOver","onDragLeave","onDrop","name"]);return y.default.createElement(v.default,(0,m.default)({},e,{id:o,accept:t,multiple:n,webkitdirectory:a,dragable:l,disabled:i,className:u,style:s,onSelect:d,onDragOver:c,onDragLeave:f,onDrop:p,name:h}),r)},r=n=f,n.propTypes=(0,m.default)({},v.default.propTypes,{action:l.default.string,accept:l.default.string,data:l.default.oneOfType([l.default.object,l.default.func]),headers:l.default.object,withCredentials:l.default.bool,beforeUpload:l.default.func,onProgress:l.default.func,onSuccess:l.default.func,onError:l.default.func,children:l.default.node,timeout:l.default.number,method:l.default.oneOf(["post","put"]),request:l.default.func}),n.defaultProps=(0,m.default)({},v.default.defaultProps,{name:"file",multiple:!1,withCredentials:!0,beforeUpload:s.func.noop,onSelect:s.func.noop,onDragOver:s.func.noop,onDragLeave:s.func.noop,onDrop:s.func.noop,onProgress:s.func.noop,onSuccess:s.func.noop,onError:s.func.noop,onAbort:s.func.noop,method:"post"});var c,a=r;function f(){var e,t;(0,o.default)(this,f);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,c.call.apply(c,[this].concat(a)))).getUploadOptions=function(e){return{action:e.action,name:e.name,timeout:e.timeout,method:e.method,beforeUpload:e.beforeUpload,onProgress:e.onProgress,onSuccess:e.onSuccess,onError:e.onError,withCredentials:e.withCredentials,headers:e.headers,data:e.data,request:e.request}},(0,i.default)(t,e)}a.displayName="Html5Uploader",t.default=a,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var h=r(n(2)),a=r(n(4)),d=n(11),c=n(99),m=r(n(729));function r(e){return e&&e.__esModule?e:{default:e}}var o=d.func.noop;function i(e){(0,a.default)(this,i),this.options=(0,h.default)({beforeUpload:o,onProgress:o,onSuccess:o,onError:o,data:{},name:"file",method:"post"},e),this.reqs={}}i.prototype.setOptions=function(e){(0,h.default)(this.options,e)},i.prototype.startUpload=function(e){var t=this;(e.length?Array.prototype.slice.call(e):[e]).forEach(function(e){e.uid=e.uid||(0,c.uid)(),t.upload(e)})},i.prototype.abort=function(e){var t,n=this.reqs;e?((t=e)&&e.uid&&(t=e.uid),n[t]&&(n[t].abort(),delete n[t])):Object.keys(n).forEach(function(e){n[e]&&n[e].abort&&n[e].abort(),delete n[e]})},i.prototype.upload=function(n){var a=this,e=this.options,t=e.beforeUpload,r=e.action,o=e.name,i=e.headers,l=e.timeout,s=e.withCredentials,u=e.method,e=e.data,t=t(n,{action:r,name:o,headers:i,timeout:l,withCredentials:s,method:u,data:e});d.func.promiseCall(t,function(e){var t;if(!1===e)return(t=new Error(c.errorCode.BEFOREUPLOAD_REJECT)).code=c.errorCode.BEFOREUPLOAD_REJECT,a.options.onError(t,null,n);a.post(n,d.obj.isPlainObject(e)?e:void 0)},function(e){var t=void 0;e?t=e:(t=new Error(c.errorCode.BEFOREUPLOAD_REJECT)).code=c.errorCode.BEFOREUPLOAD_REJECT,a.options.onError(t,null,n)})},i.prototype.post=function(n){var a=this,e=(0,h.default)({},this.options,1<arguments.length&&void 0!==arguments[1]?arguments[1]:{}),t=e.action,r=e.name,o=e.headers,i=e.timeout,l=e.withCredentials,s=e.onProgress,u=e.onSuccess,d=e.onError,c=e.method,f=e.data,p=("function"==typeof f&&(f=f(n)),n.uid),e="function"==typeof e.request?e.request:m.default;this.reqs[p]=e({action:t,filename:r,file:n,data:f,timeout:i,headers:o,withCredentials:l,method:c,onProgress:function(e){s(e,n)},onSuccess:function(e){delete a.reqs[p],u(e,n)},onError:function(e,t){delete a.reqs[p],d(e,t,n)}})},t.default=i,e.exports=t.default},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.routerMiddleware=t.routerActions=t.goForward=t.goBack=t.go=t.replace=t.push=t.CALL_HISTORY_METHOD=t.routerReducer=t.LOCATION_CHANGE=t.syncHistoryWithStore=void 0;var a=n(187),r=(Object.defineProperty(t,"LOCATION_CHANGE",{enumerable:!0,get:function(){return a.LOCATION_CHANGE}}),Object.defineProperty(t,"routerReducer",{enumerable:!0,get:function(){return a.routerReducer}}),n(188));Object.defineProperty(t,"CALL_HISTORY_METHOD",{enumerable:!0,get:function(){return r.CALL_HISTORY_METHOD}}),Object.defineProperty(t,"push",{enumerable:!0,get:function(){return r.push}}),Object.defineProperty(t,"replace",{enumerable:!0,get:function(){return r.replace}}),Object.defineProperty(t,"go",{enumerable:!0,get:function(){return r.go}}),Object.defineProperty(t,"goBack",{enumerable:!0,get:function(){return r.goBack}}),Object.defineProperty(t,"goForward",{enumerable:!0,get:function(){return r.goForward}}),Object.defineProperty(t,"routerActions",{enumerable:!0,get:function(){return r.routerActions}});var o=i(n(454)),n=i(n(455));function i(e){return e&&e.__esModule?e:{default:e}}t.syncHistoryWithStore=o.default,t.routerMiddleware=n.default},function(e,t,n){"use strict";e.exports=n(457)},function(e,t,n){var a=n(532);e.exports=function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,a(e,t)},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,n){"use strict";t.__esModule=!0,t.default={momentLocale:"en",Timeline:{expand:"Expand",fold:"Fold"},Balloon:{close:"Close"},Card:{expand:"Expand",fold:"Fold"},Calendar:{today:"Today",now:"Now",ok:"OK",clear:"Clear",month:"Month",year:"Year",prevYear:"Previous Year",nextYear:"Next Year",prevMonth:"Previous Month",nextMonth:"Next Month",prevDecade:"Previous Decade",nextDecade:"Next Decade",yearSelectAriaLabel:"Select Year",monthSelectAriaLabel:"Select Month"},DatePicker:{placeholder:"Select Date",datetimePlaceholder:"Select Date And Time",monthPlaceholder:"Select Month",yearPlaceholder:"Select Year",weekPlaceholder:"Select Week",now:"Now",selectTime:"Select Time",selectDate:"Select Date",ok:"OK",clear:"Clear",startPlaceholder:"Start Date",endPlaceholder:"End Date",hour:"H",minute:"M",second:"S"},Dialog:{close:"Close",ok:"OK",cancel:"Cancel"},Drawer:{close:"Close"},Message:{closeAriaLabel:"Close"},Pagination:{prev:"Previous",next:"Next",goTo:"Go to",page:"Page",go:"View",total:"Page {current}, {total} pages",labelPrev:"Previous page, current page {current}",labelNext:"Next page, current page {current}",inputAriaLabel:"Please enter what page to skip to",selectAriaLabel:"Please select how many items are displayed on each page",pageSize:"Items per page:"},Input:{clear:"Clear"},List:{empty:"No Data"},Select:{selectPlaceholder:"Please Select",autoCompletePlaceholder:"Please Input",notFoundContent:"No Options",maxTagPlaceholder:"Selected {selected}/{total} Total",selectAll:"Select All"},TreeSelect:{maxTagPlaceholder:"Selected {selected}/{total} Total",shortMaxTagPlaceholder:"Selected {selected}"},Table:{empty:"No Data",ok:"OK",reset:"Reset",asc:"Ascending Order",desc:"Descending Order",expanded:"Expanded",folded:"Folded",filter:"Filter",selectAll:"Select All"},TimePicker:{placeholder:"Select Time",clear:"Clear",hour:"H",minute:"M",second:"S",ok:"OK"},Transfer:{items:"items",item:"item",moveAll:"Move All",searchPlaceholder:"Please Input",moveToLeft:"Uncheck Selected Elements",moveToRight:"Submit Selected Elements"},Upload:{card:{cancel:"Cancel",addPhoto:"Add Picture",download:"Download",delete:"Delete"},drag:{text:"Click or Drag the file to this area to upload",hint:"Support docx, xls, PDF, rar, zip, PNG, JPG and other files upload"},upload:{delete:"Delete"}},Search:{buttonText:"Search"},Tag:{delete:"Delete"},Rating:{description:"Rating Options"},Switch:{on:"on",off:"off"},Tab:{closeAriaLabel:"close"},Form:{Validate:{default:"Validation error on field %s",required:"%s is required",format:{number:"%s is not a number",email:"%s is not a valid email",url:"%s is not a valid url",tel:"%s is not a valid phone number"},number:{length:"%s must be exactly %s characters",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",minLength:"%s must be at least %s characters",maxLength:"%s cannot be longer than %s characters"},string:{length:"%s must be exactly %s characters",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",minLength:"%s must be at least %s characters",maxLength:"%s cannot be longer than %s characters"},array:{length:"%s must be exactly %s in length",minLength:"%s cannot be less than %s in length",maxLength:"%s cannot be greater than %s in length"},pattern:"%s value %s does not match pattern %s"}}},e.exports=t.default},function(e,t,n){"use strict";var a=n(371),r=n(610),n=n(168);e.exports={formats:n,parse:r,stringify:a}},function(e,a,r){"use strict";!function(e){var i=r(0),t=r.n(i),l=r(58),n=r(3),s=r.n(n),u=1073741823,d="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:void 0!==e?e:{};n=t.a.createContext||function(a,o){var e,r="__create-react-context-"+(d[t="__global_unique_id__"]=(d[t]||0)+1)+"__",t=function(t){function e(){var n,a,e=t.apply(this,arguments)||this;return e.emitter=(n=e.props.value,a=[],{on:function(e){a.push(e)},off:function(t){a=a.filter(function(e){return e!==t})},get:function(){return n},set:function(e,t){n=e,a.forEach(function(e){return e(n,t)})}}),e}Object(l.a)(e,t);var n=e.prototype;return n.getChildContext=function(){var e={};return e[r]=this.emitter,e},n.componentWillReceiveProps=function(e){var t,n,a,r;this.props.value!==e.value&&(t=this.props.value,n=e.value,((a=t)===(r=n)?0===a&&1/a!=1/r:a==a||r==r)&&(a="function"==typeof o?o(t,n):u,0!==(a|=0)&&this.emitter.set(e.value,a)))},n.render=function(){return this.props.children},e}(i.Component),n=(t.childContextTypes=((n={})[r]=s.a.object.isRequired,n),function(e){function t(){var n=e.apply(this,arguments)||this;return n.state={value:n.getValue()},n.onUpdate=function(e,t){0!=((0|n.observedBits)&t)&&n.setState({value:n.getValue()})},n}Object(l.a)(t,e);var n=t.prototype;return n.componentWillReceiveProps=function(e){e=e.observedBits;this.observedBits=null==e?u:e},n.componentDidMount=function(){this.context[r]&&this.context[r].on(this.onUpdate);var e=this.props.observedBits;this.observedBits=null==e?u:e},n.componentWillUnmount=function(){this.context[r]&&this.context[r].off(this.onUpdate)},n.getValue=function(){return this.context[r]?this.context[r].get():a},n.render=function(){return e=this.props.children,(Array.isArray(e)?e[0]:e)(this.state.value);var e},t}(i.Component));return n.contextTypes=((e={})[r]=s.a.object,e),{Provider:t,Consumer:n}};a.a=n}.call(this,r(351))},function(e,t,n){var i,a,l;function r(){}a=n(664),i=n(669),l=n(112),r.parse=function(e,t,n){return null==t&&(t=!1),null==n&&(n=null),(new a).parse(e,t,n)},r.parseFile=function(e,n,a,r){var o;return null==a&&(a=!1),null==r&&(r=null),null!=(n=null==n?null:n)?l.getStringFromFile(e,(o=this,function(e){var t=null;null!=e&&(t=o.parse(e,a,r)),n(t)})):null!=(e=l.getStringFromFile(e))?this.parse(e,a,r):null},r.dump=function(e,t,n,a,r){var o;return null==t&&(t=2),null==n&&(n=4),null==a&&(a=!1),null==r&&(r=null),(o=new i).indentation=n,o.dump(e,t,0,a,r)},r.stringify=function(e,t,n,a,r){return this.dump(e,t,n,a,r)},r.load=function(e,t,n,a){return this.parseFile(e,t,n,a)},n=r,"undefined"!=typeof window&&null!==window&&(window.YAML=n),"undefined"!=typeof window&&null!==window||(this.YAML=n),e.exports=n},function(e,t,n){"use strict";t.__esModule=!0;var n=n(711),n=(n=n)&&n.__esModule?n:{default:n};t.default=n.default,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var r=i(n(2)),o=i(n(12)),a=i(n(8)),n=i(n(719));function i(e){return e&&e.__esModule?e:{default:e}}t.default=a.default.config(n.default,{exportNames:["resize"],transform:function(t,n){var e,a;return"fade"in t&&(n("fade","animation","Slider"),a=(e=t).fade,e=(0,o.default)(e,["fade"]),t=a?(0,r.default)({animation:"fade"},e):e),"arrowPos"in t&&("inline"===t.arrowPos?(n("arrowPos=inline","arrowPosition=inner","Slider"),t.arrowPos="inner"):n("arrowPos","arrowPosition","Slider"),e=(a=t).arrowPos,a=(0,o.default)(a,["arrowPos"]),t=(0,r.default)({arrowPosition:e},a)),["arrowDirection","dotsDirection","slideDirection"].forEach(function(e){"horizontal"===t[e]?(n(e+"=horizontal",e+"=hoz","Slider"),t[e]="hoz"):"vertical"===t[e]&&(n(e+"=vertical",e+"=ver","Slider"),t[e]="ver")}),"initialSlide"in t&&(n("initialSlide","defaultActiveIndex","Slider"),a=(e=t).initialSlide,e=(0,o.default)(e,["initialSlide"]),t=(0,r.default)({defaultActiveIndex:a},e)),"slickGoTo"in t&&(n("slickGoTo","activeIndex","Slider"),e=(a=t).slickGoTo,a=(0,o.default)(a,["slickGoTo"]),t=(0,r.default)({activeIndex:e},a)),"afterChange"in t&&(n("afterChange","onChange","Slider"),a=(e=t).afterChange,e=(0,o.default)(e,["afterChange"]),t=(0,r.default)({onChange:a},e)),"beforeChange"in t&&(n("beforeChange","onBeforeChange","Slider"),e=(a=t).beforeChange,a=(0,o.default)(a,["beforeChange"]),t=(0,r.default)({onBeforeChange:e},a)),t}}),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var c,a=b(n(2)),r=b(n(12)),f=b(n(4)),p=b(n(6)),o=b(n(7)),i=b(n(0)),l=b(n(8)),s=n(11),u=n(99),d=b(n(407)),h=b(n(180)),m=b(n(182)),g=b(n(735)),y=b(n(736)),v=b(n(181)),_=b(n(410));function b(e){return e&&e.__esModule?e:{default:e}}function w(e){(0,f.default)(this,w);var t=(0,p.default)(this,c.call(this,e)),e=(t.handleSelect=function(e){t.uploader.startUpload(e)},t.props),n=e.action,a=e.name,r=e.method,o=e.beforeUpload,i=e.onProgress,l=e.onError,s=e.withCredentials,u=e.headers,d=e.data,e=e.onSuccess;return t.uploader=new _.default({action:n,name:a,method:r,beforeUpload:o,onProgress:i,onError:l,withCredentials:s,headers:u,data:d,onSuccess:e}),t}h.default.Card=l.default.config(g.default,{componentName:"Upload"}),h.default.Dragger=l.default.config(y.default,{componentName:"Upload"}),h.default.Selecter=v.default,h.default.Uploader=_.default,h.default.ErrorCode=u.errorCode,h.default.ImageUpload=l.default.config(g.default,{componentName:"Upload",transform:function(e,t){t("Upload.ImageUpload","Upload.Card","Upload");t=(0,d.default)(e,function(){});return t.locale&&t.locale.image&&(t.locale.card=t.locale.image),t}}),h.default.DragUpload=l.default.config(y.default,{componentName:"Upload",transform:function(e,t){t("Upload.DragUpload","Upload.Dragger","Upload");t=(0,d.default)(e,function(){});return t.listType||(t.listType="card"),t}}),h.default.Core=(c=i.default.Component,(0,o.default)(w,c),w.prototype.abort=function(){this.uploader.abort()},w.prototype.render=function(){s.log.deprecated("Upload.Core","Upload.Selecter and Upload.Uploader","Upload");var e=this.props,e=(e.action,e.name,e.method,e.beforeUpload,e.onProgress,e.onError,e.withCredentials,e.headers,e.data,e.onSuccess,(0,r.default)(e,["action","name","method","beforeUpload","onProgress","onError","withCredentials","headers","data","onSuccess"]));return i.default.createElement(v.default,(0,a.default)({},(0,d.default)(e,function(){}),{onSelect:this.handleSelect}))},w),h.default.List=m.default,h.default.CropUpload=function(){return s.log.deprecated("Upload.CropUpload","@alife/bc-next-crop-upload","Upload"),null},t.default=l.default.config(h.default,{transform:d.default}),e.exports=t.default},function(e,t,n){"use strict";var a=n(14),r=n(15),o=n(17),i=n(16),l=n(21),s=n(0),u=n.n(s),s=n(37),d=n(40),s=Object(s.b)(function(e){return Object(l.a)({},e.base)})(n=function(e){Object(o.a)(n,e);var t=Object(i.a)(n);function n(){return Object(a.a)(this,n),t.apply(this,arguments)}return Object(r.a)(n,[{key:"render",value:function(){var e=this.props.functionMode;return u.a.createElement(u.a.Fragment,null,""!==e&&u.a.createElement(d.a,{to:"/".concat("naming"===e?"serviceManagement":"configurationManagement")}))}}]),n}(u.a.Component))||n;t.a=s},function(e,t,n){"use strict";var a=n(104),r=n(101),o=n(118),i=n(45),l=n(82),n=n(116);t.a={locale:a.b,base:r.a,subscribers:o.a,authority:i.d,namespace:l.a,configuration:n.a}},function(e,t,n){"use strict";function a(r){return function(e){var n=e.dispatch,a=e.getState;return function(t){return function(e){return"function"==typeof e?e(n,a,r):t(e)}}}}var r=a();r.withExtraArgument=a,t.a=r},function(I,e,t){"use strict";t(64);var n=t(46),r=t.n(n),n=(t(87),t(53)),o=t.n(n),n=(t(39),t(5)),i=t.n(n),n=(t(699),t(420)),l=t.n(n),n=(t(32),t(18)),d=t.n(n),n=(t(59),t(29)),c=t.n(n),n=(t(36),t(10)),f=t.n(n),n=(t(51),t(25)),s=t.n(n),n=(t(63),t(20)),p=t.n(n),n=(t(158),t(113)),u=t.n(n),n=(t(80),t(50)),h=t.n(n),n=(t(43),t(24)),m=t.n(n),n=(t(109),t(71)),g=t.n(n),n=(t(35),t(19)),y=t.n(n),n=(t(49),t(27)),v=t.n(n),_=t(14),b=t(15),w=t(22),M=t(17),k=t(16),n=(t(26),t(8)),n=t.n(n),a=(t(403),t(117)),a=t.n(a),S=(t(704),t(185)),E=t.n(S),S=t(0),x=t.n(S),S=(t(706),t(418)),C=t.n(S),L=t(1),T=(t(710),function(e){Object(M.a)(a,e);var n=Object(k.a)(a);function a(e){var t;return Object(_.a)(this,a),(t=n.call(this,e)).state={visible:!1,valueList:e.valueList||[],dataSourceList:e.dataSource||[],currentPage:1,total:0,pageSize:10,dataSource:{}},t}return Object(b.a)(a,[{key:"componentDidMount",value:function(){}},{key:"openDialog",value:function(e){var t=this;this.setState({visible:!0,dataSource:e,pageSize:e.pageSize},function(){t.getData(),t.transfer._instance.filterCheckedValue=function(e,t,n){return{left:e,right:t}}})}},{key:"closeDialog",value:function(){this.setState({visible:!1})}},{key:"getData",value:function(){var t=this,e=this.state.dataSource;Object(L.b)({url:"/diamond-ops/configList/serverId/".concat(e.serverId,"?dataId=").concat(e.dataId,"&group=").concat(e.group,"&appName=").concat(e.appName,"&config_tags=").concat(e.config_tags||"","&pageNo=").concat(this.state.currentPage,"&pageSize=").concat(e.pageSize),success:function(e){200===e.code&&t.setState({dataSourceList:e.data.map(function(e){return{label:e.dataId,value:e.dataId}})||[],total:e.total})}})}},{key:"changePage",value:function(e){var t=this;this.setState({currentPage:e},function(){t.getData()})}},{key:"onChange",value:function(e,t,n){this.setState({valueList:e})}},{key:"onSubmit",value:function(){this.props.onSubmit&&this.props.onSubmit(this.state.valueList)}},{key:"render",value:function(){var t=this;return x.a.createElement(y.a,{visible:this.state.visible,style:{width:"500px"},onCancel:this.closeDialog.bind(this),onClose:this.closeDialog.bind(this),onOk:this.onSubmit.bind(this),title:"æ¹éæä½"},x.a.createElement("div",null,x.a.createElement(C.a,{ref:function(e){return t.transfer=e},listStyle:{height:350},dataSource:this.state.dataSourceList||[],value:this.state.valueList,onChange:this.onChange.bind(this)}),x.a.createElement(r.a,{style:{marginTop:10},current:this.state.currentPage,total:this.state.total,pageSize:this.state.pageSize,onChange:this.changePage.bind(this),type:"simple"})))}}]),a}(x.a.Component)),R=t(48),S=(t(52),t(33)),A=t.n(S),S=(t(132),t(60)),D=t.n(S),O=(t(404),D.a.Item),H=(0,n.a.config)(((S=function(e){Object(M.a)(n,e);var t=Object(k.a)(n);function n(e){return Object(_.a)(this,n),(e=t.call(this,e)).state={dialogvisible:!1,loading:!1},e.defaultCode="",e.nodejsCode="TODO",e.cppCode="TODO",e.shellCode="TODO",e.pythonCode="TODO",e.csharpCode="TODO",e.record={},e.sprigboot_code='// Refer to document: https://github.com/nacos-group/nacos-examples/tree/master/nacos-spring-boot-example/nacos-spring-boot-config-example\npackage com.alibaba.nacos.example.spring.boot.controller;\n\nimport org.springframework.beans.factory.annotation.Value;\nimport org.springframework.stereotype.Controller;\nimport org.springframework.web.bind.annotation.RequestMapping;\nimport org.springframework.web.bind.annotation.ResponseBody;\n\nimport static org.springframework.web.bind.annotation.RequestMethod.GET;\n\n@Controller\n@RequestMapping("config")\npublic class ConfigController {\n\n @Value("${useLocalCache:false}")\n private boolean useLocalCache;\n\n public void setUseLocalCache(boolean useLocalCache) {\n this.useLocalCache = useLocalCache;\n }\n\n @RequestMapping(value = "/get", method = GET)\n @ResponseBody\n public boolean get() {\n return useLocalCache;\n }\n}',e.sprigcloud_code='// Refer to document: https://github.com/nacos-group/nacos-examples/tree/master/nacos-spring-cloud-example/nacos-spring-cloud-config-example\npackage com.alibaba.nacos.example.spring.cloud.controller;\n\nimport org.springframework.beans.factory.annotation.Value;\nimport org.springframework.cloud.context.config.annotation.RefreshScope;\nimport org.springframework.web.bind.annotation.RequestMapping;\nimport org.springframework.web.bind.annotation.RestController;\n\n@RestController\n@RequestMapping("/config")\n@RefreshScope\npublic class ConfigController {\n\n @Value("${useLocalCache:false}")\n private boolean useLocalCache;\n\n @RequestMapping("/get")\n public boolean get() {\n return useLocalCache;\n }\n}',e}return Object(b.a)(n,[{key:"componentDidMount",value:function(){}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"getData",value:function(){var e=Object(L.a)("namespace"),e={group:this.record.group||"",dataId:this.record.dataId||"",namespace:e,inEdas:window.globalConfig.isParentEdas()};this.defaultCode=this.getJavaCode(e),this.createCodeMirror("text/x-java",this.defaultCode),this.nodejsCode=this.getNodejsCode(e),this.cppCode=this.getCppCode(e),this.shellCode=this.getShellCode(e),this.pythonCode=this.getPythonCode(e),this.csharpCode=this.getCSharpCode(e),this.forceUpdate()}},{key:"getJavaCode",value:function(e){return'/*\n* Demo for Nacos\n* pom.xml\n <dependency>\n <groupId>com.alibaba.nacos</groupId>\n <artifactId>nacos-client</artifactId>\n <version>${version}</version>\n </dependency>\n*/\npackage com.alibaba.nacos.example;\n\nimport java.util.Properties;\nimport java.util.concurrent.Executor;\nimport com.alibaba.nacos.api.NacosFactory;\nimport com.alibaba.nacos.api.config.ConfigService;\nimport com.alibaba.nacos.api.config.listener.Listener;\nimport com.alibaba.nacos.api.exception.NacosException;\n\n/**\n * Config service example\n *\n * @author Nacos\n *\n */\npublic class ConfigExample {\n\n\tpublic static void main(String[] args) throws NacosException, InterruptedException {\n\t\tString serverAddr = "localhost";\n\t\tString dataId = "'.concat(e.dataId,'";\n\t\tString group = "').concat(e.group,'";\n\t\tProperties properties = new Properties();\n\t\tproperties.put(PropertyKeyConst.SERVER_ADDR, serverAddr);\n\t\tConfigService configService = NacosFactory.createConfigService(properties);\n\t\tString content = configService.getConfig(dataId, group, 5000);\n\t\tSystem.out.println(content);\n\t\tconfigService.addListener(dataId, group, new Listener() {\n\t\t\t@Override\n\t\t\tpublic void receiveConfigInfo(String configInfo) {\n\t\t\t\tSystem.out.println("recieve:" + configInfo);\n\t\t\t}\n\n\t\t\t@Override\n\t\t\tpublic Executor getExecutor() {\n\t\t\t\treturn null;\n\t\t\t}\n\t\t});\n\n\t\tboolean isPublishOk = configService.publishConfig(dataId, group, "content");\n\t\tSystem.out.println(isPublishOk);\n\n\t\tThread.sleep(3000);\n\t\tcontent = configService.getConfig(dataId, group, 5000);\n\t\tSystem.out.println(content);\n\n\t\tboolean isRemoveOk = configService.removeConfig(dataId, group);\n\t\tSystem.out.println(isRemoveOk);\n\t\tThread.sleep(3000);\n\n\t\tcontent = configService.getConfig(dataId, group, 5000);\n\t\tSystem.out.println(content);\n\t\tThread.sleep(300000);\n\n\t}\n}\n')}},{key:"getNodejsCode",value:function(e){return"TODO"}},{key:"getCppCode",value:function(e){return"TODO"}},{key:"getShellCode",value:function(e){return"TODO"}},{key:"getPythonCode",value:function(e){return"TODO"}},{key:"getCSharpCode",value:function(e){return'/*\nDemo for Basic Nacos Opreation\nApp.csproj\n\n<ItemGroup>\n <PackageReference Include="nacos-sdk-csharp" Version="${latest.version}" />\n</ItemGroup>\n*/\n\nusing Microsoft.Extensions.DependencyInjection;\nusing Nacos.V2;\nusing Nacos.V2.DependencyInjection;\nusing System;\nusing System.Collections.Generic;\nusing System.Threading.Tasks;\n\nclass Program\n{\n static async Task Main(string[] args)\n {\n string serverAddr = "http://localhost:8848";\n string dataId = "'.concat(e.dataId,'";\n string group = "').concat(e.group,'";\n\n IServiceCollection services = new ServiceCollection();\n\n services.AddNacosV2Config(x =>\n {\n x.ServerAddresses = new List<string> { serverAddr };\n x.Namespace = "cs-test";\n\n // swich to use http or rpc\n x.ConfigUseRpc = true;\n });\n\n IServiceProvider serviceProvider = services.BuildServiceProvider();\n var configSvc = serviceProvider.GetService<INacosConfigService>();\n\n var content = await configSvc.GetConfig(dataId, group, 3000);\n Console.WriteLine(content);\n\n var listener = new ConfigListener();\n\n await configSvc.AddListener(dataId, group, listener);\n\n var isPublishOk = await configSvc.PublishConfig(dataId, group, "content");\n Console.WriteLine(isPublishOk);\n\n await Task.Delay(3000);\n content = await configSvc.GetConfig(dataId, group, 5000);\n Console.WriteLine(content);\n\n var isRemoveOk = await configSvc.RemoveConfig(dataId, group);\n Console.WriteLine(isRemoveOk);\n await Task.Delay(3000);\n\n content = await configSvc.GetConfig(dataId, group, 5000);\n Console.WriteLine(content);\n await Task.Delay(300000);\n }\n\n internal class ConfigListener : IListener\n {\n public void ReceiveConfigInfo(string configInfo)\n {\n Console.WriteLine("recieve:" + configInfo);\n }\n }\n}\n\n/*\nRefer to document: https://github.com/nacos-group/nacos-sdk-csharp/tree/dev/samples/MsConfigApp\nDemo for ASP.NET Core Integration\nMsConfigApp.csproj\n\n<ItemGroup>\n <PackageReference Include="nacos-sdk-csharp.Extensions.Configuration" Version="${latest.version}" />\n</ItemGroup>\n*/\n\nusing Microsoft.AspNetCore.Hosting;\nusing Microsoft.Extensions.Configuration;\nusing Microsoft.Extensions.Hosting;\nusing Serilog;\nusing Serilog.Events;\n\npublic class Program\n{\n public static void Main(string[] args)\n {\n Log.Logger = new LoggerConfiguration()\n .Enrich.FromLogContext()\n .MinimumLevel.Override("Microsoft", LogEventLevel.Warning)\n .MinimumLevel.Override("System", LogEventLevel.Warning)\n .MinimumLevel.Debug()\n .WriteTo.Console()\n .CreateLogger();\n\n try\n {\n Log.ForContext<Program>().Information("Application starting...");\n CreateHostBuilder(args, Log.Logger).Build().Run();\n }\n catch (System.Exception ex)\n {\n Log.ForContext<Program>().Fatal(ex, "Application start-up failed!!");\n }\n finally\n {\n Log.CloseAndFlush();\n }\n }\n\n public static IHostBuilder CreateHostBuilder(string[] args, Serilog.ILogger logger) =>\n Host.CreateDefaultBuilder(args)\n .ConfigureAppConfiguration((context, builder) =>\n {\n var c = builder.Build();\n builder.AddNacosV2Configuration(c.GetSection("NacosConfig"), logAction: x => x.AddSerilog(logger));\n })\n .ConfigureWebHostDefaults(webBuilder =>\n {\n webBuilder.UseStartup<Startup>().UseUrls("http://*:8787");\n })\n .UseSerilog();\n}\n ')}},{key:"openDialog",value:function(e){var t=this;this.setState({dialogvisible:!0}),this.record=e,setTimeout(function(){t.getData()})}},{key:"closeDialog",value:function(){this.setState({dialogvisible:!1})}},{key:"createCodeMirror",value:function(e,t){var n=this.refs.codepreview;n&&(n.innerHTML="",this.cm=window.CodeMirror(n,{value:t,mode:e,height:400,width:500,lineNumbers:!0,theme:"xq-light",lint:!0,tabMode:"indent",autoMatchParens:!0,textWrapping:!0,gutters:["CodeMirror-lint-markers"],extraKeys:{F1:function(e){e.setOption("fullScreen",!e.getOption("fullScreen"))},Esc:function(e){e.getOption("fullScreen")&&e.setOption("fullScreen",!1)}}}))}},{key:"changeTab",value:function(e,t){var n=this;setTimeout(function(){n[e]=!0,n.createCodeMirror("text/javascript",t)})}},{key:"render",value:function(){var e=this.props.locale,e=void 0===e?{}:e;return x.a.createElement("div",null,x.a.createElement(y.a,{title:e.sampleCode,style:{width:"80%"},visible:this.state.dialogvisible,footer:x.a.createElement("div",null),onClose:this.closeDialog.bind(this)},x.a.createElement("div",{style:{height:500}},x.a.createElement(A.a,{tip:e.loading,style:{width:"100%"},visible:this.state.loading},x.a.createElement(D.a,{shape:"text",style:{height:40,paddingBottom:10}},x.a.createElement(O,{title:"Java",key:1,onClick:this.changeTab.bind(this,"commoneditor1",this.defaultCode)}),x.a.createElement(O,{title:"Spring Boot",key:2,onClick:this.changeTab.bind(this,"commoneditor2",this.sprigboot_code)}),x.a.createElement(O,{title:"Spring Cloud",key:21,onClick:this.changeTab.bind(this,"commoneditor21",this.sprigcloud_code)}),x.a.createElement(O,{title:"Node.js",key:3,onClick:this.changeTab.bind(this,"commoneditor3",this.nodejsCode)}),x.a.createElement(O,{title:"C++",key:4,onClick:this.changeTab.bind(this,"commoneditor4",this.cppCode)}),x.a.createElement(O,{title:"Shell",key:5,onClick:this.changeTab.bind(this,"commoneditor5",this.shellCode)}),x.a.createElement(O,{title:"Python",key:6,onClick:this.changeTab.bind(this,"commoneditor6",this.pythonCode)}),x.a.createElement(O,{title:"C#",key:7,onClick:this.changeTab.bind(this,"commoneditor7",this.csharpCode)})),x.a.createElement("div",{ref:"codepreview"})))))}}]),n}(x.a.Component)).displayName="ShowCodeing",S=S))||S,S=(t(66),t(41)),S=t.n(S),F=(t(716),S.a.Row),N=S.a.Col,z=(0,n.a.config)(((S=function(e){Object(M.a)(n,e);var t=Object(k.a)(n);function n(e){return Object(_.a)(this,n),(e=t.call(this,e)).state={visible:!1,title:"",content:"",isok:!0,dataId:"",group:""},e}return Object(b.a)(n,[{key:"componentDidMount",value:function(){this.initData()}},{key:"initData",value:function(){var e=this.props.locale;this.setState({title:(void 0===e?{}:e).confManagement})}},{key:"openDialog",value:function(e){this.setState({visible:!0,title:e.title,content:e.content,isok:e.isok,dataId:e.dataId,group:e.group,message:e.message})}},{key:"closeDialog",value:function(){this.setState({visible:!1})}},{key:"render",value:function(){var e=this.props.locale,e=void 0===e?{}:e,t=x.a.createElement("div",{style:{textAlign:"right"}},x.a.createElement(d.a,{type:"primary",onClick:this.closeDialog.bind(this)},e.determine));return x.a.createElement("div",null,x.a.createElement(y.a,{visible:this.state.visible,footer:t,style:{width:555},onCancel:this.closeDialog.bind(this),onClose:this.closeDialog.bind(this),title:e.deletetitle},x.a.createElement("div",null,x.a.createElement(F,null,x.a.createElement(N,{span:"4",style:{paddingTop:16}},x.a.createElement(m.a,{type:"".concat(this.state.isok?"success":"delete","-filling"),style:{color:this.state.isok?"green":"red"},size:"xl"})),x.a.createElement(N,{span:"20"},x.a.createElement("div",null,x.a.createElement("h3",null,this.state.isok?e.deletedSuccessfully:e.deleteFailed),x.a.createElement("p",null,x.a.createElement("span",{style:{color:"#999",marginRight:5}},"Data ID"),x.a.createElement("span",{style:{color:"#c7254e"}},this.state.dataId)),x.a.createElement("p",null,x.a.createElement("span",{style:{color:"#999",marginRight:5}},"Group"),x.a.createElement("span",{style:{color:"#c7254e"}},this.state.group)),this.state.isok?"":x.a.createElement("p",{style:{color:"red"}},this.state.message)))))))}}]),n}(x.a.Component)).displayName="DeleteDialog",S=S))||S,S=(t(717),t(419)),W=t.n(S),V=(0,n.a.config)(((S=function(e){Object(M.a)(n,e);var t=Object(k.a)(n);function n(){return Object(_.a)(this,n),t.apply(this,arguments)}return Object(b.a)(n,[{key:"render",value:function(){var e=this.props,t=e.data,t=void 0===t?{}:t,n=e.height,e=e.locale,a=void 0===e?{}:e;return x.a.createElement("div",null,"notice"===t.modeType?x.a.createElement("div",{"data-spm-click":"gostr=/aliyun;locaid=notice"},x.a.createElement(W.a,{style:{marginBottom:1<t.modeList.length?20:10},arrows:!1},t.modeList.map(function(e,t){return x.a.createElement("div",{key:t,className:"slider-img-wrapper"},x.a.createElement("div",{className:"alert alert-success",style:{minHeight:120,backgroundColor:"#e9feff"}},x.a.createElement("div",{className:"alert-success-text",style:{fontWeight:"bold"}},a.importantReminder0),x.a.createElement("strong",{style:{color:"#777a7e"}},x.a.createElement("span",null,e.title)),x.a.createElement("strong",null,x.a.createElement("span",null,x.a.createElement("a",{style:{marginLeft:10,color:"#33cde5"},href:e.url,target:"_blank"},a.viewDetails1)))))}))," "):x.a.createElement("div",{className:"dash-card-contentwrappers",style:{height:n||"auto"},"data-spm-click":"gostr=/aliyun;locaid=".concat(t.modeType)},x.a.createElement("h3",{className:"dash-card-title"},t.modeName),x.a.createElement("div",{className:"dash-card-contentlist"},t.modeList?t.modeList.map(function(e){return x.a.createElement("div",{className:"dash-card-contentitem"},x.a.createElement("a",{href:e.url,target:"_blank"},e.title),"new"===e.tag?x.a.createElement("img",{style:{width:28,marginLeft:2,verticalAlign:"text-bottom"},src:"//img.alicdn.com/tps/TB1pS2YMVXXXXcCaXXXXXXXXXXX-56-24.png",alt:""}):"","hot"===e.tag?x.a.createElement("img",{style:{width:28,marginLeft:2,verticalAlign:"text-bottom"},src:"//img.alicdn.com/tps/TB1nusxPXXXXXb0aXXXXXXXXXXX-56-24.png",alt:""}):"")}):""))," ")}}]),n}(x.a.Component)).displayName="DashboardCard",S=S))||S,S=t(37),P=t(116),B=t(69),U=t(103),j=(t(726),t(28)),K=E.a.Item,Y=(a.a.Panel,new Map),S=Object(S.b)(function(e){return{configurations:e.configuration.configurations}},{getConfigs:P.b,getConfigsV2:P.c})(a=(0,n.a.config)(((t=function(e){Object(M.a)(a,e);var n=Object(k.a)(a);function a(e){Object(_.a)(this,a),(t=n.call(this,e)).handleDefaultFuzzySwitchChange=function(){t.setState({defaultFuzzySearch:!t.state.defaultFuzzySearch})},t.clear=function(){t.setAppName(""),t.setConfigTags([]),t.setConfigDetail("")},t.changeAdvancedQuery=function(){Object(L.c)("isAdvanceQuery",!t.state.isAdvancedQuery),t.state.isAdvancedQuery&&t.clear(),t.setState({isAdvancedQuery:!t.state.isAdvancedQuery})},t.deleteDialog=x.a.createRef(),t.showcode=x.a.createRef(),t.field=new v.a(Object(w.a)(t)),t.appName=Object(L.a)("appName")||"",t.preAppName=t.appName,t.group=Object(L.a)("group")||"",t.preGroup=t.group,t.dataId=Object(L.a)("dataId")||"",t.preDataId=t.dataId,t.serverId=Object(L.a)("serverId")||"center",t.edasAppId=Object(L.a)("edasAppId")||"",t.edasAppName=Object(L.a)("edasAppName")||"",t.inApp=t.edasAppId,t.isAdvance=Object(L.a)("isAdvanceQuery")||!1,t.state={value:"",visible:!1,total:0,pageSize:Object(L.a)("pageSize")?Object(L.a)("pageSize"):10,currentPage:1,dataSource:[],fieldValue:[],showAppName:!1,showgroup:!1,dataId:t.dataId,group:t.group,appName:t.appName,config_detail:Object(L.a)("configDetail")||"",config_tags:Object(L.a)("configTags")?Object(L.a)("configTags").split(","):[],tagLst:Object(L.a)("tagList")?Object(L.a)("tagList").split(","):[],selectValue:[],loading:!1,groupList:[],groups:[],tenant:!0,nownamespace_id:window.nownamespace||"",nownamespace_name:window.namespaceShowName||"",selectedRecord:[],selectedKeys:[],hasdash:!1,isCn:!0,contentList:[],isAdvancedQuery:t.isAdvance,isCheckAll:!1,rowSelection:{onChange:t.configDataTableOnChange.bind(Object(w.a)(t)),selectedRowKeys:[]},isPageEnter:!1,defaultFuzzySearch:!0};var t,e={dataId:t.dataId||"",group:t.preGroup||"",appName:t.appName||""};return Object(L.c)(e),t.batchHandle=null,t.toggleShowQuestionnaire=t.toggleShowQuestionnaire.bind(Object(w.a)(t)),t}return Object(b.a)(a,[{key:"componentDidMount",value:function(){var e=this.props.locale,e=void 0===e?{}:e;this.setIsCn(),window._getLink&&"true"===window._getLink("isCn")&&!this.checkQuestionnaire()&&"acm.console.aliyun.com"===window.location.host&&y.a.alert({title:e.questionnaire2,style:{width:"60%"},content:x.a.createElement("div",null,x.a.createElement("div",{style:{fontSize:"15px",lineHeight:"22px"}},e.ad,x.a.createElement("a",{href:"https://survey.aliyun.com/survey/k0BjJ2ARC",target:"_blank"},e.questionnaire2)),x.a.createElement("div",{style:{fontSize:"15px"}},e.noLongerDisplay4,x.a.createElement(g.a,{onChange:this.toggleShowQuestionnaire})))})}},{key:"setIsCn",value:function(){this.setState({isCn:"zh-CN"===localStorage.getItem(j.f)})}},{key:"toggleShowQuestionnaire",value:function(e){e?localStorage.setItem("acm_questionnaire",1):localStorage.removeItem("acm_questionnaire")}},{key:"checkQuestionnaire",value:function(){return!!localStorage.getItem("acm_questionnaire")}},{key:"navTo",value:function(e,t){switch(this.serverId=Object(L.a)("serverId")||"",this.tenant=Object(L.a)("namespace")||"",e){case"/historyRollback":e="".concat(e,"?historyServerId=").concat(this.serverId||"","&historyDataId=").concat(t.dataId,"&historyGroup=").concat(t.group,"&namespace=").concat(this.tenant);break;case"/listeningToQuery":e="".concat(e,"?listeningServerId=").concat(this.serverId||"","&listeningDataId=").concat(t.dataId,"&listeningGroup=").concat(t.group,"&namespace=").concat(this.tenant);break;case"/pushTrajectory":e="".concat(e,"?serverId=").concat(this.serverId||"","&dataId=").concat(t.dataId,"&group=").concat(t.group,"&namespace=").concat(this.tenant)}this.props.history.push(e)}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"cleanAndGetData",value:function(){0<arguments.length&&void 0!==arguments[0]&&arguments[0]&&(this.dataId="",this.group="",this.setState({group:"",dataId:""}),Object(L.c)({group:"",dataId:""})),this.getData(),Y.clear();var e=this.state.rowSelection;e.selectedRowKeys=[],this.setState({rowSelection:e})}},{key:"changeParamsBySearchType",value:function(e){this.state.defaultFuzzySearch&&(e.dataId&&""!==e.dataId&&(e.dataId="*"+e.dataId+"*"),e.group&&""!==e.group&&(e.group="*"+e.group+"*")),this.state.defaultFuzzySearch?e.search="blur":e.search="accurate"}},{key:"getData",value:function(){var t,n,e,a,r=this,o=0<arguments.length&&void 0!==arguments[0]?arguments[0]:1;this.state.loading||(e=(a=this.props).locale,t=void 0===e?{}:e,e=a.configurations,n=void 0===e?{}:e,this.tenant=Object(L.a)("namespace")||"",this.serverId=Object(L.a)("serverId")||"",a=Object(L.a)("pageNo"),e=Object(L.a)("pageSize"),this.pageNo=a||o,this.pageSize=e||this.state.pageSize,a={dataId:this.dataId,group:this.group,appName:this.appName,config_tags:this.state.config_tags.join(","),pageNo:a||o,pageSize:e||this.state.pageSize,tenant:this.tenant},Object(L.c)("pageSize",null),Object(L.c)("pageNo",null),this.changeParamsBySearchType(a),this.setState({loading:!0}),(this.state.config_detail&&""!==this.state.config_detail?(this.state.defaultFuzzySearch?a.config_detail="*"+this.state.config_detail+"*":a.config_detail=this.state.config_detail,this.props.getConfigsV2(a)):this.props.getConfigs(a)).then(function(){return r.setState({loading:!1,selectedRecord:[],selectedKeys:[],tenant:r.tenant})}).catch(function(e){n.pageItems=[],n.totalCount=0,r.setState({loading:!1}),e&&[401,403].includes(e.status)&&y.a.alert({title:t.authFail,content:t.getNamespace403.replace("${namespaceName}",r.state.nownamespace_name)})}))}},{key:"chooseNav",value:function(e,t){switch(t){case"nav1":this.navTo("/historyRollback",e);break;case"nav2":this.navTo("/pushTrajectory",e);break;default:this.navTo("/listeningToQuery",e)}}},{key:"removeConfig",value:function(n){var e=this.props.locale,a=void 0===e?{}:e,r=this;y.a.confirm({title:a.removeConfiguration,content:x.a.createElement("div",{style:{marginTop:"-20px"}},x.a.createElement("h3",null,a.sureDelete),x.a.createElement("p",null,x.a.createElement("span",{style:{color:"#999",marginRight:5}},"Data ID"),x.a.createElement("span",{style:{color:"#c7254e"}},n.dataId)),x.a.createElement("p",null,x.a.createElement("span",{style:{color:"#999",marginRight:5}},"Group"),x.a.createElement("span",{style:{color:"#c7254e"}},n.group)),x.a.createElement("p",null,x.a.createElement("span",{style:{color:"#999",marginRight:5}},a.environment),x.a.createElement("span",{style:{color:"#c7254e"}},r.serverId||""))),onOk:function(){var e="v1/cs/configs?dataId=".concat(n.dataId,"&group=").concat(n.group);Object(L.b)({url:e,type:"delete",success:function(e){var t={};t.title=a.configurationManagement,t.content="",t.dataId=n.dataId,t.group=n.group,!0===e?t.isok=!0:(t.isok=!1,t.message=e.message),r.deleteDialog.current.getInstance().openDialog(t),r.getData()}})}})}},{key:"showCode",value:function(e){this.showcode.current.getInstance().openDialog(e)}},{key:"renderCol",value:function(e,t,n){var a=this.props.locale,a=void 0===a?{}:a;return x.a.createElement("div",null,x.a.createElement("a",{onClick:this.goDetail.bind(this,n),style:{marginRight:5}},a.details),x.a.createElement("span",{style:{marginRight:5}},"|"),x.a.createElement("a",{style:{marginRight:5},onClick:this.showCode.bind(this,n)},a.sampleCode),x.a.createElement("span",{style:{marginRight:5}},"|"),x.a.createElement("a",{style:{marginRight:5},onClick:this.goEditor.bind(this,n)},a.edit),x.a.createElement("span",{style:{marginRight:5}},"|"),x.a.createElement("a",{style:{marginRight:5},onClick:this.removeConfig.bind(this,n)},a.deleteAction),x.a.createElement("span",{style:{marginRight:5}},"|"),x.a.createElement(u.a,{trigger:x.a.createElement("a",{title:a.more},x.a.createElement(m.a,{type:"ellipsis",size:"small",style:{transform:"rotate(90deg)"}})),triggerType:"click"},x.a.createElement(h.a,{onItemClick:this.chooseNav.bind(this,n)},x.a.createElement(h.a.Item,{key:"nav1"},a.version),x.a.createElement(h.a.Item,{key:"nav3"},a.listenerQuery))))}},{key:"changePage",value:function(e,t){var n=this;this.setState({isPageEnter:t&&t.keyCode&&13===t.keyCode,currentPage:e},function(){return n.getData(e,!1)})}},{key:"onChangeSort",value:function(n,a){var e=this.props.configurations;(void 0===e?{}:e).pageItems.sort(function(e,t){return"asc"===a?(e[n]+"").localeCompare(t[n]+""):(t[n]+"").localeCompare(e[n]+"")}),this.forceUpdate()}},{key:"handlePageSizeChange",value:function(e){var t=this;this.setState({pageSize:e},function(){return t.changePage(1)})}},{key:"setConfigDetail",value:function(e){this.setState({config_detail:e}),Object(L.c)("configDetail",e)}},{key:"setAppName",value:function(e){this.appName=e,this.setState({appName:e}),Object(L.c)("appName",e)}},{key:"setConfigTags",value:function(e){this.setState({config_tags:e||[],tagLst:e}),e?(Object(L.c)("tagList",e.join(",")),Object(L.c)("configTags",e.join(","))):(Object(L.c)("tagList",""),Object(L.c)("configTags",""))}},{key:"setGroup",value:function(e){this.group=e||"",this.setState({group:e||""}),Object(L.c)("group",e)}},{key:"selectAll",value:function(){this.getData()}},{key:"chooseEnv",value:function(e){this.serverId=Object(L.a)("serverId")||"center",this.tenant=Object(L.a)("namespace")||"",this.props.history.push("/newconfig?serverId=".concat(this.serverId||"","&namespace=").concat(this.tenant,"&edasAppName=").concat(this.edasAppName,"&edasAppId=").concat(this.edasAppId,"&searchDataId=").concat(this.dataId,"&searchGroup=").concat(this.group))}},{key:"setNowNameSpace",value:function(e,t){this.setState({nownamespace_name:e,nownamespace_id:t})}},{key:"goDetail",value:function(e){this.serverId=Object(L.a)("serverId")||"center",this.tenant=Object(L.a)("namespace")||"",this.props.history.push("/configdetail?serverId=".concat(this.serverId||"","&dataId=").concat(e.dataId,"&group=").concat(e.group,"&namespace=").concat(this.tenant,"&edasAppName=").concat(this.edasAppName,"&searchDataId=").concat(this.dataId,"&searchGroup=").concat(this.group,"&pageSize=").concat(this.pageSize,"&pageNo=").concat(this.pageNo))}},{key:"goEditor",value:function(e){this.serverId=Object(L.a)("serverId")||"center",this.tenant=Object(L.a)("namespace")||"",this.props.history.push("/configeditor?serverId=".concat(this.serverId||"","&dataId=").concat(e.dataId,"&group=").concat(e.group,"&namespace=").concat(this.tenant,"&edasAppName=").concat(this.edasAppName,"&edasAppId=").concat(this.edasAppId,"&searchDataId=").concat(this.dataId,"&searchGroup=").concat(this.group,"&pageSize=").concat(this.pageSize,"&pageNo=").concat(this.pageNo))}},{key:"openUri",value:function(e,t){window.open([e,Object.keys(t).map(function(e){return"".concat(e,"=").concat(t[e])}).join("&")].join("?"))}},{key:"exportData",value:function(){var e=this.group,t=this.appName,n=this.dataId,a=this.openUri,r=JSON.parse(localStorage.token||"{}"),o=r.accessToken,o=void 0===o?"":o,r=r.username,r=void 0===r?"":r;a("v1/cs/configs",{export:"true",tenant:Object(L.a)("namespace"),group:e,appName:t,dataId:n,ids:"",accessToken:o,username:r})}},{key:"exportDataNew",value:function(){var e=this.group,t=this.appName,n=this.dataId,a=this.openUri,r=JSON.parse(localStorage.token||"{}"),o=r.accessToken,o=void 0===o?"":o,r=r.username,r=void 0===r?"":r;a("v1/cs/configs",{exportV2:"true",tenant:Object(L.a)("namespace"),group:e,appName:t,dataId:n,ids:"",accessToken:o,username:r})}},{key:"exportSelectedData",value:function(e){var a=[],t=this.props.locale,t=void 0===t?{}:t,n=JSON.parse(localStorage.token||"{}"),r=n.accessToken,r=void 0===r?"":r,n=n.username,n=void 0===n?"":n;Y.size?(Y.forEach(function(e,t,n){return a.push(t)}),e?this.openUri("v1/cs/configs",{exportV2:"true",tenant:Object(L.a)("namespace"),group:"",appName:"",ids:a.join(","),accessToken:r,username:n}):this.openUri("v1/cs/configs",{export:"true",tenant:Object(L.a)("namespace"),group:"",appName:"",ids:a.join(","),accessToken:r,username:n})):y.a.alert({title:t.exportSelectedAlertTitle,content:t.exportSelectedAlertContent})}},{key:"multipleSelectionDeletion",value:function(){var r,e=this.props.locale,t=void 0===e?{}:e,n=this;0===Y.size?y.a.alert({title:t.delSelectedAlertTitle,content:t.delSelectedAlertContent}):(r=[],Y.forEach(function(e,t,n){var a={};a.dataId=e.dataId,a.group=e.group,r.push(a)}),y.a.confirm({title:t.removeConfiguration,content:x.a.createElement("div",{style:{marginTop:"-20px"}},x.a.createElement("h3",null,t.sureDelete),x.a.createElement(p.a,{dataSource:r},x.a.createElement(p.a.Column,{title:"Data Id",dataIndex:"dataId"}),x.a.createElement(p.a.Column,{title:"Group",dataIndex:"group"}))),onOk:function(){var e="v1/cs/configs?delType=ids&ids=".concat(Array.from(Y.keys()).join(","),"&tenant=")+n.state.nownamespace_id;Object(L.b)({url:e,type:"delete",success:function(e){s.a.success(t.delSuccessMsg),n.getData()}})}}))}},{key:"cloneSelectedDataConfirm",value:function(){var e=this.props.locale,s=void 0===e?{}:e,u=this;u.field.setValue("sameConfigPolicy","ABORT"),u.field.setValue("cloneTargetSpace",void 0),0===Y.size?y.a.alert({title:s.cloneSelectedAlertTitle,content:s.cloneSelectedAlertContent}):Object(L.b)({url:"v1/console/namespaces?namespaceId=",beforeSend:function(){u.openLoading()},success:function(e){var a=this,e=(u.closeLoading(),e&&200===e.code&&e.data||y.a.alert({title:s.getNamespaceFailed,content:s.getNamespaceFailed}),e.data),n=[],r=(e.forEach(function(e){var t={isCurrent:!1};u.state.nownamespace_id===e.namespace&&(t.isCurrent=!0),"public"===e.namespaceShowName?(t.label="public | public",t.value="public"):(t.label="".concat(e.namespaceShowName," | ").concat(e.namespace),t.value=e.namespace),n.push(t)}),[]),o=new Map,i=(Y.forEach(function(e,t,n){var a={};a.id=t,a.dataId=e.dataId,a.group=e.group,r.push(a),o.set(t,JSON.parse(JSON.stringify(e)))}),function(e,t,n){1===t?o.get(e.id).dataId=n.target.value:o.get(e.id).group=n.target.value}),l=y.a.confirm({title:s.cloningConfiguration,footer:!1,content:x.a.createElement(x.a.Fragment,null,x.a.createElement("div",{style:{marginBottom:10}},x.a.createElement("span",{style:{color:"#999",marginRight:5}},s.source),x.a.createElement("span",{style:{color:"#49D2E7"}},u.state.nownamespace_name," "),"|"," ",u.state.nownamespace_id),x.a.createElement("div",{style:{marginBottom:10}},x.a.createElement("span",{style:{color:"#999",marginRight:5}},s.configurationNumber),x.a.createElement("span",{style:{color:"#49D2E7"}},Y.size," "),s.selectedEntry),x.a.createElement("div",{style:{marginBottom:10}},x.a.createElement("span",{style:{color:"red",marginRight:2,marginLeft:-10}},"*"),x.a.createElement("span",{style:{color:"#999",marginRight:5}},s.target),x.a.createElement(c.a,{style:{width:450},placeholder:s.selectNamespace,size:"medium",hasArrow:!0,showSearch:!0,hasClear:!1,mode:"single",itemRender:function(e){return e.isCurrent?x.a.createElement("span",{style:{color:"#00AA00","font-weight":"bold"}},e.label):x.a.createElement("span",null,e.label)},dataSource:n,onChange:function(e,t,n){e&&(document.getElementById("cloneTargetSpaceSelectErr").style.display="none",u.field.setValue("cloneTargetSpace",e))}}),x.a.createElement("br",null),x.a.createElement("span",{id:"cloneTargetSpaceSelectErr",style:{color:"red",display:"none"}},s.selectNamespace)),x.a.createElement("div",{style:{marginBottom:10}},x.a.createElement("span",{style:{color:"#999",marginRight:5}},s.samePreparation,":"),x.a.createElement(c.a,{style:{width:130},size:"medium",hasArrow:!0,mode:"single",filterLocal:!1,defaultValue:"ABORT",dataSource:[{label:s.abortImport,value:"ABORT"},{label:s.skipImport,value:"SKIP"},{label:s.overwriteImport,value:"OVERWRITE"}],hasClear:!1,onChange:function(e,t,n){e&&u.field.setValue("sameConfigPolicy",e)}})),x.a.createElement("div",{style:{marginBottom:10}},x.a.createElement(d.a,{type:"primary",style:{marginRight:10},onClick:function(){var r,e,t;u.field.getValue("cloneTargetSpace")?(document.getElementById("cloneTargetSpaceSelectErr").style.display="none",r=[],o.forEach(function(e,t,n){var a={};a.cfgId=t,a.dataId=e.dataId,a.group=e.group,r.push(a)}),e=u.field.getValue("cloneTargetSpace"),t=u.field.getValue("sameConfigPolicy"),Object(L.b)({url:"v1/cs/configs?clone=true&tenant=".concat(e,"&policy=").concat(t,"&namespaceId="),method:"post",data:JSON.stringify(r),contentType:"application/json",beforeSend:function(){u.openLoading()},success:function(e){u.closeLoading(),u.processImportAndCloneResult(e,s,l,!1)},error:function(e){u.closeLoading(),u.setState({dataSource:[],total:0,currentPage:0})},complete:function(){u.closeLoading()}})):document.getElementById("cloneTargetSpaceSelectErr").style.display="inline"},"data-spm-click":"gostr=/aliyun;locaid=doClone"},s.startCloning)),x.a.createElement("div",{style:{marginBottom:10}},x.a.createElement("span",{style:{color:"#00AA00",fontWeight:"bold"}},s.cloneEditableTitle)),x.a.createElement(p.a,{dataSource:r},x.a.createElement(p.a.Column,{title:"Data Id",dataIndex:"dataId",cell:function(e,t,n){return x.a.createElement(f.a,{defaultValue:e,onBlur:i.bind(a,n,1)})}}),x.a.createElement(p.a.Column,{title:"Group",dataIndex:"group",cell:function(e,t,n){return x.a.createElement(f.a,{defaultValue:e,onBlur:i.bind(a,n,2)})}})))})},error:function(e){u.closeLoading(),u.setState({dataSource:[],total:0,currentPage:0})},complete:function(){u.closeLoading()}})}},{key:"processImportAndCloneResult",value:function(e,t,n,a){var r,o,i=e.code;200===i?(n.hide(),n=e.data.failData?e.data.failData.length:0,o=e.data.skipData?e.data.skipData.length:0,r=e.data.unrecognizedCount||0,0<n?y.a.alert({title:a?t.importAbort:t.cloneAbort,content:x.a.createElement("div",{style:{width:"500px"}},x.a.createElement("h4",null,t.conflictConfig,"ï¼",e.data.failData[0].group,"/",e.data.failData[0].dataId),x.a.createElement("div",{style:{marginTop:20}},x.a.createElement("h5",null,t.failureEntries,": ",n),x.a.createElement(p.a,{dataSource:e.data.failData},x.a.createElement(p.a.Column,{title:"Data Id",dataIndex:"dataId"}),x.a.createElement(p.a.Column,{title:"Group",dataIndex:"group"}))),x.a.createElement("div",null,x.a.createElement("h5",null,t.unprocessedEntries,": ",o),x.a.createElement(p.a,{dataSource:e.data.skipData},x.a.createElement(p.a.Column,{title:"Data Id",dataIndex:"dataId"}),x.a.createElement(p.a.Column,{title:"Group",dataIndex:"group"}))),x.a.createElement("div",null,x.a.createElement("h5",null,t.unrecognizedEntries,": ",r),x.a.createElement(p.a,{dataSource:e.data.unrecognizedData},x.a.createElement(p.a.Column,{title:"Item Name",dataIndex:"itemName"}))))}):0<o||0<r?(n="".concat(a?t.importSuccEntries:t.cloneSuccEntries).concat(e.data.succCount),y.a.alert({title:a?t.importSucc:t.cloneSucc,content:x.a.createElement("div",{style:{width:"500px"}},x.a.createElement("h5",null,n),x.a.createElement("div",null,x.a.createElement("h5",null,t.skippedEntries,": ",o),x.a.createElement(p.a,{dataSource:e.data.skipData},x.a.createElement(p.a.Column,{title:"Data Id",dataIndex:"dataId"}),x.a.createElement(p.a.Column,{title:"Group",dataIndex:"group"}))),x.a.createElement("div",null,x.a.createElement("h5",null,t.unrecognizedEntries,": ",r),x.a.createElement(p.a,{dataSource:e.data.unrecognizedData},x.a.createElement(p.a.Column,{title:"Item Name",dataIndex:"itemName"}))))})):(n="".concat(a?t.importSuccBegin:t.cloneSuccBegin).concat(e.data.succCount).concat(a?t.importSuccEnd:t.cloneSuccEnd),s.a.success(n)),this.getData()):(o=a?t.importFailMsg:t.cloneFailMsg,100001===i&&(o=t.namespaceNotExist),100002===i&&(o=t.metadataIllegal),100003!==i&&100004!==i&&100005!==i||(o=t.importDataValidationError),y.a.alert({title:a?t.importFail:t.cloneFail,content:o}))}},{key:"importData",value:function(){var e=this.props.locale,t=void 0===e?{}:e,a=this,e=(a.field.setValue("sameConfigPolicy","ABORT"),{});try{e=JSON.parse(localStorage.token)}catch(e){console.log(e),goLogin()}var n=e.accessToken,n=void 0===n?"":n,e=e.username,e=void 0===e?"":e,e={accept:"application/zip",action:"v1/cs/configs?import=true&namespace=".concat(Object(L.a)("namespace"),"&accessToken=").concat(n,"&username=").concat(e,"&tenant=").concat(Object(L.a)("namespace")),headers:Object.assign({},{},{accessToken:n}),data:{policy:a.field.getValue("sameConfigPolicy")},beforeUpload:function(e,t){return t.data={policy:a.field.getValue("sameConfigPolicy")},t},onSuccess:function(e){a.processImportAndCloneResult(e.response,t,r,!0)},onError:function(e){e=e.response,e.data,e=e.status;[401,403].includes(e)?y.a.alert({title:t.importFail,content:t.importFail403}):y.a.alert({title:t.importFail,content:t.importDataValidationError})}},r=y.a.confirm({title:t.import,footer:!1,content:x.a.createElement("div",null,x.a.createElement("div",{style:{marginBottom:10}},x.a.createElement("span",{style:{color:"#999",marginRight:5}},t.targetNamespace,":"),x.a.createElement("span",{style:{color:"#49D2E7"}},this.state.nownamespace_name," "),"|"," ",this.state.nownamespace_id),x.a.createElement("div",{style:{marginBottom:10}},x.a.createElement("span",{style:{color:"#999",marginRight:5}},t.samePreparation,":"),x.a.createElement(c.a,{style:{width:130},size:"medium",hasArrow:!0,mode:"single",filterLocal:!1,defaultValue:"ABORT",dataSource:[{label:t.abortImport,value:"ABORT"},{label:t.skipImport,value:"SKIP"},{label:t.overwriteImport,value:"OVERWRITE"}],hasClear:!1,onChange:function(e,t,n){a.field.setValue("sameConfigPolicy",e)}})),x.a.createElement("div",{style:{marginBottom:10}},x.a.createElement(m.a,{type:"prompt",style:{color:"#FFA003",marginRight:"10px"}}),t.importRemind),x.a.createElement("div",null,x.a.createElement(l.a,Object.assign({name:"file",listType:"text","data-spm-click":"gostr=/aliyun;locaid=configsImport"},e),x.a.createElement(d.a,{type:"primary"},t.uploadBtn))))})}},{key:"configDataTableOnChange",value:function(e,t){var n=this.state.rowSelection;n.selectedRowKeys=e,this.setState({rowSelection:n}),Y.clear(),t.forEach(function(e,t){Y.set(e.id,e)})}},{key:"render",value:function(){var n=this,e=this.props,t=e.locale,t=void 0===t?{}:t,e=e.configurations,e=void 0===e?{}:e;return x.a.createElement(x.a.Fragment,null,x.a.createElement(T,{ref:function(e){return n.batchHandle=e}}),x.a.createElement("div",{className:this.state.hasdash?"dash-page-container":""},x.a.createElement("div",{className:this.state.hasdash?"dash-left-container":"",style:{position:"relative"}},x.a.createElement("div",{style:{display:this.inApp?"none":"block"}},x.a.createElement(B.a,{title:t.configurationManagement8,desc:this.state.nownamespace_id,nameSpace:!0}),x.a.createElement(R.a,{namespaceCallBack:this.cleanAndGetData.bind(this),setNowNameSpace:this.setNowNameSpace.bind(this)})),x.a.createElement("div",{style:{position:"relative",marginTop:10,height:"auto",overflow:"visible"}},x.a.createElement(i.a,{inline:!0},x.a.createElement(i.a.Item,null,x.a.createElement(d.a,{type:"primary",onClick:this.chooseEnv.bind(this)},t.createConfiguration)),x.a.createElement(i.a.Item,{label:"Data ID"},x.a.createElement(f.a,{value:this.dataId,htmlType:"text",placeholder:this.state.defaultFuzzySearch?t.defaultFuzzyd:t.fuzzyd,style:{width:200},onChange:function(e){n.dataId=e,n.setState({dataId:e}),Object(L.c)("dataId",n.dataId)},onPressEnter:function(){return n.selectAll()}})),x.a.createElement(i.a.Item,{label:"Group"},x.a.createElement(c.a.AutoComplete,{style:{width:200},size:"medium",placeholder:this.state.defaultFuzzySearch?t.defaultFuzzyg:t.fuzzyg,dataSource:this.state.groups,value:this.state.group,onChange:this.setGroup.bind(this),onPressEnter:function(){return n.selectAll()},hasClear:!0})),x.a.createElement(i.a.Item,{label:"é»è®¤æ¨¡ç³å¹é
"},x.a.createElement(o.a,{checkedChildren:"",unCheckedChildren:"",defaultChecked:this.state.defaultFuzzySearch,onChange:this.handleDefaultFuzzySwitchChange,title:"èªå¨å¨æç´¢åæ°ååå ä¸*"})),x.a.createElement(i.a.Item,{label:""},x.a.createElement(d.a,{type:"primary",style:{marginRight:10},onClick:this.selectAll.bind(this),"data-spm-click":"gostr=/aliyun;locaid=dashsearch"},t.query)),x.a.createElement(i.a.Item,{style:this.inApp?{display:"none"}:{verticalAlign:"middle",marginTop:0,marginLeft:0}},x.a.createElement(d.a,{onClick:this.changeAdvancedQuery},this.state.isAdvancedQuery?x.a.createElement(x.a.Fragment,null,t.advancedQuery9,x.a.createElement(m.a,{type:"arrow-up",size:"xs",style:{marginLeft:"5px"}})):x.a.createElement(x.a.Fragment,null,t.advancedQuery9,x.a.createElement(m.a,{type:"arrow-down",size:"xs",style:{marginLeft:"5px"}})))),x.a.createElement(i.a.Item,{label:""},x.a.createElement(d.a,{type:"primary",style:{marginRight:10},onClick:this.importData.bind(this),"data-spm-click":"gostr=/aliyun;locaid=configsExport"},t.import)),x.a.createElement("br",null),x.a.createElement(i.a.Item,{style:!this.inApp&&this.state.isAdvancedQuery?{}:{display:"none"},label:t.application},x.a.createElement(f.a,{htmlType:"text",placeholder:t.app1,style:{width:200},value:this.state.appName,onChange:this.setAppName.bind(this),onPressEnter:function(){return n.getData()}})),x.a.createElement(i.a.Item,{style:this.state.isAdvancedQuery?{}:{display:"none"},label:t.tags},x.a.createElement(c.a,{style:{width:200},size:"medium",hasArrow:!0,mode:"tag",placeholder:t.pleaseEnterTag,dataSource:this.state.tagLst,value:this.state.config_tags,onChange:this.setConfigTags.bind(this),showSearch:!0,onSearch:function(e){var t=n.state.tagLst;t.includes(e)||(n.setState({tagLst:t.concat(e)}),Object(L.c)("tagList",n.state.tagLst.join(",")))},hasClear:!0})),x.a.createElement(i.a.Item,{style:this.state.isAdvancedQuery?{}:{display:"none"},label:t.configDetailLabel},x.a.createElement(f.a,{htmlType:"text",placeholder:t.configDetailH,style:{width:200},value:this.state.config_detail,onChange:this.setConfigDetail.bind(this)}))),x.a.createElement("div",{style:{position:"absolute",right:10,top:0}},x.a.createElement(m.a,{type:"add",size:"medium",style:{color:"black",marginRight:0,verticalAlign:"middle",cursor:"pointer",backgroundColor:"#eee",border:"1px solid #ddd",padding:"3px 6px"},onClick:this.chooseEnv.bind(this)}))),x.a.createElement(U.a,{total:e.totalCount}),x.a.createElement(p.a,{className:"configuration-table",dataSource:e.pageItems,locale:{empty:t.pubNoData},ref:"dataTable",loading:this.state.loading,rowSelection:this.state.rowSelection,onSort:this.onChangeSort.bind(this)},x.a.createElement(p.a.Column,{sortable:!0,title:"Data Id",dataIndex:"dataId"}),x.a.createElement(p.a.Column,{sortable:!0,title:"Group",dataIndex:"group"}),!this.inApp&&x.a.createElement(p.a.Column,{sortable:!0,title:t.application,dataIndex:"appName"}),x.a.createElement(p.a.Column,{title:t.operation,cell:this.renderCol.bind(this)})),0<e.totalCount&&x.a.createElement(x.a.Fragment,null,x.a.createElement("div",{style:{float:"left"}},[{warning:!0,text:t.deleteAction,locaid:"configsDelete",onClick:function(){return n.multipleSelectionDeletion()}},{text:t.clone,locaid:"configsDelete",onClick:function(){return n.cloneSelectedDataConfirm()}}].map(function(e){return x.a.createElement(d.a,{warning:e.warning,type:"primary",style:{marginRight:10},onClick:e.onClick,"data-spm-click":"gostr=/aliyun;locaid=".concat(e.locaid)},e.text)}),x.a.createElement(E.a,{type:"primary",autoWidth:!1,label:t.exportBtn,popupStyle:{minWidth:150}},[{text:t.export,locaid:"exportData",onClick:function(){return n.exportData(n)}},{text:t.newExport,locaid:"exportDataNew",onClick:function(){return n.exportDataNew(n)}},{text:t.exportSelected,locaid:"configsExport",onClick:function(){return n.exportSelectedData(!1)}},{text:t.newExportSelected,locaid:"configsExport",onClick:function(){return n.exportSelectedData(!0)}}].map(function(e,t){return x.a.createElement(K,{key:e.text,style:{minWidth:150},onClick:e.onClick},e.text)}))),x.a.createElement(r.a,{style:{float:"right"},pageSizeList:j.e,pageSizePosition:"start",pageSizeSelector:"dropdown",popupProps:{align:"bl tl"},onPageSizeChange:function(e){return n.handlePageSizeChange(e)},current:e.pageNumber,total:e.totalCount,pageSize:this.state.pageSize,onChange:this.changePage.bind(this)})),x.a.createElement(H,{ref:this.showcode}),x.a.createElement(z,{ref:this.deleteDialog})),this.state.hasdash&&x.a.createElement("div",{className:"dash-right-container"},this.state.contentList.map(function(e,t){return x.a.createElement(V,{data:e,height:"auto",key:"show".concat(t)})}))))}}]),a}(x.a.Component)).displayName="ConfigurationManagement",a=t))||a)||a;e.a=S},function(I,e,t){"use strict";t(52);var n=t(33),c=t.n(n),n=(t(171),t(102)),m=t.n(n),n=(t(36),t(10)),y=t.n(n),n=(t(32),t(18)),g=t.n(n),n=(t(51),t(25)),p=t.n(n),r=t(14),a=t(15),o=t(17),i=t(16),n=(t(26),t(8)),n=t.n(n),l=(t(39),t(5)),v=t.n(l),_=t(0),b=t.n(_),h=t(1),f=t(140),l=(t(35),t(19)),w=t.n(l),l=(t(87),t(53)),M=t.n(l),l=(t(59),t(29)),k=t.n(l),s=t(22),S=t(68),E=t(83),x=(0,n.a.config)(((l=function(e){Object(o.a)(n,e);var t=Object(i.a)(n);function n(e){return Object(r.a)(this,n),(e=t.call(this,e)).state={editCluster:{},editClusterDialogVisible:!1},e.show=e.show.bind(Object(s.a)(e)),e}return Object(a.a)(n,[{key:"show",value:function(e){var t=e.metadata,t=void 0===t?{}:t;Object.keys(t).length&&(e.metadataText=JSON.stringify(t,null,"\t")),this.setState({editCluster:e,editClusterDialogVisible:!0})}},{key:"hide",value:function(){this.setState({editClusterDialogVisible:!1})}},{key:"onConfirm",value:function(){var t=this,e=this.props,n=e.openLoading,a=e.closeLoading,r=e.getServiceDetail,e=this.state.editCluster,o=e.name,i=e.serviceName,l=e.metadataText,s=e.defaultCheckPort,u=e.useIPPort4Check,e=e.healthChecker;Object(h.b)({method:"PUT",url:"v1/ns/cluster",data:{serviceName:i,clusterName:o,metadata:l,checkPort:s,useInstancePort4Check:u,healthChecker:JSON.stringify(e)},dataType:"text",beforeSend:function(){return n()},success:function(e){"ok"!==e?p.a.error(e):(t.hide(),r())},complete:function(){return a()}})}},{key:"onChangeCluster",value:function(e){var t=this.state.editCluster;this.setState({editCluster:Object.assign({},void 0===t?{}:t,e)})}},{key:"render",value:function(){function t(e){return n.onChangeCluster({healthChecker:Object.assign({},f,e)})}var n=this,e=this.props.locale,e=void 0===e?{}:e,a=e.updateCluster,r=e.checkType,o=e.checkPort,i=e.useIpPortCheck,l=e.checkPath,s=e.checkHeaders,u=this.state,d=u.editCluster,d=void 0===d?{}:d,u=u.editClusterDialogVisible,c=d.healthChecker,f=void 0===c?{}:c,c=d.useIPPort4Check,p=d.defaultCheckPort,p=void 0===p?"80":p,d=d.metadataText,d=void 0===d?"":d,h=f.type,m=f.path,g=f.headers;return b.a.createElement(w.a,{className:"cluster-edit-dialog",style:{width:600},title:a,visible:u,onOk:function(){return n.onConfirm()},onCancel:function(){return n.hide()},onClose:function(){return n.hide()}},b.a.createElement(v.a,S.a,b.a.createElement(v.a.Item,{label:"".concat(r)},b.a.createElement(k.a,{className:"in-select",defaultValue:h,onChange:function(e){return t({type:e})}},b.a.createElement(k.a.Option,{value:"TCP"},"TCP"),b.a.createElement(k.a.Option,{value:"HTTP"},"HTTP"),b.a.createElement(k.a.Option,{value:"NONE"},"NONE"))),b.a.createElement(v.a.Item,{label:"".concat(o)},b.a.createElement(y.a,{className:"in-text",value:p,onChange:function(e){return n.onChangeCluster({defaultCheckPort:e})}})),b.a.createElement(v.a.Item,{label:"".concat(i)},b.a.createElement(M.a,{checked:c,onChange:function(e){return n.onChangeCluster({useIPPort4Check:e})}})),"HTTP"===h&&[b.a.createElement(v.a.Item,{label:"".concat(l)},b.a.createElement(y.a,{className:"in-text",value:m,onChange:function(e){return t({path:e})}})),b.a.createElement(v.a.Item,{label:"".concat(s)},b.a.createElement(y.a,{className:"in-text",value:g,onChange:function(e){return t({headers:e})}}))],b.a.createElement(v.a.Item,{label:"".concat(e.metadata)},b.a.createElement(E.a,{language:"json",width:"100%",height:200,value:d,onChange:function(e){return n.onChangeCluster({metadataText:e})}}))))}}]),n}(b.a.Component)).displayName="EditClusterDialog",l=l))||l,l=(t(64),t(46)),u=t.n(l),l=(t(63),t(20)),d=t.n(l),C=(0,n.a.config)(((l=function(e){Object(o.a)(n,e);var t=Object(i.a)(n);function n(e){return Object(r.a)(this,n),(e=t.call(this,e)).state={editInstance:{},editInstanceDialogVisible:!1},e.show=e.show.bind(Object(s.a)(e)),e}return Object(a.a)(n,[{key:"show",value:function(e){var t=e.metadata,t=void 0===t?{}:t;Object.keys(t).length&&(e.metadataText=JSON.stringify(t,null,"\t")),this.setState({editInstance:e,editInstanceDialogVisible:!0})}},{key:"hide",value:function(){this.setState({editInstanceDialogVisible:!1})}},{key:"onConfirm",value:function(){var t=this,e=this.props,n=e.serviceName,a=e.clusterName,r=e.groupName,o=e.getInstanceList,i=e.openLoading,l=e.closeLoading,e=this.state.editInstance,s=e.ip,u=e.port,d=e.ephemeral,c=e.weight,f=e.enabled,e=e.metadataText;Object(h.b)({method:"PUT",url:"v1/ns/instance",data:{serviceName:n,clusterName:a,groupName:r,ip:s,port:u,ephemeral:d,weight:c,enabled:f,metadata:e},dataType:"text",beforeSend:function(){return i()},success:function(e){"ok"!==e?p.a.error(e):(t.hide(),o())},error:function(e){return p.a.error(e.responseText||"error")},complete:function(){return l()}})}},{key:"onChangeCluster",value:function(e){var t=this.state.editInstance;this.setState({editInstance:Object.assign({},void 0===t?{}:t,e)})}},{key:"render",value:function(){var t=this,e=this.props.locale,e=void 0===e?{}:e,n=this.state,a=n.editInstanceDialogVisible,n=n.editInstance;return b.a.createElement(w.a,{className:"instance-edit-dialog",title:e.updateInstance,style:{width:600},visible:a,onOk:function(){return t.onConfirm()},onCancel:function(){return t.hide()},onClose:function(){return t.hide()}},b.a.createElement(v.a,S.a,b.a.createElement(v.a.Item,{label:"IP:"},b.a.createElement("p",null,n.ip)),b.a.createElement(v.a.Item,{label:"".concat(e.port)},b.a.createElement("p",null,n.port)),b.a.createElement(v.a.Item,{label:"".concat(e.weight)},b.a.createElement(y.a,{className:"in-text",value:n.weight,onChange:function(e){return t.onChangeCluster({weight:e})}})),b.a.createElement(v.a.Item,{label:"".concat(e.whetherOnline)},b.a.createElement(M.a,{checked:n.enabled,onChange:function(e){return t.onChangeCluster({enabled:e})}})),b.a.createElement(v.a.Item,{label:"".concat(e.metadata)},b.a.createElement(E.a,{language:"json",width:"100%",height:200,value:n.metadataText,onChange:function(e){return t.onChangeCluster({metadataText:e})}}))))}}]),n}(b.a.Component)).displayName="EditInstanceDialog",l=l))||l,l=(0,n.a.config)(((l=function(e){Object(o.a)(n,e);var t=Object(i.a)(n);function n(e){return Object(r.a)(this,n),(e=t.call(this,e)).rowColor=function(e){e=e.healthy;return{className:"row-bg-".concat(S.b["".concat(e)])}},e.editInstanceDialog=b.a.createRef(),e.state={loading:!1,instance:{count:0,list:[]},pageNum:1,pageSize:10},e}return Object(a.a)(n,[{key:"componentDidMount",value:function(){this.getInstanceList()}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"getInstanceList",value:function(){var e,t=this,n=this.props,a=n.clusterName,r=n.serviceName,o=n.groupName;n.filters;a&&(e=(n=this.state).pageSize,n=n.pageNum,Object(h.b)({url:"v1/ns/catalog/instances",data:{serviceName:r,clusterName:a,groupName:o,pageSize:e,pageNo:n},beforeSend:function(){return t.openLoading()},success:function(e){return t.setState({instance:e})},complete:function(){return t.closeLoading()}}))}},{key:"openInstanceDialog",value:function(e){this.editInstanceDialog.current.getInstance().show(e)}},{key:"switchState",value:function(t,e){var n=this,a=this.state.instance,r=e.ip,o=e.port,i=e.ephemeral,l=e.weight,s=e.enabled,e=e.metadata,u=this.props,d=u.clusterName,c=u.serviceName,u=u.groupName;Object(h.b)({method:"PUT",url:"v1/ns/instance",data:{serviceName:c,clusterName:d,groupName:u,ip:r,port:o,ephemeral:i,weight:l,enabled:!s,metadata:JSON.stringify(e)},dataType:"text",beforeSend:function(){return n.openLoading()},success:function(){var e=Object.assign({},a);e.list[t].enabled=!s,n.setState({instance:e})},error:function(e){return p.a.error(e.responseText||"error")},complete:function(){return n.closeLoading()}})}},{key:"onChangePage",value:function(e){var t=this;this.setState({pageNum:e},function(){return t.getInstanceList()})}},{key:"render",value:function(){var a=this,e=this.props.locale,r=void 0===e?{}:e,e=this.props,t=e.clusterName,n=e.serviceName,e=e.groupName,o=this.state,i=o.instance,l=o.pageSize,o=o.loading,s=L(i.list,this.props.filters),s={count:s.length,list:s};return s.count?b.a.createElement("div",null,b.a.createElement(d.a,{dataSource:s.list,loading:o,rowProps:this.rowColor},b.a.createElement(d.a.Column,{width:138,title:"IP",dataIndex:"ip"}),b.a.createElement(d.a.Column,{width:100,title:r.port,dataIndex:"port"}),b.a.createElement(d.a.Column,{width:100,title:r.ephemeral,dataIndex:"ephemeral",cell:function(e){return"".concat(e)}}),b.a.createElement(d.a.Column,{width:100,title:r.weight,dataIndex:"weight"}),b.a.createElement(d.a.Column,{width:100,title:r.healthy,dataIndex:"healthy",cell:function(e){return"".concat(e)}}),b.a.createElement(d.a.Column,{title:r.metadata,dataIndex:"metadata",cell:function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};return t?Object.keys(t).map(function(e){return b.a.createElement("p",null,e,"=",t[e])}):null}}),b.a.createElement(d.a.Column,{title:r.operation,width:160,cell:function(e,t,n){return b.a.createElement("div",null,b.a.createElement(g.a,{type:"normal",className:"edit-btn",onClick:function(){return a.openInstanceDialog(n)}},r.editor),b.a.createElement(g.a,{type:n.enabled?"normal":"secondary",onClick:function(){return a.switchState(t,n)}},r[n.enabled?"offline":"online"]))}})),i.count>l?b.a.createElement(u.a,{className:"pagination",total:i.count,pageSize:l,onChange:function(e){return a.onChangePage(e)}}):null,b.a.createElement(C,{ref:this.editInstanceDialog,serviceName:n,clusterName:t,groupName:e,openLoading:function(){return a.openLoading()},closeLoading:function(){return a.closeLoading()},getInstanceList:function(){return a.getInstanceList()}})):null}}]),n}(b.a.Component)).displayName="InstanceTable",l.defaultProps={filters:new Map},l=l))||l,L=function(e,t){return e.filter(function(e){var n=e.metadata,a=!0;return t.forEach(function(e,t){if(e!==n[t])return a=!1}),a})},T=l,D=t(47),O=t(31),l=(t(175),t(74)),l=t.n(l),N=l.a.Group,P=l.a.Closeable,j=v.a.Item;var R=n.a.config(function(e){function t(){var e;a(),o&&l&&(e=new Map(Array.from(p)).set(o,l),h(e),d(""),f(""),n())}function n(){i(""),s("")}function a(){d(o?"":"error"),f(l?"":"error")}var r=Object(_.useState)(""),o=(r=Object(O.a)(r,2))[0],i=r[1],r=Object(_.useState)(""),l=(r=Object(O.a)(r,2))[0],s=r[1],r=Object(_.useState)(""),u=(r=Object(O.a)(r,2))[0],d=r[1],r=Object(_.useState)(""),c=(r=Object(O.a)(r,2))[0],f=r[1],r=Object(_.useState)(new Map),p=(r=Object(O.a)(r,2))[0],h=r[1],r=void 0===(r=e.locale)?{}:r;return Object(_.useEffect)(function(){e.setFilters(p)},[p]),b.a.createElement(m.a,{contentHeight:"auto",className:"inner-card"},b.a.createElement(v.a,{inline:!0,size:"small"},b.a.createElement(j,{label:r.title},b.a.createElement(j,null,b.a.createElement(y.a,{placeholder:"key",value:o,trim:!0,onChange:function(e){return i(e)},onPressEnter:t,state:u})),b.a.createElement(j,null,b.a.createElement(y.a,{placeholder:"value",value:l,trim:!0,onChange:function(e){return s(e)},onPressEnter:t,state:c})),b.a.createElement(j,{label:""},b.a.createElement(g.a,{type:"primary",onClick:t,style:{marginRight:10}},r.addFilter),0<p.size?b.a.createElement(g.a,{type:"primary",onClick:function(){h(new Map)}},r.clear):""))),b.a.createElement(N,null,Array.from(p).map(function(n){return b.a.createElement(P,{size:"medium",key:n[0],onClose:function(){return e=n[0],(t=new Map(Array.from(p))).delete(e),void h(t);var e,t}},"".concat(n[0]," : ").concat(n[1]))})))}),Y=(t(739),v.a.Item),A={labelCol:{fixedSpan:10},wrapperCol:{span:14}},n=(0,n.a.config)(((l=function(e){Object(o.a)(n,e);var t=Object(i.a)(n);function n(e){var a;return Object(r.a)(this,n),(a=t.call(this,e)).setFilters=function(n){return function(e){var t=a.state.instanceFilters,t=new Map(Array.from(t));t.set(n,e),a.setState({instanceFilters:t})}},a.editServiceDialog=b.a.createRef(),a.editClusterDialog=b.a.createRef(),a.state={serviceName:Object(D.b)(e.location.search,"name"),groupName:Object(D.b)(e.location.search,"groupName"),loading:!1,currentPage:1,clusters:[],instances:{},service:{},pageSize:10,pageNum:{},instanceFilters:new Map},a}return Object(a.a)(n,[{key:"componentDidMount",value:function(){this.state.serviceName?this.getServiceDetail():this.props.history.goBack()}},{key:"getServiceDetail",value:function(){var n=this,e=this.state,t=e.serviceName,e=e.groupName;Object(h.b)({url:"v1/ns/catalog/service?serviceName=".concat(t,"&groupName=").concat(e),beforeSend:function(){return n.openLoading()},success:function(e){var t=e.clusters,e=e.service;return n.setState({service:void 0===e?{}:e,clusters:void 0===t?[]:t})},error:function(e){return p.a.error(e.responseText||"error")},complete:function(){return n.closeLoading()}})}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"openEditServiceDialog",value:function(){this.editServiceDialog.current.getInstance().show(this.state.service)}},{key:"openClusterDialog",value:function(e){this.editClusterDialog.current.getInstance().show(e)}},{key:"render",value:function(){var t=this,e=this.props.locale,n=void 0===e?{}:e,e=this.state,a=e.serviceName,r=e.groupName,o=e.loading,i=e.service,i=void 0===i?{}:i,l=e.clusters,s=e.instanceFilters,e=i.metadata,e=void 0===e?{}:e,u=i.selector,u=void 0===u?{}:u,d="";return Object.keys(e).length&&(d=JSON.stringify(e,null,"\t")),b.a.createElement("div",{className:"main-container service-detail"},b.a.createElement(c.a,{shape:"flower",tip:"Loading...",className:"loading",visible:o,color:"#333"},b.a.createElement("h1",{style:{position:"relative",width:"100%"}},n.serviceDetails,b.a.createElement(g.a,{type:"primary",className:"header-btn",onClick:function(){return t.props.history.goBack()}},n.back),b.a.createElement(g.a,{type:"normal",className:"header-btn",onClick:function(){return t.openEditServiceDialog()}},n.editService)),b.a.createElement(v.a,A,b.a.createElement(Y,{label:"".concat(n.serviceName)},b.a.createElement(y.a,{value:i.name,readOnly:!0})),b.a.createElement(Y,{label:"".concat(n.groupName)},b.a.createElement(y.a,{value:i.groupName,readOnly:!0})),b.a.createElement(Y,{label:"".concat(n.protectThreshold)},b.a.createElement(y.a,{value:i.protectThreshold,readOnly:!0})),b.a.createElement(Y,{label:"".concat(n.metadata)},b.a.createElement(E.a,{language:"json",width:"100%",height:200,value:d,options:S.c})),b.a.createElement(Y,{label:"".concat(n.type)},b.a.createElement(y.a,{value:u.type,readOnly:!0})),"none"!==u.type&&b.a.createElement(Y,{label:"".concat(n.selector)},b.a.createElement(y.a,{value:u.expression,readOnly:!0}))),l.map(function(e){return b.a.createElement(m.a,{key:e.name,className:"cluster-card",title:"".concat(n.cluster),subTitle:e.name,contentHeight:"auto",extra:b.a.createElement(g.a,{type:"normal",onClick:function(){return t.openClusterDialog(e)}},n.editCluster)},b.a.createElement(R,{setFilters:t.setFilters(e.name),locale:n.InstanceFilter}),b.a.createElement(T,{clusterName:e.name,serviceName:a,groupName:r,filters:s.get(e.name)}))})),b.a.createElement(f.a,{ref:this.editServiceDialog,openLoading:function(){return t.openLoading()},closeLoading:function(){return t.closeLoading()},getServiceDetail:function(){return t.getServiceDetail()}}),b.a.createElement(x,{ref:this.editClusterDialog,openLoading:function(){return t.openLoading()},closeLoading:function(){return t.closeLoading()},getServiceDetail:function(){return t.getServiceDetail()}}))}}]),n}(b.a.Component)).displayName="ServiceDetail",t=l))||t;e.a=n},function(e,t,n){"use strict";n(52);var a=n(33),d=n.n(a),a=(n(63),n(20)),c=n.n(a),a=(n(32),n(18)),f=n.n(a),a=(n(35),n(19)),s=n.n(a),r=n(14),o=n(15),i=n(17),l=n(16),a=(n(26),n(8)),a=n.n(a),u=n(0),p=n.n(u),h=n(48),u=(n(36),n(10)),m=n.n(u),u=(n(49),n(27)),g=n.n(u),y=n(22),u=(n(39),n(5)),v=n.n(u),_=n(1),b=(n(635),v.a.Item),w={labelCol:{fixedSpan:6},wrapperCol:{span:18}},M=(0,a.a.config)(((u=function(e){Object(i.a)(n,e);var t=Object(l.a)(n);function n(e){return Object(r.a)(this,n),(e=t.call(this,e)).state={dialogvisible:!1,loading:!1,disabled:!1,dataSource:[]},e.field=new g.a(Object(y.a)(e)),e.disabled=!1,e}return Object(o.a)(n,[{key:"componentDidMount",value:function(){this.groupLabel=document.getElementById("groupwrapper")}},{key:"openDialog",value:function(e){this.setState({dialogvisible:!0,disabled:!1,dataSource:e}),this.disabled=!1}},{key:"closeDialog",value:function(){this.setState({dialogvisible:!1})}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"showGroup",value:function(){this.groupLabel.style.display="block"}},{key:"hideGroup",value:function(){this.groupLabel.style.display="none"}},{key:"changeType",value:function(e){0===e?this.showGroup():this.hideGroup()}},{key:"handleSubmit",value:function(){var a=this,e=this.props.locale,r=void 0===e?{}:e;this.field.validate(function(e,t){var n;e||(a.disabled=!0,a.setState({disabled:!0}),n=(n=t.customNamespaceId)||"",Object(_.b)({type:"get",url:"v1/console/namespaces?checkNamespaceIdExist=true",contentType:"application/x-www-form-urlencoded",beforeSend:function(){return a.openLoading()},data:{customNamespaceId:n},success:function(e){a.disabled=!1,a.setState({disabled:!1}),!0===e?s.a.alert({title:r.notice,content:r.namespaceIdAlreadyExist}):Object(_.b)({type:"post",url:"v1/console/namespaces",contentType:"application/x-www-form-urlencoded",beforeSend:function(){return a.openLoading()},data:{customNamespaceId:n,namespaceName:t.namespaceShowName,namespaceDesc:t.namespaceDesc},success:function(e){a.disabled=!1,a.setState({disabled:!1}),!0===e?(a.closeDialog(),a.props.getNameSpaces(),a.refreshNameSpace()):s.a.alert({title:r.notice,content:r.newnamespceFailedMessage})},complete:function(){return a.closeLoading()}})},complete:function(){return a.closeLoading()}}))})}},{key:"refreshNameSpace",value:function(){setTimeout(function(){Object(_.b)({type:"get",url:"v1/console/namespaces",success:function(e){200===e.code&&(window.namespaceList=e.data)}})},2e3)}},{key:"validateChart",value:function(e,t,n){var a=this.props.locale,a=void 0===a?{}:a;/[@#\$%\^&\*]+/g.test(t)?n(a.input):n()}},{key:"validateNamespzecId",value:function(e,t,n){var a,r;t&&""!==t.trim()?(a=void 0===(a=this.props.locale)?{}:a,128<t.length&&n(a.namespaceIdTooLong),!(r=t.match(/^[\w-]+/g))||1<r.length||t.length!==r[0].length?n(a.input):n()):n()}},{key:"render",value:function(){var e=this.props.locale,e=void 0===e?{}:e,t=p.a.createElement("div",null,p.a.createElement(f.a,{type:"primary",onClick:this.handleSubmit.bind(this),disabled:this.disabled},e.ok),p.a.createElement(f.a,{type:"normal",onClick:this.closeDialog.bind(this),style:{marginLeft:5}},e.cancel));return p.a.createElement("div",null,p.a.createElement(s.a,{title:e.newnamespce,style:{width:"50%"},visible:this.state.dialogvisible,onOk:this.handleSubmit.bind(this),onCancel:this.closeDialog.bind(this),footer:t,onClose:this.closeDialog.bind(this)},p.a.createElement(v.a,{field:this.field},p.a.createElement(d.a,{tip:e.loading,style:{width:"100%",position:"relative"},visible:this.state.loading},p.a.createElement(b,Object.assign({label:e.namespaceId},w),p.a.createElement(m.a,Object.assign({},this.field.init("customNamespaceId",{rules:[{validator:this.validateNamespzecId.bind(this)}]}),{style:{width:"100%"}}))),p.a.createElement(b,Object.assign({label:e.name,required:!0},w),p.a.createElement(m.a,Object.assign({},this.field.init("namespaceShowName",{rules:[{required:!0,message:e.namespacenotnull},{validator:this.validateChart.bind(this)}]}),{style:{width:"100%"}}))),p.a.createElement(b,Object.assign({label:e.description,required:!0},w),p.a.createElement(m.a,Object.assign({},this.field.init("namespaceDesc",{rules:[{required:!0,message:e.namespacedescnotnull},{validator:this.validateChart.bind(this)}]}),{style:{width:"100%"}})))))))}}]),n}(p.a.Component)).displayName="NewNameSpace",u=u))||u,k=(n(636),v.a.Item),S=(0,a.a.config)(((u=function(e){Object(i.a)(n,e);var t=Object(l.a)(n);function n(e){return Object(r.a)(this,n),(e=t.call(this,e)).state={dialogvisible:!1,loading:!1},e.field=new g.a(Object(y.a)(e)),e}return Object(o.a)(n,[{key:"openDialog",value:function(e){this.getNamespaceDetail(e),this.setState({dialogvisible:!0,type:e.type})}},{key:"closeDialog",value:function(){this.setState({dialogvisible:!1})}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"getNamespaceDetail",value:function(e){var t=this,n=this.props.locale,a=void 0===n?{}:n;this.field.setValues(e),Object(_.b)({type:"get",url:"v1/console/namespaces?show=all&namespaceId=".concat(e.namespace),success:function(e){null!==e?t.field.setValue("namespaceDesc",e.namespaceDesc):s.a.alert({title:a.notice,content:e.message})},error:function(){window.namespaceList=[],t.handleNameSpaces(window.namespaceList)}})}},{key:"handleSubmit",value:function(){var n=this,e=this.props.locale,a=void 0===e?{}:e;this.field.validate(function(e,t){e||Object(_.b)({type:"put",beforeSend:function(){n.openLoading()},url:"v1/console/namespaces",contentType:"application/x-www-form-urlencoded",data:{namespace:t.namespace,namespaceShowName:t.namespaceShowName,namespaceDesc:t.namespaceDesc},success:function(e){!0===e?(n.closeDialog(),n.props.getNameSpaces(),n.refreshNameSpace()):s.a.alert({title:a.notice,content:e.message})},complete:function(){n.closeLoading()}})})}},{key:"refreshNameSpace",value:function(){setTimeout(function(){Object(_.b)({type:"get",url:"v1/console/namespaces",success:function(e){200===e.code&&(window.namespaceList=e.data)}})},2e3)}},{key:"validateChart",value:function(e,t,n){var a=this.props.locale,a=void 0===a?{}:a;/[@#\$%\^&\*]+/g.test(t)?n(a.pleaseDo):n()}},{key:"render",value:function(){var e=this.props.locale,e=void 0===e?{}:e,t={labelCol:{fixedSpan:6},wrapperCol:{span:18}},n=0===this.state.type?p.a.createElement("div",null):p.a.createElement(f.a,{type:"primary",onClick:this.handleSubmit.bind(this)},e.publicSpace);return p.a.createElement("div",null,p.a.createElement(s.a,{title:e.confirmModify,style:{width:"50%"},visible:this.state.dialogvisible,footer:n,onCancel:this.closeDialog.bind(this),onClose:this.closeDialog.bind(this)},p.a.createElement(d.a,{tip:e.editNamespace,style:{width:"100%",position:"relative"},visible:this.state.loading},p.a.createElement(v.a,{field:this.field},p.a.createElement(k,Object.assign({label:e.load,required:!0},t),p.a.createElement(m.a,Object.assign({},this.field.init("namespaceShowName",{rules:[{required:!0,message:e.namespace},{validator:this.validateChart.bind(this)}]}),{disabled:0===this.state.type}))),p.a.createElement(k,Object.assign({label:e.description,required:!0},t),p.a.createElement(m.a,Object.assign({},this.field.init("namespaceDesc",{rules:[{required:!0,message:e.namespaceDesc},{validator:this.validateChart.bind(this)}]}),{disabled:0===this.state.type})))))))}}]),n}(p.a.Component)).displayName="EditorNameSpace",u=u))||u,a=(n(637),(0,a.a.config)(((u=function(e){Object(i.a)(n,e);var t=Object(l.a)(n);function n(e){return Object(r.a)(this,n),(e=t.call(this,e)).editgroup=p.a.createRef(),e.newnamespace=p.a.createRef(),e.state={loading:!1,defaultNamespace:"",defaultNamespaceName:"public",dataSource:[]},e}return Object(o.a)(n,[{key:"componentDidMount",value:function(){this.getNameSpaces(0)}},{key:"getNameSpaces",value:function(){var a=this,e=this.props.locale,r=(void 0===e?{}:e).prompt,t=this;t.openLoading(),Object(_.b)({type:"get",beforeSend:function(){},url:"v1/console/namespaces",success:function(e){if(200===e.code){var t=e.data||[];window.namespaceList=t;for(var n=0;n<t.length;n++)1===t[n].type&&a.setState({defaultNamespace:t[n].namespace});a.setState({dataSource:t})}else s.a.alert({title:r,content:e.message})},complete:function(){t.closeLoading()},error:function(e){window.namespaceList=[{namespace:"",namespaceShowName:"å
Œ
±ç©ºé´",type:0}]}})}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"detailNamespace",value:function(e){var t=this,n=this.props.locale,n=void 0===n?{}:n,a=n.namespaceDetails,r=n.namespaceName,o=n.namespaceID,i=n.configuration,l=n.description,n=e.namespace;Object(_.b)({url:"v1/console/namespaces?show=all&namespaceId=".concat(n),beforeSend:function(){t.openLoading()},success:function(e){null!==e&&s.a.alert({style:{width:"500px"},needWrapper:!1,title:a,content:p.a.createElement("div",null,p.a.createElement("div",{style:{marginTop:"10px"}},p.a.createElement("p",null,p.a.createElement("span",{style:{color:"#999",marginRight:5}},"".concat(r)),p.a.createElement("span",{style:{color:"#c7254e"}},e.namespaceShowName)),p.a.createElement("p",null,p.a.createElement("span",{style:{color:"#999",marginRight:5}},"".concat(o)),p.a.createElement("span",{style:{color:"#c7254e"}},e.namespace)),p.a.createElement("p",null,p.a.createElement("span",{style:{color:"#999",marginRight:5}},"".concat(i)),p.a.createElement("span",{style:{color:"#c7254e"}},e.configCount," / ",e.quota)),p.a.createElement("p",null,p.a.createElement("span",{style:{color:"#999",marginRight:5}},"".concat(l)),p.a.createElement("span",{style:{color:"#c7254e"}},e.namespaceDesc))))})},complete:function(){t.closeLoading()}})}},{key:"removeNamespace",value:function(n){var a=this,e=this.props.locale,e=void 0===e?{}:e,t=e.removeNamespace,r=e.confirmDelete,o=e.namespaceName,i=e.namespaceID,l=(e.configurationManagement,e.deletedFailure);s.a.confirm({title:t,content:p.a.createElement("div",{style:{marginTop:"-20px"}},p.a.createElement("h3",null,r),p.a.createElement("p",null,p.a.createElement("span",{style:{color:"#999",marginRight:5}},"".concat(o)),p.a.createElement("span",{style:{color:"#c7254e"}},n.namespaceShowName)),p.a.createElement("p",null,p.a.createElement("span",{style:{color:"#999",marginRight:5}},"".concat(i)),p.a.createElement("span",{style:{color:"#c7254e"}},n.namespace))),onOk:function(){var e="v1/console/namespaces?namespaceId=".concat(n.namespace);Object(_.b)({url:e,type:"delete",success:function(e){var t;!0===e?(t=Object(_.a)("namespace"),n.namespace===t&&(Object(_.c)("namespace",a.state.defaultNamespace),Object(_.c)("namespaceShowName",a.state.defaultNamespaceName),window.nownamespace=a.state.defaultNamespace,window.namespaceShowName=a.state.defaultNamespaceName)):s.a.alert({content:e.message,title:l}),a.getNameSpaces()}})}})}},{key:"refreshNameSpace",value:function(){Object(_.b)({type:"get",url:"v1/console/namespaces",success:function(e){200===e.code&&(window.namespaceList=e.data)},error:function(e){window.namespaceList=[{namespace:"",namespaceShowName:"å
Œ
±ç©ºé´",type:0}]}})}},{key:"openToEdit",value:function(e){this.editgroup.current.getInstance().openDialog(e)}},{key:"renderOption",value:function(e,t,n){var a=this.props.locale,a=void 0===a?{}:a,r=a.namespaceDelete,o=a.details,a=a.edit,i=p.a.createElement("a",{onClick:this.removeNamespace.bind(this,n),style:{marginRight:10}},r),r=(1!==n.type&&0!==n.type||(i=p.a.createElement("span",{style:{marginRight:10,cursor:"not-allowed",color:"#999"},disabled:!0},r)),p.a.createElement("a",{onClick:this.detailNamespace.bind(this,n),style:{marginRight:10}},o)),o=p.a.createElement("a",{onClick:this.openToEdit.bind(this,n)},a);return 0!==n.type&&1!==n.type||(o=p.a.createElement("span",{style:{marginRight:10,cursor:"not-allowed",color:"#999"},disabled:!0},a)),p.a.createElement("div",null,r,i,o)}},{key:"addNameSpace",value:function(){this.newnamespace.current.getInstance().openDialog(this.state.dataSource)}},{key:"renderName",value:function(e,t,n){var a=this.props.locale,a=(void 0===a?{}:a).namespacePublic,r=n.namespaceShowName;return 0===n.type&&(r=a),p.a.createElement("div",null,r)}},{key:"render",value:function(){var e=this,t=this.props.locale,t=void 0===t?{}:t,n=t.pubNoData,a=t.namespace,r=t.namespaceAdd,o=t.namespaceNames,i=t.description,l=t.namespaceNumber,s=t.configuration,u=t.namespaceOperation;return p.a.createElement(p.a.Fragment,null,p.a.createElement(h.a,{left:a}),p.a.createElement("div",{className:"fusion-demo"},p.a.createElement(d.a,{shape:"flower",tip:"Loading...",color:"#333",style:{width:"100%"},visible:this.state.loading},p.a.createElement("div",null,p.a.createElement("div",{style:{textAlign:"right",marginBottom:10}},p.a.createElement(f.a,{type:"primary",style:{marginRight:20,marginTop:10},onClick:this.addNameSpace.bind(this)},r),p.a.createElement(f.a,{style:{marginRight:0,marginTop:10},type:"secondary",onClick:function(){return e.getNameSpaces()}},t.refresh)),p.a.createElement("div",null,p.a.createElement(c.a,{dataSource:this.state.dataSource,locale:{empty:n}},p.a.createElement(c.a.Column,{title:o,dataIndex:"namespaceShowName",cell:this.renderName.bind(this)}),p.a.createElement(c.a.Column,{title:l,dataIndex:"namespace"}),p.a.createElement(c.a.Column,{title:i,dataIndex:"namespaceDesc"}),p.a.createElement(c.a.Column,{title:s,dataIndex:"configCount"}),p.a.createElement(c.a.Column,{title:u,dataIndex:"time",cell:this.renderOption.bind(this)})))),p.a.createElement(M,{ref:this.newnamespace,getNameSpaces:this.getNameSpaces.bind(this)}),p.a.createElement(S,{ref:this.editgroup,getNameSpaces:this.getNameSpaces.bind(this)}))))}}]),n}(p.a.Component)).displayName="NameSpace",n=u))||n);t.a=a},function(e,t,n){"use strict";n(52);var a=n(33),l=n.n(a),a=(n(32),n(18)),s=n.n(a),a=(n(36),n(10)),u=n.n(a),a=(n(49),n(27)),r=n.n(a),a=(n(35),n(19)),d=n.n(a),c=n(31),o=n(14),i=n(15),f=n(22),p=n(17),h=n(16),a=(n(26),n(8)),a=n.n(a),m=(n(66),n(41)),m=n.n(m),g=(n(39),n(5)),y=n.n(g),g=(n(132),n(60)),v=n.n(g),g=n(0),_=n.n(g),b=n(1),w=n(47),M=n(90),k=(n(685),n(34)),g=(n(59),n(29)),S=n.n(g),g=n(37),n=n(82),E=y.a.Item,x=S.a.Option,C={labelCol:{fixedSpan:4},wrapperCol:{span:19}},L=Object(g.b)(function(e){return{namespaces:e.namespace.namespaces}},{getNamespaces:n.b})(n=(0,a.a.config)(((g=function(e){Object(p.a)(n,e);var t=Object(h.a)(n);function n(e){return Object(o.a)(this,n),(e=t.call(this,e)).field=new r.a(Object(f.a)(e)),e.state={namespacesDataSource:[]},e}return Object(i.a)(n,[{key:"componentDidMount",value:function(){this.getNamespaces()}},{key:"getNamespaces",value:function(){var t=this;Object(b.b)({type:"get",url:"v1/console/namespaces",success:function(e){200===e.code?(t.state.namespacesDataSource,t.setState({namespacesDataSource:e.data})):d.a.alert({title:prompt,content:e.message})},error:function(e){window.namespaceList=[{namespace:"",namespaceShowName:"å
Œ
±ç©ºé´",type:0}]}})}},{key:"render",value:function(){var t=this,e=this.props.locale,e=void 0===e?{}:e,n=this.field.getError,a=this.props,r=a.visible,o=a.onOk,i=a.onCancel,l=a.dataId,a=a.group,s=this.state.namespacesDataSource;return _.a.createElement(_.a.Fragment,null,_.a.createElement(d.a,{title:e.configComparisonTitle,visible:r,onOk:function(){var e=Object.keys({dataId:"dataId",group:"group",namespace:"namespace"}).map(function(e){return t.field.getValue(e)});o(e)},onClose:i,onCancel:i,afterClose:function(){return t.field.reset()}},_.a.createElement(y.a,Object.assign({style:{width:430}},C,{field:this.field}),_.a.createElement(E,{label:"namespace",help:n("namespace")},_.a.createElement(S.a,{name:"namespace",placeholder:e.namespaceSelect,style:{width:"100%"}},s.map(function(e){var t=e.namespace,e=e.namespaceShowName;return _.a.createElement(x,{value:t},e," ",t?"(".concat(t,")"):"")}))),_.a.createElement(E,{label:"Data Id",required:!0,help:n("Data Id")},_.a.createElement(u.a,{name:"dataId",trim:!0,placeholder:e.dataIdInput,defaultValue:l})),_.a.createElement(E,{label:"Group",required:!0,help:n("Group")},_.a.createElement(u.a,{name:"group",trim:!0,placeholder:e.configComparison,defaultValue:a})))))}}]),n}(_.a.Component)).displayName="ConfigCompare",n=g))||n)||n,T=v.a.Item,D=y.a.Item,O=m.a.Row,N=m.a.Col,m=(0,a.a.config)(((g=function(e){Object(p.a)(n,e);var t=Object(h.a)(n);function n(e){var l;return Object(o.a)(this,n),(l=t.call(this,e)).openCompare=function(e){var e=Object(c.a)(e,3),t=e[0],n=e[1],e=e[2],a=Object(f.a)(l),r=l.props.locale,o=void 0===r?{}:r,i=l.monacoEditor.getValue();k.a.get("v1/cs/configs",{params:{show:"all",group:n,dataId:t,tenant:e}}).then(function(e){null!=e&&""!==e?(e=e.content,i=i.replace(/\r\n/g,"\n").replace(/\n/g,"\r\n"),e=e.replace(/\r\n/g,"\n").replace(/\n/g,"\r\n"),a.compareEditorDialog.current.getInstance().openDialog(i,e)):d.a.alert({title:o.error,content:o.configNotFind})})},l.state={loading:!1,showmore:!1,activeKey:"normal",hasbeta:!1,ips:"",checkedBeta:!1,switchEncrypt:!1,tag:[],editorClass:"editor-normal"},l.field=new r.a(Object(f.a)(l)),l.dataId=Object(b.a)("dataId")||"yanlin",l.group=Object(b.a)("group")||"DEFAULT_GROUP",l.ips="",l.valueMap={},l.tenant=Object(b.a)("namespace")||"",l.searchDataId=Object(b.a)("searchDataId")||"",l.searchGroup=Object(b.a)("searchGroup")||"",l.pageSize=Object(b.a)("pageSize"),l.pageNo=Object(b.a)("pageNo"),l.diffEditorDialog=_.a.createRef(),l.compareEditorDialog=_.a.createRef(),l}return Object(i.a)(n,[{key:"componentDidMount",value:function(){this.initData(),this.getDataDetail(),this.initFullScreenEvent()}},{key:"initData",value:function(){var e=this.props.locale,e=void 0===e?{}:e;this.dataId.startsWith("cipher-")&&this.setState({switchEncrypt:!0}),this.setState({tag:[{title:e.official,key:"normal"}]})}},{key:"initFullScreenEvent",value:function(){var t=this;document.body.addEventListener("keydown",function(e){"F1"===e.key&&(e.preventDefault(),t.setState({editorClass:"editor-full-screen"})),"Escape"===e.key&&t.setState({editorClass:"editor-normal"})})}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"changeTab",value:function(e){var t=e.split("-")[0],t=this.valueMap[t];this.setState({activeKey:e}),this.field.setValue("content",t.content),t.betaIps&&this.setState({ips:t.betaIps})}},{key:"toggleMore",value:function(){this.setState({showmore:!this.state.showmore})}},{key:"getDataDetail",value:function(){var e=this.props.locale,n=void 0===e?{}:e,a=this,e=(this.serverId=Object(b.a)("serverId")||"center",this.tenant=Object(b.a)("namespace")||"",this.edasAppName=Object(b.a)("edasAppName")||"",this.inApp=this.edasAppName,"v1/cs/configs?show=all&dataId=".concat(this.dataId,"&group=").concat(this.group));Object(b.b)({url:e,beforeSend:function(){a.openLoading()},success:function(e){var t;null!=e?(a.valueMap.normal=t=e,a.field.setValue("dataId",t.dataId),a.field.setValue("content",t.content),a.field.setValue("appName",a.inApp?a.edasAppName:t.appName),a.field.setValue("envs",a.serverId),a.field.setValue("group",t.group),a.field.setValue("config_tags",t.configTags),a.field.setValue("desc",t.desc),a.field.setValue("md5",t.md5),a.field.setValue("type",t.type),a.initMoacoEditor(t.type,t.content)):d.a.alert({title:n.error,content:e.message})},complete:function(){a.closeLoading()}})}},{key:"goList",value:function(){this.props.history.push(Object(w.a)("/configurationManagement",{serverId:this.serverId,group:this.searchGroup,dataId:this.searchDataId,namespace:this.tenant,pageNo:this.pageNo,pageSize:this.pageSize}))}},{key:"initMoacoEditor",value:function(e,t){var n=this,a=document.getElementById("container"),r=(a.innerHTML="",{value:t,language:e,codeLens:!(this.monacoEditor=null),selectOnLineNumbers:!0,roundedSelection:!1,readOnly:!0,lineNumbersMinChars:!0,theme:"vs-dark",wordWrapColumn:120,folding:!1,showFoldingControls:"always",wordWrap:"wordWrapColumn",cursorStyle:"line",automaticLayout:!0});window.monaco?this.monacoEditor=window.monaco.editor.create(a,r):window.importEditor(function(){n.monacoEditor=window.monaco.editor.create(a,r)})}},{key:"openDiff",value:function(){var n=this,e=this.props.locale,a=void 0===e?{}:e,r=this.monacoEditor.getValue(),e="v1/cs/history/previous?id=".concat(this.valueMap.normal.id,"&dataId=").concat(this.dataId,"&group=").concat(this.group);Object(b.b)({url:e,beforeSend:function(){n.openLoading()},success:function(e){var t;null!=e?(t=e.content,r=r.replace(/\r\n/g,"\n").replace(/\n/g,"\r\n"),t=t.replace(/\r\n/g,"\n").replace(/\n/g,"\r\n"),n.diffEditorDialog.current.getInstance().openDialog(r,t)):d.a.alert({title:a.error,content:e.message})},complete:function(){n.closeLoading()}})}},{key:"onClickConfigCompare",value:function(){this.setState({configCompareVisible:!0})}},{key:"closeConfigCompare",value:function(){this.setState({configCompareVisible:!1})}},{key:"render",value:function(){var t=this,e=this.props.locale,e=void 0===e?{}:e,n=this.state,a=n.configCompareVisible,n=n.editorClass,r=this.field.init,o={labelCol:{span:2},wrapperCol:{span:22}},i=this.state.activeKey.split("-")[0];return _.a.createElement("div",null,_.a.createElement(l.a,{shape:"flower",tip:"Loading...",style:{width:"100%",position:"relative"},visible:this.state.loading,color:"#333"},_.a.createElement("h1",{style:{position:"relative",width:"100%"}},e.configurationDetails),this.state.hasbeta?_.a.createElement("div",{style:{display:"inline-block",height:40,width:"80%",overflow:"hidden"}},_.a.createElement(v.a,{shape:"wrapped",onChange:this.changeTab.bind(this),lazyLoad:!1,activeKey:this.state.activeKey},this.state.tag.map(function(e){return _.a.createElement(T,{title:e.title,key:e.key})}))):"",_.a.createElement(y.a,Object.assign({inline:!1,field:this.field},o),_.a.createElement(D,{label:e.namespace,required:!0},_.a.createElement("p",null,this.tenant)),_.a.createElement(D,{label:"Data ID",required:!0},_.a.createElement(u.a,Object.assign({htmlType:"text",readOnly:!0},r("dataId")))),_.a.createElement(D,{label:"Group",required:!0},_.a.createElement(u.a,Object.assign({htmlType:"text",readOnly:!0},r("group")))),_.a.createElement(D,{label:" "},_.a.createElement("div",null,_.a.createElement("a",{style:{fontSize:"12px"},onClick:this.toggleMore.bind(this)},this.state.showmore?e.collapse:e.more))),_.a.createElement(D,{label:e.home,className:"more-item".concat(this.state.showmore?"":" hide")},_.a.createElement(u.a,Object.assign({htmlType:"text",readOnly:!0},r("appName")))),_.a.createElement(D,{label:e.tags,className:"more-item".concat(this.state.showmore?"":" hide")},_.a.createElement(u.a,Object.assign({htmlType:"text",readOnly:!0},r("config_tags")))),_.a.createElement(D,Object.assign({label:e.description},o),_.a.createElement(u.a.TextArea,Object.assign({htmlType:"text",multiple:!0,rows:3,readOnly:!0},r("desc")))),"normal"===i?"":_.a.createElement(D,{label:e.betaRelease},_.a.createElement("div",{style:{width:"100%"},id:"betaips"},_.a.createElement(u.a.TextArea,{multiple:!0,style:{width:"100%"},value:this.state.ips,readOnly:!0,placeholder:"127.0.0.1,127.0.0.2"}))),_.a.createElement(D,{label:"MD5:",required:!0},_.a.createElement(u.a,Object.assign({htmlType:"text",readOnly:!0},r("md5")))),_.a.createElement(D,{label:e.configuration,required:!0},_.a.createElement("div",{className:n,id:"container",style:{minHeight:500}}))),_.a.createElement(O,null,_.a.createElement(N,{span:"24",className:"button-list"},_.a.createElement(s.a,{type:"primary",onClick:function(){return t.onClickConfigCompare()}},e.configComparison)," ",_.a.createElement(s.a,{type:"primary",onClick:this.openDiff.bind(this)},e.versionComparison)," ",_.a.createElement(s.a,{type:"normal",onClick:this.goList.bind(this)},e.back))),_.a.createElement(M.a,{ref:this.diffEditorDialog,title:e.versionComparison,currentArea:e.dialogCurrentArea,originalArea:e.dialogOriginalArea}),_.a.createElement(M.a,{ref:this.compareEditorDialog,title:e.configComparison,currentArea:e.dialogCurrentConfig,originalArea:e.dialogComparedConfig})),_.a.createElement(L,{visible:a,dataId:this.dataId,group:this.group,onOk:function(e){t.openCompare(e)},onCancel:function(){return t.closeConfigCompare()}}))}}]),n}(_.a.Component)).displayName="ConfigDetail",n=g))||n;t.a=m},function(e,t,n){"use strict";n(64);var a=n(46),s=n.n(a),a=(n(35),n(19)),u=n.n(a),a=(n(63),n(20)),d=n.n(a),a=(n(32),n(18)),c=n.n(a),a=(n(87),n(53)),f=n.n(a),a=(n(39),n(5)),p=n.n(a),a=(n(36),n(10)),h=n.n(a),i=n(14),l=n(15),m=n(22),g=n(17),y=n(16),a=(n(26),n(8)),a=n.n(a),r=n(0),v=n.n(r),r=n(37),_=n(45),b=n(48),o=(n(59),n(29)),w=n.n(o),o=(n(49),n(27)),M=n.n(o),k=p.a.Item,S={labelCol:{fixedSpan:4},wrapperCol:{span:19}},E=Object(r.b)(function(e){return{users:e.authority.users}},{searchUsers:_.m})(o=(0,a.a.config)(((o=function(e){Object(g.a)(o,e);var r=Object(y.a)(o);function o(){var t;Object(i.a)(this,o);for(var e=arguments.length,n=new Array(e),a=0;a<e;a++)n[a]=arguments[a];return(t=r.call.apply(r,[this].concat(n))).field=new M.a(Object(m.a)(t)),t.state={dataSource:[]},t.handleChange=function(e){0<e.length&&Object(_.m)(e).then(function(e){t.setState({dataSource:e})})},t}return Object(l.a)(o,[{key:"check",value:function(){var n=this,e=this.props.locale,a={role:e.roleError,username:e.usernameError},e=Object.keys(a).map(function(e){var t=n.field.getValue(e);return t||n.field.setError(e,a[e]),t});return 2===e.filter(function(e){return e}).length?e:null}},{key:"render",value:function(){var t=this,e=this.props.locale,n=this.field.getError,a=this.props,r=a.visible,o=a.onOk,i=a.onCancel;return v.a.createElement(v.a.Fragment,null,v.a.createElement(u.a,{title:e.bindingRoles,visible:r,onOk:function(){var e=t.check();e&&o(e).then(function(){return i()})},onClose:i,onCancel:i,afterClose:function(){return t.field.reset()}},v.a.createElement(p.a,Object.assign({style:{width:400}},S,{field:this.field}),v.a.createElement(k,{label:e.role,required:!0,help:n("role")},v.a.createElement(h.a,{name:"role",trim:!0,placeholder:e.rolePlaceholder})),v.a.createElement(k,{label:e.username,required:!0,help:n("username")},v.a.createElement(w.a.AutoComplete,{name:"username",style:{width:316},filterLocal:!1,placeholder:e.usernamePlaceholder,onChange:this.handleChange,dataSource:this.state.dataSource})))))}}]),o}(v.a.Component)).displayName="NewRole",o=o))||o)||o,r=(n(743),Object(r.b)(function(e){return{roles:e.authority.roles}},{getRoles:_.i})(n=(0,a.a.config)(((o=function(e){Object(g.a)(n,e);var t=Object(y.a)(n);function n(e){return Object(i.a)(this,n),(e=t.call(this,e)).state={loading:!0,pageNo:1,pageSize:9,role:"",defaultFuzzySearch:!0},e.handleDefaultFuzzySwitchChange=e.handleDefaultFuzzySwitchChange.bind(Object(m.a)(e)),e}return Object(l.a)(n,[{key:"componentDidMount",value:function(){this.getRoles()}},{key:"getRoles",value:function(){var e=this,t=(this.setState({loading:!0}),this.state),n=t.pageNo,t=t.pageSize,a=this.state,r=a.username,a=a.role,o="accurate";this.state.defaultFuzzySearch&&(r&&""!==r&&(r="*".concat(r,"*")),a&&""!==a&&(a="*".concat(a,"*"))),a&&-1!==a.indexOf("*")&&(o="blur"),r&&-1!==r.indexOf("*")&&(o="blur"),this.props.getRoles({pageNo:n,pageSize:t,role:a,username:r,search:o}).then(function(){e.state.loading&&e.setState({loading:!1})}).catch(function(){return e.setState({loading:!1})})}},{key:"colseCreateRole",value:function(){this.setState({createRoleVisible:!1})}},{key:"handleDefaultFuzzySwitchChange",value:function(){this.setState({defaultFuzzySearch:!this.state.defaultFuzzySearch})}},{key:"render",value:function(){var a=this,e=this.props,t=e.roles,r=e.locale,e=this.state,n=e.loading,o=e.pageSize,i=e.pageNo,l=e.createRoleVisible;e.passwordResetUser;return v.a.createElement(v.a.Fragment,null,v.a.createElement(b.a,{left:r.roleManagement}),v.a.createElement(p.a,{inline:!0},v.a.createElement(p.a.Item,{label:"ç¨æ·å"},v.a.createElement(h.a,{value:this.state.username,htmlType:"text",placeholder:this.state.defaultFuzzySearch?r.defaultFuzzyd:r.fuzzyd,style:{width:200},onChange:function(e){a.setState({username:e})}})),v.a.createElement(p.a.Item,{label:"è§è²å"},v.a.createElement(h.a,{value:this.state.role,htmlType:"text",placeholder:this.state.defaultFuzzySearch?r.defaultFuzzyd:r.fuzzyd,style:{width:200},onChange:function(e){a.setState({role:e})}})),v.a.createElement(p.a.Item,{label:"é»è®¤æ¨¡ç³å¹é
"},v.a.createElement(f.a,{checkedChildren:"",unCheckedChildren:"",defaultChecked:this.state.defaultFuzzySearch,onChange:this.handleDefaultFuzzySwitchChange,title:"èªå¨å¨æç´¢åæ°ååå ä¸*"})),v.a.createElement(p.a.Item,{label:""},v.a.createElement(c.a,{type:"primary",style:{marginRight:10},onClick:function(){return a.getRoles()},"data-spm-click":"gostr=/aliyun;locaid=dashsearch"},r.query)),v.a.createElement(p.a.Item,{style:{float:"right"}},v.a.createElement(c.a,{type:"primary",onClick:function(){return a.setState({createRoleVisible:!0})},style:{marginRight:20}},r.bindingRoles))),v.a.createElement(d.a,{dataSource:t.pageItems,loading:n,maxBodyHeight:476,fixedHeader:!0},v.a.createElement(d.a.Column,{title:r.role,dataIndex:"role"}),v.a.createElement(d.a.Column,{title:r.username,dataIndex:"username"}),v.a.createElement(d.a.Column,{title:r.operation,dataIndex:"role",cell:function(e,t,n){return"ROLE_ADMIN"===e?null:v.a.createElement(c.a,{type:"primary",warning:!0,onClick:function(){return u.a.confirm({title:r.deleteRole,content:r.deleteRoleTip,onOk:function(){return Object(_.f)(n).then(function(){a.setState({pageNo:1},function(){return a.getRoles()})})}})}},r.deleteRole)}})),t.totalCount>o&&v.a.createElement(s.a,{className:"users-pagination",current:i,total:t.totalCount,pageSize:o,onChange:function(e){return a.setState({pageNo:e},function(){return a.getRoles()})}}),v.a.createElement(E,{visible:l,onOk:function(e){return Object(_.b)(e).then(function(e){return a.getRoles(),e})},onCancel:function(){return a.colseCreateRole()}}))}}]),n}(v.a.Component)).displayName="RolesManagement",n=o))||n)||n);t.a=r},function(y,e,t){"use strict";t(64);var n=t(46),w=t.n(n),n=(t(32),t(18)),M=t.n(n),n=(t(87),t(53)),k=t.n(n),n=(t(36),t(10)),S=t.n(n),E=t(21),n=(t(51),t(25)),r=t.n(n),n=(t(35),t(19)),o=t.n(n),n=(t(49),t(27)),i=t.n(n),l=t(14),s=t(15),u=t(22),d=t(17),c=t(16),n=(t(26),t(8)),n=t.n(n),a=(t(63),t(20)),x=t.n(a),a=(t(66),t(41)),a=t.n(a),f=(t(39),t(5)),C=t.n(f),f=t(0),L=t.n(f),p=t(1),T=t(47),D=t(48),O=t(140),f=(t(52),t(33)),h=t.n(f),f=(t(132),t(60)),m=t.n(f),g=(t(404),m.a.Item),N=(0,n.a.config)(((f=function(e){Object(d.a)(n,e);var t=Object(c.a)(n);function n(e){return Object(l.a)(this,n),(e=t.call(this,e)).state={dialogvisible:!1,loading:!1},e.defaultCode="",e.nodejsCode="TODO",e.cppCode="TODO",e.shellCode="TODO",e.pythonCode="TODO",e.record={},e.springCode="TODO",e.sprigbootCode="TODO",e.sprigcloudCode="TODO",e.csharpCode="TODO",e}return Object(s.a)(n,[{key:"componentDidMount",value:function(){}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"getData",value:function(){var e=Object(p.a)("namespace"),e={group:this.record.group||"",dataId:this.record.dataId||"",namespace:e,inEdas:window.globalConfig.isParentEdas()};this.defaultCode=this.getJavaCode(e),this.createCodeMirror("text/x-java",this.defaultCode),this.springCode=this.getSpringCode(e),this.sprigbootCode=this.getSpringBootCode(e),this.sprigcloudCode=this.getSpringCloudCode(e),this.nodejsCode=this.getNodejsCode(e),this.cppCode=this.getCppCode(e),this.shellCode=this.getShellCode(e),this.pythonCode=this.getPythonCode(e),this.csharpCode=this.getCSharpCode(e),this.forceUpdate()}},{key:"getJavaCode",value:function(e){return'/* Refer to document: https://github.com/alibaba/nacos/blob/master/example/src/main/java/com/alibaba/nacos/example\n* pom.xml\n <dependency>\n <groupId>com.alibaba.nacos</groupId>\n <artifactId>nacos-client</artifactId>\n <version>${latest.version}</version>\n </dependency>\n*/\npackage com.alibaba.nacos.example;\n\nimport java.util.Properties;\n\nimport com.alibaba.nacos.api.exception.NacosException;\nimport com.alibaba.nacos.api.naming.NamingFactory;\nimport com.alibaba.nacos.api.naming.NamingService;\nimport com.alibaba.nacos.api.naming.listener.Event;\nimport com.alibaba.nacos.api.naming.listener.EventListener;\nimport com.alibaba.nacos.api.naming.listener.NamingEvent;\n\n/**\n * @author nkorange\n */\npublic class NamingExample {\n\n public static void main(String[] args) throws NacosException {\n\n Properties properties = new Properties();\n properties.setProperty("serverAddr", System.getProperty("serverAddr"));\n properties.setProperty("namespace", System.getProperty("namespace"));\n\n NamingService naming = NamingFactory.createNamingService(properties);\n\n naming.registerInstance("'.concat(this.record.name,'", "11.11.11.11", 8888, "TEST1");\n\n naming.registerInstance("').concat(this.record.name,'", "2.2.2.2", 9999, "DEFAULT");\n\n System.out.println(naming.getAllInstances("').concat(this.record.name,'"));\n\n naming.deregisterInstance("').concat(this.record.name,'", "2.2.2.2", 9999, "DEFAULT");\n\n System.out.println(naming.getAllInstances("').concat(this.record.name,'"));\n\n naming.subscribe("').concat(this.record.name,'", new EventListener() {\n @Override\n public void onEvent(Event event) {\n System.out.println(((NamingEvent)event).getServiceName());\n System.out.println(((NamingEvent)event).getInstances());\n }\n });\n }\n}')}},{key:"getSpringCode",value:function(e){return'/* Refer to document: https://github.com/nacos-group/nacos-examples/tree/master/nacos-spring-example/nacos-spring-discovery-example\n* pom.xml\n <dependency>\n <groupId>com.alibaba.nacos</groupId>\n <artifactId>nacos-spring-context</artifactId>\n <version>${latest.version}</version>\n </dependency>\n*/\n\n// Refer to document: https://github.com/nacos-group/nacos-examples/blob/master/nacos-spring-example/nacos-spring-discovery-example/src/main/java/com/alibaba/nacos/example/spring\npackage com.alibaba.nacos.example.spring;\n\nimport com.alibaba.nacos.api.annotation.NacosProperties;\nimport com.alibaba.nacos.spring.context.annotation.discovery.EnableNacosDiscovery;\nimport org.springframework.context.annotation.Configuration;\n\n@Configuration\n@EnableNacosDiscovery(globalProperties = @NacosProperties(serverAddr = "127.0.0.1:8848"))\npublic class NacosConfiguration {\n\n}\n\n// Refer to document: https://github.com/nacos-group/nacos-examples/tree/master/nacos-spring-example/nacos-spring-discovery-example/src/main/java/com/alibaba/nacos/example/spring/controller\npackage com.alibaba.nacos.example.spring.controller;\n\nimport com.alibaba.nacos.api.annotation.NacosInjected;\nimport com.alibaba.nacos.api.exception.NacosException;\nimport com.alibaba.nacos.api.naming.NamingService;\nimport com.alibaba.nacos.api.naming.pojo.Instance;\nimport org.springframework.stereotype.Controller;\nimport org.springframework.web.bind.annotation.RequestMapping;\nimport org.springframework.web.bind.annotation.RequestParam;\nimport org.springframework.web.bind.annotation.ResponseBody;\n\nimport java.util.List;\n\nimport static org.springframework.web.bind.annotation.RequestMethod.GET;\n\n@Controller\n@RequestMapping("discovery")\npublic class DiscoveryController {\n\n @NacosInjected\n private NamingService namingService;\n\n @RequestMapping(value = "/get", method = GET)\n @ResponseBody\n public List<Instance> get(@RequestParam String serviceName) throws NacosException {\n return namingService.getAllInstances(serviceName);\n }\n}'}},{key:"getSpringBootCode",value:function(e){return'/* Refer to document: https://github.com/nacos-group/nacos-examples/blob/master/nacos-spring-boot-example/nacos-spring-boot-discovery-example\n* pom.xml\n <dependency>\n <groupId>com.alibaba.boot</groupId>\n <artifactId>nacos-discovery-spring-boot-starter</artifactId>\n <version>${latest.version}</version>\n </dependency>\n*/\n/* Refer to document: https://github.com/nacos-group/nacos-examples/blob/master/nacos-spring-boot-example/nacos-spring-boot-discovery-example/src/main/resources\n* application.properties\n nacos.discovery.server-addr=127.0.0.1:8848\n*/\n// Refer to document: https://github.com/nacos-group/nacos-examples/blob/master/nacos-spring-boot-example/nacos-spring-boot-discovery-example/src/main/java/com/alibaba/nacos/example/spring/boot/controller\n\npackage com.alibaba.nacos.example.spring.boot.controller;\n\nimport com.alibaba.nacos.api.annotation.NacosInjected;\nimport com.alibaba.nacos.api.exception.NacosException;\nimport com.alibaba.nacos.api.naming.NamingService;\nimport com.alibaba.nacos.api.naming.pojo.Instance;\nimport org.springframework.stereotype.Controller;\nimport org.springframework.web.bind.annotation.RequestMapping;\nimport org.springframework.web.bind.annotation.RequestParam;\nimport org.springframework.web.bind.annotation.ResponseBody;\n\nimport java.util.List;\n\nimport static org.springframework.web.bind.annotation.RequestMethod.GET;\n\n@Controller\n@RequestMapping("discovery")\npublic class DiscoveryController {\n\n @NacosInjected\n private NamingService namingService;\n\n @RequestMapping(value = "/get", method = GET)\n @ResponseBody\n public List<Instance> get(@RequestParam String serviceName) throws NacosException {\n return namingService.getAllInstances(serviceName);\n }\n}'}},{key:"getSpringCloudCode",value:function(e){return"/* Refer to document: https://github.com/nacos-group/nacos-examples/blob/master/nacos-spring-cloud-example/nacos-spring-cloud-discovery-example/\n* pom.xml\n <dependency>\n <groupId>org.springframework.cloud</groupId>\n <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>\n <version>${latest.version}</version>\n </dependency>\n*/\n\n// nacos-spring-cloud-provider-example\n\n/* Refer to document: https://github.com/nacos-group/nacos-examples/tree/master/nacos-spring-cloud-example/nacos-spring-cloud-discovery-example/nacos-spring-cloud-provider-example/src/main/resources\n* application.properties\nserver.port=18080\nspring.application.name=".concat(this.record.name,'\nspring.cloud.nacos.discovery.server-addr=127.0.0.1:8848\n*/\n\n// Refer to document: https://github.com/nacos-group/nacos-examples/tree/master/nacos-spring-cloud-example/nacos-spring-cloud-discovery-example/nacos-spring-cloud-provider-example/src/main/java/com/alibaba/nacos/example/spring/cloud\npackage com.alibaba.nacos.example.spring.cloud;\n\nimport org.springframework.boot.SpringApplication;\nimport org.springframework.boot.autoconfigure.SpringBootApplication;\nimport org.springframework.cloud.client.discovery.EnableDiscoveryClient;\nimport org.springframework.web.bind.annotation.PathVariable;\nimport org.springframework.web.bind.annotation.RequestMapping;\nimport org.springframework.web.bind.annotation.RequestMethod;\nimport org.springframework.web.bind.annotation.RestController;\n\n/**\n * @author xiaojing\n */\n@SpringBootApplication\n@EnableDiscoveryClient\npublic class NacosProviderApplication {\n\n public static void main(String[] args) {\n SpringApplication.run(NacosProviderApplication.class, args);\n}\n\n @RestController\n class EchoController {\n @RequestMapping(value = "/echo/{string}", method = RequestMethod.GET)\n public String echo(@PathVariable String string) {\n return "Hello Nacos Discovery " + string;\n }\n }\n}\n\n// nacos-spring-cloud-consumer-example\n\n/* Refer to document: https://github.com/nacos-group/nacos-examples/tree/master/nacos-spring-cloud-example/nacos-spring-cloud-discovery-example/nacos-spring-cloud-consumer-example/src/main/resources\n* application.properties\nspring.application.name=micro-service-oauth2\nspring.cloud.nacos.discovery.server-addr=127.0.0.1:8848\n*/\n\n// Refer to document: https://github.com/nacos-group/nacos-examples/tree/master/nacos-spring-cloud-example/nacos-spring-cloud-discovery-example/nacos-spring-cloud-consumer-example/src/main/java/com/alibaba/nacos/example/spring/cloud\npackage com.alibaba.nacos.example.spring.cloud;\n\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.boot.SpringApplication;\nimport org.springframework.boot.autoconfigure.SpringBootApplication;\nimport org.springframework.cloud.client.discovery.EnableDiscoveryClient;\nimport org.springframework.cloud.client.loadbalancer.LoadBalanced;\nimport org.springframework.context.annotation.Bean;\nimport org.springframework.web.bind.annotation.PathVariable;\nimport org.springframework.web.bind.annotation.RequestMapping;\nimport org.springframework.web.bind.annotation.RequestMethod;\nimport org.springframework.web.bind.annotation.RestController;\nimport org.springframework.web.client.RestTemplate;\n\n/**\n * @author xiaojing\n */\n@SpringBootApplication\n@EnableDiscoveryClient\npublic class NacosConsumerApplication {\n\n @LoadBalanced\n @Bean\n public RestTemplate restTemplate() {\n return new RestTemplate();\n }\n\n public static void main(String[] args) {\n SpringApplication.run(NacosConsumerApplication.class, args);\n }\n\n @RestController\n public class TestController {\n\n private final RestTemplate restTemplate;\n\n @Autowired\n public TestController(RestTemplate restTemplate) {this.restTemplate = restTemplate;}\n\n @RequestMapping(value = "/echo/{str}", method = RequestMethod.GET)\n public String echo(@PathVariable String str) {\n return restTemplate.getForObject("http://service-provider/echo/" + str, String.class);\n }\n }\n}')}},{key:"getNodejsCode",value:function(e){return"TODO"}},{key:"getCppCode",value:function(e){return"TODO"}},{key:"getShellCode",value:function(e){return"TODO"}},{key:"getPythonCode",value:function(e){return"TODO"}},{key:"getCSharpCode",value:function(e){return'/* Refer to document: https://github.com/nacos-group/nacos-sdk-csharp/\nDemo for Basic Nacos Opreation\nApp.csproj\n\n<ItemGroup>\n <PackageReference Include="nacos-sdk-csharp" Version="${latest.version}" />\n</ItemGroup>\n*/\n\nusing Microsoft.Extensions.DependencyInjection;\nusing Nacos.V2;\nusing Nacos.V2.DependencyInjection;\nusing System;\nusing System.Collections.Generic;\nusing System.Threading.Tasks;\n\nclass Program\n{\n static async Task Main(string[] args)\n {\n IServiceCollection services = new ServiceCollection();\n\n services.AddNacosV2Naming(x =>\n {\n x.ServerAddresses = new List<string> { "http://localhost:8848/" };\n x.Namespace = "cs-test";\n\n // swich to use http or rpc\n x.NamingUseRpc = true;\n });\n\n IServiceProvider serviceProvider = services.BuildServiceProvider();\n var namingSvc = serviceProvider.GetService<INacosNamingService>();\n\n await namingSvc.RegisterInstance("'.concat(this.record.name,'", "11.11.11.11", 8888, "TEST1");\n\n await namingSvc.RegisterInstance("').concat(this.record.name,'", "2.2.2.2", 9999, "DEFAULT");\n\n Console.WriteLine(Newtonsoft.Json.JsonConvert.SerializeObject(await namingSvc.GetAllInstances("').concat(this.record.name,'")));\n\n await namingSvc.DeregisterInstance("').concat(this.record.name,'", "2.2.2.2", 9999, "DEFAULT");\n\n var listener = new EventListener();\n\n await namingSvc.Subscribe("').concat(this.record.name,'", listener);\n }\n\n internal class EventListener : IEventListener\n {\n public Task OnEvent(IEvent @event)\n {\n Console.WriteLine(Newtonsoft.Json.JsonConvert.SerializeObject(@event));\n return Task.CompletedTask;\n }\n }\n}\n\n/* Refer to document: https://github.com/nacos-group/nacos-sdk-csharp/\nDemo for ASP.NET Core Integration\nApp.csproj\n\n<ItemGroup>\n <PackageReference Include="nacos-sdk-csharp.AspNetCore" Version="${latest.version}" />\n</ItemGroup>\n*/\n\n/* Refer to document: https://github.com/nacos-group/nacos-sdk-csharp/blob/dev/samples/App1/appsettings.json\n* appsettings.json\n{\n "nacos": {\n "ServerAddresses": [ "http://localhost:8848" ],\n "DefaultTimeOut": 15000,\n "Namespace": "cs",\n "ServiceName": "App1",\n "GroupName": "DEFAULT_GROUP",\n "ClusterName": "DEFAULT",\n "Port": 0,\n "Weight": 100,\n "RegisterEnabled": true,\n "InstanceEnabled": true,\n "Ephemeral": true,\n "NamingUseRpc": true,\n "NamingLoadCacheAtStart": ""\n }\n}\n*/\n\n// Refer to document: https://github.com/nacos-group/nacos-sdk-csharp/blob/dev/samples/App1/Startup.cs\nusing Nacos.AspNetCore.V2;\n\npublic class Startup\n{\n public Startup(IConfiguration configuration)\n {\n Configuration = configuration;\n }\n\n public IConfiguration Configuration { get; }\n\n public void ConfigureServices(IServiceCollection services)\n {\n // ....\n services.AddNacosAspNet(Configuration);\n }\n\n public void Configure(IApplicationBuilder app, IWebHostEnvironment env)\n {\n // ....\n }\n}\n ')}},{key:"openDialog",value:function(e){var t=this;this.setState({dialogvisible:!0}),this.record=e,setTimeout(function(){t.getData()})}},{key:"closeDialog",value:function(){this.setState({dialogvisible:!1})}},{key:"createCodeMirror",value:function(e,t){var n=this.refs.codepreview;n&&(n.innerHTML="",this.cm=window.CodeMirror(n,{value:t,mode:e,height:400,width:500,lineNumbers:!0,theme:"xq-light",lint:!0,tabMode:"indent",autoMatchParens:!0,textWrapping:!0,gutters:["CodeMirror-lint-markers"],extraKeys:{F1:function(e){e.setOption("fullScreen",!e.getOption("fullScreen"))},Esc:function(e){e.getOption("fullScreen")&&e.setOption("fullScreen",!1)}}}),this.cm.setSize("auto","490px"))}},{key:"changeTab",value:function(e,t){var n=this;setTimeout(function(){n[e]=!0,n.createCodeMirror("text/javascript",t)})}},{key:"render",value:function(){var e=this.props.locale,e=void 0===e?{}:e;return L.a.createElement("div",null,L.a.createElement(o.a,{title:e.sampleCode,style:{width:"80%"},visible:this.state.dialogvisible,footer:L.a.createElement("div",null),onClose:this.closeDialog.bind(this)},L.a.createElement("div",{style:{height:500}},L.a.createElement(h.a,{tip:e.loading,style:{width:"100%"},visible:this.state.loading},L.a.createElement(m.a,{shape:"text",style:{height:40,paddingBottom:10}},L.a.createElement(g,{title:"Java",key:0,onClick:this.changeTab.bind(this,"commoneditor1",this.defaultCode)}),L.a.createElement(g,{title:"Spring",key:1,onClick:this.changeTab.bind(this,"commoneditor1",this.springCode)}),L.a.createElement(g,{title:"Spring Boot",key:2,onClick:this.changeTab.bind(this,"commoneditor2",this.sprigbootCode)}),L.a.createElement(g,{title:"Spring Cloud",key:21,onClick:this.changeTab.bind(this,"commoneditor21",this.sprigcloudCode)}),L.a.createElement(g,{title:"Node.js",key:3,onClick:this.changeTab.bind(this,"commoneditor3",this.nodejsCode)}),L.a.createElement(g,{title:"C++",key:4,onClick:this.changeTab.bind(this,"commoneditor4",this.cppCode)}),L.a.createElement(g,{title:"Shell",key:5,onClick:this.changeTab.bind(this,"commoneditor5",this.shellCode)}),L.a.createElement(g,{title:"Python",key:6,onClick:this.changeTab.bind(this,"commoneditor6",this.pythonCode)}),L.a.createElement(g,{title:"C#",key:7,onClick:this.changeTab.bind(this,"commoneditor7",this.csharpCode)})),L.a.createElement("div",{ref:"codepreview"})))))}}]),n}(L.a.Component)).displayName="ShowServiceCodeing",f=f))||f,P=t(69),j=(t(738),t(28)),Y=C.a.Item,I=a.a.Row,R=a.a.Col,A=x.a.Column,a=(0,n.a.config)(((f=function(e){Object(d.a)(a,e);var t=Object(c.a)(a);function a(e){var n;return Object(l.a)(this,a),(n=t.call(this,e)).getQueryLater=function(){setTimeout(function(){return n.queryServiceList()})},n.showcode=function(){setTimeout(function(){return n.queryServiceList()})},n.setNowNameSpace=function(e,t){return n.setState({nowNamespaceName:e,nowNamespaceId:t})},n.rowColor=function(e){return{className:e.healthyInstanceCount?"":"row-bg-red"}},n.editServiceDialog=L.a.createRef(),n.showcode=L.a.createRef(),n.state={loading:!1,total:0,pageSize:10,currentPage:1,dataSource:[],search:{serviceName:Object(p.a)("serviceNameParam")||"",groupName:Object(p.a)("groupNameParam")||""},hasIpCount:!("false"===localStorage.getItem("hasIpCount"))},n.field=new i.a(Object(u.a)(n)),n}return Object(s.a)(a,[{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"openEditServiceDialog",value:function(){try{this.editServiceDialog.current.getInstance().show(this.state.service)}catch(e){}}},{key:"queryServiceList",value:function(){var n=this,e=this.state,t=e.currentPage,a=e.pageSize,r=e.search,o=e.withInstances,o=void 0!==o&&o,e=e.hasIpCount,e=["hasIpCount=".concat(e),"withInstances=".concat(o),"pageNo=".concat(t),"pageSize=".concat(a),"serviceNameParam=".concat(r.serviceName),"groupNameParam=".concat(r.groupName)];Object(p.c)({serviceNameParam:r.serviceName,groupNameParam:r.groupName}),this.openLoading(),Object(p.b)({url:"v1/ns/catalog/services?".concat(e.join("&")),success:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},t=e.count,e=e.serviceList;n.setState({dataSource:void 0===e?[]:e,total:void 0===t?0:t,loading:!1})},error:function(){return n.setState({dataSource:[],total:0,currentPage:0,loading:!1})}})}},{key:"showSampleCode",value:function(e){this.showcode.current.getInstance().openDialog(e)}},{key:"querySubscriber",value:function(e){var t=e.name,e=e.groupName,n=this.state.nowNamespaceId;this.props.history.push(Object(T.a)("/subscriberList",{namespace:n,name:t,groupName:e}))}},{key:"handlePageSizeChange",value:function(e){var t=this;this.setState({pageSize:e},function(){return t.queryServiceList()})}},{key:"deleteService",value:function(e){var t=this,n=this.props.locale,n=void 0===n?{}:n,a=n.prompt,n=n.promptDelete;o.a.confirm({title:a,content:n,onOk:function(){Object(p.b)({method:"DELETE",url:"v1/ns/service?serviceName=".concat(e.name,"&groupName=").concat(e.groupName),dataType:"text",beforeSend:function(){return t.openLoading()},success:function(e){"ok"!==e?r.a.error(e):t.queryServiceList()},error:function(e){return r.a.error(e.responseText||e.statusText)},complete:function(){return t.closeLoading()}})}})}},{key:"render",value:function(){var a=this,e=this.props.locale,e=void 0===e?{}:e,t=e.pubNoData,n=e.serviceList,r=e.serviceName,o=e.serviceNamePlaceholder,i=e.groupName,l=e.groupNamePlaceholder,s=e.hiddenEmptyService,u=e.query,d=e.create,c=e.operation,f=e.detail,p=e.sampleCode,h=e.deleteAction,m=e.subscriber,g=this.state,y=g.search,v=(g.nowNamespaceName,g.nowNamespaceId),g=g.hasIpCount,_=this.field,b=_.init,_=_.getValue;return this.init=b,this.getValue=_,L.a.createElement("div",{className:"main-container service-management"},L.a.createElement(P.a,{title:n,desc:v,nameSpace:!0}),L.a.createElement(D.a,{setNowNameSpace:this.setNowNameSpace,namespaceCallBack:this.getQueryLater}),L.a.createElement(I,{className:"demo-row",style:{marginBottom:10,padding:0}},L.a.createElement(R,{span:"24"},L.a.createElement(C.a,{inline:!0,field:this.field},L.a.createElement(Y,{label:r},L.a.createElement(S.a,{placeholder:o,style:{width:200},value:y.serviceName,onChange:function(e){return a.setState({search:Object(E.a)(Object(E.a)({},y),{},{serviceName:e})})},onPressEnter:function(){return a.setState({currentPage:1},function(){return a.queryServiceList()})}})),L.a.createElement(Y,{label:i},L.a.createElement(S.a,{placeholder:l,style:{width:200},value:y.groupName,onChange:function(e){return a.setState({search:Object(E.a)(Object(E.a)({},y),{},{groupName:e})})},onPressEnter:function(){return a.setState({currentPage:1},function(){return a.queryServiceList()})}})),L.a.createElement(C.a.Item,{label:"".concat(s)},L.a.createElement(k.a,{checked:g,onChange:function(e){return a.setState({hasIpCount:e,currentPage:1},function(){localStorage.setItem("hasIpCount",e),a.queryServiceList()})}})),L.a.createElement(Y,{label:""},L.a.createElement(M.a,{type:"primary",onClick:function(){return a.setState({currentPage:1},function(){return a.queryServiceList()})},style:{marginRight:10}},u)),L.a.createElement(Y,{label:"",style:{float:"right"}},L.a.createElement(M.a,{type:"primary",onClick:function(){return a.openEditServiceDialog()}},d))))),L.a.createElement(I,{style:{padding:0}},L.a.createElement(R,{span:"24",style:{padding:0}},L.a.createElement(x.a,{dataSource:this.state.dataSource,locale:{empty:t},rowProps:function(e){return a.rowColor(e)},loading:this.state.loading},L.a.createElement(A,{title:e.columnServiceName,dataIndex:"name"}),L.a.createElement(A,{title:e.groupName,dataIndex:"groupName"}),L.a.createElement(A,{title:e.columnClusterCount,dataIndex:"clusterCount"}),L.a.createElement(A,{title:e.columnIpCount,dataIndex:"ipCount"}),L.a.createElement(A,{title:e.columnHealthyInstanceCount,dataIndex:"healthyInstanceCount"}),L.a.createElement(A,{title:e.columnTriggerFlag,dataIndex:"triggerFlag"}),L.a.createElement(A,{title:c,align:"center",cell:function(e,t,n){return L.a.createElement("div",null,L.a.createElement("a",{onClick:function(){var e=n.name,t=n.groupName;a.props.history.push(Object(T.a)("/serviceDetail",{name:e,groupName:t}))},style:{marginRight:5}},f),L.a.createElement("span",{style:{marginRight:5}},"|"),L.a.createElement("a",{style:{marginRight:5},onClick:function(){return a.showSampleCode(n)}},p),L.a.createElement("span",{style:{marginRight:5}},"|"),L.a.createElement("a",{style:{marginRight:5},onClick:function(){return a.querySubscriber(n)}},m),L.a.createElement("span",{style:{marginRight:5}},"|"),L.a.createElement("a",{onClick:function(){return a.deleteService(n)},style:{marginRight:5}},h))}})))),L.a.createElement("div",{style:{marginTop:10,textAlign:"right"}},L.a.createElement(w.a,{current:this.state.currentPage,pageSizeList:j.e,pageSizePosition:"start",pageSizeSelector:"dropdown",popupProps:{align:"bl tl"},total:this.state.total,pageSize:this.state.pageSize,onPageSizeChange:function(e){return a.handlePageSizeChange(e)},onChange:function(e){return a.setState({currentPage:e},function(){return a.queryServiceList()})}})),L.a.createElement(N,{ref:this.showcode}),L.a.createElement(O.a,{ref:this.editServiceDialog,openLoading:function(){return a.openLoading()},closeLoading:function(){return a.closeLoading()},queryServiceList:function(){return a.setState({currentPage:1},function(){return a.queryServiceList()})}}))}}]),a}(L.a.Component)).displayName="ServiceList",t=f))||t;e.a=a},function(e,t,n){"use strict";n(64);var a=n(46),s=n.n(a),a=(n(35),n(19)),u=n.n(a),d=n(31),a=(n(63),n(20)),c=n.n(a),a=(n(32),n(18)),f=n.n(a),a=(n(87),n(53)),p=n.n(a),a=(n(39),n(5)),h=n.n(a),a=(n(36),n(10)),m=n.n(a),i=n(14),l=n(15),g=n(22),y=n(17),v=n(16),a=(n(26),n(8)),a=n.n(a),r=n(0),_=n.n(r),r=n(37),b=n(45),o=n(82),w=n(48),M=(n(49),n(27)),k=n.n(M),M=(n(59),n(29)),S=n.n(M),E=h.a.Item,x=S.a.Option,C={labelCol:{fixedSpan:4},wrapperCol:{span:19}},L=Object(r.b)(function(e){return{namespaces:e.namespace.namespaces}},{getNamespaces:o.b,searchRoles:b.l})(M=(0,a.a.config)(((M=function(e){Object(y.a)(o,e);var r=Object(v.a)(o);function o(){var t;Object(i.a)(this,o);for(var e=arguments.length,n=new Array(e),a=0;a<e;a++)n[a]=arguments[a];return(t=r.call.apply(r,[this].concat(n))).field=new k.a(Object(g.a)(t)),t.state={dataSource:[]},t.handleChange=function(e){0<e.length&&Object(b.l)(e).then(function(e){t.setState({dataSource:e})})},t}return Object(l.a)(o,[{key:"componentDidMount",value:function(){this.props.getNamespaces()}},{key:"check",value:function(){var n=this,e=this.props.locale,a={role:e.roleError,resource:e.resourceError,action:e.actionError},e=Object.keys(a).map(function(e){var t=n.field.getValue(e);return t||n.field.setError(e,a[e]),t});return 3===e.filter(function(e){return e}).length?e:null}},{key:"render",value:function(){var t=this,e=this.field.getError,n=this.props,a=n.visible,r=n.onOk,o=n.onCancel,i=n.locale,n=n.namespaces;return _.a.createElement(_.a.Fragment,null,_.a.createElement(u.a,{title:i.addPermission,visible:a,onOk:function(){var e=t.check();e&&r(e).then(function(){return o()})},onClose:o,onCancel:o,afterClose:function(){return t.field.reset()}},_.a.createElement(h.a,Object.assign({style:{width:400}},C,{field:this.field}),_.a.createElement(E,{label:i.role,required:!0,help:e("role")},_.a.createElement(S.a.AutoComplete,{name:"role",style:{width:316},filterLocal:!1,placeholder:i.rolePlaceholder,onChange:this.handleChange,dataSource:this.state.dataSource})),_.a.createElement(E,{label:i.resource,required:!0,help:e("resource")},_.a.createElement(S.a,{name:"resource",placeholder:i.resourcePlaceholder,style:{width:"100%"}},n.map(function(e){var t=e.namespace,e=e.namespaceShowName;return _.a.createElement(x,{value:"".concat(t,":*:*")},e," ",t?"(".concat(t,")"):"")}))),_.a.createElement(E,{label:i.action,required:!0,help:e("action")},_.a.createElement(S.a,{name:"action",placeholder:i.actionPlaceholder,style:{width:"100%"}},_.a.createElement(x,{value:"r"},i.readOnly,"(r)"),_.a.createElement(x,{value:"w"},i.writeOnly,"(w)"),_.a.createElement(x,{value:"rw"},i.readWrite,"(rw)"))))))}}]),o}(_.a.Component)).displayName="NewPermissions",M=M))||M)||M,r=(n(742),Object(r.b)(function(e){return{permissions:e.authority.permissions,namespaces:e.namespace.namespaces}},{getPermissions:b.h,getNamespaces:o.b})(n=(0,a.a.config)(((M=function(e){Object(y.a)(n,e);var t=Object(v.a)(n);function n(e){return Object(i.a)(this,n),(e=t.call(this,e)).state={loading:!0,pageNo:1,pageSize:9,createPermission:!1,defaultFuzzySearch:!0,role:""},e.handleDefaultFuzzySwitchChange=e.handleDefaultFuzzySwitchChange.bind(Object(g.a)(e)),e}return Object(l.a)(n,[{key:"componentDidMount",value:function(){this.getPermissions(),this.props.getNamespaces()}},{key:"getPermissions",value:function(){var e=this,t=(this.setState({loading:!0}),this.state),n=t.pageNo,t=t.pageSize,a=this.state.role,r="accurate";(a=this.state.defaultFuzzySearch&&a&&""!==a?"*".concat(a,"*"):a)&&-1!==a.indexOf("*")&&(r="blur"),this.props.getPermissions({pageNo:n,pageSize:t,role:a,search:r}).then(function(){e.state.loading&&e.setState({loading:!1})}).catch(function(){return e.setState({loading:!1})})}},{key:"colseCreatePermission",value:function(){this.setState({createPermissionVisible:!1})}},{key:"getActionText",value:function(e){var t=this.props.locale;return{r:"".concat(t.readOnly," (r)"),w:"".concat(t.writeOnly," (w)"),rw:"".concat(t.readWrite," (rw)")}[e]}},{key:"handleDefaultFuzzySwitchChange",value:function(){this.setState({defaultFuzzySearch:!this.state.defaultFuzzySearch})}},{key:"render",value:function(){var a=this,e=this.props,t=e.permissions,n=e.namespaces,r=void 0===n?[]:n,o=e.locale,n=this.state,e=n.loading,i=n.pageSize,l=n.pageNo,n=n.createPermissionVisible;return _.a.createElement(_.a.Fragment,null,_.a.createElement(w.a,{left:o.privilegeManagement}),_.a.createElement(h.a,{inline:!0},_.a.createElement(h.a.Item,{label:"è§è²å"},_.a.createElement(m.a,{value:this.state.role,htmlType:"text",placeholder:this.state.defaultFuzzySearch?o.defaultFuzzyd:o.fuzzyd,style:{width:200},onChange:function(e){a.setState({role:e})}})),_.a.createElement(h.a.Item,{label:"é»è®¤æ¨¡ç³å¹é
"},_.a.createElement(p.a,{checkedChildren:"",unCheckedChildren:"",defaultChecked:this.state.defaultFuzzySearch,onChange:this.handleDefaultFuzzySwitchChange,title:"èªå¨å¨æç´¢åæ°ååå ä¸*"})),_.a.createElement(h.a.Item,{label:""},_.a.createElement(f.a,{type:"primary",style:{marginRight:10},onClick:function(){return a.getPermissions()},"data-spm-click":"gostr=/aliyun;locaid=dashsearch"},o.query)),_.a.createElement(h.a.Item,{style:{float:"right"}},_.a.createElement(f.a,{type:"primary",onClick:function(){return a.setState({createPermissionVisible:!0})},style:{marginRight:20}},o.addPermission))),_.a.createElement(c.a,{dataSource:t.pageItems,loading:e,maxBodyHeight:476,fixedHeader:!0},_.a.createElement(c.a.Column,{title:o.role,dataIndex:"role"}),_.a.createElement(c.a.Column,{title:o.resource,dataIndex:"resource",cell:function(n){var e=r.filter(function(e){var e=e.namespace,t=n.split(":");return Object(d.a)(t,1)[0]===e}),e=Object(d.a)(e,1)[0],e=void 0===e?{}:e,t=e.namespaceShowName,e=e.namespace,e=void 0===e?"":e;return(void 0===t?"":t)+(e?" (".concat(e,")"):"")}}),_.a.createElement(c.a.Column,{title:o.action,dataIndex:"action",cell:function(e){return a.getActionText(e)}}),_.a.createElement(c.a.Column,{title:o.operation,cell:function(e,t,n){return _.a.createElement(_.a.Fragment,null,_.a.createElement(f.a,{type:"primary",warning:!0,onClick:function(){return u.a.confirm({title:o.deletePermission,content:o.deletePermissionTip,onOk:function(){return Object(b.e)(n).then(function(){a.setState({pageNo:1},function(){return a.getPermissions()})})}})}},o.deletePermission))}})),t.totalCount>i&&_.a.createElement(s.a,{className:"users-pagination",current:l,total:t.totalCount,pageSize:i,onChange:function(e){return a.setState({pageNo:e},function(){return a.getPermissions()})}}),_.a.createElement(L,{visible:n,onOk:function(e){return Object(b.a)(e).then(function(e){return a.setState({pageNo:1},function(){return a.getPermissions()}),e})},onCancel:function(){return a.colseCreatePermission()}}))}}]),n}(_.a.Component)).displayName="PermissionsManagement",n=M))||n)||n);t.a=r},function(e,t,n){"use strict";n(64);var a=n(46),u=n.n(a),a=(n(35),n(19)),d=n.n(a),a=(n(63),n(20)),c=n.n(a),a=(n(32),n(18)),f=n.n(a),a=(n(87),n(53)),p=n.n(a),a=(n(39),n(5)),h=n.n(a),a=(n(36),n(10)),m=n.n(a),i=n(14),l=n(15),s=n(22),g=n(17),y=n(16),a=(n(26),n(8)),a=n.n(a),r=n(0),v=n.n(r),r=n(37),_=n(45),b=n(48),w=n(31),o=(n(49),n(27)),M=n.n(o),k=(n(159),h.a.Item),S={labelCol:{fixedSpan:4},wrapperCol:{span:19}},E=(0,a.a.config)(((o=function(e){Object(g.a)(o,e);var r=Object(y.a)(o);function o(){var e;Object(i.a)(this,o);for(var t=arguments.length,n=new Array(t),a=0;a<t;a++)n[a]=arguments[a];return(e=r.call.apply(r,[this].concat(n))).field=new M.a(Object(s.a)(e)),e}return Object(l.a)(o,[{key:"check",value:function(){var n=this,e=this.props.locale,a={username:e.usernameError,password:e.passwordError,rePassword:e.rePasswordError},t=Object.keys(a).map(function(e){var t=n.field.getValue(e);return t||n.field.setError(e,a[e]),t});if(3!==t.filter(function(e){return e}).length)return null;var r=["password","rePassword"].map(function(e){return n.field.getValue(e)}),r=Object(w.a)(r,2);return r[0]!==r[1]?(this.field.setError("rePassword",e.rePasswordError2),null):t}},{key:"render",value:function(){var t=this,e=this.props.locale,n=this.field.getError,a=this.props,r=a.visible,o=a.onOk,i=a.onCancel;return v.a.createElement(v.a.Fragment,null,v.a.createElement(d.a,{title:e.createUser,visible:r,onOk:function(){var e=t.check();e&&o(e).then(function(){return i()})},onClose:i,onCancel:i,afterClose:function(){return t.field.reset()}},v.a.createElement(h.a,Object.assign({style:{width:400}},S,{field:this.field}),v.a.createElement(k,{label:e.username,required:!0,help:n("username")},v.a.createElement(m.a,{name:"username",trim:!0,placeholder:e.usernamePlaceholder})),v.a.createElement(k,{label:e.password,required:!0,help:n("password")},v.a.createElement(m.a,{name:"password",htmlType:"password",placeholder:e.passwordPlaceholder})),v.a.createElement(k,{label:e.rePassword,required:!0,help:n("rePassword")},v.a.createElement(m.a,{name:"rePassword",htmlType:"password",placeholder:e.rePasswordPlaceholder})))))}}]),o}(v.a.Component)).displayName="NewUser",o=o))||o,x=n(136),C=n(1),r=Object(r.b)(function(e){return{users:e.authority.users}},{getUsers:_.j})(n=(0,a.a.config)(((o=function(e){Object(g.a)(n,e);var t=Object(y.a)(n);function n(e){return Object(i.a)(this,n),(e=t.call(this,e)).username=Object(C.a)("username"),e.state={loading:!0,pageNo:1,pageSize:9,username:e.username,defaultFuzzySearch:!0},e.handleDefaultFuzzySwitchChange=e.handleDefaultFuzzySwitchChange.bind(Object(s.a)(e)),e}return Object(l.a)(n,[{key:"componentDidMount",value:function(){this.getUsers()}},{key:"getUsers",value:function(){var e=this,t=(this.setState({loading:!0}),{pageNo:this.state.pageNo,pageSize:this.state.pageSize,username:this.username,search:"blur"});this.state.defaultFuzzySearch&&t.username&&""!==t.username&&(t.username="*".concat(t.username,"*")),t.username&&-1!==t.username.indexOf("*")?t.search="blur":t.search="accurate",this.props.getUsers({pageNo:t.pageNo,pageSize:t.pageSize,username:t.username,search:t.search}).then(function(){e.state.loading&&e.setState({loading:!1})}).catch(function(){return e.setState({loading:!1})})}},{key:"colseCreateUser",value:function(){this.setState({createUserVisible:!1})}},{key:"handleDefaultFuzzySwitchChange",value:function(){this.setState({defaultFuzzySearch:!this.state.defaultFuzzySearch})}},{key:"render",value:function(){var t=this,e=this.props,n=e.users,a=e.locale,e=this.state,r=e.loading,o=e.pageSize,i=e.pageNo,l=e.createUserVisible,s=e.passwordResetUserVisible,e=e.passwordResetUser;return v.a.createElement(v.a.Fragment,null,v.a.createElement(b.a,{left:a.userManagement}),v.a.createElement(h.a,{inline:!0},v.a.createElement(h.a.Item,{label:"ç¨æ·å"},v.a.createElement(m.a,{value:this.username,htmlType:"text",placeholder:this.state.defaultFuzzySearch?a.defaultFuzzyd:a.fuzzyd,style:{width:200},onChange:function(e){t.username=e,t.setState({username:e})}})),v.a.createElement(h.a.Item,{label:"é»è®¤æ¨¡ç³å¹é
"},v.a.createElement(p.a,{checkedChildren:"",unCheckedChildren:"",defaultChecked:this.state.defaultFuzzySearch,onChange:this.handleDefaultFuzzySwitchChange,title:"èªå¨å¨æç´¢åæ°ååå ä¸*"})),v.a.createElement(h.a.Item,{label:""},v.a.createElement(f.a,{type:"primary",style:{marginRight:10},onClick:function(){return t.getUsers()},"data-spm-click":"gostr=/aliyun;locaid=dashsearch"},a.query)),v.a.createElement(h.a.Item,{style:{float:"right"}},v.a.createElement(f.a,{type:"primary",onClick:function(){return t.setState({createUserVisible:!0})},style:{marginRight:20}},a.createUser))),v.a.createElement(c.a,{dataSource:n.pageItems,loading:r,maxBodyHeight:476,fixedHeader:!0},v.a.createElement(c.a.Column,{title:a.username,dataIndex:"username"}),v.a.createElement(c.a.Column,{title:a.password,dataIndex:"password",cell:function(e){return e.replace(/\S/g,"*")}}),v.a.createElement(c.a.Column,{title:a.operation,dataIndex:"username",cell:function(e){return v.a.createElement(v.a.Fragment,null,v.a.createElement(f.a,{type:"primary",onClick:function(){return t.setState({passwordResetUser:e,passwordResetUserVisible:!0})}},a.resetPassword),"   ",v.a.createElement(f.a,{type:"primary",warning:!0,onClick:function(){return d.a.confirm({title:a.deleteUser,content:a.deleteUserTip,onOk:function(){return Object(_.g)(e).then(function(){t.setState({pageNo:1},function(){return t.getUsers()})})}})}},a.deleteUser))}})),n.totalCount>o&&v.a.createElement(u.a,{className:"users-pagination",current:i,total:n.totalCount,pageSize:o,onChange:function(e){return t.setState({pageNo:e},function(){return t.getUsers()})}}),v.a.createElement(E,{visible:l,onOk:function(e){return Object(_.c)(e).then(function(e){return t.setState({pageNo:1},function(){return t.getUsers()}),e})},onCancel:function(){return t.colseCreateUser()}}),v.a.createElement(x.a,{visible:s,username:e,onOk:function(e){return Object(_.k)(e).then(function(e){return t.getUsers(),e})},onCancel:function(){return t.setState({passwordResetUser:void 0,passwordResetUserVisible:!1})}}))}}]),n}(v.a.Component)).displayName="UserManagement",n=o))||n)||n;t.a=r},function(e,t,l){"use strict";l(52);var n=l(33),g=l.n(n),n=(l(32),l(18)),y=l.n(n),n=(l(395),l(139)),v=l.n(n),n=(l(43),l(24)),_=l.n(n),n=(l(126),l(88)),b=l.n(n),n=(l(109),l(71)),w=l.n(n),n=(l(59),l(29)),M=l.n(n),n=(l(36),l(10)),k=l.n(n),n=(l(39),l(5)),S=l.n(n),n=(l(132),l(60)),E=l.n(n),a=l(61),n=(l(35),l(19)),s=l.n(n),x=l(21),n=(l(51),l(25)),r=l.n(n),o=l(14),i=l(15),u=l(17),d=l(16),n=(l(26),l(8)),n=l.n(n),c=(l(66),l(41)),c=l.n(c),f=l(0),C=l.n(f),p=l(1),h=l(47),m=l(34),L=l(138),T=l(105),D=l(90),O=(l(690),c.a.Row),N=c.a.Col,P=[{value:"text",label:"TEXT"},{value:"json",label:"JSON"},{value:"xml",label:"XML"},{value:"yaml",label:"YAML"},{value:"html",label:"HTML"},{value:"properties",label:"Properties"}],j=["production","beta"],n=(0,n.a.config)(((f=function(e){Object(u.a)(n,e);var t=Object(d.a)(n);function n(e){return Object(o.a)(this,n),(e=t.call(this,e)).state={loading:!1,isBeta:!1,isNewConfig:!0,betaPublishSuccess:!1,betaIps:"",tabActiveKey:"",form:{dataId:"",group:"",content:"",appName:"",desc:"",config_tags:[],type:"text"},tagDataSource:[],subscriberDataSource:[],openAdvancedSettings:!1,editorClass:"editor-normal"},e.successDialog=C.a.createRef(),e.diffEditorDialog=C.a.createRef(),e}return Object(i.a)(n,[{key:"componentDidMount",value:function(){var t=this,e=!Object(p.a)("dataId"),n=Object(p.a)("group").trim();this.tenant=Object(p.a)("namespace")||"",this.setState({isNewConfig:e},function(){e?(n&&t.setState({group:n}),t.initMoacoEditor("text","")):t.changeForm({dataId:Object(p.a)("dataId").trim(),group:n},function(){t.getConfig(!0).then(function(e){e?t.setState({isBeta:!0,tabActiveKey:"beta",betaPublishSuccess:!0}):t.getConfig()}),t.getSubscribesByNamespace()}),t.initFullScreenEvent()})}},{key:"initMoacoEditor",value:function(e,t){var n=this,a=document.getElementById("container"),r=(a.innerHTML="",{value:t,language:e,codeLens:!(this.monacoEditor=null),selectOnLineNumbers:!0,roundedSelection:!1,readOnly:!1,lineNumbersMinChars:!0,theme:"vs-dark",folding:!0,showFoldingControls:"always",cursorStyle:"line",automaticLayout:!0});window.monaco?this.monacoEditor=window.monaco.editor.create(a,r):window.importEditor(function(){n.monacoEditor=window.monaco.editor.create(a,r)})}},{key:"initFullScreenEvent",value:function(){var t=this;document.body.addEventListener("keydown",function(e){"F1"===e.key?(e.preventDefault(),t.setState({editorClass:"editor-full-screen"})):"Escape"===e.key&&t.setState({editorClass:"editor-normal"})})}},{key:"createDiffCodeMirror",value:function(e,t){var n=this.diffEditorDialog.current.getInstance();n.innerHTML="",this.diffeditor=window.CodeMirror.MergeView(n,{value:e||"",origLeft:null,orig:t||"",lineNumbers:!0,mode:this.mode,theme:"xq-light",highlightDifferences:!0,connect:"align",collapseIdentical:!1})}},{key:"openDiff",value:function(e){this.diffcb=e;var e=this.monacoEditor.getValue(),t=this.codeVal||"",e=e.replace(/\r\n/g,"\n").replace(/\n/g,"\r\n"),t=t.replace(/\r\n/g,"\n").replace(/\n/g,"\r\n");this.diffEditorDialog.current.getInstance().openDialog(e,t)}},{key:"clickTab",value:function(e){var t=this;this.setState({tabActiveKey:e},function(){return t.getConfig("beta"===e)})}},{key:"getCodeVal",value:function(){var e=this.props.locale,e=void 0===e?{}:e,t=this.state.form,t=(t.type,t.content),t=this.monacoEditor?this.monacoEditor.getValue():t;return t||(r.a.error({content:e.submitFailed,align:"cc cc"}),!1)}},{key:"setCodeVal",value:function(e){var t=this.state.form;this.setState({form:Object(x.a)(Object(x.a)({},t),{},{content:e})}),this.monacoEditor&&this.monacoEditor.setValue(e)}},{key:"publish",value:function(){var t=this,e=this.props.locale,n=void 0===e?{}:e,e=this.state.form.type,a=(this.state.isNewConfig&&this.validation(),this.getCodeVal());if(a)return L.a.validate({content:a,type:e})?this._publishConfig():new Promise(function(e){s.a.confirm({content:n.codeValErrorPrompt,onOk:function(){return e(t._publishConfig())},onCancel:function(){return e(!1)}})})}},{key:"_publishConfig",value:function(){var t=this,n=0<arguments.length&&void 0!==arguments[0]&&arguments[0],e=this.state,a=e.betaIps,r=e.isNewConfig,e={"Content-Type":"application/x-www-form-urlencoded"},o=(n&&(e.betaIps=a),Object(x.a)(Object(x.a)({},this.state.form),{},{content:this.getCodeVal(),betaIps:a})),i={},a=(Object.keys(o).forEach(function(e){i[e]=o[e]}),this.state.form.config_tags),a=(0<a.length&&(i.config_tags=a.join(",")),l(371));return this.setState({loading:!0}),Object(m.a)({url:"v1/cs/configs",method:"post",data:a(i),headers:e}).then(function(e){return e&&(r&&t.setState({isNewConfig:!1}),t.getConfig(n)),t.setState({loading:!1}),e},function(e){t.setState({loading:!1}),e.status&&403===e.status&&s.a.alert({content:t.props.locale.publishFailed403})})}},{key:"publishBeta",value:function(){var t=this;return this._publishConfig(!0).then(function(e){if(e)return t.setState({betaPublishSuccess:!0,tabActiveKey:"beta"}),e})}},{key:"stopBeta",value:function(){var t=this,e=this.state.form,n=e.dataId,e=e.group,a=Object(p.a)("namespace");return m.a.delete("v1/cs/configs",{params:{beta:!0,dataId:n,group:e,tenant:a}}).then(function(e){return e.data&&t.setState({isBeta:!1,betaPublishSuccess:!1,tabActiveKey:""},function(){return t.getConfig()}),e})}},{key:"changeForm",value:function(e,t){var n=this.state.form;this.setState({form:Object(x.a)(Object(x.a)({},n),e)},function(){t&&t()})}},{key:"setConfigTags",value:function(n){var e,t=this.state.tagDataSource;0<n.length&&(e=n[n.length-1],t.indexOf(e)<0&&this.setState({tagDataSource:[].concat(Object(a.a)(t),[e])}),5<n.length&&n.pop(),n.forEach(function(e,t){-1===e.indexOf(",")&&-1===e.indexOf("=")||n.splice(t,1)})),this.changeForm({config_tags:n})}},{key:"goBack",value:function(){var e=Object(p.a)("serverId")||"",t=Object(p.a)("namespace"),n=Object(p.a)("searchGroup")||"",a=Object(p.a)("searchDataId")||"",r=Object(p.a)("pageSize"),o=Object(p.a)("pageNo");this.props.history.push(Object(h.a)("/configurationManagement",{serverId:e,group:n,dataId:a,namespace:t,pageSize:r,pageNo:o}))}},{key:"getConfig",value:function(){var i=this,l=0<arguments.length&&void 0!==arguments[0]&&arguments[0],e=Object(p.a)("namespace"),t=this.state.form,t={dataId:t.dataId,group:t.group,namespaceId:e,tenant:e};return l?t.beta=!0:t.show="all",m.a.get("v1/cs/configs",{params:t}).then(function(e){var t=l?e.data:e;if(!t)return!1;var n=t.type,a=t.content,r=t.configTags,o=t.betaIps;return i.setState({betaIps:o}),i.changeForm(Object(x.a)(Object(x.a)({},t),{},{config_tags:r?r.split(","):[]})),i.initMoacoEditor(n,a),i.codeVal=a,i.setState({tagDataSource:i.state.form.config_tags}),e})}},{key:"getSubscribesByNamespace",value:function(){var a=this,e=Object(p.a)("namespace"),t=this.state.form,n=t.dataId,t=t.group;return m.a.get("v1/cs/configs/listener",{params:{dataId:n,group:t,namespaceId:e,tenant:e}}).then(function(e){var t=a.state.subscriberDataSource,n=e.lisentersGroupkeyStatus;return n&&a.setState({subscriberDataSource:t.concat(Object.keys(n))}),e})}},{key:"validation",value:function(){var e=this.props.locale,t=this.state.form,n=t.dataId,t=t.group;return n?!!t||(this.setState({groupError:{validateState:"error",help:e.homeApplication}}),!1):(this.setState({dataIdError:{validateState:"error",help:e.recipientFrom}}),!1)}},{key:"render",value:function(){var t=this,e=this.state,n=e.loading,a=e.betaIps,r=e.openAdvancedSettings,o=e.isBeta,i=e.isNewConfig,l=e.betaPublishSuccess,s=e.form,u=e.tagDataSource,d=e.tabActiveKey,c=e.dataIdError,c=void 0===c?{}:c,f=e.groupError,f=void 0===f?{}:f,p=e.subscriberDataSource,e=e.editorClass,h=this.props.locale,m=void 0===h?{}:h;return C.a.createElement("div",{className:"config-editor"},C.a.createElement(g.a,{shape:"flower",style:{position:"relative",width:"100%"},visible:n,tip:"Loading...",color:"#333"},C.a.createElement("h1",null,m.toedit),l&&C.a.createElement(E.a,{shape:"wrapped",activeKey:d,onChange:function(e){return t.clickTab(e)}},j.map(function(e){return C.a.createElement(E.a.Item,{title:m[e],key:e},m[e])})),C.a.createElement(S.a,Object.assign({className:"new-config-form"},{labelCol:{span:2},wrapperCol:{span:22}}),C.a.createElement(S.a.Item,{label:m.namespace,required:!0},C.a.createElement("p",null,this.tenant)),C.a.createElement(S.a.Item,Object.assign({label:"Data ID",required:!0},c),C.a.createElement(k.a,{value:s.dataId,onChange:function(e){return t.changeForm({dataId:e},function(){return t.setState({dataIdError:{}})})},disabled:!i})),C.a.createElement(S.a.Item,Object.assign({label:"Group",required:!0},f),C.a.createElement(k.a,{value:s.group,onChange:function(e){return t.changeForm({group:e},function(){return t.setState({groupError:{}})})},disabled:!i})),C.a.createElement(S.a.Item,{label:" "},C.a.createElement("a",{onClick:function(){return t.setState({openAdvancedSettings:!r})}},r?m.collapse:m.groupNotEmpty)),r&&C.a.createElement(C.a.Fragment,null,C.a.createElement(S.a.Item,{label:m.tags},C.a.createElement(M.a,{size:"medium",hasArrow:!0,autoWidth:!0,mode:"tag",filterLocal:!0,value:s.config_tags,dataSource:u,onChange:function(e){return t.setConfigTags(e)},hasClear:!0})),C.a.createElement(S.a.Item,{label:m.targetEnvironment},C.a.createElement(k.a,{value:s.appName,onChange:function(e){return t.changeForm({appName:e})}}))),C.a.createElement(S.a.Item,{label:m.description},C.a.createElement(k.a.TextArea,{value:s.desc,"aria-label":"TextArea",onChange:function(e){return t.changeForm({desc:e})}})),!i&&"production"!==d&&C.a.createElement(S.a.Item,{label:m.betaPublish},!l&&C.a.createElement(w.a,{checked:o,onChange:function(e){return t.setState({isBeta:e})}},m.betaSwitchPrompt),o&&C.a.createElement(M.a,{size:"medium",hasArrow:!0,autoWidth:!0,mode:"tag",filterLocal:!0,dataSource:p,onChange:function(e){return t.setState({betaIps:e.join(",")})},hasClear:!0,value:a?a.split(","):[]})),C.a.createElement(S.a.Item,{label:m.format},C.a.createElement(b.a.Group,{defaultValue:"text",value:s.type,onChange:function(e){t.initMoacoEditor(e,s.content),t.changeForm({type:e})}},P.map(function(e){return C.a.createElement(b.a,{value:e.value,key:e.value},e.label)}))),C.a.createElement(S.a.Item,{label:C.a.createElement("div",{className:"help-label"},C.a.createElement("span",null,m.configcontent),C.a.createElement(v.a,{trigger:C.a.createElement(_.a,{type:"help",size:"small"}),align:"t",style:{marginRight:5},triggerType:"hover"},C.a.createElement("p",null,m.escExit),C.a.createElement("p",null,m.releaseBeta)),C.a.createElement("span",null,":"))},C.a.createElement("div",{id:"container",className:e,style:{minHeight:450}}))),C.a.createElement(O,null,C.a.createElement(N,{span:"24",className:"button-list"},o&&l&&"production"!==d&&C.a.createElement(y.a,{size:"large",type:"primary",onClick:function(){return t.stopBeta().then(function(){t.successDialog.current.getInstance().openDialog(Object(x.a)({title:C.a.createElement("div",null,m.stopPublishBeta),isok:!0},s))})}},m.stopPublishBeta),o&&"production"!==d&&C.a.createElement(y.a,{size:"large",type:"primary",disabled:!a||l,onClick:function(){return t.openDiff("publishBeta")}},m.release),C.a.createElement(y.a,{type:"primary",disabled:"production"===d,onClick:function(){return t.openDiff("publish")}},m.publish),C.a.createElement(y.a,{type:"normal",onClick:function(){return t.goBack()}},m.back))),C.a.createElement(D.a,{ref:this.diffEditorDialog,publishConfig:function(e){t.setCodeVal(e),t[t.diffcb]().then(function(e){e&&(e=m.toedit,i&&(e=m.newConfigEditor),"publishBeta"===t.diffcb&&(e=m.betaPublish),"publish"===t.diffcb&&"beta"===d&&(e=m.stopPublishBeta,t.stopBeta()),t.successDialog.current.getInstance().openDialog(Object(x.a)({title:C.a.createElement("div",null,e),isok:!0},s)))})},title:m.dialogTitle,currentArea:m.dialogCurrentArea,originalArea:m.dialogOriginalArea}),C.a.createElement(T.a,{ref:this.successDialog})))}}]),n}(C.a.Component)).displayName="ConfigEditor",c=f))||c;t.a=n},function(e,t,n){"use strict";n(52);var a=n(33),c=n.n(a),a=(n(64),n(46)),f=n.n(a),a=(n(175),n(74)),p=n.n(a),a=(n(36),n(10)),h=n.n(a),a=(n(32),n(18)),m=n.n(a),a=(n(35),n(19)),r=n.n(a),a=(n(49),n(27)),o=n.n(a),i=n(14),l=n(15),s=n(22),u=n(17),d=n(16),a=(n(26),n(8)),a=n.n(a),g=(n(403),n(117)),y=n.n(g),g=(n(63),n(20)),v=n.n(g),g=(n(66),n(41)),g=n.n(g),_=(n(39),n(5)),b=n.n(_),_=n(0),w=n.n(_),M=n(1),k=n(48),_=n(137),S=n.n(_),E=n(69),x=(n(741),b.a.Item),C=g.a.Row,L=g.a.Col,T=v.a.Column,D=y.a.Panel,g=(0,a.a.config)(((_=function(e){Object(u.a)(a,e);var t=Object(d.a)(a);function a(e){var n;return Object(i.a)(this,a),(n=t.call(this,e)).getQueryLater=function(){setTimeout(function(){return n.queryClusterStateList()})},n.setNowNameSpace=function(e,t){return n.setState({nowNamespaceName:e,nowNamespaceId:t})},n.rowColor=function(e){return{className:(e.voteFor,"")}},n.state={loading:!1,total:0,pageSize:10,currentPage:1,keyword:"",dataSource:[]},n.field=new o.a(Object(s.a)(n)),n}return Object(l.a)(a,[{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"openEditServiceDialog",value:function(){try{this.editServiceDialog.current.getInstance().show(this.state.service)}catch(e){}}},{key:"queryClusterStateList",value:function(){var n=this,e=this.state,t=e.currentPage,a=e.pageSize,r=e.keyword,e=e.withInstances,e=["withInstances=".concat(void 0!==e&&e),"pageNo=".concat(t),"pageSize=".concat(a),"keyword=".concat(r)];Object(M.b)({url:"v1/core/cluster/nodes?".concat(e.join("&")),beforeSend:function(){return n.openLoading()},success:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},t=e.count,e=e.data;n.setState({dataSource:void 0===e?[]:e,total:void 0===t?0:t})},error:function(){return n.setState({dataSource:[],total:0,currentPage:0})},complete:function(){return n.closeLoading()}})}},{key:"leave",value:function(e){var t=this;this.openLoading(),S.a.post("v1/core/cluster/server/leave",e).then(function(){t.queryClusterStateList(),t.closeLoading()}).catch(function(){t.queryClusterStateList(),t.closeLoading()})}},{key:"showLeaveDialog",value:function(e){var t=this,n=this.props.locale,n=void 0===n?{}:n;r.a.confirm({title:n.confirm,content:n.confirmTxt,onOk:function(){return t.leave([e])},onCancel:function(){}})}},{key:"renderCol",value:function(e,t,n){var a=this.props.locale,a=void 0===a?{}:a;return w.a.createElement(m.a,{onClick:this.showLeaveDialog.bind(this,e),type:"primary",warning:!0},a.leave)}},{key:"render",value:function(){var t=this,e=this.props.locale,a=void 0===e?{}:e,e=a.pubNoData,n=a.clusterNodeList,r=a.nodeIp,o=a.nodeIpPlaceholder,i=a.query,l=this.state,s=l.keyword,l=(l.nowNamespaceName,l.nowNamespaceId),u=this.field,d=u.init,u=u.getValue;return this.init=d,this.getValue=u,w.a.createElement("div",{className:"main-container cluster-management"},w.a.createElement(c.a,{shape:"flower",style:{position:"relative",width:"100%"},visible:this.state.loading,tip:"Loading...",color:"#333"},w.a.createElement(E.a,{title:n,desc:l,nameSpace:!0}),w.a.createElement(k.a,{setNowNameSpace:this.setNowNameSpace,namespaceCallBack:this.getQueryLater}),w.a.createElement(C,{className:"demo-row",style:{marginBottom:10,padding:0}},w.a.createElement(L,{span:"24"},w.a.createElement(b.a,{inline:!0,field:this.field},w.a.createElement(x,{label:r},w.a.createElement(h.a,{placeholder:o,style:{width:200},value:s,onChange:function(e){return t.setState({keyword:e})},onPressEnter:function(){return t.setState({currentPage:1},function(){return t.queryClusterStateList()})}})),w.a.createElement(x,{label:""},w.a.createElement(m.a,{type:"primary",onClick:function(){return t.setState({currentPage:1},function(){return t.queryClusterStateList()})},style:{marginRight:10}},i))))),w.a.createElement(C,{style:{padding:0}},w.a.createElement(L,{span:"24",style:{padding:0}},w.a.createElement(v.a,{dataSource:this.state.dataSource,locale:{empty:e},rowProps:function(e){return t.rowColor(e)}},w.a.createElement(T,{title:a.nodeIp,dataIndex:"address",width:"20%"}),w.a.createElement(T,{title:a.nodeState,dataIndex:"state",width:"20%",cell:function(e,t,n){return"UP"===e?w.a.createElement(p.a,{key:"p_p_".concat(e),type:"primary",color:"green"},e):"DOWN"===e?w.a.createElement(p.a,{key:"p_p_".concat(e),type:"primary",color:"red"},e):"SUSPICIOUS"===e?w.a.createElement(p.a,{key:"p_p_".concat(e),type:"primary",color:"orange"},e):w.a.createElement(p.a,{key:"p_p_".concat(e),type:"primary",color:"turquoise"},e)}}),w.a.createElement(T,{title:a.extendInfo,dataIndex:"extendInfo",width:"30%",cell:function(e,t,n){return w.a.createElement(y.a,null,w.a.createElement(D,{title:a.extendInfo},w.a.createElement("ul",null,w.a.createElement("li",null,w.a.createElement("pre",null,JSON.stringify(e,null,4))))))}}),w.a.createElement(T,{title:a.operation,dataIndex:"address",width:"20%",cell:this.renderCol.bind(this)})))),this.state.total>this.state.pageSize&&w.a.createElement("div",{style:{marginTop:10,textAlign:"right"}},w.a.createElement(f.a,{current:this.state.currentPage,total:this.state.total,pageSize:this.state.pageSize,onChange:function(e){return t.setState({currentPage:e},function(){return t.queryClusterStateList()})}}))))}}]),a}(w.a.Component)).displayName="ClusterNodeList",n=_))||n;t.a=g},function(e,t,n){"use strict";n(52);var a=n(33),r=n.n(a),a=(n(32),n(18)),o=n.n(a),a=(n(395),n(139)),i=n.n(a),a=(n(43),n(24)),l=n.n(a),a=(n(36),n(10)),s=n.n(a),u=n(61),a=(n(49),n(27)),d=n.n(a),a=(n(35),n(19)),c=n.n(a),a=(n(51),n(25)),f=n.n(a),p=n(14),h=n(15),m=n(22),g=n(17),y=n(16),a=(n(26),n(8)),a=n.n(a),v=(n(59),n(29)),_=n.n(v),v=(n(126),n(88)),v=n.n(v),b=(n(39),n(5)),w=n.n(b),b=n(65),M=n.n(b),b=n(0),k=n.n(b),S=n(105),E=n(1),x=n(47),C=n(138),L=(n(670),w.a.Item),T=v.a.Group,D=_.a.AutoComplete,v=(0,a.a.config)(((b=function(e){Object(g.a)(n,e);var t=Object(y.a)(n);function n(e){var l;return Object(p.a)(this,n),(l=t.call(this,e)).publicConfigBeforeCheck=function(t){var e=l.props.locale,n=void 0===e?{}:e,e=l.state.addonBefore;Object(E.b)({url:"v1/cs/configs",data:{show:"all",dataId:e+l.field.getValue("dataId"),group:l.field.getValue("group"),tenant:Object(E.a)("namespace")||""},success:function(e){f.a.error({content:n.dataIdExists,align:"cc cc"})},error:function(e){403===(e||{}).status?c.a.alert({content:n.publishFailed403}):l._publishConfig(t)}})},l._publishConfig=function(e){var n=Object(m.a)(l),t=l.props.locale,a=void 0===t?{}:t,t=l.state,r=t.addonBefore,o=t.config_tags,t=t.configType,i=(l.tenant=Object(E.a)("namespace")||"",{dataId:r+l.field.getValue("dataId"),group:l.field.getValue("group"),content:e,desc:l.field.getValue("desc"),config_tags:o.join(),type:t,appName:l.inApp?l.edasAppId:l.field.getValue("appName"),tenant:l.tenant});l.serverId=Object(E.a)("serverId")||"center";Object(E.b)({type:"post",contentType:"application/x-www-form-urlencoded",url:"v1/cs/configs",data:i,beforeSend:function(){l.openLoading()},success:function(e){var t={};t.maintitle=a.newListingMain,t.title=a.newListing,t.content="",t.dataId=i.dataId,t.group=i.group,!0===e?(n.group=i.group,n.dataId=i.dataId,Object(E.c)({group:i.group,dataId:i.dataId}),t.isok=!0):(t.isok=!1,t.message=e.message),n.successDialog.current.getInstance().openDialog(t)},complete:function(){l.closeLoading(),l.goList()},error:function(e){l.closeLoading(),c.a.alert({content:a.publishFailed})}})},l.successDialog=k.a.createRef(),l.field=new d.a(Object(m.a)(l)),l.edasAppName=Object(E.a)("edasAppName")||"",l.edasAppId=Object(E.a)("edasAppId")||"",l.inApp=l.edasAppName,l.field.setValue("appName",l.inApp?l.edasAppName:""),l.inEdas=window.globalConfig.isParentEdas(),l.dataId=Object(E.a)("dataId")||"",l.group=Object(E.a)("group")||"DEFAULT_GROUP",l.searchDataId=Object(E.a)("searchDataId")||"",l.searchGroup=Object(E.a)("searchGroup")||"",l.state={configType:"text",codeValue:"",envname:"",targetEnvName:"",groups:[],groupNames:[],envlist:[],tagLst:[],config_tags:[],envvalues:[],showmore:!1,loading:!1,encrypt:!1,addonBefore:"",showGroupWarning:!1,editorClass:"editor-normal"},l.codeValue="",l.mode="text",l.ips="",l}return Object(h.a)(n,[{key:"componentDidMount",value:function(){var e=this;this.betaips=document.getElementById("betaips"),this.chontenttab=document.getElementById("chontenttab"),this.tenant=Object(E.a)("namespace")||"",this.field.setValue("group",this.group),window.monaco?this.initMoacoEditor():window.importEditor(function(){e.initMoacoEditor()}),this.initFullScreenEvent()}},{key:"changeModel",value:function(e){var t,n;this.monacoEditor?(t=this.monacoEditor.getModel(),n=this.monacoEditor.getValue(),n=window.monaco.editor.createModel(n,e),this.monacoEditor.setModel(n),t&&t.dispose()):(M()("#container").empty(),this.monacoEditor=window.monaco.editor.create(document.getElementById("container"),{model:null}))}},{key:"initMoacoEditor",value:function(){this.monacoEditor=window.monaco.editor.create(document.getElementById("container"),{value:this.codeValue,language:this.state.configType,codeLens:!0,selectOnLineNumbers:!0,roundedSelection:!1,readOnly:!1,lineNumbersMinChars:!0,theme:"vs-dark",folding:!0,showFoldingControls:"always",cursorStyle:"line",automaticLayout:!0})}},{key:"initFullScreenEvent",value:function(){var t=this;document.body.addEventListener("keydown",function(e){"F1"===e.key&&(e.preventDefault(),t.setState({editorClass:"editor-full-screen"})),"Escape"===e.key&&t.setState({editorClass:"editor-normal"})})}},{key:"setGroup",value:function(e){this.group=e||"",this.field.setValue("group",this.group),this.inEdas&&this.setState({showGroupWarning:""!==this.group&&this.state.groupNames.indexOf(e)<0})}},{key:"tagSearch",value:function(e){var t=this.state.tagLst;t.includes(e)||this.setState({tagLst:[e].concat(Object(u.a)(t))})}},{key:"setConfigTags",value:function(n){5<n.length&&n.pop(),n.forEach(function(e,t){-1===e.indexOf(",")&&-1===e.indexOf("=")||n.splice(t,1)}),this.setState({tagLst:n,config_tags:n})}},{key:"onInputUpdate",value:function(a){var t=this;this.inputtimmer&&clearTimeout(this.inputtimmer),this.inputtimmer=setTimeout(function(){var e=t.state.tagLst,n=!1;e.forEach(function(e,t){e.value===a&&(n=!0)}),n||e.push({value:a,label:a,time:Math.random()}),t.setState({tagLst:e})},500)}},{key:"toggleMore",value:function(){this.setState({showmore:!this.state.showmore})}},{key:"goList",value:function(){this.tenant=Object(E.a)("namespace")||"",this.serverId=Object(E.a)("serverId")||"",this.props.history.push(Object(x.a)("/configurationManagement",{serverId:this.serverId,group:this.searchGroup,dataId:this.searchDataId,namespace:this.tenant}))}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"newChangeConfig",value:function(e){this.setState({configType:e}),this.changeModel(e)}},{key:"setCodeValue",value:function(e){this.setState({codeValue:e})}},{key:"publishConfig",value:function(){var a=this,e=this.props.locale,r=void 0===e?{}:e;this.field.validate(function(e,t){var n;e||(e=a.state.configType,n="",(n=a.monacoEditor?a.monacoEditor.getValue():a.codeValue)?C.a.validate({content:n,type:e})?a.publicConfigBeforeCheck(n):c.a.confirm({content:r.confirmSyanx,onOk:function(){a.publicConfigBeforeCheck(n)}}):f.a.error({content:r.dataRequired,align:"cc cc"}))})}},{key:"changeEnv",value:function(e){this.targetEnvs=e,this.setState({envvalues:e})}},{key:"changeBeta",value:function(e){this.betaips.style.display=e?"block":"none"}},{key:"getIps",value:function(e){this.ips=e}},{key:"validateChart",value:function(e,t,n){var a=this.props.locale,a=void 0===a?{}:a;/[@#\$%\^&\*\s]+/g.test(t)?n(a.doNotEnter):n()}},{key:"render",value:function(){var t=this,e=this.props.locale,e=void 0===e?{}:e,n=this.field.init,a=this.state.editorClass;return k.a.createElement(r.a,{shape:"flower",tip:"Loading...",style:{width:"100%",position:"relative"},visible:this.state.loading,color:"#333"},k.a.createElement("h1",null,e.newListing),k.a.createElement(w.a,Object.assign({className:"new-config-form",field:this.field},{labelCol:{span:2},wrapperCol:{span:22}}),k.a.createElement(w.a.Item,{label:e.namespace,required:!0},k.a.createElement("p",null,this.tenant)),k.a.createElement(L,{label:"Data ID",required:!0},k.a.createElement(s.a,Object.assign({},n("dataId",{rules:[{required:!0,message:e.newConfig},{validator:this.validateChart.bind(this)}]}),{maxLength:255,addonTextBefore:this.state.addonBefore?k.a.createElement("div",{style:{minWidth:100,color:"#373D41"}},this.state.addonBefore):null}))),k.a.createElement(L,{label:"Group",required:!0},k.a.createElement(D,Object.assign({style:{width:"100%"},size:"large",hasArrow:!0,dataSource:this.state.groups,placeholder:e.groupPlaceholder,defaultValue:this.group},n("group",{rules:[{required:!0,message:e.moreAdvanced},{maxLength:127,message:e.groupNotEmpty},{validator:this.validateChart.bind(this)}]}),{onChange:this.setGroup.bind(this),hasClear:!0}))),k.a.createElement(L,{label:" ",style:{display:this.state.showGroupWarning?"block":"none"}},k.a.createElement(f.a,{type:"warning",size:"medium",animation:!1},e.annotation)),k.a.createElement(L,{label:" "},k.a.createElement("div",null,k.a.createElement("a",{style:{fontSize:"12px"},onClick:this.toggleMore.bind(this)},this.state.showmore?e.dataIdLength:e.collapse))),k.a.createElement(L,{label:e.tags,className:"more-item".concat(this.state.showmore?"":" hide")},k.a.createElement(_.a,{size:"medium",showSearch:!0,hasArrow:!0,style:{width:"100%",height:"100%!important"},autoWidth:!0,mode:"multiple",filterLocal:!0,placeholder:e.pleaseEnterTag,dataSource:this.state.tagLst,value:this.state.config_tags,onChange:this.setConfigTags.bind(this),onSearch:function(e){return t.tagSearch(e)},hasClear:!0})),k.a.createElement(L,{label:e.groupIdCannotBeLonger,className:"more-item".concat(this.state.showmore?"":" hide")},k.a.createElement(s.a,Object.assign({},n("appName"),{readOnly:this.inApp}))),k.a.createElement(L,{label:e.description},k.a.createElement(s.a.TextArea,Object.assign({htmlType:"text",multiple:!0,rows:3},n("desc")))),k.a.createElement(L,{label:e.targetEnvironment},k.a.createElement(T,{dataSource:[{value:"text",label:"TEXT"},{value:"json",label:"JSON"},{value:"xml",label:"XML"},{value:"yaml",label:"YAML"},{value:"html",label:"HTML"},{value:"properties",label:"Properties"}],value:this.state.configType,onChange:this.newChangeConfig.bind(this)})),k.a.createElement(L,{label:k.a.createElement("span",null,e.configurationFormat,k.a.createElement(i.a,{trigger:k.a.createElement(l.a,{type:"help",size:"small",style:{color:"#1DC11D",margin:"0 5px",verticalAlign:"middle"}}),align:"t",style:{marginRight:5},triggerType:"hover"},k.a.createElement("p",null,e.configureContentsOf),k.a.createElement("p",null,e.fullScreen)),":"),required:!0},k.a.createElement("div",{id:"container",className:a,style:{minHeight:450}})),k.a.createElement(L,{label:" "},k.a.createElement("div",{style:{textAlign:"right"}},k.a.createElement(o.a,{type:"primary",style:{marginRight:10},onClick:this.publishConfig.bind(this)},e.escExit),k.a.createElement(o.a,{type:"normal",onClick:this.goList.bind(this)},e.release)))),k.a.createElement(S.a,{ref:this.successDialog}))}}]),n}(k.a.Component)).displayName="NewConfig",n=b))||n;t.a=v},function(e,t,n){"use strict";n(171);var a=n(102),r=n.n(a),a=(n(36),n(10)),o=n.n(a),i=n(31),a=(n(49),n(27)),l=n.n(a),a=(n(51),n(25)),s=n.n(a),u=n(14),d=n(15),c=n(22),f=n(17),p=n(16),a=(n(26),n(8)),a=n.n(a),h=(n(39),n(5)),m=n.n(h),h=n(0),g=n.n(h),h=n(40),y=(n(627),n(135)),v=n(101),_=m.a.Item,n=(n=a.a.config,Object(h.g)(h=n(((a=function(e){Object(f.a)(n,e);var t=Object(p.a)(n);function n(e){var a;return Object(u.a)(this,n),(a=t.call(this,e)).handleSubmit=function(){var e=a.props.locale,n=void 0===e?{}:e;a.field.validate(function(e,t){e||Object(v.c)(t).then(function(e){localStorage.setItem("token",JSON.stringify(e)),a.props.history.push("/")}).catch(function(){s.a.error({content:n.invalidUsernameOrPassword})})})},a.onKeyDown=function(e){"Enter"===e.key&&(e.preventDefault(),e.stopPropagation(),a.handleSubmit())},a.field=new l.a(Object(c.a)(a)),a}return Object(d.a)(n,[{key:"componentDidMount",value:function(){var e;localStorage.getItem("token")&&(e=location.href.split("#"),e=Object(i.a)(e,1)[0],location.href="".concat(e,"#/"))}},{key:"render",value:function(){var e=this.props.locale,e=void 0===e?{}:e;return g.a.createElement("div",{className:"home-page"},g.a.createElement(y.a,null),g.a.createElement("section",{className:"top-section",style:{background:"url(img/black_dot.png) repeat",backgroundSize:"14px 14px"}},g.a.createElement("div",{className:"vertical-middle product-area"},g.a.createElement("img",{className:"product-logo",src:"img/nacos.png"}),g.a.createElement("p",{className:"product-desc"},e.productDesc)),g.a.createElement("div",{className:"animation animation1"}),g.a.createElement("div",{className:"animation animation2"}),g.a.createElement("div",{className:"animation animation3"}),g.a.createElement("div",{className:"animation animation4"}),g.a.createElement("div",{className:"animation animation5"}),g.a.createElement(r.a,{className:"login-panel",contentHeight:"auto"},g.a.createElement("div",{className:"login-header"},e.login),g.a.createElement("div",{className:"internal-sys-tip"},g.a.createElement("div",null,e.internalSysTip1),g.a.createElement("div",null,e.internalSysTip2)),g.a.createElement(m.a,{className:"login-form",field:this.field},g.a.createElement(_,null,g.a.createElement(o.a,Object.assign({},this.field.init("username",{rules:[{required:!0,message:e.usernameRequired}]}),{placeholder:e.pleaseInputUsername,onKeyDown:this.onKeyDown}))),g.a.createElement(_,null,g.a.createElement(o.a,Object.assign({htmlType:"password",placeholder:e.pleaseInputPassword},this.field.init("password",{rules:[{required:!0,message:e.passwordRequired}]}),{onKeyDown:this.onKeyDown}))),g.a.createElement(_,{label:" "},g.a.createElement(m.a.Submit,{onClick:this.handleSubmit},e.submit))))))}}]),n}(g.a.Component)).displayName="Login",h=a))||h)||h);t.a=n},function(e,t,n){"use strict";n(52);var a=n(33),m=n.n(a),a=(n(64),n(46)),g=n.n(a),a=(n(32),n(18)),y=n.n(a),a=(n(36),n(10)),v=n.n(a),_=n(21),a=(n(51),n(25)),o=n.n(a),a=(n(49),n(27)),r=n.n(a),i=n(14),l=n(15),s=n(22),u=n(17),d=n(16),a=(n(26),n(8)),a=n.n(a),c=(n(63),n(20)),b=n.n(c),c=(n(66),n(41)),c=n.n(c),f=(n(39),n(5)),w=n.n(f),f=n(0),M=n.n(f),f=n(37),p=n(118),h=n(1),k=n(48),S=n(69),E=(n(740),w.a.Item),x=c.a.Row,C=c.a.Col,L=b.a.Column,f=Object(f.b)(function(e){return{subscriberData:e.subscribers}},{getSubscribers:p.b,removeSubscribers:p.c})(c=(0,a.a.config)(((n=function(e){Object(u.a)(a,e);var t=Object(d.a)(a);function a(e){var n;return Object(i.a)(this,a),(n=t.call(this,e)).switchNamespace=function(){n.props.removeSubscribers()},n.setNowNameSpace=function(e,t){return n.setState({nowNamespaceName:e,nowNamespaceId:t})},n.state={loading:!1,total:0,pageSize:10,pageNo:1,search:{serviceName:Object(h.a)("name")||"",groupName:Object(h.a)("groupName")||""},nowNamespaceId:Object(h.a)("namespace")||""},n.field=new r.a(Object(s.a)(n)),n}return Object(l.a)(a,[{key:"componentDidMount",value:function(){this.state.search.serviceName&&this.querySubscriberList()}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"querySubscriberList",value:function(){var e=this.props.locale.searchServiceNamePrompt,t=this.state,n=t.search,a=t.pageSize,r=t.pageNo,t=t.nowNamespaceId,t=void 0===t?"":t;n.serviceName?this.props.getSubscribers(Object(_.a)(Object(_.a)({},n),{},{pageSize:a,pageNo:r,namespaceId:t})):o.a.error(e)}},{key:"render",value:function(){var t=this,e=this.props,n=e.locale,n=void 0===n?{}:n,e=e.subscriberData,e=void 0===e?{}:e,a=e.count,a=void 0===a?0:a,e=e.subscribers,e=void 0===e?[]:e,r=n.pubNoData,o=n.subscriberList,i=n.serviceName,l=n.serviceNamePlaceholder,s=n.groupName,u=n.groupNamePlaceholder,d=n.query,c=this.state,f=c.search,c=(c.nowNamespaceName,c.nowNamespaceId),p=this.field,h=p.init,p=p.getValue;return this.init=h,this.getValue=p,M.a.createElement("div",{className:"main-container subscriber-list"},M.a.createElement(m.a,{shape:"flower",style:{position:"relative",width:"100%"},visible:this.state.loading,tip:"Loading...",color:"#333"},M.a.createElement(S.a,{title:o,desc:c,nameSpace:!0}),M.a.createElement(k.a,{setNowNameSpace:this.setNowNameSpace,namespaceCallBack:this.switchNamespace}),M.a.createElement(x,{className:"demo-row",style:{marginBottom:10,padding:0}},M.a.createElement(C,{span:"24"},M.a.createElement(w.a,{inline:!0,field:this.field},M.a.createElement(E,{label:i,required:!0},M.a.createElement(v.a,{placeholder:l,style:{width:200},value:f.serviceName,onChange:function(e){return t.setState({search:Object(_.a)(Object(_.a)({},f),{},{serviceName:e})})},onPressEnter:function(){return t.setState({pageNo:1},function(){return t.querySubscriberList()})}})),M.a.createElement(E,{label:s},M.a.createElement(v.a,{placeholder:u,style:{width:200},value:f.groupName,onChange:function(e){return t.setState({search:Object(_.a)(Object(_.a)({},f),{},{groupName:e})})},onPressEnter:function(){return t.setState({pageNo:1},function(){return t.querySubscriberList()})}})),M.a.createElement(E,{label:""},M.a.createElement(y.a,{type:"primary",onClick:function(){return t.setState({pageNo:1},function(){return t.querySubscriberList()})},style:{marginRight:10}},d))))),M.a.createElement(x,{style:{padding:0}},M.a.createElement(C,{span:"24",style:{padding:0}},M.a.createElement(b.a,{dataSource:e,locale:{empty:r}},M.a.createElement(L,{title:n.address,dataIndex:"addrStr"}),M.a.createElement(L,{title:n.clientVersion,dataIndex:"agent"}),M.a.createElement(L,{title:n.appName,dataIndex:"app"})))),a>this.state.pageSize&&M.a.createElement("div",{style:{marginTop:10,textAlign:"right"}},M.a.createElement(g.a,{current:this.state.pageNo,total:a,pageSize:this.state.pageSize,onChange:function(e){return t.setState({pageNo:e},function(){return t.querySubscriberList()})}}))))}}]),a}(M.a.Component)).displayName="SubscriberList",c=n))||c)||c;t.a=f},function(e,t,n){"use strict";n(43);function o(e){var t=void 0===(t=localStorage.token)?"{}":t,t=(Object(y.c)(t)&&JSON.parse(t)||{}).globalAdmin;return["naming"===e?void 0:v,{key:"serviceManagementVirtual",children:[{key:"serviceManagement",url:"/serviceManagement"},{key:"subscriberList",url:"/subscriberList"}]},t?_:void 0,{key:"namespace",url:"/namespace"},{key:"clusterManagementVirtual",children:[{key:"clusterManagement",url:"/clusterManagement"}]}].filter(function(e){return e})}var a=n(24),i=n.n(a),r=n(14),l=n(15),s=n(17),u=n(16),a=(n(26),n(8)),a=n.n(a),d=n(21),c=(n(80),n(50)),f=n.n(c),c=n(0),p=n.n(c),c=n(40),h=n(37),m=n(135),g=n(101),y=n(47),v={key:"configurationManagementVirtual",children:[{key:"configurationManagement",url:"/configurationManagement"},{key:"historyRollback",url:"/historyRollback"},{key:"listeningToQuery",url:"/listeningToQuery"}]},_={key:"authorityControl",children:[{key:"userList",url:"/userManagement"},{key:"roleManagement",url:"/rolesManagement"},{key:"privilegeManagement",url:"/permissionsManagement"}]},b=f.a.SubMenu,w=f.a.Item,c=(n=Object(h.b)(function(e){return Object(d.a)(Object(d.a)({},e.locale),e.base)},{getState:g.b}),h=a.a.config,Object(c.g)(a=n(a=h(((g=function(e){Object(s.a)(n,e);var t=Object(u.a)(n);function n(){return Object(r.a)(this,n),t.apply(this,arguments)}return Object(l.a)(n,[{key:"componentDidMount",value:function(){this.props.getState()}},{key:"goBack",value:function(){this.props.history.goBack()}},{key:"navTo",value:function(e){var t=this.props.location.search,t=new URLSearchParams(t);t.set("namespace",window.nownamespace),t.set("namespaceShowName",window.namespaceShowName),this.props.history.push([e,"?",t.toString()].join(""))}},{key:"isCurrentPath",value:function(e){return e===this.props.location.pathname?"current-path next-selected":void 0}},{key:"defaultOpenKeys",value:function(){for(var t=this,e=o(this.props.functionMode),n=0,a=e.length;n<a;n++){var r=e[n].children;if(r&&r.filter(function(e){return e.url===t.props.location.pathname}).length)return String(n)}}},{key:"isShowGoBack",value:function(){var t=[];return o(this.props.functionMode).forEach(function(e){e.url&&t.push(e.url),e.children&&e.children.forEach(function(e){e=e.url;return t.push(e)})}),!t.includes(this.props.location.pathname)}},{key:"render",value:function(){var a=this,e=this.props,t=e.locale,r=void 0===t?{}:t,t=e.version,e=e.functionMode,e=o(e);return p.a.createElement("section",{className:"next-shell next-shell-desktop next-shell-brand",style:{minHeight:"100vh"}},p.a.createElement(m.a,null),p.a.createElement("section",{className:"next-shell-sub-main"},p.a.createElement("div",{className:"main-container next-shell-main"},p.a.createElement("div",{className:"left-panel next-aside-navigation"},p.a.createElement("div",{className:"next-shell-navigation next-shell-mini next-shell-aside",style:{padding:0}},this.isShowGoBack()?p.a.createElement("div",{className:"go-back",onClick:function(){return a.goBack()}},p.a.createElement(i.a,{type:"arrow-left"})):p.a.createElement(p.a.Fragment,null,p.a.createElement("h1",{className:"nav-title"},r.nacosName,p.a.createElement("span",null,t)),p.a.createElement(f.a,{defaultOpenKeys:this.defaultOpenKeys(),className:"next-nav next-normal next-active next-right next-no-arrow next-nav-embeddable",openMode:"single"},e.map(function(e,n){return e.children?p.a.createElement(b,{key:String(n),label:r[e.key]},e.children.map(function(e,t){return p.a.createElement(w,{key:[n,t].join("-"),onClick:function(){return a.navTo(e.url)},className:a.isCurrentPath(e.url)},r[e.key])})):p.a.createElement(w,{key:String(n),className:["first-menu",a.isCurrentPath(e.url)].filter(function(e){return e}).join(" "),onClick:function(){return a.navTo(e.url)}},r[e.key])}))))),p.a.createElement("div",{className:"right-panel next-shell-sub-main"},this.props.children))))}}]),n}(p.a.Component)).displayName="MainLayout",a=g))||a)||a)||a);t.a=c},function(e,t,n){"use strict";n(52);var a=n(33),r=n.n(a),a=(n(64),n(46)),o=n.n(a),a=(n(63),n(20)),i=n.n(a),a=(n(36),n(10)),l=n.n(a),a=(n(59),n(29)),s=n.n(a),a=(n(49),n(27)),u=n.n(a),d=n(31),c=n(14),f=n(15),p=n(22),h=n(17),m=n(16),a=(n(26),n(8)),a=n.n(a),g=(n(66),n(41)),g=n.n(g),y=(n(39),n(5)),v=n.n(y),y=n(0),_=n.n(y),b=n(48),w=n(1),M=n(103),k=(n(697),v.a.Item),S=g.a.Row,E=g.a.Col,g=(0,a.a.config)(((y=function(e){Object(h.a)(n,e);var t=Object(m.a)(n);function n(e){var a;return Object(c.a)(this,n),(a=t.call(this,e)).queryTrackQuery=function(){var l=Object(p.a)(a),e="",s=a.getValue("type");if(1===s){var t=a.getValue("ip"),e="v1/cs/listener?ip=".concat(t),t=window.nownamespace||Object(w.a)("namespace")||"";t&&(e+="&tenant=".concat(t))}else{var t=a.getValue("dataId"),n=a.getValue("group");if(!t||!n)return!1;e="v1/cs/configs/listener?dataId=".concat(t,"&group=").concat(n)}Object(w.b)({url:e,beforeSend:function(){l.openLoading()},success:function(e){if(200===e.collectStatus){var t,n,a,r,o=[],i=e.lisentersGroupkeyStatus;for(t in i)1===s?(n={},a=t.split("+"),r=(a=Object(d.a)(a,2))[0],a=a[1],n.dataId=r,n.group=a,n.md5=i[t],o.push(n)):((r={}).ip=t,r.md5=i[t],o.push(r));l.setState({dataSource:o||[],total:o.length||0})}},complete:function(){l.closeLoading()}})},a.changePage=function(e){a.setState({currentPage:e})},a.getQueryLater=function(){setTimeout(function(){a.queryTrackQuery()})},a.state={value:"",visible:!1,loading:!1,total:0,pageSize:10,currentPage:1,dataSource:[]},a.field=new u.a(Object(p.a)(a)),a.group=Object(w.a)("listeningGroup")||"",a.dataId=Object(w.a)("listeningDataId")||"",a.serverId=Object(w.a)("listeningServerId")||"",a.tenant=Object(w.a)("namespace")||"",a}return Object(f.a)(n,[{key:"componentDidMount",value:function(){this.field.setValue("type",0),this.field.setValue("group",this.group),this.field.setValue("dataId",this.dataId)}},{key:"onSearch",value:function(){}},{key:"onChange",value:function(){}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"showMore",value:function(){}},{key:"resetSearch",value:function(){this.field.reset(),this.forceUpdate()}},{key:"renderStatus",value:function(e,t,n){var a=this.props.locale,a=void 0===a?{}:a;return _.a.createElement("div",null,!0===n.pushStatus?_.a.createElement("span",{style:{color:"green"}},a.success):_.a.createElement("span",{style:{color:"red"}},a.failure))}},{key:"render",value:function(){var t=this,e=this.props.locale,e=void 0===e?{}:e,n=this.field,a=n.init,n=n.getValue,a=(this.init=a,this.getValue=n,[{label:e.configuration,value:0},{label:"IP",value:1}]);return _.a.createElement(_.a.Fragment,null,_.a.createElement(r.a,{shape:"flower",style:{position:"relative"},visible:this.state.loading,tip:"Loading...",color:"#333"},_.a.createElement(b.a,{left:e.listenerQuery,namespaceCallBack:this.getQueryLater}),_.a.createElement(S,{className:"demo-row",style:{marginBottom:10,padding:0}},_.a.createElement(E,{span:"24"},_.a.createElement(v.a,{inline:!0,field:this.field},_.a.createElement(k,{label:"".concat(e.queryDimension)},_.a.createElement(s.a,Object.assign({dataSource:a,style:{width:200}},this.init("type"),{onChange:function(e){t.field.setValue("type",e),t.queryTrackQuery()}}))),_.a.createElement(k,{label:"Data ID",style:{display:0===this.getValue("type")?"":"none"},required:!0},_.a.createElement(l.a,Object.assign({placeholder:e.pleaseEnterTheDataId,style:{width:200}},this.init("dataId",{rules:[{required:!0,message:e.dataIdCanNotBeEmpty}]})))),_.a.createElement(k,{label:"Group",style:{display:0===this.getValue("type")?"":"none"},required:!0},_.a.createElement(l.a,Object.assign({placeholder:e.pleaseInputGroup,style:{width:200}},this.init("group",{rules:[{required:!0,message:e.groupCanNotBeEmpty}]})))),_.a.createElement(k,{label:"IP:",style:{display:0===this.getValue("type")?"none":""}},_.a.createElement(l.a,Object.assign({placeholder:e.pleaseInputIp,style:{width:200,boxSize:"border-box"}},this.init("ip")))),_.a.createElement(k,{label:""},_.a.createElement(v.a.Submit,{validate:!0,type:"primary",onClick:this.queryTrackQuery,style:{marginRight:10}},e.query))))),_.a.createElement("div",{style:{position:"relative"}},_.a.createElement(M.a,{total:this.state.total})),_.a.createElement(S,{style:{padding:0}},_.a.createElement(E,{span:"24",style:{padding:0}},1===this.getValue("type")?_.a.createElement(i.a,{dataSource:this.state.dataSource,fixedHeader:!0,maxBodyHeight:500,locale:{empty:e.pubNoData}},_.a.createElement(i.a.Column,{title:"Data ID",dataIndex:"dataId"}),_.a.createElement(i.a.Column,{title:"Group",dataIndex:"group"}),_.a.createElement(i.a.Column,{title:"MD5",dataIndex:"md5"})):_.a.createElement(i.a,{dataSource:this.state.dataSource,fixedHeader:!0,maxBodyHeight:400,locale:{empty:e.pubNoData}},_.a.createElement(i.a.Column,{title:"IP",dataIndex:"ip"}),_.a.createElement(i.a.Column,{title:"MD5",dataIndex:"md5"})))),_.a.createElement("div",{style:{marginTop:10,textAlign:"right"}},_.a.createElement(o.a,{current:this.state.currentPage,total:this.state.total,pageSize:this.state.pageSize,onChange:this.changePage}),",")))}}]),n}(_.a.Component)).displayName="ListeningToQuery",n=y))||n;t.a=g},function(e,t,n){"use strict";n(52);var a=n(33),r=n.n(a),a=(n(64),n(46)),o=n.n(a),a=(n(63),n(20)),i=n.n(a),a=(n(39),n(5)),l=n.n(a),a=(n(59),n(29)),s=n.n(a),a=(n(51),n(25)),u=n.n(a),a=(n(49),n(27)),d=n.n(a),c=n(14),f=n(15),p=n(22),h=n(17),m=n(16),a=(n(26),n(8)),a=n.n(a),g=n(0),y=n.n(g),v=n(48),_=n(1),b=(n(694),n(90)),w=n(103),a=(0,a.a.config)(((g=function(e){Object(h.a)(n,e);var t=Object(m.a)(n);function n(e){return Object(c.a)(this,n),(e=t.call(this,e)).field=new d.a(Object(p.a)(e)),e.appName=Object(_.a)("appName")||"",e.preAppName=e.appName,e.group=Object(_.a)("historyGroup")||"",e.preGroup=e.group,e.dataId=Object(_.a)("historyDataId")||"",e.preDataId=e.dataId,e.serverId=Object(_.a)("historyServerId")||"",e.state={value:"",visible:!1,total:0,pageSize:10,currentPage:1,dataSource:[],fieldValue:[],showAppName:!1,showgroup:!1,dataId:e.dataId,group:e.group,appName:e.appName,selectValue:[],loading:!1},e.diffEditorDialog=y.a.createRef(),e}return Object(f.a)(n,[{key:"componentDidMount",value:function(){this.field.setValue("group",this.group),this.field.setValue("dataId",this.dataId)}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"cleanAndGetData",value:function(){0<arguments.length&&void 0!==arguments[0]&&arguments[0]&&(this.dataId="",this.group="",this.setState({group:"",dataId:""}),Object(_.c)("historyGroup",""),Object(_.c)("historyDataId","")),this.getData(),this.getConfigList()}},{key:"getData",value:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:1,t=this;if(this.serverId=Object(_.a)("serverId")||"",!this.state.dataId)return!1;Object(_.b)({beforeSend:function(){t.openLoading()},url:"v1/cs/history?search=accurate&dataId=".concat(this.state.dataId,"&group=").concat(this.state.group,"&&pageNo=").concat(e,"&pageSize=").concat(this.state.pageSize),success:function(e){null!=e&&t.setState({dataSource:e.pageItems||[],total:e.totalCount,currentPage:e.pageNumber})},complete:function(){t.closeLoading()}})}},{key:"renderCol",value:function(e,t,n){var a=this.props.locale,a=void 0===a?{}:a;return y.a.createElement("div",null,y.a.createElement("a",{onClick:this.goDetail.bind(this,n),style:{marginRight:5}},a.details),y.a.createElement("span",{style:{marginRight:5}},"|"),y.a.createElement("a",{style:{marginRight:5},onClick:this.goRollBack.bind(this,n)},a.rollback),y.a.createElement("span",{style:{marginRight:5}},"|"),y.a.createElement("a",{style:{marginRight:5},onClick:this.goCompare.bind(this,n)},a.compare))}},{key:"changePage",value:function(e){this.setState({currentPage:e}),this.getData(e)}},{key:"chooseFieldChange",value:function(e){this.setState({fieldValue:e})}},{key:"selectAll",value:function(){var e=this.props.locale,e=void 0===e?{}:e;return this.state.dataId?this.state.group?(this.state.dataId!==this.preDataId&&(this.preDataId=this.state.dataId),this.state.group!==this.preGroup&&(this.preGroup=this.state.group),void this.getData()):(u.a.error(e.groupCanNotBeEmpty),!1):(u.a.error(e.dataIdCanNotBeEmpty),!1)}},{key:"resetAll",value:function(){this.dataId="",this.group="",this.setState({selectValue:[],dataId:"",appName:"",group:"",showAppName:!1,showgroup:!1}),Object(_.c)({group:"",dataId:""})}},{key:"chooseEnv",value:function(e){}},{key:"goDetail",value:function(e){this.serverId=Object(_.a)("serverId")||"center",this.tenant=Object(_.a)("namespace")||"",this.props.history.push("/historyDetail?serverId=".concat(this.serverId||"","&dataId=").concat(e.dataId,"&group=").concat(e.group,"&nid=").concat(e.id,"&namespace=").concat(this.tenant))}},{key:"goCompare",value:function(e){var n=this,t=Object(_.a)("namespace")||"",a=Object(_.a)("serverId")||"center";this.getConfig(-1,t,a,this.dataId,this.group).then(function(t){n.getHistoryConfig(e.id,n.dataId,n.group).then(function(e){n.diffEditorDialog.current.getInstance().openDialog(e.content,t.content)})})}},{key:"getConfig",value:function(e,r,t,o,i){var l=this;return new Promise(function(t,e){l.props.locale;var n=l,a=(l.tenant=r,l.serverId=r,"v1/cs/configs?show=all&dataId=".concat(o,"&group=").concat(i));Object(_.b)({url:a,beforeSend:function(){n.openLoading()},success:function(e){null!=e&&t(e)},complete:function(){n.closeLoading()}})})}},{key:"getHistoryConfig",value:function(n,a,r){var o=this;return new Promise(function(t,e){o.props.locale;Object(_.b)({url:"v1/cs/history?dataId=".concat(a,"&group=").concat(r,"&nid=").concat(n),success:function(e){null!=e&&t(e)}})})}},{key:"goRollBack",value:function(e){this.serverId=Object(_.a)("serverId")||"center",this.tenant=Object(_.a)("namespace")||"",this.props.history.push("/configRollback?serverId=".concat(this.serverId||"","&dataId=").concat(e.dataId,"&group=").concat(e.group,"&nid=").concat(e.id,"&namespace=").concat(this.tenant,"&nid=").concat(e.id))}},{key:"getConfigList",value:function(){this.props.locale;this.tenant=Object(_.a)("namespace")||"";var r=this;Object(_.b)({url:"v1/cs/history/configs?tenant=".concat(this.tenant),success:function(e){if(null!=e){for(var t=[],n=[],a=0;a<e.length;a++)t.push({value:e[a].dataId,label:e[a].dataId}),n.push({value:e[a].group,label:e[a].group});r.setState({dataIds:t,groups:n})}}})}},{key:"render",value:function(){var n=this,e=this.props.locale,t=void 0===e?{}:e,e=this.field.init;return this.init=e,y.a.createElement("div",null,y.a.createElement(r.a,{shape:"flower",style:{position:"relative",width:"100%"},visible:this.state.loading,tip:"Loading...",color:"#333"},y.a.createElement(v.a,{left:t.toConfigure,namespaceCallBack:this.cleanAndGetData.bind(this)}),y.a.createElement("div",null,y.a.createElement(l.a,{inline:!0,field:this.field},y.a.createElement(l.a.Item,{label:"Data ID",required:!0},y.a.createElement(s.a,{style:{width:200},size:"medium",hasArrow:!0,mode:"single",placeholder:t.dataId,dataSource:this.state.dataIds,hasClear:!0,showSearch:!0,value:this.state.dataId,onChange:function(e){n.setState({dataId:e=e||""}),Object(_.c)("historyDataId",e)},onSearch:function(e){var t=n.state.dataIds;t.includes(e)||n.setState({dataIds:t.concat(e)})}})),y.a.createElement(l.a.Item,{label:"Group:",required:!0},y.a.createElement(s.a,{style:{width:200},size:"medium",hasArrow:!0,mode:"single",placeholder:t.group,dataSource:this.state.groups,value:this.state.group,hasClear:!0,showSearch:!0,onChange:function(e){n.setState({group:e=e||""}),Object(_.c)("historyGroup",e)},onSearch:function(e){var t=n.state.groups;t.includes(e)||n.setState({groups:t.concat(e)})}})),y.a.createElement(l.a.Item,{label:""},y.a.createElement(l.a.Submit,{validate:!0,type:"primary",onClick:this.selectAll.bind(this),style:{marginRight:10}},t.query)))),y.a.createElement("div",{style:{position:"relative",width:"100%",overflow:"hidden",height:"40px"}},y.a.createElement("h3",{style:{height:30,width:"100%",lineHeight:"30px",padding:0,margin:0,fontSize:16}},y.a.createElement(w.a,{total:this.state.total}))),y.a.createElement("div",null,y.a.createElement(i.a,{dataSource:this.state.dataSource,locale:{empty:t.pubNoData}},y.a.createElement(i.a.Column,{title:"Data ID",dataIndex:"dataId"}),y.a.createElement(i.a.Column,{title:"Group",dataIndex:"group"}),y.a.createElement(i.a.Column,{title:t.operator,dataIndex:"srcUser"}),y.a.createElement(i.a.Column,{title:t.lastUpdateTime,dataIndex:"lastModifiedTime",cell:function(e){if(!e)return"";try{return new Date(e).toLocaleString(t.momentLocale)}catch(e){return""}}}),y.a.createElement(i.a.Column,{title:t.operation,cell:this.renderCol.bind(this)}))),y.a.createElement("div",{style:{marginTop:10,textAlign:"right"}},y.a.createElement(o.a,{current:this.state.currentPage,total:this.state.total,pageSize:this.state.pageSize,onChange:this.changePage.bind(this)}),","),y.a.createElement(b.a,{ref:this.diffEditorDialog,title:t.historyCompareTitle,currentArea:t.historyCompareSelectedVersion,originalArea:t.historyCompareLastVersion})))}}]),n}(y.a.Component)).displayName="HistoryRollback",n=g))||n;t.a=a},function(e,t,n){"use strict";n(32);var a=n(18),r=n.n(a),a=(n(36),n(10)),o=n.n(a),a=(n(35),n(19)),i=n.n(a),a=(n(49),n(27)),l=n.n(a),s=n(14),u=n(15),d=n(22),c=n(17),f=n(16),a=(n(26),n(8)),a=n.n(a),p=(n(39),n(5)),h=n.n(p),p=n(0),m=n.n(p),g=n(1),y=n(47),v=(n(692),h.a.Item),a=(0,a.a.config)(((p=function(e){Object(c.a)(n,e);var t=Object(f.a)(n);function n(e){return Object(s.a)(this,n),(e=t.call(this,e)).field=new l.a(Object(d.a)(e)),e.dataId=Object(g.a)("dataId")||"yanlin",e.group=Object(g.a)("group")||"DEFAULT_GROUP",e.serverId=Object(g.a)("serverId")||"center",e.nid=Object(g.a)("nid")||"",e.state={envName:"",visible:!1,showmore:!1},e}return Object(u.a)(n,[{key:"componentDidMount",value:function(){var e=this.props.locale,e=void 0===e?{}:e;this.typeMap={U:"publish",I:e.rollbackDelete,D:"publish"},this.typeMapName={U:e.update,I:e.insert,D:e.rollbackDelete},this.getDataDetail()}},{key:"toggleMore",value:function(){this.setState({showmore:!this.state.showmore})}},{key:"getDataDetail",value:function(){var n=this,e=(this.tenant=Object(g.a)("namespace")||"",this.serverId=Object(g.a)("serverId")||"center","v1/cs/history?dataId=".concat(this.dataId,"&group=").concat(this.group,"&nid=").concat(this.nid));Object(g.b)({url:e,success:function(e){var t;null!=e&&(t=n.serverId,n.id=(e=e).id,n.field.setValue("dataId",e.dataId),n.field.setValue("content",e.content),n.field.setValue("appName",e.appName),n.field.setValue("opType",e.opType.trim()),n.opType=e.opType,n.field.setValue("group",e.group),n.field.setValue("md5",e.md5),n.field.setValue("envName",t),n.setState({envName:t}))}})}},{key:"goList",value:function(){var e=Object(g.a)("namespace"),t=this.serverId,n=this.dataId,a=this.group;this.props.history.push(Object(y.a)("/historyRollback",{serverId:t,dataId:n,group:a,namespace:e}))}},{key:"onOpenConfirm",value:function(){var e=this.props.locale,n=void 0===e?{}:e,a=this,r="post",e="";"I"===this.opType.trim()&&(r="delete",e=n.additionalRollbackMessage),i.a.confirm({title:n.rollBack,content:m.a.createElement("div",{style:{marginTop:"-20px",maxWidth:"500px"}},m.a.createElement("h3",null,n.determine," ",n.followingConfiguration," ",e),m.a.createElement("p",null,m.a.createElement("span",{style:{color:"#999",marginRight:5}},"Data ID"),m.a.createElement("span",{style:{color:"#c7254e"}},a.field.getValue("dataId"))),m.a.createElement("p",null,m.a.createElement("span",{style:{color:"#999",marginRight:5}},"Group"),m.a.createElement("span",{style:{color:"#c7254e"}},a.field.getValue("group")))),onOk:function(){a.tenant=Object(g.a)("namespace")||"",a.serverId=Object(g.a)("serverId")||"center",a.dataId=a.field.getValue("dataId"),a.group=a.field.getValue("group");var e={appName:a.field.getValue("appName"),dataId:a.dataId,group:a.group,content:a.field.getValue("content"),tenant:a.tenant},t="v1/cs/configs";"I"===a.opType.trim()&&(t="v1/cs/configs?dataId=".concat(a.dataId,"&group=").concat(a.group),e={}),Object(g.b)({type:r,contentType:"application/x-www-form-urlencoded",url:t,data:e,success:function(e){!0===e&&i.a.alert({content:n.rollbackSuccessful})}})}})}},{key:"getOpType",value:function(e,t){return e?{U:t.update,I:t.insert,D:t.deleteAction}[e]:""}},{key:"render",value:function(){var e=this.props.locale,e=void 0===e?{}:e,t=this.field.init,n={labelCol:{fixedSpan:6},wrapperCol:{span:18}},a=this.getOpType;return m.a.createElement("div",null,m.a.createElement("h1",null,e.configurationRollback),m.a.createElement(h.a,{field:this.field},m.a.createElement(v,Object.assign({label:e.namespace,required:!0},n),m.a.createElement("p",null,this.tenant)),m.a.createElement(v,Object.assign({label:"Data ID",required:!0},n),m.a.createElement(o.a,Object.assign({htmlType:"text",readOnly:!0},t("dataId"))),m.a.createElement("div",{style:{marginTop:10}},m.a.createElement("a",{style:{fontSize:"12px"},onClick:this.toggleMore.bind(this)},this.state.showmore?e.collapse:e.more))),m.a.createElement("div",{style:{overflow:"hidden",height:this.state.showmore?"auto":"0"}},m.a.createElement(v,Object.assign({label:"Group:",required:!0},n),m.a.createElement(o.a,Object.assign({htmlType:"text",readOnly:!0},t("group")))),m.a.createElement(v,Object.assign({label:e.home},n),m.a.createElement(o.a,Object.assign({htmlType:"text",readOnly:!0},t("appName"))))),m.a.createElement(v,Object.assign({label:e.actionType,required:!0},n),m.a.createElement(o.a,{htmlType:"text",readOnly:!0,value:a(t("opType").value,e)})),m.a.createElement(v,Object.assign({label:"MD5:",required:!0},n),m.a.createElement(o.a,Object.assign({htmlType:"text",readOnly:!0},t("md5")))),m.a.createElement(v,Object.assign({label:e.configuration,required:!0},n),m.a.createElement(o.a.TextArea,Object.assign({htmlType:"text",multiple:!0,rows:15,readOnly:!0},t("content")))),m.a.createElement(v,Object.assign({label:" "},n),m.a.createElement(r.a,{type:"primary",style:{marginRight:10},onClick:this.onOpenConfirm.bind(this)},e.rollBack),m.a.createElement(r.a,{type:"normal",onClick:this.goList.bind(this)},e.back))))}}]),n}(m.a.Component)).displayName="ConfigRollback",n=p))||n;t.a=a},function(e,t,n){"use strict";n(32);var a=n(18),r=n.n(a),a=(n(36),n(10)),o=n.n(a),a=(n(39),n(5)),i=n.n(a),a=(n(49),n(27)),l=n.n(a),s=n(14),u=n(15),d=n(22),c=n(17),f=n(16),a=(n(26),n(8)),a=n.n(a),p=n(0),h=n.n(p),m=n(1),a=(n(691),(0,a.a.config)(((p=function(e){Object(c.a)(n,e);var t=Object(f.a)(n);function n(e){return Object(s.a)(this,n),(e=t.call(this,e)).state={showmore:!1},e.edasAppName=Object(m.a)("edasAppName"),e.edasAppId=Object(m.a)("edasAppId"),e.inApp=e.edasAppName,e.field=new l.a(Object(d.a)(e)),e.dataId=Object(m.a)("dataId")||"yanlin",e.group=Object(m.a)("group")||"DEFAULT_GROUP",e.serverId=Object(m.a)("serverId")||"center",e.nid=Object(m.a)("nid")||"123509854",e.tenant=Object(m.a)("namespace")||"",e}return Object(u.a)(n,[{key:"componentDidMount",value:function(){this.getDataDetail()}},{key:"toggleMore",value:function(){this.setState({showmore:!this.state.showmore})}},{key:"getDataDetail",value:function(){this.props.locale;var t=this;Object(m.b)({url:"v1/cs/history?dataId=".concat(this.dataId,"&group=").concat(this.group,"&nid=").concat(this.nid),success:function(e){null!=e&&(t.field.setValue("dataId",(e=e).dataId),t.field.setValue("content",e.content),t.field.setValue("appName",t.inApp?t.edasAppName:e.appName),t.field.setValue("envs",t.serverId),t.field.setValue("srcUser",e.srcUser),t.field.setValue("srcIp",e.srcIp),t.field.setValue("opType",e.opType.trim()),t.field.setValue("group",e.group),t.field.setValue("md5",e.md5))}})}},{key:"goList",value:function(){this.props.history.push("/historyRollback?serverId=".concat(this.serverId,"&historyGroup=").concat(this.group,"&historyDataId=").concat(this.dataId,"&namespace=").concat(this.tenant))}},{key:"getOpType",value:function(e,t){return e?{U:t.update,I:t.insert,D:t.deleteAction}[e]:""}},{key:"render",value:function(){var e=this.props.locale,e=void 0===e?{}:e,t=this.field.init,n={labelCol:{fixedSpan:6},wrapperCol:{span:18}},a=this.getOpType;return h.a.createElement("div",null,h.a.createElement("h1",null,e.historyDetails),h.a.createElement(i.a,{field:this.field},h.a.createElement(i.a.Item,Object.assign({label:e.namespace,required:!0},n),h.a.createElement("p",null,this.tenant)),h.a.createElement(i.a.Item,Object.assign({label:"Data ID",required:!0},n),h.a.createElement(o.a,Object.assign({htmlType:"text",readOnly:!0},t("dataId"))),h.a.createElement("div",{style:{marginTop:10}},h.a.createElement("a",{style:{fontSize:"12px"},onClick:this.toggleMore.bind(this)},this.state.showmore?e.recipientFrom:e.moreAdvancedOptions))),h.a.createElement("div",{style:{overflow:"hidden",height:this.state.showmore?"auto":"0"}},h.a.createElement(i.a.Item,Object.assign({label:"Group",required:!0},n),h.a.createElement(o.a,Object.assign({htmlType:"text",readOnly:!0},t("group")))),h.a.createElement(i.a.Item,Object.assign({label:e.home},n),h.a.createElement(o.a,Object.assign({htmlType:"text",readOnly:!0},t("appName"))))),h.a.createElement(i.a.Item,Object.assign({label:e.operator,required:!0},n),h.a.createElement(o.a,Object.assign({htmlType:"text",readOnly:!0},t("srcUser")))),h.a.createElement(i.a.Item,Object.assign({label:e.sourceIp,required:!0},n),h.a.createElement(o.a,Object.assign({htmlType:"text",readOnly:!0},t("srcIp")))),h.a.createElement(i.a.Item,Object.assign({label:e.actionType,required:!0},n),h.a.createElement(o.a,{htmlType:"text",readOnly:!0,value:a(t("opType").value,e)})),h.a.createElement(i.a.Item,Object.assign({label:"MD5:",required:!0},n),h.a.createElement(o.a,Object.assign({htmlType:"text",readOnly:!0},t("md5")))),h.a.createElement(i.a.Item,Object.assign({label:e.configureContent,required:!0},n),h.a.createElement(o.a.TextArea,Object.assign({htmlType:"text",multiple:!0,rows:15,readOnly:!0},t("content")))),h.a.createElement(i.a.Item,Object.assign({label:" "},n),h.a.createElement(r.a,{type:"primary",onClick:this.goList.bind(this)},e.back))))}}]),n}(h.a.Component)).displayName="HistoryDetail",n=p))||n);t.a=a},function(e,t,n){"use strict";n(52);var a=n(33),r=n.n(a),a=(n(32),n(18)),o=n.n(a),a=(n(109),n(71)),i=n.n(a),a=(n(39),n(5)),l=n.n(a),a=(n(36),n(10)),s=n.n(a),a=(n(35),n(19)),u=n.n(a),a=(n(49),n(27)),d=n.n(a),c=n(14),f=n(15),p=n(22),h=n(17),m=n(16),a=(n(26),n(8)),a=n.n(a),g=n(0),y=n.n(g),v=n(105),_=n(1),b=n(47),a=(n(682),(0,a.a.config)(((g=function(e){Object(h.a)(n,e);var t=Object(m.a)(n);function n(e){return Object(c.a)(this,n),(e=t.call(this,e)).successDialog=y.a.createRef(),e.field=new d.a(Object(p.a)(e)),e.dataId=Object(_.a)("dataId")||"yanlin",e.group=Object(_.a)("group")||"",e.serverId=Object(_.a)("serverId")||"",e.state={configType:0,envvalues:[],commonvalue:[],envComponent:"",envGroups:[],envlist:[],loading:!1,showmore:!1},e.codeValue="",e.mode="text",e.ips="",e}return Object(f.a)(n,[{key:"componentDidMount",value:function(){this.getDataDetail()}},{key:"toggleMore",value:function(){this.setState({showmore:!this.state.showmore})}},{key:"getEnvList",value:function(e){this.setState({envvalues:e}),this.envs=e}},{key:"getDomain",value:function(){var t=this;Object(_.b)({url:"/diamond-ops/env/domain",success:function(e){200===e.code&&(e=e.data.envGroups,t.setState({envGroups:e}))}})}},{key:"getDataDetail",value:function(){var i=this,e=this.props.locale,l=void 0===e?{}:e,e=(this.tenant=Object(_.a)("namespace")||"",this.serverId=Object(_.a)("serverId")||"center","/diamond-ops/configList/detail/serverId/".concat(this.serverId,"/dataId/").concat(this.dataId,"/group/").concat(this.group,"/tenant/").concat(this.tenant,"?id="));"global"!==this.tenant&&this.tenant||(e="/diamond-ops/configList/detail/serverId/".concat(this.serverId,"/dataId/").concat(this.dataId,"/group/").concat(this.group,"?id=")),Object(_.b)({url:e,beforeSend:function(){i.openLoading()},success:function(e){if(200===e.code){for(var t=e.data,t=void 0===t?{}:t,n=(i.field.setValue("dataId",t.dataId),i.field.setValue("appName",t.appName),i.field.setValue("group",t.group),i.field.setValue("content",t.content||""),t.envs||[]),a=[],r=[],o=0;o<n.length;o++)r.push({value:n[o].serverId,label:n[o].name}),n[o].serverId===i.serverId&&a.push(i.serverId);i.setState({envlist:r,envvalues:a})}else u.a.alert({title:l.error,content:e.message})},complete:function(){i.closeLoading()}})}},{key:"goList",value:function(){this.props.history.push("/configurationManagement?serverId=".concat(this.serverId,"&group=").concat(this.group,"&dataId=").concat(this.dataId))}},{key:"sync",value:function(){var n=this,e=this.props.locale,a=void 0===e?{}:e,r={dataId:this.field.getValue("dataId"),appName:this.field.getValue("appName"),group:this.field.getValue("group"),content:this.field.getValue("content"),betaIps:this.ips,targetEnvs:this.envs};Object(_.b)({type:"put",contentType:"application/json",url:"/diamond-ops/configList/serverId/".concat(this.serverId,"/dataId/").concat(r.dataId,"/group/").concat(r.group,"?id="),data:JSON.stringify(r),success:function(e){var t={};t.maintitle=a.syncConfigurationMain,t.title=a.syncConfiguration,t.content="",t.dataId=r.dataId,t.group=r.group,t.isok=200===e.code,t.isok||(t.isok=!1,t.message=e.message),n.successDialog.current.openDialog(t)}})}},{key:"syncResult",value:function(){var e=this.field.getValue("dataId"),t=this.field.getValue("group");this.props.history.push(Object(b.a)("/diamond-ops/static/pages/config-sync/index.html",{dataId:e,gruop:t}))}},{key:"changeEnv",value:function(e){this.targetEnvs=e,this.setState({envvalues:e})}},{key:"getIps",value:function(e){this.ips=e}},{key:"goResult",value:function(){var e=this.serverId,t=this.dataId,n=this.group;this.props.history.push(Object(b.a)("/consistencyEfficacy",{serverId:e,dataId:t,group:n}))}},{key:"openLoading",value:function(){this.setState({loading:!0})}},{key:"closeLoading",value:function(){this.setState({loading:!1})}},{key:"render",value:function(){var e=this.field.init,t=this.props.locale,t=void 0===t?{}:t,n={labelCol:{span:2},wrapperCol:{span:22}};return y.a.createElement("div",null,y.a.createElement(r.a,{shape:"flower",style:{position:"relative",width:"100%"},visible:this.state.loading,tip:"Loading...",color:"#333"},y.a.createElement("h1",null,t.syncConfiguration),y.a.createElement(l.a,{field:this.field},y.a.createElement(l.a.Item,Object.assign({label:"Data ID",required:!0},n),y.a.createElement(s.a,Object.assign({htmlType:"text",disabled:"disabled"},e("dataId"))),y.a.createElement("div",{style:{marginTop:10}},y.a.createElement("a",{style:{fontSize:"12px"},onClick:this.toggleMore.bind(this)},this.state.showmore?t.collapse:t.advancedOptions))),y.a.createElement("div",{style:{overflow:"hidden",height:this.state.showmore?"auto":"0"}},y.a.createElement(l.a.Item,Object.assign({label:"Group ID",required:!0},n),y.a.createElement(s.a,Object.assign({htmlType:"text",disabled:"disabled"},e("group")))),y.a.createElement(l.a.Item,Object.assign({label:t.home,required:!0},n),y.a.createElement(s.a,Object.assign({htmlType:"text",disabled:"disabled"},e("appName"))))),y.a.createElement(l.a.Item,Object.assign({label:t.region,required:!0},n),y.a.createElement(s.a,Object.assign({htmlType:"text",disabled:"disabled"},e("envs")))),y.a.createElement(l.a.Item,Object.assign({label:t.configuration,required:!0},n),y.a.createElement(s.a.TextArea,Object.assign({htmlType:"text",multiple:!0,rows:15,disabled:"disabled"},e("content")))),y.a.createElement(l.a.Item,Object.assign({label:t.target,required:!0},n),y.a.createElement("div",null,y.a.createElement(i.a.Group,{value:this.state.envvalues,onChange:this.changeEnv.bind(this),dataSource:this.state.envlist}))),y.a.createElement(l.a.Item,Object.assign({label:" "},n),y.a.createElement("div",{style:{textAlign:"right"}},y.a.createElement(o.a,{type:"primary",onClick:this.sync.bind(this),style:{marginRight:10}},t.sync),y.a.createElement(o.a,{type:"light",onClick:this.goList.bind(this)},t.back)))),y.a.createElement(v.a,{ref:this.successDialog})))}}]),n}(y.a.Component)).displayName="ConfigSync",n=g))||n);t.a=a},function(e,t,F){"use strict";F.r(t),function(e){F(52);var t=F(33),a=F.n(t),t=(F(26),F(8)),r=F.n(t),o=F(14),i=F(15),l=F(17),s=F(16),n=F(21),t=F(0),u=F.n(t),t=F(23),t=F.n(t),d=F(119),c=F(411),f=F(423),p=F(37),h=F(40),m=F(81),g=(F(458),F(437)),y=F(28),v=F(435),_=F(426),b=F(434),w=F(442),M=F(427),k=F(432),S=F(441),E=F(440),x=F(439),C=F(438),L=F(424),T=F(429),D=F(425),O=F(436),N=F(433),P=F(431),j=F(430),I=F(428),R=F(421),Y=F(422),A=F(104),e=(F(744),e.hot,localStorage.getItem(y.f)||localStorage.setItem(y.f,"zh-CN"===navigator.language?"zh-CN":"en-US"),Object(d.b)(Object(n.a)(Object(n.a)({},Y.a),{},{routing:c.routerReducer}))),Y=Object(d.d)(e,Object(d.c)(Object(d.a)(f.a),window[y.i]?window[y.i]():function(e){return e})),H=[{path:"/",exact:!0,render:function(){return u.a.createElement(h.a,{to:"/welcome"})}},{path:"/welcome",component:R.a},{path:"/namespace",component:_.a},{path:"/newconfig",component:b.a},{path:"/configsync",component:w.a},{path:"/configdetail",component:M.a},{path:"/configeditor",component:k.a},{path:"/historyDetail",component:S.a},{path:"/configRollback",component:E.a},{path:"/historyRollback",component:x.a},{path:"/listeningToQuery",component:C.a},{path:"/configurationManagement",component:L.a},{path:"/serviceManagement",component:T.a},{path:"/serviceDetail",component:D.a},{path:"/subscriberList",component:O.a},{path:"/clusterManagement",component:N.a},{path:"/userManagement",component:P.a},{path:"/rolesManagement",component:I.a},{path:"/permissionsManagement",component:j.a}],e=Object(p.b)(function(e){return Object(n.a)({},e.locale)},{changeLanguage:A.a})(c=function(e){Object(l.a)(n,e);var t=Object(s.a)(n);function n(e){return Object(o.a)(this,n),(e=t.call(this,e)).state={shownotice:"none",noticecontent:"",nacosLoading:{}},e}return Object(i.a)(n,[{key:"componentDidMount",value:function(){var e=localStorage.getItem(y.f);this.props.changeLanguage(e)}},{key:"router",get:function(){return u.a.createElement(m.a,null,u.a.createElement(h.d,null,u.a.createElement(h.b,{path:"/login",component:v.a}),u.a.createElement(g.a,null,H.map(function(e){return u.a.createElement(h.b,Object.assign({key:e.path},e))}))))}},{key:"render",value:function(){var e=this.props.locale;return u.a.createElement(a.a,Object.assign({className:"nacos-loading",shape:"flower",tip:"loading...",visible:!1,fullScreen:!0},this.state.nacosLoading),u.a.createElement(r.a,{locale:e},this.router))}}]),n}(u.a.Component))||c;t.a.render(u.a.createElement(p.a,{store:Y},u.a.createElement(e,null)),document.getElementById("root"))}.call(this,F(444)(e))},function(e,t){e.exports=function(e){var t;return e.webpackPolyfill||((t=Object.create(e)).children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1),t}},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(I,e,t){"use strict"; |
| | | /** @license React v16.14.0 |
| | | * react.production.min.js |
| | | * |
| | | * Copyright (c) Facebook, Inc. and its affiliates. |
| | | * |
| | | * This source code is licensed under the MIT license found in the |
| | | * LICENSE file in the root directory of this source tree. |
| | | */var d=t(186),t="function"==typeof Symbol&&Symbol.for,c=t?Symbol.for("react.element"):60103,u=t?Symbol.for("react.portal"):60106,n=t?Symbol.for("react.fragment"):60107,a=t?Symbol.for("react.strict_mode"):60108,r=t?Symbol.for("react.profiler"):60114,o=t?Symbol.for("react.provider"):60109,i=t?Symbol.for("react.context"):60110,l=t?Symbol.for("react.forward_ref"):60112,s=t?Symbol.for("react.suspense"):60113,f=t?Symbol.for("react.memo"):60115,p=t?Symbol.for("react.lazy"):60116,h="function"==typeof Symbol&&Symbol.iterator;function m(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var g={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},y={};function v(e,t,n){this.props=e,this.context=t,this.refs=y,this.updater=n||g}function _(){}function b(e,t,n){this.props=e,this.context=t,this.refs=y,this.updater=n||g}v.prototype.isReactComponent={},v.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(m(85));this.updater.enqueueSetState(this,e,t,"setState")},v.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},_.prototype=v.prototype;var t=b.prototype=new _,w=(t.constructor=b,d(t,v.prototype),t.isPureReactComponent=!0,{current:null}),M=Object.prototype.hasOwnProperty,k={key:!0,ref:!0,__self:!0,__source:!0};function S(e,t,n){var a,r={},o=null,i=null;if(null!=t)for(a in void 0!==t.ref&&(i=t.ref),void 0!==t.key&&(o=""+t.key),t)M.call(t,a)&&!k.hasOwnProperty(a)&&(r[a]=t[a]);var l=arguments.length-2;if(1===l)r.children=n;else if(1<l){for(var s=Array(l),u=0;u<l;u++)s[u]=arguments[u+2];r.children=s}if(e&&e.defaultProps)for(a in l=e.defaultProps)void 0===r[a]&&(r[a]=l[a]);return{$$typeof:c,type:e,key:o,ref:i,props:r,_owner:w.current}}function E(e){return"object"==typeof e&&null!==e&&e.$$typeof===c}var x=/\/+/g,C=[];function L(e,t,n,a){var r;return C.length?((r=C.pop()).result=e,r.keyPrefix=t,r.func=n,r.context=a,r.count=0,r):{result:e,keyPrefix:t,func:n,context:a,count:0}}function T(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,C.length<10&&C.push(e)}function D(e,t,n){return null==e?0:function e(t,n,a,r){var o=!1;if(null===(t="undefined"!=(l=typeof t)&&"boolean"!==l?t:null))o=!0;else switch(l){case"string":case"number":o=!0;break;case"object":switch(t.$$typeof){case c:case u:o=!0}}if(o)return a(r,t,""===n?"."+O(t,0):n),1;if(o=0,n=""===n?".":n+":",Array.isArray(t))for(var i=0;i<t.length;i++){var l,s=n+O(l=t[i],i);o+=e(l,s,a,r)}else if("function"==typeof(s=null!==t&&"object"==typeof t&&"function"==typeof(s=h&&t[h]||t["@@iterator"])?s:null))for(t=s.call(t),i=0;!(l=t.next()).done;)o+=e(l=l.value,s=n+O(l,i++),a,r);else if("object"===l)throw a=""+t,Error(m(31,"[object Object]"===a?"object with keys {"+Object.keys(t).join(", ")+"}":a,""));return o}(e,"",t,n)}function O(e,t){return"object"==typeof e&&null!==e&&null!=e.key?(e=e.key,n={"=":"=0",":":"=2"},"$"+(""+e).replace(/[=:]/g,function(e){return n[e]})):t.toString(36);var n}function N(e,t){e.func.call(e.context,t,e.count++)}function R(e,t,n){var a=e.result,r=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?P(e,a,n,function(e){return e}):null!=e&&(E(e)&&(t=r+(!(r=e).key||t&&t.key===e.key?"":(""+e.key).replace(x,"$&/")+"/")+n,e={$$typeof:c,type:r.type,key:t,ref:r.ref,props:r.props,_owner:r._owner}),a.push(e))}function P(e,t,n,a,r){var o="";D(e,R,t=L(t,o=null!=n?(""+n).replace(x,"$&/")+"/":o,a,r)),T(t)}var j={current:null};function Y(){var e=j.current;if(null===e)throw Error(m(321));return e}t={ReactCurrentDispatcher:j,ReactCurrentBatchConfig:{suspense:null},ReactCurrentOwner:w,IsSomeRendererActing:{current:!1},assign:d};e.Children={map:function(e,t,n){if(null==e)return e;var a=[];return P(e,a,null,t,n),a},forEach:function(e,t,n){if(null==e)return e;D(e,N,t=L(null,null,t,n)),T(t)},count:function(e){return D(e,function(){return null},null)},toArray:function(e){var t=[];return P(e,t,null,function(e){return e}),t},only:function(e){if(E(e))return e;throw Error(m(143))}},e.Component=v,e.Fragment=n,e.Profiler=r,e.PureComponent=b,e.StrictMode=a,e.Suspense=s,e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=t,e.cloneElement=function(e,t,n){if(null==e)throw Error(m(267,e));var a=d({},e.props),r=e.key,o=e.ref,i=e._owner;if(null!=t)for(l in void 0!==t.ref&&(o=t.ref,i=w.current),void 0!==t.key&&(r=""+t.key),e.type&&e.type.defaultProps&&(s=e.type.defaultProps),t)M.call(t,l)&&!k.hasOwnProperty(l)&&(a[l]=(void 0===t[l]&&void 0!==s?s:t)[l]);var l=arguments.length-2;if(1===l)a.children=n;else if(1<l){for(var s=Array(l),u=0;u<l;u++)s[u]=arguments[u+2];a.children=s}return{$$typeof:c,type:e.type,key:r,ref:o,props:a,_owner:i}},e.createContext=function(e,t){return(e={$$typeof:i,_calculateChangedBits:t=void 0===t?null:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:o,_context:e},e.Consumer=e},e.createElement=S,e.createFactory=function(e){var t=S.bind(null,e);return t.type=e,t},e.createRef=function(){return{current:null}},e.forwardRef=function(e){return{$$typeof:l,render:e}},e.isValidElement=E,e.lazy=function(e){return{$$typeof:p,_ctor:e,_status:-1,_result:null}},e.memo=function(e,t){return{$$typeof:f,type:e,compare:void 0===t?null:t}},e.useCallback=function(e,t){return Y().useCallback(e,t)},e.useContext=function(e,t){return Y().useContext(e,t)},e.useDebugValue=function(){},e.useEffect=function(e,t){return Y().useEffect(e,t)},e.useImperativeHandle=function(e,t,n){return Y().useImperativeHandle(e,t,n)},e.useLayoutEffect=function(e,t){return Y().useLayoutEffect(e,t)},e.useMemo=function(e,t){return Y().useMemo(e,t)},e.useReducer=function(e,t,n){return Y().useReducer(e,t,n)},e.useRef=function(e){return Y().useRef(e)},e.useState=function(e){return Y().useState(e)},e.version="16.14.0"},function(b,e,t){"use strict"; |
| | | /** @license React v16.14.0 |
| | | * react-dom.production.min.js |
| | | * |
| | | * Copyright (c) Facebook, Inc. and its affiliates. |
| | | * |
| | | * This source code is licensed under the MIT license found in the |
| | | * LICENSE file in the root directory of this source tree. |
| | | */var w=t(0),y=t(186),r=t(452);function R(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!w)throw Error(R(227));var A=!1,H=null,F=!1,z=null,W={onError:function(e){A=!0,H=e}};function V(e,t,n,a,r,o,i,l,s){A=!1,H=null,function(e,t,n,a,r,o,i,l,s){var u=Array.prototype.slice.call(arguments,3);try{t.apply(n,u)}catch(e){this.onError(e)}}.apply(W,arguments)}var B=null,U=null,K=null;function G(e,t,n){var a=e.type||"unknown-event";e.currentTarget=K(n),function(){var e;V.apply(this,arguments),A&&(e=H,A=!1,H=null,F||(F=!0,z=e))}(a,t,void 0,e),e.currentTarget=null}var q=null,$={};function J(){if(q)for(var e in $){var t=$[e],n=q.indexOf(e);if(!(-1<n))throw Error(R(96,e));if(!Q[n]){if(!t.extractEvents)throw Error(R(97,e));for(var a in n=(Q[n]=t).eventTypes){var r=void 0,o=n[a],i=t,l=a;if(Z.hasOwnProperty(l))throw Error(R(99,l));var s=(Z[l]=o).phasedRegistrationNames;if(s){for(r in s)s.hasOwnProperty(r)&&X(s[r],i,l);r=!0}else r=!!o.registrationName&&(X(o.registrationName,i,l),!0);if(!r)throw Error(R(98,a,e))}}}}function X(e,t,n){if(ee[e])throw Error(R(100,e));ee[e]=t,te[e]=t.eventTypes[n].dependencies}var Q=[],Z={},ee={},te={};function ne(e){var t,n=!1;for(t in e)if(e.hasOwnProperty(t)){var a=e[t];if(!$.hasOwnProperty(t)||$[t]!==a){if($[t])throw Error(R(102,t));$[t]=a,n=!0}}n&&J()}var ae=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),re=null,oe=null,ie=null;function le(e){if(e=U(e)){if("function"!=typeof re)throw Error(R(280));var t=e.stateNode;t&&(t=B(t),re(e.stateNode,e.type,t))}}function se(e){oe?ie?ie.push(e):ie=[e]:oe=e}function ue(){if(oe){var e=oe,t=ie;if(ie=oe=null,le(e),t)for(e=0;e<t.length;e++)le(t[e])}}function de(e,t){return e(t)}function ce(e,t,n,a,r){return e(t,n,a,r)}function fe(){}var pe=de,he=!1,me=!1;function ge(){null===oe&&null===ie||(fe(),ue())}function ye(e,t,n){if(me)return e(t,n);me=!0;try{pe(e,t,n)}finally{me=!1,ge()}}var ve=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,_e=Object.prototype.hasOwnProperty,be={},we={};function Me(e,t,n,a){if(null==t||function(e,t,n,a){if(null===n||0!==n.type)switch(typeof t){case"function":case"symbol":return 1;case"boolean":return a?void 0:null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e;default:return}}(e,t,n,a))return 1;if(!a&&null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||t<1}}function n(e,t,n,a,r,o){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=a,this.attributeNamespace=r,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o}var i={},ke=("children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){i[e]=new n(e,0,!1,e,null,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];i[t]=new n(t,1,!1,e[1],null,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(e){i[e]=new n(e,2,!1,e.toLowerCase(),null,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){i[e]=new n(e,2,!1,e,null,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){i[e]=new n(e,3,!1,e.toLowerCase(),null,!1)}),["checked","multiple","muted","selected"].forEach(function(e){i[e]=new n(e,3,!0,e,null,!1)}),["capture","download"].forEach(function(e){i[e]=new n(e,4,!1,e,null,!1)}),["cols","rows","size","span"].forEach(function(e){i[e]=new n(e,6,!1,e,null,!1)}),["rowSpan","start"].forEach(function(e){i[e]=new n(e,5,!1,e.toLowerCase(),null,!1)}),/[\-:]([a-z])/g);function Se(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(ke,Se);i[t]=new n(t,1,!1,e,null,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(ke,Se);i[t]=new n(t,1,!1,e,"http://www.w3.org/1999/xlink",!1)}),["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(ke,Se);i[t]=new n(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1)}),["tabIndex","crossOrigin"].forEach(function(e){i[e]=new n(e,1,!1,e.toLowerCase(),null,!1)}),i.xlinkHref=new n("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0),["src","href","action","formAction"].forEach(function(e){i[e]=new n(e,1,!1,e.toLowerCase(),null,!0)});t=w.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function Ee(e,t,n,a){var r,o=i.hasOwnProperty(t)?i[t]:null;(null!==o?0!==o.type:a||(!(2<t.length)||"o"!==t[0]&&"O"!==t[0]||"n"!==t[1]&&"N"!==t[1]))&&(Me(t,n,o,a)&&(n=null),a||null===o?(r=t,(_e.call(we,r)||!_e.call(be,r)&&(ve.test(r)?we[r]=!0:void(be[r]=!0)))&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n))):o.mustUseProperty?e[o.propertyName]=null===n?3!==o.type&&"":n:(t=o.attributeName,a=o.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(o=o.type)||4===o&&!0===n?"":""+n,a?e.setAttributeNS(a,t,n):e.setAttribute(t,n))))}t.hasOwnProperty("ReactCurrentDispatcher")||(t.ReactCurrentDispatcher={current:null}),t.hasOwnProperty("ReactCurrentBatchConfig")||(t.ReactCurrentBatchConfig={suspense:null});var xe=/^(.*)[\\\/]/,a="function"==typeof Symbol&&Symbol.for,Ce=a?Symbol.for("react.element"):60103,Le=a?Symbol.for("react.portal"):60106,Te=a?Symbol.for("react.fragment"):60107,De=a?Symbol.for("react.strict_mode"):60108,Oe=a?Symbol.for("react.profiler"):60114,Ne=a?Symbol.for("react.provider"):60109,Pe=a?Symbol.for("react.context"):60110,je=a?Symbol.for("react.concurrent_mode"):60111,Ye=a?Symbol.for("react.forward_ref"):60112,Ie=a?Symbol.for("react.suspense"):60113,Re=a?Symbol.for("react.suspense_list"):60120,Ae=a?Symbol.for("react.memo"):60115,He=a?Symbol.for("react.lazy"):60116,Fe=a?Symbol.for("react.block"):60121,ze="function"==typeof Symbol&&Symbol.iterator;function We(e){return null!==e&&"object"==typeof e&&"function"==typeof(e=ze&&e[ze]||e["@@iterator"])?e:null}function Ve(e){if(null!=e){if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case Te:return"Fragment";case Le:return"Portal";case Oe:return"Profiler";case De:return"StrictMode";case Ie:return"Suspense";case Re:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case Pe:return"Context.Consumer";case Ne:return"Context.Provider";case Ye:var t=(t=e.render).displayName||t.name||"";return e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case Ae:return Ve(e.type);case Fe:return Ve(e.render);case He:if(e=1===e._status?e._result:null)return Ve(e)}}return null}function Be(e){var t="";do{switch(e.tag){case 3:case 4:case 6:case 7:case 10:case 9:var n="";break;default:var a=e._debugOwner,r=e._debugSource,o=Ve(e.type),n=null;a&&(n=Ve(a.type)),a=o,o="",r?o=" (at "+r.fileName.replace(xe,"")+":"+r.lineNumber+")":n&&(o=" (created by "+n+")"),n="\n in "+(a||"Unknown")+o}}while(t+=n,e=e.return);return t}function Ue(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function Ke(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function Ge(e){e._valueTracker||(e._valueTracker=function(e){var t,n,a=Ke(e)?"checked":"value",r=Object.getOwnPropertyDescriptor(e.constructor.prototype,a),o=""+e[a];if(!e.hasOwnProperty(a)&&void 0!==r&&"function"==typeof r.get&&"function"==typeof r.set)return t=r.get,n=r.set,Object.defineProperty(e,a,{configurable:!0,get:function(){return t.call(this)},set:function(e){o=""+e,n.call(this,e)}}),Object.defineProperty(e,a,{enumerable:r.enumerable}),{getValue:function(){return o},setValue:function(e){o=""+e},stopTracking:function(){e._valueTracker=null,delete e[a]}}}(e))}function qe(e){if(e){var t=e._valueTracker;if(!t)return 1;var n=t.getValue(),a="";return(e=a=e?Ke(e)?e.checked?"true":"false":e.value:a)!==n&&(t.setValue(e),1)}}function $e(e,t){var n=t.checked;return y({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function Je(e,t){var n=null==t.defaultValue?"":t.defaultValue,a=null!=t.checked?t.checked:t.defaultChecked,n=Ue(null!=t.value?t.value:n);e._wrapperState={initialChecked:a,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function Xe(e,t){null!=(t=t.checked)&&Ee(e,"checked",t,!1)}function Qe(e,t){Xe(e,t);var n=Ue(t.value),a=t.type;if(null!=n)"number"===a?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===a||"reset"===a)return void e.removeAttribute("value");t.hasOwnProperty("value")?et(e,t.type,n):t.hasOwnProperty("defaultValue")&&et(e,t.type,Ue(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function Ze(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var a=t.type;if(!("submit"!==a&&"reset"!==a||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function et(e,t,n){"number"===t&&e.ownerDocument.activeElement===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function tt(e,t){var n,a;return e=y({children:void 0},t),n=t.children,a="",w.Children.forEach(n,function(e){null!=e&&(a+=e)}),(t=a)&&(e.children=t),e}function nt(e,t,n,a){if(e=e.options,t){t={};for(var r=0;r<n.length;r++)t["$"+n[r]]=!0;for(n=0;n<e.length;n++)r=t.hasOwnProperty("$"+e[n].value),e[n].selected!==r&&(e[n].selected=r),r&&a&&(e[n].defaultSelected=!0)}else{for(n=""+Ue(n),t=null,r=0;r<e.length;r++){if(e[r].value===n)return e[r].selected=!0,void(a&&(e[r].defaultSelected=!0));null!==t||e[r].disabled||(t=e[r])}null!==t&&(t.selected=!0)}}function at(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(R(91));return y({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function rt(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(R(92));if(Array.isArray(n)){if(!(n.length<=1))throw Error(R(93));n=n[0]}t=n}n=t=null==t?"":t}e._wrapperState={initialValue:Ue(n)}}function ot(e,t){var n=Ue(t.value),a=Ue(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=a&&(e.defaultValue=""+a)}function it(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var a="http://www.w3.org/1999/xhtml",lt="http://www.w3.org/2000/svg";function st(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function ut(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?st(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}ct=function(e,t){if(e.namespaceURI!==lt||"innerHTML"in e)e.innerHTML=t;else{for((dt=dt||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=dt.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}};var dt,ct,ft="undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,a){MSApp.execUnsafeLocalFunction(function(){return ct(e,t)})}:ct;function pt(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}function ht(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var mt={animationend:ht("Animation","AnimationEnd"),animationiteration:ht("Animation","AnimationIteration"),animationstart:ht("Animation","AnimationStart"),transitionend:ht("Transition","TransitionEnd")},gt={},yt={};function vt(e){if(gt[e])return gt[e];if(mt[e]){var t,n=mt[e];for(t in n)if(n.hasOwnProperty(t)&&t in yt)return gt[e]=n[t]}return e}ae&&(yt=document.createElement("div").style,"AnimationEvent"in window||(delete mt.animationend.animation,delete mt.animationiteration.animation,delete mt.animationstart.animation),"TransitionEvent"in window||delete mt.transitionend.transition);var _t=vt("animationend"),bt=vt("animationiteration"),wt=vt("animationstart"),Mt=vt("transitionend"),kt="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),St=new("function"==typeof WeakMap?WeakMap:Map);function Et(e){var t=St.get(e);return void 0===t&&(t=new Map,St.set(e,t)),t}function xt(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else for(e=t;0!=(1026&(t=e).effectTag)&&(n=t.return),e=t.return;);return 3===t.tag?n:null}function Ct(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&(null!==(e=e.alternate)&&(t=e.memoizedState)),null!==t)return t.dehydrated}return null}function Lt(e){if(xt(e)!==e)throw Error(R(188))}function Tt(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=xt(e)))throw Error(R(188));return t!==e?null:e}for(var n=e,a=t;;){var r=n.return;if(null===r)break;var o=r.alternate;if(null===o){if(null===(a=r.return))break;n=a}else{if(r.child===o.child){for(o=r.child;o;){if(o===n)return Lt(r),e;if(o===a)return Lt(r),t;o=o.sibling}throw Error(R(188))}if(n.return!==a.return)n=r,a=o;else{for(var i=!1,l=r.child;l;){if(l===n){i=!0,n=r,a=o;break}if(l===a){i=!0,a=r,n=o;break}l=l.sibling}if(!i){for(l=o.child;l;){if(l===n){i=!0,n=o,a=r;break}if(l===a){i=!0,a=o,n=r;break}l=l.sibling}if(!i)throw Error(R(189))}}if(n.alternate!==a)throw Error(R(190))}}if(3!==n.tag)throw Error(R(188));return n.stateNode.current===n?e:t}(e))for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t=(t.child.return=t).child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Dt(e,t){if(null==t)throw Error(R(30));return null==e?t:Array.isArray(e)?(Array.isArray(t)?e.push.apply(e,t):e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}function Ot(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}var Nt=null;function Pt(e){if(e){var t=e._dispatchListeners,n=e._dispatchInstances;if(Array.isArray(t))for(var a=0;a<t.length&&!e.isPropagationStopped();a++)G(e,t[a],n[a]);else t&&G(e,t,n);e._dispatchListeners=null,e._dispatchInstances=null,e.isPersistent()||e.constructor.release(e)}}function jt(e){if(e=Nt=null!==e?Dt(Nt,e):Nt,Nt=null,e){if(Ot(e,Pt),Nt)throw Error(R(95));if(F)throw e=z,F=!1,z=null,e}}function Yt(e){return 3===(e=(e=e.target||e.srcElement||window).correspondingUseElement?e.correspondingUseElement:e).nodeType?e.parentNode:e}function It(e){if(!ae)return!1;var t=(e="on"+e)in document;return t||((t=document.createElement("div")).setAttribute(e,"return;"),t="function"==typeof t[e]),t}var Rt=[];function At(e){e.topLevelType=null,e.nativeEvent=null,e.targetInst=null,e.ancestors.length=0,Rt.length<10&&Rt.push(e)}function Ht(e,t,n,a){var r;return Rt.length?((r=Rt.pop()).topLevelType=e,r.eventSystemFlags=a,r.nativeEvent=t,r.targetInst=n,r):{topLevelType:e,eventSystemFlags:a,nativeEvent:t,targetInst:n,ancestors:[]}}function Ft(e){var t=a=e.targetInst;do{if(!t){e.ancestors.push(t);break}var n=t;if(3===n.tag)n=n.stateNode.containerInfo;else{for(;n.return;)n=n.return;n=3!==n.tag?null:n.stateNode.containerInfo}}while(n&&(5!==(a=t.tag)&&6!==a||e.ancestors.push(t),t=Qn(n)));for(t=0;t<e.ancestors.length;t++){var a=e.ancestors[t],r=Yt(e.nativeEvent),n=e.topLevelType,o=e.nativeEvent,i=e.eventSystemFlags;0===t&&(i|=64);for(var l=null,s=0;s<Q.length;s++){var u=Q[s];(u=u&&u.extractEvents(n,a,o,r,i))&&(l=Dt(l,u))}jt(l)}}function zt(e,t,n){if(!n.has(e)){switch(e){case"scroll":_n(t,"scroll",!0);break;case"focus":case"blur":_n(t,"focus",!0),_n(t,"blur",!0),n.set("blur",null),n.set("focus",null);break;case"cancel":case"close":It(e)&&_n(t,e,!0);break;case"invalid":case"submit":case"reset":break;default:-1===kt.indexOf(e)&&d(e,t)}n.set(e,null)}}var Wt,Vt,Bt,Ut=!1,o=[],Kt=null,Gt=null,qt=null,$t=new Map,Jt=new Map,Xt=[],Qt="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput close cancel copy cut paste click change contextmenu reset submit".split(" "),Zt="focus blur dragenter dragleave mouseover mouseout pointerover pointerout gotpointercapture lostpointercapture".split(" ");function en(e,t,n,a,r){return{blockedOn:e,topLevelType:t,eventSystemFlags:32|n,nativeEvent:r,container:a}}function tn(e,t){switch(e){case"focus":case"blur":Kt=null;break;case"dragenter":case"dragleave":Gt=null;break;case"mouseover":case"mouseout":qt=null;break;case"pointerover":case"pointerout":$t.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":Jt.delete(t.pointerId)}}function nn(e,t,n,a,r,o){return null===e||e.nativeEvent!==o?(e=en(t,n,a,r,o),null!==t&&null!==(t=Zn(t))&&Vt(t)):e.eventSystemFlags|=a,e}function an(e){if(null===e.blockedOn){var t,n=wn(e.topLevelType,e.eventSystemFlags,e.container,e.nativeEvent);if(null===n)return 1;null!==(t=Zn(n))&&Vt(t),e.blockedOn=n}}function rn(e,t,n){an(e)&&n.delete(t)}function on(){for(Ut=!1;0<o.length;){var e=o[0];if(null!==e.blockedOn){null!==(e=Zn(e.blockedOn))&&Wt(e);break}var t=wn(e.topLevelType,e.eventSystemFlags,e.container,e.nativeEvent);null!==t?e.blockedOn=t:o.shift()}null!==Kt&&an(Kt)&&(Kt=null),null!==Gt&&an(Gt)&&(Gt=null),null!==qt&&an(qt)&&(qt=null),$t.forEach(rn),Jt.forEach(rn)}function ln(e,t){e.blockedOn===t&&(e.blockedOn=null,Ut||(Ut=!0,r.unstable_scheduleCallback(r.unstable_NormalPriority,on)))}function sn(t){function e(e){return ln(e,t)}if(0<o.length){ln(o[0],t);for(var n=1;n<o.length;n++){var a=o[n];a.blockedOn===t&&(a.blockedOn=null)}}for(null!==Kt&&ln(Kt,t),null!==Gt&&ln(Gt,t),null!==qt&&ln(qt,t),$t.forEach(e),Jt.forEach(e),n=0;n<Xt.length;n++)(a=Xt[n]).blockedOn===t&&(a.blockedOn=null);for(;0<Xt.length&&null===(n=Xt[0]).blockedOn;)(function(e){var t=Qn(e.target);if(null!==t){var n=xt(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Ct(n)))return e.blockedOn=t,r.unstable_runWithPriority(e.priority,function(){Bt(n)})}else if(3===t&&n.stateNode.hydrate)return e.blockedOn=3===n.tag?n.stateNode.containerInfo:null}e.blockedOn=null})(n),null===n.blockedOn&&Xt.shift()}var un={},dn=new Map,cn=new Map,fn=["abort","abort",_t,"animationEnd",bt,"animationIteration",wt,"animationStart","canplay","canPlay","canplaythrough","canPlayThrough","durationchange","durationChange","emptied","emptied","encrypted","encrypted","ended","ended","error","error","gotpointercapture","gotPointerCapture","load","load","loadeddata","loadedData","loadedmetadata","loadedMetadata","loadstart","loadStart","lostpointercapture","lostPointerCapture","playing","playing","progress","progress","seeking","seeking","stalled","stalled","suspend","suspend","timeupdate","timeUpdate",Mt,"transitionEnd","waiting","waiting"];function pn(e,t){for(var n=0;n<e.length;n+=2){var a=e[n],r=e[n+1],o={phasedRegistrationNames:{bubbled:o="on"+(r[0].toUpperCase()+r.slice(1)),captured:o+"Capture"},dependencies:[a],eventPriority:t};cn.set(a,t),dn.set(a,o),un[r]=o}}pn("blur blur cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focus focus input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split(" "),0),pn("drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split(" "),1),pn(fn,2);for(var hn="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),mn=0;mn<hn.length;mn++)cn.set(hn[mn],0);var gn=r.unstable_UserBlockingPriority,yn=r.unstable_runWithPriority,vn=!0;function d(e,t){_n(t,e,!1)}function _n(e,t,n){var a=cn.get(t);switch(void 0===a?2:a){case 0:a=function(e,t,n,a){he||fe();var r=bn,o=he;he=!0;try{ce(r,e,t,n,a)}finally{(he=o)||ge()}}.bind(null,t,1,e);break;case 1:a=function(e,t,n,a){yn(gn,bn.bind(null,e,t,n,a))}.bind(null,t,1,e);break;default:a=bn.bind(null,t,1,e)}n?e.addEventListener(t,a,!0):e.addEventListener(t,a,!1)}function bn(e,t,n,a){if(vn)if(0<o.length&&-1<Qt.indexOf(e))e=en(null,e,t,n,a),o.push(e);else{var r=wn(e,t,n,a);if(null===r)tn(e,a);else if(-1<Qt.indexOf(e))e=en(r,e,t,n,a),o.push(e);else if(!function(e,t,n,a,r){switch(t){case"focus":return Kt=nn(Kt,e,t,n,a,r),1;case"dragenter":return Gt=nn(Gt,e,t,n,a,r),1;case"mouseover":return qt=nn(qt,e,t,n,a,r),1;case"pointerover":var o=r.pointerId;return $t.set(o,nn($t.get(o)||null,e,t,n,a,r)),1;case"gotpointercapture":return o=r.pointerId,Jt.set(o,nn(Jt.get(o)||null,e,t,n,a,r)),1}}(r,e,t,n,a)){tn(e,a),e=Ht(e,a,null,t);try{ye(Ft,e)}finally{At(e)}}}}function wn(e,t,n,a){if(null!==(n=Qn(n=Yt(a)))){var r=xt(n);if(null===r)n=null;else{var o=r.tag;if(13===o){if(null!==(n=Ct(r)))return n;n=null}else if(3===o){if(r.stateNode.hydrate)return 3===r.tag?r.stateNode.containerInfo:null;n=null}else r!==n&&(n=null)}}e=Ht(e,a,n,t);try{ye(Ft,e)}finally{At(e)}return null}var Mn={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},kn=["Webkit","ms","Moz","O"];function Sn(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||Mn.hasOwnProperty(e)&&Mn[e]?(""+t).trim():t+"px"}function En(e,t){for(var n in e=e.style,t){var a,r;t.hasOwnProperty(n)&&(a=0===n.indexOf("--"),r=Sn(n,t[n],a),"float"===n&&(n="cssFloat"),a?e.setProperty(n,r):e[n]=r)}}Object.keys(Mn).forEach(function(t){kn.forEach(function(e){e=e+t.charAt(0).toUpperCase()+t.substring(1),Mn[e]=Mn[t]})});var xn=y({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Cn(e,t){if(t){if(xn[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(R(137,e,""));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(R(60));if(!("object"==typeof t.dangerouslySetInnerHTML&&"__html"in t.dangerouslySetInnerHTML))throw Error(R(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(R(62,""))}}function Ln(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var Tn=a;function Dn(e,t){var n=Et(e=9===e.nodeType||11===e.nodeType?e:e.ownerDocument);t=te[t];for(var a=0;a<t.length;a++)zt(t[a],e,n)}function On(){}function Nn(t){if(void 0===(t=t||("undefined"!=typeof document?document:void 0)))return null;try{return t.activeElement||t.body}catch(e){return t.body}}function Pn(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function jn(e,t){var n,a=Pn(e);for(e=0;a;){if(3===a.nodeType){if(n=e+a.textContent.length,e<=t&&t<=n)return{node:a,offset:t-e};e=n}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=Pn(a)}}function Yn(){for(var e=window,t=Nn();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=Nn((e=t.contentWindow).document)}return t}function In(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var Rn="$",An="/$",Hn="$?",Fn="$!",zn=null,Wn=null;function Vn(e,t){switch(e){case"button":case"input":case"select":case"textarea":return t.autoFocus}}function Bn(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Un="function"==typeof setTimeout?setTimeout:void 0,Kn="function"==typeof clearTimeout?clearTimeout:void 0;function Gn(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function qn(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if(n===Rn||n===Fn||n===Hn){if(0===t)return e;t--}else n===An&&t++}e=e.previousSibling}return null}var fn=Math.random().toString(36).slice(2),$n="__reactInternalInstance$"+fn,Jn="__reactEventHandlers$"+fn,Xn="__reactContainere$"+fn;function Qn(e){var t=e[$n];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Xn]||n[$n]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=qn(e);null!==e;){if(n=e[$n])return n;e=qn(e)}return t}n=(e=n).parentNode}return null}function Zn(e){return!(e=e[$n]||e[Xn])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function ea(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(R(33))}function ta(e){return e[Jn]||null}function na(e){for(;(e=e.return)&&5!==e.tag;);return e||null}function aa(e,t){var n=e.stateNode;if(!n)return null;var a=B(n);if(!a)return null;switch(n=a[t],t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":e=!(a=(a=!a.disabled)?a:!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e));break;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(R(231,t,typeof n));return n}function ra(e,t,n){(t=aa(e,n.dispatchConfig.phasedRegistrationNames[t]))&&(n._dispatchListeners=Dt(n._dispatchListeners,t),n._dispatchInstances=Dt(n._dispatchInstances,e))}function oa(e){if(e&&e.dispatchConfig.phasedRegistrationNames){for(var t=e._targetInst,n=[];t;)n.push(t),t=na(t);for(t=n.length;0<t--;)ra(n[t],"captured",e);for(t=0;t<n.length;t++)ra(n[t],"bubbled",e)}}function ia(e,t,n){e&&n&&n.dispatchConfig.registrationName&&(t=aa(e,n.dispatchConfig.registrationName))&&(n._dispatchListeners=Dt(n._dispatchListeners,t),n._dispatchInstances=Dt(n._dispatchInstances,e))}function la(e){e&&e.dispatchConfig.registrationName&&ia(e._targetInst,null,e)}function sa(e){Ot(e,oa)}var ua=null,da=null,ca=null;function fa(){if(ca)return ca;for(var e=da,t=e.length,n=("value"in ua?ua.value:ua.textContent),a=n.length,r=0;r<t&&e[r]===n[r];r++);for(var o=t-r,i=1;i<=o&&e[t-i]===n[a-i];i++);return ca=n.slice(r,1<i?1-i:void 0)}function pa(){return!0}function ha(){return!1}function l(e,t,n,a){for(var r in this.dispatchConfig=e,this._targetInst=t,this.nativeEvent=n,e=this.constructor.Interface)e.hasOwnProperty(r)&&((t=e[r])?this[r]=t(n):"target"===r?this.target=a:this[r]=n[r]);return this.isDefaultPrevented=(null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue)?pa:ha,this.isPropagationStopped=ha,this}function ma(e,t,n,a){var r;return this.eventPool.length?(r=this.eventPool.pop(),this.call(r,e,t,n,a),r):new this(e,t,n,a)}function ga(e){if(!(e instanceof this))throw Error(R(279));e.destructor(),this.eventPool.length<10&&this.eventPool.push(e)}function ya(e){e.eventPool=[],e.getPooled=ma,e.release=ga}y(l.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=pa)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=pa)},persist:function(){this.isPersistent=pa},isPersistent:ha,destructor:function(){for(var e in this.constructor.Interface)this[e]=null;this.nativeEvent=this._targetInst=this.dispatchConfig=null,this.isPropagationStopped=this.isDefaultPrevented=ha,this._dispatchInstances=this._dispatchListeners=null}}),l.Interface={type:null,target:null,currentTarget:function(){return null},eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null},l.extend=function(e){function t(){}function n(){return a.apply(this,arguments)}var a=this,r=(t.prototype=a.prototype,new t);return y(r,n.prototype),((n.prototype=r).constructor=n).Interface=y({},a.Interface,e),n.extend=a.extend,ya(n),n},ya(l);var va=l.extend({data:null}),_a=l.extend({data:null}),ba=[9,13,27,32],wa=ae&&"CompositionEvent"in window,a=null,Ma=(ae&&"documentMode"in document&&(a=document.documentMode),ae&&"TextEvent"in window&&!a),ka=ae&&(!wa||a&&8<a&&a<=11),Sa=String.fromCharCode(32),Ea={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["compositionend","keypress","textInput","paste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:"blur compositionend keydown keypress keyup mousedown".split(" ")},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:"blur compositionstart keydown keypress keyup mousedown".split(" ")},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:"blur compositionupdate keydown keypress keyup mousedown".split(" ")}},xa=!1;function Ca(e,t){switch(e){case"keyup":return-1!==ba.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"blur":return 1;default:return}}function La(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var Ta=!1;var fn={eventTypes:Ea,extractEvents:function(e,t,n,a){var r;if(wa)e:{switch(e){case"compositionstart":var o=Ea.compositionStart;break e;case"compositionend":o=Ea.compositionEnd;break e;case"compositionupdate":o=Ea.compositionUpdate;break e}o=void 0}else Ta?Ca(e,n)&&(o=Ea.compositionEnd):"keydown"===e&&229===n.keyCode&&(o=Ea.compositionStart);return r=o?(ka&&"ko"!==n.locale&&(Ta||o!==Ea.compositionStart?o===Ea.compositionEnd&&Ta&&(r=fa()):(da="value"in(ua=a)?ua.value:ua.textContent,Ta=!0)),o=va.getPooled(o,t,n,a),r?o.data=r:null!==(r=La(n))&&(o.data=r),sa(o),o):null,(e=(Ma?function(e,t){switch(e){case"compositionend":return La(t);case"keypress":return 32!==t.which?null:(xa=!0,Sa);case"textInput":return(e=t.data)===Sa&&xa?null:e;default:return null}}:function(e,t){if(Ta)return"compositionend"===e||!wa&&Ca(e,t)?(e=fa(),ca=da=ua=null,Ta=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return ka&&"ko"!==t.locale?null:t.data;default:return null}})(e,n))?((t=_a.getPooled(Ea.beforeInput,t,n,a)).data=e,sa(t)):t=null,null===r?t:null===t?r:[r,t]}},Da={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Oa(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?Da[e.type]:"textarea"===t}var Na={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:"blur change click focus input keydown keyup selectionchange".split(" ")}};function Pa(e,t,n){return(e=l.getPooled(Na.change,e,t,n)).type="change",se(n),sa(e),e}var ja=null,Ya=null;function Ia(e){jt(e)}function Ra(e){if(qe(ea(e)))return e}function Aa(e,t){if("change"===e)return t}var Ha=!1;function Fa(){ja&&(ja.detachEvent("onpropertychange",za),Ya=ja=null)}function za(e){if("value"===e.propertyName&&Ra(Ya))if(e=Pa(Ya,e,Yt(e)),he)jt(e);else{he=!0;try{de(Ia,e)}finally{he=!1,ge()}}}function Wa(e,t,n){"focus"===e?(Fa(),Ya=n,(ja=t).attachEvent("onpropertychange",za)):"blur"===e&&Fa()}function Va(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Ra(Ya)}function Ba(e,t){if("click"===e)return Ra(t)}function Ua(e,t){if("input"===e||"change"===e)return Ra(t)}ae&&(Ha=It("input")&&(!document.documentMode||9<document.documentMode));var a={eventTypes:Na,_isInputEventSupported:Ha,extractEvents:function(e,t,n,a){var r,o,i=t?ea(t):window,l=i.nodeName&&i.nodeName.toLowerCase();if("select"===l||"input"===l&&"file"===i.type?r=Aa:Oa(i)?Ha?r=Ua:(r=Va,o=Wa):!(l=i.nodeName)||"input"!==l.toLowerCase()||"checkbox"!==i.type&&"radio"!==i.type||(r=Ba),r=r&&r(e,t))return Pa(r,n,a);o&&o(e,i,t),"blur"===e&&(e=i._wrapperState)&&e.controlled&&"number"===i.type&&et(i,"number",i.value)}},Ka=l.extend({view:null,detail:null}),Ga={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function qa(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Ga[e])&&!!t[e]}function $a(){return qa}var Ja=0,Xa=0,Qa=!1,Za=!1,er=Ka.extend({screenX:null,screenY:null,clientX:null,clientY:null,pageX:null,pageY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:$a,button:null,buttons:null,relatedTarget:function(e){return e.relatedTarget||(e.fromElement===e.srcElement?e.toElement:e.fromElement)},movementX:function(e){if("movementX"in e)return e.movementX;var t=Ja;return Ja=e.screenX,Qa?"mousemove"===e.type?e.screenX-t:0:(Qa=!0,0)},movementY:function(e){if("movementY"in e)return e.movementY;var t=Xa;return Xa=e.screenY,Za?"mousemove"===e.type?e.screenY-t:0:(Za=!0,0)}}),tr=er.extend({pointerId:null,width:null,height:null,pressure:null,tangentialPressure:null,tiltX:null,tiltY:null,twist:null,pointerType:null,isPrimary:null}),nr={mouseEnter:{registrationName:"onMouseEnter",dependencies:["mouseout","mouseover"]},mouseLeave:{registrationName:"onMouseLeave",dependencies:["mouseout","mouseover"]},pointerEnter:{registrationName:"onPointerEnter",dependencies:["pointerout","pointerover"]},pointerLeave:{registrationName:"onPointerLeave",dependencies:["pointerout","pointerover"]}},ar={eventTypes:nr,extractEvents:function(e,t,n,a,r){var o,i,l,s,u="mouseover"===e||"pointerover"===e,d="mouseout"===e||"pointerout"===e;if(u&&0==(32&r)&&(n.relatedTarget||n.fromElement)||!d&&!u)return null;if(u=a.window===a?a:(u=a.ownerDocument)?u.defaultView||u.parentWindow:window,d?(d=t,null!==(t=(t=n.relatedTarget||n.toElement)?Qn(t):null)&&(t!==xt(t)||5!==t.tag&&6!==t.tag)&&(t=null)):d=null,d===t)return null;if("mouseout"===e||"mouseover"===e?(o=er,i=nr.mouseLeave,l=nr.mouseEnter,s="mouse"):"pointerout"!==e&&"pointerover"!==e||(o=tr,i=nr.pointerLeave,l=nr.pointerEnter,s="pointer"),e=null==d?u:ea(d),u=null==t?u:ea(t),(i=o.getPooled(i,d,n,a)).type=s+"leave",i.target=e,i.relatedTarget=u,(n=o.getPooled(l,t,n,a)).type=s+"enter",n.target=u,n.relatedTarget=e,s=t,(a=d)&&s)e:{for(l=s,d=0,e=o=a;e;e=na(e))d++;for(e=0,t=l;t;t=na(t))e++;for(;0<d-e;)o=na(o),d--;for(;0<e-d;)l=na(l),e--;for(;d--;){if(o===l||o===l.alternate)break e;o=na(o),l=na(l)}o=null}else o=null;for(l=o,o=[];a&&a!==l&&(null===(d=a.alternate)||d!==l);)o.push(a),a=na(a);for(a=[];s&&s!==l&&(null===(d=s.alternate)||d!==l);)a.push(s),s=na(s);for(s=0;s<o.length;s++)ia(o[s],"bubbled",i);for(s=a.length;0<s--;)ia(a[s],"captured",n);return 0==(64&r)?[i]:[i,n]}};var rr="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},or=Object.prototype.hasOwnProperty;function ir(e,t){if(!rr(e,t)){if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;for(a=0;a<n.length;a++)if(!or.call(t,n[a])||!rr(e[n[a]],t[n[a]]))return!1}return!0}var lr=ae&&"documentMode"in document&&document.documentMode<=11,sr={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:"blur contextmenu dragend focus keydown keyup mousedown mouseup selectionchange".split(" ")}},ur=null,dr=null,cr=null,fr=!1;function pr(e,t){var n=t.window===t?t.document:9===t.nodeType?t:t.ownerDocument;return fr||null==ur||ur!==Nn(n)?null:(n="selectionStart"in(n=ur)&&In(n)?{start:n.selectionStart,end:n.selectionEnd}:{anchorNode:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset},cr&&ir(cr,n)?null:(cr=n,(e=l.getPooled(sr.select,dr,e,t)).type="select",e.target=ur,sa(e),e))}var hr={eventTypes:sr,extractEvents:function(e,t,n,a,r,o){if(!(o=!(r=o||(a.window===a?a.document:9===a.nodeType?a:a.ownerDocument)))){e:{r=Et(r),o=te.onSelect;for(var i=0;i<o.length;i++)if(!r.has(o[i])){r=!1;break e}r=!0}o=!r}if(!o)switch(r=t?ea(t):window,e){case"focus":!Oa(r)&&"true"!==r.contentEditable||(ur=r,dr=t,cr=null);break;case"blur":cr=dr=ur=null;break;case"mousedown":fr=!0;break;case"contextmenu":case"mouseup":case"dragend":return fr=!1,pr(n,a);case"selectionchange":if(lr)break;case"keydown":case"keyup":return pr(n,a)}return null}},mr=l.extend({animationName:null,elapsedTime:null,pseudoElement:null}),gr=l.extend({clipboardData:function(e){return("clipboardData"in e?e:window).clipboardData}}),yr=Ka.extend({relatedTarget:null});function vr(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,32<=(e=10===e?13:e)||13===e?e:0}var _r={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},br={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},wr=Ka.extend({key:function(e){if(e.key){var t=_r[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=vr(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?br[e.keyCode]||"Unidentified":""},location:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,repeat:null,locale:null,getModifierState:$a,charCode:function(e){return"keypress"===e.type?vr(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?vr(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Mr=er.extend({dataTransfer:null}),kr=Ka.extend({touches:null,targetTouches:null,changedTouches:null,altKey:null,metaKey:null,ctrlKey:null,shiftKey:null,getModifierState:$a}),Sr=l.extend({propertyName:null,elapsedTime:null,pseudoElement:null}),Er=er.extend({deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:null,deltaMode:null}),xr={eventTypes:un,extractEvents:function(e,t,n,a){var r=dn.get(e);if(!r)return null;switch(e){case"keypress":if(0===vr(n))return null;case"keydown":case"keyup":e=wr;break;case"blur":case"focus":e=yr;break;case"click":if(2===n.button)return null;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":e=er;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":e=Mr;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":e=kr;break;case _t:case bt:case wt:e=mr;break;case Mt:e=Sr;break;case"scroll":e=Ka;break;case"wheel":e=Er;break;case"copy":case"cut":case"paste":e=gr;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":e=tr;break;default:e=l}return sa(t=e.getPooled(r,t,n,a)),t}},q=Array.prototype.slice.call("ResponderEventPlugin SimpleEventPlugin EnterLeaveEventPlugin ChangeEventPlugin SelectEventPlugin BeforeInputEventPlugin".split(" "));J();var B=ta,U=Zn,K=ea,Cr=(ne({SimpleEventPlugin:xr,EnterLeaveEventPlugin:ar,ChangeEventPlugin:a,SelectEventPlugin:hr,BeforeInputEventPlugin:fn}),[]),Lr=-1;function c(e){Lr<0||(e.current=Cr[Lr],Cr[Lr]=null,Lr--)}function f(e,t){Cr[++Lr]=e.current,e.current=t}var Tr={},p={current:Tr},h={current:!1},Dr=Tr;function Or(e,t){var n=e.type.contextTypes;if(!n)return Tr;var a=e.stateNode;if(a&&a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var r,o={};for(r in n)o[r]=t[r];return a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function m(e){return null!=(e=e.childContextTypes)}function Nr(){c(h),c(p)}function Pr(e,t,n){if(p.current!==Tr)throw Error(R(168));f(p,t),f(h,n)}function jr(e,t,n){var a,r=e.stateNode;if(e=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(a in r=r.getChildContext())if(!(a in e))throw Error(R(108,Ve(t)||"Unknown",a));return y({},n,{},r)}function Yr(e){e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Tr,Dr=p.current,f(p,e),f(h,h.current)}function Ir(e,t,n){var a=e.stateNode;if(!a)throw Error(R(169));n?(e=jr(e,t,Dr),a.__reactInternalMemoizedMergedChildContext=e,c(h),c(p),f(p,e)):c(h),f(h,n)}var Rr=r.unstable_runWithPriority,Ar=r.unstable_scheduleCallback,Hr=r.unstable_cancelCallback,xr=r.unstable_requestPaint,Fr=r.unstable_now,zr=r.unstable_getCurrentPriorityLevel,Wr=r.unstable_ImmediatePriority,Vr=r.unstable_UserBlockingPriority,Br=r.unstable_NormalPriority,Ur=r.unstable_LowPriority,Kr=r.unstable_IdlePriority,Gr={},qr=r.unstable_shouldYield,$r=void 0!==xr?xr:function(){},Jr=null,Xr=null,Qr=!1,Zr=Fr(),g=Zr<1e4?Fr:function(){return Fr()-Zr};function eo(){switch(zr()){case Wr:return 99;case Vr:return 98;case Br:return 97;case Ur:return 96;case Kr:return 95;default:throw Error(R(332))}}function to(e){switch(e){case 99:return Wr;case 98:return Vr;case 97:return Br;case 96:return Ur;case 95:return Kr;default:throw Error(R(332))}}function no(e,t){return e=to(e),Rr(e,t)}function ao(e,t,n){return e=to(e),Ar(e,t,n)}function ro(e){return null===Jr?(Jr=[e],Xr=Ar(Wr,oo)):Jr.push(e),Gr}function E(){var e;null!==Xr&&(e=Xr,Xr=null,Hr(e)),oo()}function oo(){if(!Qr&&null!==Jr){Qr=!0;var t=0;try{var n=Jr;no(99,function(){for(;t<n.length;t++)for(var e=n[t];null!==(e=e(!0)););}),Jr=null}catch(e){throw null!==Jr&&(Jr=Jr.slice(t+1)),Ar(Wr,E),e}finally{Qr=!1}}}function io(e,t,n){return 1073741821-(1+((1073741821-e+t/10)/(n/=10)|0))*n}function x(e,t){if(e&&e.defaultProps)for(var n in t=y({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}var lo={current:null},so=null,uo=null,co=null;function fo(){co=uo=so=null}function po(e){var t=lo.current;c(lo),e.type._context._currentValue=t}function ho(e,t){for(;null!==e;){var n=e.alternate;if(e.childExpirationTime<t)e.childExpirationTime=t,null!==n&&n.childExpirationTime<t&&(n.childExpirationTime=t);else{if(!(null!==n&&n.childExpirationTime<t))break;n.childExpirationTime=t}e=e.return}}function mo(e,t){(co=uo=null)!==(e=(so=e).dependencies)&&null!==e.firstContext&&(e.expirationTime>=t&&(Yi=!0),e.firstContext=null)}function v(e,t){if(co!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(co=e,t=1073741823),t={context:e,observedBits:t,next:null},null===uo){if(null===so)throw Error(R(308));uo=t,so.dependencies={expirationTime:0,firstContext:t,responders:null}}else uo=uo.next=t;return e._currentValue}var go=!1;function yo(e){e.updateQueue={baseState:e.memoizedState,baseQueue:null,shared:{pending:null},effects:null}}function vo(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,baseQueue:e.baseQueue,shared:e.shared,effects:e.effects})}function _o(e,t){return(e={expirationTime:e,suspenseConfig:t,tag:0,payload:null,callback:null,next:null}).next=e}function bo(e,t){var n;null!==(e=e.updateQueue)&&(null===(n=(e=e.shared).pending)?t.next=t:(t.next=n.next,n.next=t),e.pending=t)}function wo(e,t){var n=e.alternate;null!==n&&vo(n,e),null===(n=(e=e.updateQueue).baseQueue)?(e.baseQueue=t.next=t).next=t:(t.next=n.next,n.next=t)}function Mo(e,t,n,a){var r=e.updateQueue,o=(go=!1,r.baseQueue);if(null!==(g=r.shared.pending)&&(null!==o&&(i=o.next,o.next=g.next,g.next=i),o=g,(r.shared.pending=null)!==(i=e.alternate)&&null!==(i=i.updateQueue)&&(i.baseQueue=g)),null!==o){var i=o.next,l=r.baseState,s=0,u=null,d=null,c=null;if(null!==i)for(var f=i;;){if((g=f.expirationTime)<a){var p={expirationTime:f.expirationTime,suspenseConfig:f.suspenseConfig,tag:f.tag,payload:f.payload,callback:f.callback,next:null};null===c?(d=c=p,u=l):c=c.next=p,s<g&&(s=g)}else{null!==c&&(c=c.next={expirationTime:1073741823,suspenseConfig:f.suspenseConfig,tag:f.tag,payload:f.payload,callback:f.callback,next:null}),ns(g,f.suspenseConfig);e:{var h=e,m=f,g=t,p=n;switch(m.tag){case 1:if("function"==typeof(h=m.payload)){l=h.call(p,l,g);break e}l=h;break e;case 3:h.effectTag=-4097&h.effectTag|64;case 0:if(null==(g="function"==typeof(h=m.payload)?h.call(p,l,g):h))break e;l=y({},l,g);break e;case 2:go=!0}}null!==f.callback&&(e.effectTag|=32,null===(g=r.effects)?r.effects=[f]:g.push(f))}if(null===(f=f.next)||f===i){if(null===(g=r.shared.pending))break;f=o.next=g.next,g.next=i,r.baseQueue=o=g,r.shared.pending=null}}null===c?u=l:c.next=d,r.baseState=u,r.baseQueue=c,as(s),e.expirationTime=s,e.memoizedState=l}}function ko(e,t,n){if(e=t.effects,(t.effects=null)!==e)for(t=0;t<e.length;t++){var a=e[t],r=a.callback;if(null!==r){if(a.callback=null,a=r,r=n,"function"!=typeof a)throw Error(R(191,a));a.call(r)}}}var So=t.ReactCurrentBatchConfig,Eo=(new w.Component).refs;function xo(e,t,n,a){n=null==(n=n(a,t=e.memoizedState))?t:y({},t,n),e.memoizedState=n,0===e.expirationTime&&(e.updateQueue.baseState=n)}var Co={isMounted:function(e){return!!(e=e._reactInternalFiber)&&xt(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternalFiber;var a=Bl(),r=So.suspense;(r=_o(a=Ul(a,e,r),r)).payload=t,null!=n&&(r.callback=n),bo(e,r),Kl(e,a)},enqueueReplaceState:function(e,t,n){e=e._reactInternalFiber;var a=Bl(),r=So.suspense;(r=_o(a=Ul(a,e,r),r)).tag=1,r.payload=t,null!=n&&(r.callback=n),bo(e,r),Kl(e,a)},enqueueForceUpdate:function(e,t){e=e._reactInternalFiber;var n=Bl(),a=So.suspense;(a=_o(n=Ul(n,e,a),a)).tag=2,null!=t&&(a.callback=t),bo(e,a),Kl(e,n)}};function Lo(e,t,n,a,r,o,i){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(a,o,i):!t.prototype||!t.prototype.isPureReactComponent||(!ir(n,a)||!ir(r,o))}function To(e,t,n){var a=!1,r=Tr,o=t.contextType;t=new t(n,o="object"==typeof o&&null!==o?v(o):(r=m(t)?Dr:p.current,(a=null!=(a=t.contextTypes))?Or(e,r):Tr)),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=Co,(e.stateNode=t)._reactInternalFiber=e,a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=r,e.__reactInternalMemoizedMaskedChildContext=o)}function Do(e,t,n,a){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,a),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,a),t.state!==e&&Co.enqueueReplaceState(t,t.state,null)}function Oo(e,t,n,a){var r=e.stateNode,o=(r.props=n,r.state=e.memoizedState,r.refs=Eo,yo(e),t.contextType);"object"==typeof o&&null!==o?r.context=v(o):(o=m(t)?Dr:p.current,r.context=Or(e,o)),Mo(e,n,r,a),r.state=e.memoizedState,"function"==typeof(o=t.getDerivedStateFromProps)&&(xo(e,0,o,n),r.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof r.getSnapshotBeforeUpdate||"function"!=typeof r.UNSAFE_componentWillMount&&"function"!=typeof r.componentWillMount||(t=r.state,"function"==typeof r.componentWillMount&&r.componentWillMount(),"function"==typeof r.UNSAFE_componentWillMount&&r.UNSAFE_componentWillMount(),t!==r.state&&Co.enqueueReplaceState(r,r.state,null),Mo(e,n,r,a),r.state=e.memoizedState),"function"==typeof r.componentDidMount&&(e.effectTag|=4)}var No=Array.isArray;function Po(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(R(309));var a=n.stateNode}if(!a)throw Error(R(147,e));var r=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===r?t.ref:((t=function(e){var t=a.refs;t===Eo&&(t=a.refs={}),null===e?delete t[r]:t[r]=e})._stringRef=r,t)}if("string"!=typeof e)throw Error(R(284));if(!n._owner)throw Error(R(290,e))}return e}function jo(e,t){if("textarea"!==e.type)throw Error(R(31,"[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t,""))}function Yo(C){function L(e,t){var n;C&&(null!==(n=e.lastEffect)?(n.nextEffect=t,e.lastEffect=t):e.firstEffect=e.lastEffect=t,t.nextEffect=null,t.effectTag=8)}function T(e,t){if(C)for(;null!==t;)L(e,t),t=t.sibling;return null}function D(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function O(e,t){return(e=_s(e,t)).index=0,e.sibling=null,e}function N(e,t,n){if(e.index=n,C){if(null!==(n=e.alternate))return(n=n.index)<t?(e.effectTag=2,t):n;e.effectTag=2}return t}function P(e){return C&&null===e.alternate&&(e.effectTag=2),e}function o(e,t,n,a){return null===t||6!==t.tag?(t=Ms(n,e.mode,a)).return=e:(t=O(t,n)).return=e,t}function i(e,t,n,a){return null!==t&&t.elementType===n.type?((a=O(t,n.props)).ref=Po(0,t,n),a.return=e):((a=bs(n.type,n.key,n.props,null,e.mode,a)).ref=Po(0,t,n),a.return=e),a}function l(e,t,n,a){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?(t=ks(n,e.mode,a)).return=e:(t=O(t,n.children||[])).return=e,t}function s(e,t,n,a,r){return null===t||7!==t.tag?(t=ws(n,e.mode,a,r)).return=e:(t=O(t,n)).return=e,t}function j(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=Ms(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case Ce:return(n=bs(t.type,t.key,t.props,null,e.mode,n)).ref=Po(0,null,t),n.return=e,n;case Le:return(t=ks(t,e.mode,n)).return=e,t}if(No(t)||We(t))return(t=ws(t,e.mode,n,null)).return=e,t;jo(e,t)}return null}function Y(e,t,n,a){var r=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==r?null:o(e,t,""+n,a);if("object"==typeof n&&null!==n){switch(n.$$typeof){case Ce:return n.key===r?n.type===Te?s(e,t,n.props.children,a,r):i(e,t,n,a):null;case Le:return n.key===r?l(e,t,n,a):null}if(No(n)||We(n))return null!==r?null:s(e,t,n,a,null);jo(e,n)}return null}function I(e,t,n,a,r){if("string"==typeof a||"number"==typeof a)return o(t,e=e.get(n)||null,""+a,r);if("object"==typeof a&&null!==a){switch(a.$$typeof){case Ce:return e=e.get(null===a.key?n:a.key)||null,a.type===Te?s(t,e,a.props.children,r,a.key):i(t,e,a,r);case Le:return l(t,e=e.get(null===a.key?n:a.key)||null,a,r)}if(No(a)||We(a))return s(t,e=e.get(n)||null,a,r,null);jo(t,a)}return null}return function(e,t,n,a){var r="object"==typeof n&&null!==n&&n.type===Te&&null===n.key,o="object"==typeof(n=r?n.props.children:n)&&null!==n;if(o)switch(n.$$typeof){case Ce:e:{for(o=n.key,r=t;null!==r;){if(r.key===o){switch(r.tag){case 7:if(n.type!==Te)break;T(e,r.sibling),(t=O(r,n.props.children)).return=e,e=t;break e;default:if(r.elementType===n.type){T(e,r.sibling),(t=O(r,n.props)).ref=Po(0,r,n),t.return=e,e=t;break e}}T(e,r);break}L(e,r),r=r.sibling}e=n.type===Te?((t=ws(n.props.children,e.mode,a,n.key)).return=e,t):((a=bs(n.type,n.key,n.props,null,e.mode,a)).ref=Po(0,t,n),a.return=e,a)}return P(e);case Le:e:{for(r=n.key;null!==t;){if(t.key===r){if(4===t.tag&&t.stateNode.containerInfo===n.containerInfo&&t.stateNode.implementation===n.implementation){T(e,t.sibling),(t=O(t,n.children||[])).return=e,e=t;break e}T(e,t);break}L(e,t),t=t.sibling}(t=ks(n,e.mode,a)).return=e,e=t}return P(e)}if("string"==typeof n||"number"==typeof n)return n=""+n,(t=null!==t&&6===t.tag?(T(e,t.sibling),O(t,n)):(T(e,t),Ms(n,e.mode,a))).return=e,P(e=t);if(No(n)){for(var i=e,l=t,s=n,u=a,d=null,c=null,f=l,p=l=0,h=null;null!==f&&p<s.length;p++){f.index>p?(h=f,f=null):h=f.sibling;var m=Y(i,f,s[p],u);if(null===m){null===f&&(f=h);break}C&&f&&null===m.alternate&&L(i,f),l=N(m,l,p),null===c?d=m:c.sibling=m,c=m,f=h}if(p===s.length)T(i,f);else if(null===f)for(;p<s.length;p++)null!==(f=j(i,s[p],u))&&(l=N(f,l,p),null===c?d=f:c.sibling=f,c=f);else{for(f=D(i,f);p<s.length;p++)null!==(h=I(f,i,p,s[p],u))&&(C&&null!==h.alternate&&f.delete(null===h.key?p:h.key),l=N(h,l,p),null===c?d=h:c.sibling=h,c=h);C&&f.forEach(function(e){return L(i,e)})}return d}if(We(n)){var g=e,y=t,v=n,_=a,b=We(v);if("function"!=typeof b)throw Error(R(150));if(null==(v=b.call(v)))throw Error(R(151));for(var w=b=null,M=y,k=y=0,S=null,E=v.next();null!==M&&!E.done;k++,E=v.next()){M.index>k?(S=M,M=null):S=M.sibling;var x=Y(g,M,E.value,_);if(null===x){null===M&&(M=S);break}C&&M&&null===x.alternate&&L(g,M),y=N(x,y,k),null===w?b=x:w.sibling=x,w=x,M=S}if(E.done)T(g,M);else if(null===M)for(;!E.done;k++,E=v.next())null!==(E=j(g,E.value,_))&&(y=N(E,y,k),null===w?b=E:w.sibling=E,w=E);else{for(M=D(g,M);!E.done;k++,E=v.next())null!==(E=I(M,g,k,E.value,_))&&(C&&null!==E.alternate&&M.delete(null===E.key?k:E.key),y=N(E,y,k),null===w?b=E:w.sibling=E,w=E);C&&M.forEach(function(e){return L(g,e)})}return b}if(o&&jo(e,n),void 0===n&&!r)switch(e.tag){case 1:case 0:throw e=e.type,Error(R(152,e.displayName||e.name||"Component"))}return T(e,t)}}var Io=Yo(!0),Ro=Yo(!1),Ao={},Ho={current:Ao},Fo={current:Ao},zo={current:Ao};function Wo(e){if(e===Ao)throw Error(R(174));return e}function Vo(e,t){switch(f(zo,t),f(Fo,e),f(Ho,Ao),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:ut(null,"");break;default:t=ut(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}c(Ho),f(Ho,t)}function Bo(){c(Ho),c(Fo),c(zo)}function Uo(e){Wo(zo.current);var t=Wo(Ho.current),n=ut(t,e.type);t!==n&&(f(Fo,e),f(Ho,n))}function Ko(e){Fo.current===e&&(c(Ho),c(Fo))}var M={current:0};function Go(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||n.data===Hn||n.data===Fn))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.effectTag))return t}else if(null!==t.child){t=(t.child.return=t).child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}function qo(e,t){return{responder:e,props:t}}var $o=t.ReactCurrentDispatcher,s=t.ReactCurrentBatchConfig,Jo=0,k=null,S=null,C=null,Xo=!1;function u(){throw Error(R(321))}function Qo(e,t){if(null!==t){for(var n=0;n<t.length&&n<e.length;n++)if(!rr(e[n],t[n]))return;return 1}}function Zo(e,t,n,a,r,o){if(Jo=o,(k=t).memoizedState=null,t.updateQueue=null,t.expirationTime=0,$o.current=null===e||null===e.memoizedState?Mi:ki,e=n(a,r),t.expirationTime===Jo){o=0;do{if(t.expirationTime=0,!(o<25))throw Error(R(301))}while(o+=1,C=S=null,t.updateQueue=null,$o.current=Si,e=n(a,r),t.expirationTime===Jo)}if($o.current=wi,t=null!==S&&null!==S.next,Jo=0,C=S=k=null,Xo=!1,t)throw Error(R(300));return e}function ei(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===C?k.memoizedState=C=e:C=C.next=e,C}function ti(){e=null===S?null!==(e=k.alternate)?e.memoizedState:null:S.next;var e,t=null===C?k.memoizedState:C.next;if(null!==t)C=t,S=e;else{if(null===e)throw Error(R(310));e={memoizedState:(S=e).memoizedState,baseState:S.baseState,baseQueue:S.baseQueue,queue:S.queue,next:null},null===C?k.memoizedState=C=e:C=C.next=e}return C}function ni(e,t){return"function"==typeof t?t(e):t}function ai(e){var t=ti(),n=t.queue;if(null===n)throw Error(R(311));n.lastRenderedReducer=e;var a,r=(i=S).baseQueue,o=n.pending;if(null!==o&&(null!==r&&(a=r.next,r.next=o.next,o.next=a),i.baseQueue=r=o,n.pending=null),null!==r){var r=r.next,i=i.baseState,l=a=o=null,s=r;do{var u,d=s.expirationTime}while(d<Jo?(u={expirationTime:s.expirationTime,suspenseConfig:s.suspenseConfig,action:s.action,eagerReducer:s.eagerReducer,eagerState:s.eagerState,next:null},null===l?(a=l=u,o=i):l=l.next=u,d>k.expirationTime&&as(k.expirationTime=d)):(null!==l&&(l=l.next={expirationTime:1073741823,suspenseConfig:s.suspenseConfig,action:s.action,eagerReducer:s.eagerReducer,eagerState:s.eagerState,next:null}),ns(d,s.suspenseConfig),i=s.eagerReducer===e?s.eagerState:e(i,s.action)),null!==(s=s.next)&&s!==r);null===l?o=i:l.next=a,rr(i,t.memoizedState)||(Yi=!0),t.memoizedState=i,t.baseState=o,t.baseQueue=l,n.lastRenderedState=i}return[t.memoizedState,n.dispatch]}function ri(e){var t=ti(),n=t.queue;if(null===n)throw Error(R(311));n.lastRenderedReducer=e;var a=n.dispatch,r=n.pending,o=t.memoizedState;if(null!==r){n.pending=null;for(var i=r=r.next;o=e(o,i.action),(i=i.next)!==r;);rr(o,t.memoizedState)||(Yi=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,a]}function oi(e){var t=ei();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ni,lastRenderedState:e}).dispatch=bi.bind(null,k,e),[t.memoizedState,e]}function ii(e,t,n,a){return e={tag:e,create:t,destroy:n,deps:a,next:null},null===(t=k.updateQueue)?(k.updateQueue=t={lastEffect:null}).lastEffect=e.next=e:null===(n=t.lastEffect)?t.lastEffect=e.next=e:(a=n.next,(n.next=e).next=a,t.lastEffect=e),e}function li(){return ti().memoizedState}function si(e,t,n,a){var r=ei();k.effectTag|=e,r.memoizedState=ii(1|t,n,void 0,void 0===a?null:a)}function ui(e,t,n,a){var r=ti(),o=(a=void 0===a?null:a,void 0);if(null!==S){var i=S.memoizedState,o=i.destroy;if(null!==a&&Qo(a,i.deps))return void ii(t,n,o,a)}k.effectTag|=e,r.memoizedState=ii(1|t,n,o,a)}function di(e,t){return si(516,4,e,t)}function ci(e,t){return ui(516,4,e,t)}function fi(e,t){return ui(4,2,e,t)}function pi(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function hi(e,t,n){return n=null!=n?n.concat([e]):null,ui(4,2,pi.bind(null,t,e),n)}function mi(){}function gi(e,t){return ei().memoizedState=[e,void 0===t?null:t],e}function yi(e,t){var n=ti(),a=(t=void 0===t?null:t,n.memoizedState);return null!==a&&null!==t&&Qo(t,a[1])?a[0]:(n.memoizedState=[e,t],e)}function vi(e,t){var n=ti(),a=(t=void 0===t?null:t,n.memoizedState);return null!==a&&null!==t&&Qo(t,a[1])?a[0]:(e=e(),n.memoizedState=[e,t],e)}function _i(t,n,a){var e=eo();no(e<98?98:e,function(){t(!0)}),no(97<e?97:e,function(){var e=s.suspense;s.suspense=void 0===n?null:n;try{t(!1),a()}finally{s.suspense=e}})}function bi(e,t,n){var a,r={expirationTime:a=Ul(Bl(),e,r=So.suspense),suspenseConfig:r,action:n,eagerReducer:null,eagerState:null,next:null},o=t.pending;if(null===o?r.next=r:(r.next=o.next,o.next=r),t.pending=r,o=e.alternate,e===k||null!==o&&o===k)Xo=!0,r.expirationTime=Jo,k.expirationTime=Jo;else{if(0===e.expirationTime&&(null===o||0===o.expirationTime)&&null!==(o=t.lastRenderedReducer))try{var i=t.lastRenderedState,l=o(i,n);if(r.eagerReducer=o,r.eagerState=l,rr(l,i))return}catch(e){}Kl(e,a)}}var wi={readContext:v,useCallback:u,useContext:u,useEffect:u,useImperativeHandle:u,useLayoutEffect:u,useMemo:u,useReducer:u,useRef:u,useState:u,useDebugValue:u,useResponder:u,useDeferredValue:u,useTransition:u},Mi={readContext:v,useCallback:gi,useContext:v,useEffect:di,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,si(4,2,pi.bind(null,t,e),n)},useLayoutEffect:function(e,t){return si(4,2,e,t)},useMemo:function(e,t){var n=ei();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var a=ei();return t=void 0!==n?n(t):t,a.memoizedState=a.baseState=t,e=(e=a.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=bi.bind(null,k,e),[a.memoizedState,e]},useRef:function(e){return ei().memoizedState=e={current:e}},useState:oi,useDebugValue:mi,useResponder:qo,useDeferredValue:function(t,n){var e=oi(t),a=e[0],r=e[1];return di(function(){var e=s.suspense;s.suspense=void 0===n?null:n;try{r(t)}finally{s.suspense=e}},[t,n]),a},useTransition:function(e){var t=(n=oi(!1))[0],n=n[1];return[gi(_i.bind(null,n,e),[n,e]),t]}},ki={readContext:v,useCallback:yi,useContext:v,useEffect:ci,useImperativeHandle:hi,useLayoutEffect:fi,useMemo:vi,useReducer:ai,useRef:li,useState:function(){return ai(ni)},useDebugValue:mi,useResponder:qo,useDeferredValue:function(t,n){var e=ai(ni),a=e[0],r=e[1];return ci(function(){var e=s.suspense;s.suspense=void 0===n?null:n;try{r(t)}finally{s.suspense=e}},[t,n]),a},useTransition:function(e){var t=(n=ai(ni))[0],n=n[1];return[yi(_i.bind(null,n,e),[n,e]),t]}},Si={readContext:v,useCallback:yi,useContext:v,useEffect:ci,useImperativeHandle:hi,useLayoutEffect:fi,useMemo:vi,useReducer:ri,useRef:li,useState:function(){return ri(ni)},useDebugValue:mi,useResponder:qo,useDeferredValue:function(t,n){var e=ri(ni),a=e[0],r=e[1];return ci(function(){var e=s.suspense;s.suspense=void 0===n?null:n;try{r(t)}finally{s.suspense=e}},[t,n]),a},useTransition:function(e){var t=(n=ri(ni))[0],n=n[1];return[yi(_i.bind(null,n,e),[n,e]),t]}},Ei=null,xi=null,Ci=!1;function Li(e,t){var n=ys(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.effectTag=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Ti(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,1);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,1);default:return}}function Di(e){if(Ci){var t=xi;if(t){var n=t;if(!Ti(e,t)){if(!(t=Gn(n.nextSibling))||!Ti(e,t))return e.effectTag=-1025&e.effectTag|2,Ci=!1,void(Ei=e);Li(Ei,n)}Ei=e,xi=Gn(t.firstChild)}else e.effectTag=-1025&e.effectTag|2,Ci=!1,Ei=e}}function Oi(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Ei=e}function Ni(e){if(e===Ei){if(!Ci)return Oi(e),Ci=!0,0;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!Bn(t,e.memoizedProps))for(t=xi;t;)Li(e,t),t=Gn(t.nextSibling);if(Oi(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(R(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if(n===An){if(0===t){xi=Gn(e.nextSibling);break e}t--}else n!==Rn&&n!==Fn&&n!==Hn||t++}e=e.nextSibling}xi=null}}else xi=Ei?Gn(e.stateNode.nextSibling):null;return 1}}function Pi(){xi=Ei=null,Ci=!1}var ji=t.ReactCurrentOwner,Yi=!1;function _(e,t,n,a){t.child=null===e?Ro(t,null,n,a):Io(t,e.child,n,a)}function Ii(e,t,n,a,r){n=n.render;var o=t.ref;return mo(t,r),a=Zo(e,t,n,a,o,r),null===e||Yi?(t.effectTag|=1,_(e,t,a,r),t.child):(t.updateQueue=e.updateQueue,t.effectTag&=-517,e.expirationTime<=r&&(e.expirationTime=0),$i(e,t,r))}function Ri(e,t,n,a,r,o){var i;return null===e?"function"!=typeof(i=n.type)||vs(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=bs(n.type,null,a,null,t.mode,o)).ref=t.ref,(e.return=t).child=e):(t.tag=15,t.type=i,Ai(e,t,i,a,r,o)):(i=e.child,r<o&&(r=i.memoizedProps,(n=null!==(n=n.compare)?n:ir)(r,a)&&e.ref===t.ref)?$i(e,t,o):(t.effectTag|=1,(e=_s(i,a)).ref=t.ref,(e.return=t).child=e))}function Ai(e,t,n,a,r,o){return null!==e&&ir(e.memoizedProps,a)&&e.ref===t.ref&&(Yi=!1,r<o)?(t.expirationTime=e.expirationTime,$i(e,t,o)):Fi(e,t,n,a,o)}function Hi(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.effectTag|=128)}function Fi(e,t,n,a,r){var o=Or(t,m(n)?Dr:p.current);return mo(t,r),n=Zo(e,t,n,a,o,r),null===e||Yi?(t.effectTag|=1,_(e,t,n,r),t.child):(t.updateQueue=e.updateQueue,t.effectTag&=-517,e.expirationTime<=r&&(e.expirationTime=0),$i(e,t,r))}function zi(e,t,n,a,r){var o,i,l,s,u,d,c,f;return m(n)?(o=!0,Yr(t)):o=!1,mo(t,r),a=null===t.stateNode?(null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),To(t,n,a),Oo(t,n,a,r),!0):null===e?(i=t.stateNode,l=t.memoizedProps,i.props=l,s=i.context,u="object"==typeof(u=n.contextType)&&null!==u?v(u):Or(t,u=m(n)?Dr:p.current),(c="function"==typeof(d=n.getDerivedStateFromProps)||"function"==typeof i.getSnapshotBeforeUpdate)||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||l===a&&s===u||Do(0,i,a,u),go=!1,f=t.memoizedState,i.state=f,Mo(t,a,i,r),s=t.memoizedState,l!==a||f!==s||h.current||go?("function"==typeof d&&(xo(t,0,d,a),s=t.memoizedState),(l=go||Lo(t,n,l,a,f,s,u))?(c||"function"!=typeof i.UNSAFE_componentWillMount&&"function"!=typeof i.componentWillMount||("function"==typeof i.componentWillMount&&i.componentWillMount(),"function"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),"function"==typeof i.componentDidMount&&(t.effectTag|=4)):("function"==typeof i.componentDidMount&&(t.effectTag|=4),t.memoizedProps=a,t.memoizedState=s),i.props=a,i.state=s,i.context=u,l):("function"==typeof i.componentDidMount&&(t.effectTag|=4),!1)):(i=t.stateNode,vo(e,t),l=t.memoizedProps,i.props=t.type===t.elementType?l:x(t.type,l),s=i.context,u="object"==typeof(u=n.contextType)&&null!==u?v(u):Or(t,u=m(n)?Dr:p.current),(c="function"==typeof(d=n.getDerivedStateFromProps)||"function"==typeof i.getSnapshotBeforeUpdate)||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||l===a&&s===u||Do(0,i,a,u),go=!1,s=t.memoizedState,i.state=s,Mo(t,a,i,r),f=t.memoizedState,l!==a||s!==f||h.current||go?("function"==typeof d&&(xo(t,0,d,a),f=t.memoizedState),(d=go||Lo(t,n,l,a,s,f,u))?(c||"function"!=typeof i.UNSAFE_componentWillUpdate&&"function"!=typeof i.componentWillUpdate||("function"==typeof i.componentWillUpdate&&i.componentWillUpdate(a,f,u),"function"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(a,f,u)),"function"==typeof i.componentDidUpdate&&(t.effectTag|=4),"function"==typeof i.getSnapshotBeforeUpdate&&(t.effectTag|=256)):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&s===e.memoizedState||(t.effectTag|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&s===e.memoizedState||(t.effectTag|=256),t.memoizedProps=a,t.memoizedState=f),i.props=a,i.state=f,i.context=u,d):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&s===e.memoizedState||(t.effectTag|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&s===e.memoizedState||(t.effectTag|=256),!1)),Wi(e,t,n,a,o,r)}function Wi(e,t,n,a,r,o){Hi(e,t);var i=0!=(64&t.effectTag);if(!a&&!i)return r&&Ir(t,n,!1),$i(e,t,o);a=t.stateNode,ji.current=t;var l=i&&"function"!=typeof n.getDerivedStateFromError?null:a.render();return t.effectTag|=1,null!==e&&i?(t.child=Io(t,e.child,null,o),t.child=Io(t,null,l,o)):_(e,t,l,o),t.memoizedState=a.state,r&&Ir(t,n,!0),t.child}function Vi(e){var t=e.stateNode;t.pendingContext?Pr(0,t.pendingContext,t.pendingContext!==t.context):t.context&&Pr(0,t.context,!1),Vo(e,t.containerInfo)}var Bi={dehydrated:null,retryTime:0};function Ui(e,t,n){var a,r=t.mode,o=t.pendingProps,i=M.current,l=!1;if((a=(a=0!=(64&t.effectTag))?a:0!=(2&i)&&(null===e||null!==e.memoizedState))?(l=!0,t.effectTag&=-65):null!==e&&null===e.memoizedState||void 0===o.fallback||!0===o.unstable_avoidThisFallback||(i|=1),f(M,1&i),null===e){if(void 0!==o.fallback&&Di(t),l){if(l=o.fallback,0==(2&((o=ws(null,r,0,null)).return=t).mode))for(e=(null!==t.memoizedState?t.child:t).child,o.child=e;null!==e;)e.return=o,e=e.sibling;return(n=ws(l,r,n,null)).return=t,o.sibling=n,t.memoizedState=Bi,t.child=o,n}return r=o.children,t.memoizedState=null,t.child=Ro(t,null,r,n)}if(null!==e.memoizedState){if(r=(e=e.child).sibling,l){if(o=o.fallback,0==(2&((n=_s(e,e.pendingProps)).return=t).mode)&&(l=(null!==t.memoizedState?t.child:t).child)!==e.child)for(n.child=l;null!==l;)l.return=n,l=l.sibling;return(r=_s(r,o)).return=t,n.sibling=r,n.childExpirationTime=0,t.memoizedState=Bi,t.child=n,r}return n=Io(t,e.child,o.children,n),t.memoizedState=null,t.child=n}if(e=e.child,l){if(l=o.fallback,(o=ws(null,r,0,null)).return=t,null!==(o.child=e)&&(e.return=o),0==(2&t.mode))for(e=(null!==t.memoizedState?t.child:t).child,o.child=e;null!==e;)e.return=o,e=e.sibling;return(n=ws(l,r,n,null)).return=t,(o.sibling=n).effectTag|=2,o.childExpirationTime=0,t.memoizedState=Bi,t.child=o,n}return t.memoizedState=null,t.child=Io(t,e,o.children,n)}function Ki(e,t){e.expirationTime<t&&(e.expirationTime=t);var n=e.alternate;null!==n&&n.expirationTime<t&&(n.expirationTime=t),ho(e.return,t)}function Gi(e,t,n,a,r,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:a,tail:n,tailExpiration:0,tailMode:r,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=a,i.tail=n,i.tailExpiration=0,i.tailMode=r,i.lastEffect=o)}function qi(e,t,n){var a=t.pendingProps,r=a.revealOrder,o=a.tail;if(_(e,t,a.children,n),0!=(2&(a=M.current)))a=1&a|2,t.effectTag|=64;else{if(null!==e&&0!=(64&e.effectTag))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&Ki(e,n);else if(19===e.tag)Ki(e,n);else if(null!==e.child){e=(e.child.return=e).child;continue}if(e===t)break;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}a&=1}if(f(M,a),0==(2&t.mode))t.memoizedState=null;else switch(r){case"forwards":for(n=t.child,r=null;null!==n;)null!==(e=n.alternate)&&null===Go(e)&&(r=n),n=n.sibling;null===(n=r)?(r=t.child,t.child=null):(r=n.sibling,n.sibling=null),Gi(t,!1,r,n,o,t.lastEffect);break;case"backwards":for(r=t.child,t.child=n=null;null!==r;){if(null!==(e=r.alternate)&&null===Go(e)){t.child=r;break}e=r.sibling,r.sibling=n,n=r,r=e}Gi(t,!0,n,null,o,t.lastEffect);break;case"together":Gi(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function $i(e,t,n){null!==e&&(t.dependencies=e.dependencies);var a=t.expirationTime;if(0!==a&&as(a),t.childExpirationTime<n)return null;if(null!==e&&t.child!==e.child)throw Error(R(153));if(null!==t.child){for(n=_s(e=t.child,e.pendingProps),(t.child=n).return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=_s(e,e.pendingProps)).return=t;n.sibling=null}return t.child}function Ji(e,t){switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":for(var n=e.tail,a=null;null!==n;)null!==n.alternate&&(a=n),n=n.sibling;null===a?t||null===e.tail?e.tail=null:e.tail.sibling=null:a.sibling=null}}function Xi(e,t){return{value:e,source:t,stack:Be(t)}}var Qi=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n=(n.child.return=n).child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Zi=function(e,t,n,a,r){var o=e.memoizedProps;if(o!==a){var i,l,s=t.stateNode;switch(Wo(Ho.current),e=null,n){case"input":o=$e(s,o),a=$e(s,a),e=[];break;case"option":o=tt(s,o),a=tt(s,a),e=[];break;case"select":o=y({},o,{value:void 0}),a=y({},a,{value:void 0}),e=[];break;case"textarea":o=at(s,o),a=at(s,a),e=[];break;default:"function"!=typeof o.onClick&&"function"==typeof a.onClick&&(s.onclick=On)}for(i in Cn(n,a),n=null,o)if(!a.hasOwnProperty(i)&&o.hasOwnProperty(i)&&null!=o[i])if("style"===i)for(l in s=o[i],s)s.hasOwnProperty(l)&&(n=n||{},n[l]="");else"dangerouslySetInnerHTML"!==i&&"children"!==i&&"suppressContentEditableWarning"!==i&&"suppressHydrationWarning"!==i&&"autoFocus"!==i&&(ee.hasOwnProperty(i)?e=e||[]:(e=e||[]).push(i,null));for(i in a){var u=a[i],s=null!=o?o[i]:void 0;if(a.hasOwnProperty(i)&&u!==s&&(null!=u||null!=s))if("style"===i)if(s){for(l in s)!s.hasOwnProperty(l)||u&&u.hasOwnProperty(l)||(n=n||{},n[l]="");for(l in u)u.hasOwnProperty(l)&&s[l]!==u[l]&&(n=n||{},n[l]=u[l])}else n||(e=e||[]).push(i,n),n=u;else"dangerouslySetInnerHTML"===i?(u=u?u.__html:void 0,s=s?s.__html:void 0,null!=u&&s!==u&&(e=e||[]).push(i,u)):"children"===i?s===u||"string"!=typeof u&&"number"!=typeof u||(e=e||[]).push(i,""+u):"suppressContentEditableWarning"!==i&&"suppressHydrationWarning"!==i&&(ee.hasOwnProperty(i)?(null!=u&&Dn(r,i),e||s===u||(e=[])):(e=e||[]).push(i,u))}n&&(e=e||[]).push("style",n),r=e,(t.updateQueue=r)&&(t.effectTag|=4)}},el=function(e,t,n,a){n!==a&&(t.effectTag|=4)},tl="function"==typeof WeakSet?WeakSet:Set;function nl(e,t){var n=t.source;null===t.stack&&null!==n&&Be(n),null!==n&&Ve(n.type),t=t.value,null!==e&&1===e.tag&&Ve(e.type);try{console.error(t)}catch(e){setTimeout(function(){throw e})}}function al(t){var e=t.ref;if(null!==e)if("function"==typeof e)try{e(null)}catch(e){cs(t,e)}else e.current=null}function rl(e,t){if(null!==(t=null!==(t=t.updateQueue)?t.lastEffect:null)){var n,a=t=t.next;do{}while((a.tag&e)===e&&(n=a.destroy,(a.destroy=void 0)!==n&&n()),(a=a.next)!==t)}}function ol(e,t){if(null!==(t=null!==(t=t.updateQueue)?t.lastEffect:null)){var n,a=t=t.next;do{}while((a.tag&e)===e&&(n=a.create,a.destroy=n()),(a=a.next)!==t)}}function il(e,a,t){switch("function"==typeof ms&&ms(a),a.tag){case 0:case 11:case 14:case 15:case 22:var r;null!==(e=a.updateQueue)&&null!==(e=e.lastEffect)&&(r=e.next,no(97<t?97:t,function(){var e=r;do{var t=e.destroy;if(void 0!==t){var n=a;try{t()}catch(e){cs(n,e)}}}while((e=e.next)!==r)}));break;case 1:if(al(a),"function"==typeof(t=a.stateNode).componentWillUnmount){var n=a;var o=t;try{o.props=n.memoizedProps,o.state=n.memoizedState,o.componentWillUnmount()}catch(e){cs(n,e)}}break;case 5:al(a);break;case 4:ul(e,a,t)}}function ll(e){return 5===e.tag||3===e.tag||4===e.tag}function sl(e){e:{for(var t=e.return;null!==t;){if(ll(t)){var n=t;break e}t=t.return}throw Error(R(160))}switch(t=n.stateNode,n.tag){case 5:var a=!1;break;case 3:case 4:t=t.containerInfo,a=!0;break;default:throw Error(R(161))}16&n.effectTag&&(pt(t,""),n.effectTag&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||ll(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.effectTag)continue t;if(null===n.child||4===n.tag)continue t;n=(n.child.return=n).child}if(!(2&n.effectTag)){n=n.stateNode;break e}}(a?function e(t,n,a){var r=t.tag,o=5===r||6===r;if(o)t=o?t.stateNode:t.stateNode.instance,n?(8===a.nodeType?a.parentNode:a).insertBefore(t,n):(8===a.nodeType?(n=a.parentNode,n.insertBefore(t,a)):(n=a,n.appendChild(t)),a=a._reactRootContainer,null==a&&null===n.onclick&&(n.onclick=On));else if(4!==r&&(t=t.child,null!==t))for(e(t,n,a),t=t.sibling;null!==t;)e(t,n,a),t=t.sibling}:function e(t,n,a){var r=t.tag,o=5===r||6===r;if(o)t=o?t.stateNode:t.stateNode.instance,n?a.insertBefore(t,n):a.appendChild(t);else if(4!==r&&(t=t.child,null!==t))for(e(t,n,a),t=t.sibling;null!==t;)e(t,n,a),t=t.sibling})(e,n,t)}function ul(e,t,n){for(var a,r,o=t,i=!1;;){if(!i){i=o.return;e:for(;;){if(null===i)throw Error(R(160));switch(a=i.stateNode,i.tag){case 5:r=!1;break e;case 3:case 4:a=a.containerInfo,r=!0;break e}i=i.return}i=!0}if(5===o.tag||6===o.tag){e:for(var l=e,s=o,u=n,d=s;;)if(il(l,d,u),null!==d.child&&4!==d.tag)d.child.return=d,d=d.child;else{if(d===s)break;for(;null===d.sibling;){if(null===d.return||d.return===s)break e;d=d.return}d.sibling.return=d.return,d=d.sibling}r?(l=a,s=o.stateNode,(8===l.nodeType?l.parentNode:l).removeChild(s)):a.removeChild(o.stateNode)}else if(4===o.tag){if(null!==o.child){a=o.stateNode.containerInfo,r=!0,o=(o.child.return=o).child;continue}}else if(il(e,o,n),null!==o.child){o=(o.child.return=o).child;continue}if(o===t)break;for(;null===o.sibling;){if(null===o.return||o.return===t)return;4===(o=o.return).tag&&(i=!1)}o.sibling.return=o.return,o=o.sibling}}function dl(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:return void rl(3,t);case 1:return;case 5:var n=t.stateNode;if(null!=n){var a=t.memoizedProps,r=null!==e?e.memoizedProps:a,o=(e=t.type,t.updateQueue);if((t.updateQueue=null)!==o){for(n[Jn]=a,"input"===e&&"radio"===a.type&&null!=a.name&&Xe(n,a),Ln(e,r),t=Ln(e,a),r=0;r<o.length;r+=2){var i=o[r],l=o[r+1];"style"===i?En(n,l):"dangerouslySetInnerHTML"===i?ft(n,l):"children"===i?pt(n,l):Ee(n,i,l,t)}switch(e){case"input":Qe(n,a);break;case"textarea":ot(n,a);break;case"select":t=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!a.multiple,null!=(e=a.value)?nt(n,!!a.multiple,e,!1):t!==!!a.multiple&&(null!=a.defaultValue?nt(n,!!a.multiple,a.defaultValue,!0):nt(n,!!a.multiple,a.multiple?[]:"",!1))}}}return;case 6:if(null===t.stateNode)throw Error(R(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((t=t.stateNode).hydrate&&(t.hydrate=!1,sn(t.containerInfo)));case 12:return;case 13:if(null===(n=t).memoizedState?a=!1:(a=!0,n=t.child,Nl=g()),null!==n)e:for(e=n;;){if(5===e.tag)o=e.stateNode,a?"function"==typeof(o=o.style).setProperty?o.setProperty("display","none","important"):o.display="none":(o=e.stateNode,r=null!=(r=e.memoizedProps.style)&&r.hasOwnProperty("display")?r.display:null,o.style.display=Sn("display",r));else if(6===e.tag)e.stateNode.nodeValue=a?"":e.memoizedProps;else{if(13===e.tag&&null!==e.memoizedState&&null===e.memoizedState.dehydrated){(o=e.child.sibling).return=e,e=o;continue}if(null!==e.child){e=(e.child.return=e).child;continue}}if(e===n)break;for(;null===e.sibling;){if(null===e.return||e.return===n)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}return void cl(t);case 19:return void cl(t);case 17:return}throw Error(R(163))}function cl(n){var a,e=n.updateQueue;null!==e&&((n.updateQueue=null)===(a=n.stateNode)&&(a=n.stateNode=new tl),e.forEach(function(e){var t=function(e,t){var n=e.stateNode;null!==n&&n.delete(t),(t=0)===t&&(t=Ul(t=Bl(),e,null)),null!==(e=Gl(e,t))&&I(e)}.bind(null,n,e);a.has(e)||(a.add(e),e.then(t,t))}))}var fl="function"==typeof WeakMap?WeakMap:Map;function pl(e,t,n){(n=_o(n,null)).tag=3,n.payload={element:null};var a=t.value;return n.callback=function(){jl||(jl=!0,Yl=a),nl(e,t)},n}function hl(t,n,e){(e=_o(e,null)).tag=3;var a,r=t.type.getDerivedStateFromError,o=("function"==typeof r&&(a=n.value,e.payload=function(){return nl(t,n),r(a)}),t.stateNode);return null!==o&&"function"==typeof o.componentDidCatch&&(e.callback=function(){"function"!=typeof r&&(null===Il?Il=new Set([this]):Il.add(this),nl(t,n));var e=n.stack;this.componentDidCatch(n.value,{componentStack:null!==e?e:""})}),e}var ml=Math.ceil,gl=t.ReactCurrentDispatcher,yl=t.ReactCurrentOwner,L=0,vl=8,T=16,_l=32,bl=0,wl=1,Ml=2,kl=3,Sl=4,El=5,D=L,O=null,N=null,P=0,j=bl,xl=null,Cl=1073741823,Ll=1073741823,Tl=null,Dl=0,Ol=!1,Nl=0,Pl=500,Y=null,jl=!1,Yl=null,Il=null,Rl=!1,Al=null,Hl=90,Fl=null,zl=0,Wl=null,Vl=0;function Bl(){return(D&(T|_l))!==L?1073741821-(g()/10|0):0!==Vl?Vl:Vl=1073741821-(g()/10|0)}function Ul(e,t,n){if(0==(2&(t=t.mode)))return 1073741823;var a=eo();if(0==(4&t))return 99===a?1073741823:1073741822;if((D&T)!==L)return P;if(null!==n)e=io(e,0|n.timeoutMs||5e3,250);else switch(a){case 99:e=1073741823;break;case 98:e=io(e,150,100);break;case 97:case 96:e=io(e,5e3,250);break;case 95:e=2;break;default:throw Error(R(326))}return null!==O&&e===P&&--e,e}function Kl(e,t){if(50<zl)throw zl=0,Wl=null,Error(R(185));var n;null!==(e=Gl(e,t))&&(n=eo(),1073741823===t?(D&vl)!==L&&(D&(T|_l))===L?Jl(e):(I(e),D===L&&E()):I(e),(4&D)===L||98!==n&&99!==n||(null===Fl?Fl=new Map([[e,t]]):(void 0===(n=Fl.get(e))||t<n)&&Fl.set(e,t)))}function Gl(e,t){e.expirationTime<t&&(e.expirationTime=t);var n=e.alternate,a=(null!==n&&n.expirationTime<t&&(n.expirationTime=t),e.return),r=null;if(null===a&&3===e.tag)r=e.stateNode;else for(;null!==a;){if(n=a.alternate,a.childExpirationTime<t&&(a.childExpirationTime=t),null!==n&&n.childExpirationTime<t&&(n.childExpirationTime=t),null===a.return&&3===a.tag){r=a.stateNode;break}a=a.return}return null!==r&&(O===r&&(as(t),j===Sl&&xs(r,P)),Cs(r,t)),r}function ql(e){var t=e.lastExpiredTime;if(0!==t)return t;if(!Es(e,t=e.firstPendingTime))return t;var n=e.lastPingedTime;return(e=(e=e.nextKnownPendingLevel)<n?n:e)<=2&&t!==e?0:e}function I(e){if(0!==e.lastExpiredTime)e.callbackExpirationTime=1073741823,e.callbackPriority=99,e.callbackNode=ro(Jl.bind(null,e));else{var t=ql(e),n=e.callbackNode;if(0===t)null!==n&&(e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90);else{var a=Bl(),a=1073741823===t?99:1===t||2===t?95:(a=10*(1073741821-t)-10*(1073741821-a))<=0?99:a<=250?98:a<=5250?97:95;if(null!==n){var r=e.callbackPriority;if(e.callbackExpirationTime===t&&a<=r)return;n!==Gr&&Hr(n)}e.callbackExpirationTime=t,e.callbackPriority=a,t=1073741823===t?ro(Jl.bind(null,e)):ao(a,$l.bind(null,e),{timeout:10*(1073741821-t)-g()}),e.callbackNode=t}}}function $l(t,e){if(Vl=0,e)Ls(t,e=Bl()),I(t);else{var n=ql(t);if(0!==n){if(e=t.callbackNode,(D&(T|_l))!==L)throw Error(R(327));if(ss(),t===O&&n===P||Zl(t,n),null!==N){for(var a=D,r=(D|=T,ts());;)try{for(;null!==N&&!qr();)N=rs(N);break}catch(e){es(t,e)}if(fo(),D=a,gl.current=r,j===wl)throw e=xl,Zl(t,n),xs(t,n),I(t),e;if(null===N)switch(r=t.finishedWork=t.current.alternate,t.finishedExpirationTime=n,a=j,O=null,a){case bl:case wl:throw Error(R(345));case Ml:Ls(t,2<n?2:n);break;case kl:if(xs(t,n),n===(a=t.lastSuspendedTime)&&(t.nextKnownPendingLevel=is(r)),1073741823===Cl&&10<(r=Nl+Pl-g())){if(Ol){var o=t.lastPingedTime;if(0===o||n<=o){t.lastPingedTime=n,Zl(t,n);break}}if(0!==(o=ql(t))&&o!==n)break;if(0!==a&&a!==n){t.lastPingedTime=a;break}t.timeoutHandle=Un(ls.bind(null,t),r);break}ls(t);break;case Sl:if(xs(t,n),n===(a=t.lastSuspendedTime)&&(t.nextKnownPendingLevel=is(r)),Ol&&(0===(r=t.lastPingedTime)||n<=r)){t.lastPingedTime=n,Zl(t,n);break}if(0!==(r=ql(t))&&r!==n)break;if(0!==a&&a!==n){t.lastPingedTime=a;break}if(1073741823!==Ll?a=10*(1073741821-Ll)-g():1073741823===Cl?a=0:(a=10*(1073741821-Cl)-5e3,(n=10*(1073741821-n)-(r=g()))<(a=((a=(a=r-a)<0?0:a)<120?120:a<480?480:a<1080?1080:a<1920?1920:a<3e3?3e3:a<4320?4320:1960*ml(a/1960))-a)&&(a=n)),10<a){t.timeoutHandle=Un(ls.bind(null,t),a);break}ls(t);break;case El:if(1073741823!==Cl&&null!==Tl){var o=Cl,i=Tl;if(10<(a=(a=0|i.busyMinDurationMs)<=0?0:(r=0|i.busyDelayMs,(o=g()-(10*(1073741821-o)-(0|i.timeoutMs||5e3)))<=r?0:r+a-o))){xs(t,n),t.timeoutHandle=Un(ls.bind(null,t),a);break}}ls(t);break;default:throw Error(R(329))}if(I(t),t.callbackNode===e)return $l.bind(null,t)}}}return null}function Jl(t){var e=0!==(e=t.lastExpiredTime)?e:1073741823;if((D&(T|_l))!==L)throw Error(R(327));if(ss(),t===O&&e===P||Zl(t,e),null!==N){for(var n=D,a=(D|=T,ts());;)try{for(;null!==N;)N=rs(N);break}catch(e){es(t,e)}if(fo(),D=n,gl.current=a,j===wl)throw n=xl,Zl(t,e),xs(t,e),I(t),n;if(null!==N)throw Error(R(261));t.finishedWork=t.current.alternate,t.finishedExpirationTime=e,O=null,ls(t),I(t)}return null}function Xl(e,t){var n=D;D|=1;try{return e(t)}finally{(D=n)===L&&E()}}function Ql(e,t){var n=D;D=-2&D|vl;try{e(t)}finally{(D=n)===L&&E()}}function Zl(e,t){e.finishedWork=null,e.finishedExpirationTime=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,Kn(n)),null!==N)for(n=N.return;null!==n;){var a=n;switch(a.tag){case 1:null!=(a=a.type.childContextTypes)&&Nr();break;case 3:Bo(),c(h),c(p);break;case 5:Ko(a);break;case 4:Bo();break;case 13:case 19:c(M);break;case 10:po(a)}n=n.return}N=_s((O=e).current,null),P=t,j=bl,Ll=Cl=1073741823,Tl=xl=null,Dl=0,Ol=!1}function es(e,t){do{try{if(fo(),$o.current=wi,Xo)for(var n=k.memoizedState;null!==n;){var a=n.queue;null!==a&&(a.pending=null),n=n.next}if(Jo=0,C=S=k=null,Xo=!1,null===N||null===N.return)return j=wl,xl=t,N=null;e:{var r=e,o=N.return,i=t;if(t=P,(v=N).effectTag|=2048,(v.firstEffect=v.lastEffect=null)!==i&&"object"==typeof i&&"function"==typeof i.then){var l,s,u,d,c=i,f=(0==(2&v.mode)&&((l=v.alternate)?(v.updateQueue=l.updateQueue,v.memoizedState=l.memoizedState,v.expirationTime=l.expirationTime):(v.updateQueue=null,v.memoizedState=null)),0!=(1&M.current)),p=o;do{if(d=(d=13===p.tag)?null!==(s=p.memoizedState)?null!==s.dehydrated:void 0!==(u=p.memoizedProps).fallback&&(!0!==u.unstable_avoidThisFallback||!f):d){var h,m,g=p.updateQueue;if(null===g?((h=new Set).add(c),p.updateQueue=h):g.add(c),0==(2&p.mode)){p.effectTag|=64,v.effectTag&=-2981,1===v.tag&&(null===v.alternate?v.tag=17:((m=_o(1073741823,null)).tag=2,bo(v,m))),v.expirationTime=1073741823;break e}var y,i=void 0,v=t,_=r.pingCache;null===_?(_=r.pingCache=new fl,i=new Set,_.set(c,i)):void 0===(i=_.get(c))&&(i=new Set,_.set(c,i)),i.has(v)||(i.add(v),y=fs.bind(null,r,c,v),c.then(y,y)),p.effectTag|=4096,p.expirationTime=t;break e}}while(null!==(p=p.return));i=Error((Ve(v.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display."+Be(v))}j!==El&&(j=Ml),i=Xi(i,v),p=o;do{switch(p.tag){case 3:c=i;p.effectTag|=4096,p.expirationTime=t,wo(p,pl(p,c,t));break e;case 1:c=i;var b=p.type,w=p.stateNode;if(0==(64&p.effectTag)&&("function"==typeof b.getDerivedStateFromError||null!==w&&"function"==typeof w.componentDidCatch&&(null===Il||!Il.has(w)))){p.effectTag|=4096,p.expirationTime=t,wo(p,hl(p,c,t));break e}}}while(null!==(p=p.return))}N=os(N)}catch(e){t=e;continue}break}while(1)}function ts(){var e=gl.current;return gl.current=wi,null===e?wi:e}function ns(e,t){e<Cl&&2<e&&(Cl=e),null!==t&&e<Ll&&2<e&&(Ll=e,Tl=t)}function as(e){Dl<e&&(Dl=e)}function rs(e){var t=ps(e.alternate,e,P);return e.memoizedProps=e.pendingProps,null===t&&(t=os(e)),yl.current=null,t}function os(e){N=e;do{var t=N.alternate;if(e=N.return,0==(2048&N.effectTag)){if(t=function(e,t,n){var a=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:return m(t.type)&&Nr(),null;case 3:return Bo(),c(h),c(p),(n=t.stateNode).pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),null!==e&&null!==e.child||!Ni(t)||(t.effectTag|=4),null;case 5:Ko(t),n=Wo(zo.current);var r=t.type;if(null!==e&&null!=t.stateNode)Zi(e,t,r,a,n),e.ref!==t.ref&&(t.effectTag|=128);else{if(!a){if(null===t.stateNode)throw Error(R(166));return null}if(e=Wo(Ho.current),Ni(t)){var o,i,a=t.stateNode,r=t.type,l=t.memoizedProps;switch(a[$n]=t,a[Jn]=l,r){case"iframe":case"object":case"embed":d("load",a);break;case"video":case"audio":for(e=0;e<kt.length;e++)d(kt[e],a);break;case"source":d("error",a);break;case"img":case"image":case"link":d("error",a),d("load",a);break;case"form":d("reset",a),d("submit",a);break;case"details":d("toggle",a);break;case"input":Je(a,l),d("invalid",a),Dn(n,"onChange");break;case"select":a._wrapperState={wasMultiple:!!l.multiple},d("invalid",a),Dn(n,"onChange");break;case"textarea":rt(a,l),d("invalid",a),Dn(n,"onChange")}for(o in Cn(r,l),e=null,l)l.hasOwnProperty(o)&&(i=l[o],"children"===o?"string"==typeof i?a.textContent!==i&&(e=["children",i]):"number"==typeof i&&a.textContent!==""+i&&(e=["children",""+i]):ee.hasOwnProperty(o)&&null!=i&&Dn(n,o));switch(r){case"input":Ge(a),Ze(a,l,!0);break;case"textarea":Ge(a),it(a);break;case"select":case"option":break;default:"function"==typeof l.onClick&&(a.onclick=On)}n=e,null!==(t.updateQueue=n)&&(t.effectTag|=4)}else{switch(o=9===n.nodeType?n:n.ownerDocument,(e=e===Tn?st(r):e)===Tn?"script"===r?((e=o.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof a.is?e=o.createElement(r,{is:a.is}):(e=o.createElement(r),"select"===r&&(o=e,a.multiple?o.multiple=!0:a.size&&(o.size=a.size))):e=o.createElementNS(e,r),e[$n]=t,e[Jn]=a,Qi(e,t),t.stateNode=e,o=Ln(r,a),r){case"iframe":case"object":case"embed":d("load",e),i=a;break;case"video":case"audio":for(i=0;i<kt.length;i++)d(kt[i],e);i=a;break;case"source":d("error",e),i=a;break;case"img":case"image":case"link":d("error",e),d("load",e),i=a;break;case"form":d("reset",e),d("submit",e),i=a;break;case"details":d("toggle",e),i=a;break;case"input":Je(e,a),i=$e(e,a),d("invalid",e),Dn(n,"onChange");break;case"option":i=tt(e,a);break;case"select":e._wrapperState={wasMultiple:!!a.multiple},i=y({},a,{value:void 0}),d("invalid",e),Dn(n,"onChange");break;case"textarea":rt(e,a),i=at(e,a),d("invalid",e),Dn(n,"onChange");break;default:i=a}Cn(r,i);var s,u=i;for(l in u)u.hasOwnProperty(l)&&(s=u[l],"style"===l?En(e,s):"dangerouslySetInnerHTML"===l?null!=(s=s?s.__html:void 0)&&ft(e,s):"children"===l?"string"==typeof s?"textarea"===r&&""===s||pt(e,s):"number"==typeof s&&pt(e,""+s):"suppressContentEditableWarning"!==l&&"suppressHydrationWarning"!==l&&"autoFocus"!==l&&(ee.hasOwnProperty(l)?null!=s&&Dn(n,l):null!=s&&Ee(e,l,s,o)));switch(r){case"input":Ge(e),Ze(e,a,!1);break;case"textarea":Ge(e),it(e);break;case"option":null!=a.value&&e.setAttribute("value",""+Ue(a.value));break;case"select":e.multiple=!!a.multiple,null!=(n=a.value)?nt(e,!!a.multiple,n,!1):null!=a.defaultValue&&nt(e,!!a.multiple,a.defaultValue,!0);break;default:"function"==typeof i.onClick&&(e.onclick=On)}Vn(r,a)&&(t.effectTag|=4)}null!==t.ref&&(t.effectTag|=128)}return null;case 6:if(e&&null!=t.stateNode)el(0,t,e.memoizedProps,a);else{if("string"!=typeof a&&null===t.stateNode)throw Error(R(166));n=Wo(zo.current),Wo(Ho.current),Ni(t)?(n=t.stateNode,a=t.memoizedProps,n[$n]=t,n.nodeValue!==a&&(t.effectTag|=4)):((n=(9===n.nodeType?n:n.ownerDocument).createTextNode(a))[$n]=t).stateNode=n}return null;case 13:return(c(M),a=t.memoizedState,0!=(64&t.effectTag))?(t.expirationTime=n,t):(n=null!==a,a=!1,null===e?void 0!==t.memoizedProps.fallback&&Ni(t):(a=null!==(r=e.memoizedState),n||null===r||null!==(r=e.child.sibling)&&(null!==(l=t.firstEffect)?(t.firstEffect=r).nextEffect=l:(t.firstEffect=t.lastEffect=r).nextEffect=null,r.effectTag=8)),n&&!a&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&M.current)?j===bl&&(j=kl):(j!==bl&&j!==kl||(j=Sl),0!==Dl&&null!==O&&(xs(O,P),Cs(O,Dl)))),(n||a)&&(t.effectTag|=4),null);case 4:return Bo(),null;case 10:return po(t),null;case 17:return m(t.type)&&Nr(),null;case 19:if(c(M),null===(a=t.memoizedState))return null;if(r=0!=(64&t.effectTag),null===(l=a.rendering)){if(r)Ji(a,!1);else if(j!==bl||null!==e&&0!=(64&e.effectTag))for(l=t.child;null!==l;){if(null!==(e=Go(l))){for(t.effectTag|=64,Ji(a,!1),null!==(r=e.updateQueue)&&(t.updateQueue=r,t.effectTag|=4),null===a.lastEffect&&(t.firstEffect=null),t.lastEffect=a.lastEffect,a=t.child;null!==a;)l=n,(r=a).effectTag&=2,r.nextEffect=null,r.firstEffect=null,(r.lastEffect=null)===(e=r.alternate)?(r.childExpirationTime=0,r.expirationTime=l,r.child=null,r.memoizedProps=null,r.memoizedState=null,r.updateQueue=null,r.dependencies=null):(r.childExpirationTime=e.childExpirationTime,r.expirationTime=e.expirationTime,r.child=e.child,r.memoizedProps=e.memoizedProps,r.memoizedState=e.memoizedState,r.updateQueue=e.updateQueue,l=e.dependencies,r.dependencies=null===l?null:{expirationTime:l.expirationTime,firstContext:l.firstContext,responders:l.responders}),a=a.sibling;return f(M,1&M.current|2),t.child}l=l.sibling}}else{if(!r)if(null!==(e=Go(l))){if(t.effectTag|=64,r=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.effectTag|=4),Ji(a,!0),null===a.tail&&"hidden"===a.tailMode&&!l.alternate)return null!==(t=t.lastEffect=a.lastEffect)&&(t.nextEffect=null),null}else 2*g()-a.renderingStartTime>a.tailExpiration&&1<n&&(t.effectTag|=64,Ji(a,!(r=!0)),t.expirationTime=t.childExpirationTime=n-1);a.isBackwards?(l.sibling=t.child,t.child=l):(null!==(n=a.last)?n.sibling=l:t.child=l,a.last=l)}return null!==a.tail?(0===a.tailExpiration&&(a.tailExpiration=g()+500),n=a.tail,a.rendering=n,a.tail=n.sibling,a.lastEffect=t.lastEffect,a.renderingStartTime=g(),n.sibling=null,t=M.current,f(M,r?1&t|2:1&t),n):null}throw Error(R(156,t.tag))}(t,N,P),1===P||1!==N.childExpirationTime){for(var n=0,a=N.child;null!==a;){var r=a.expirationTime,o=a.childExpirationTime;(n=n<r?r:n)<o&&(n=o),a=a.sibling}N.childExpirationTime=n}if(null!==t)return t;null!==e&&0==(2048&e.effectTag)&&(null===e.firstEffect&&(e.firstEffect=N.firstEffect),null!==N.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=N.firstEffect),e.lastEffect=N.lastEffect),1<N.effectTag&&(null!==e.lastEffect?e.lastEffect.nextEffect=N:e.firstEffect=N,e.lastEffect=N))}else{if(null!==(t=function(e){switch(e.tag){case 1:m(e.type)&&Nr();var t=e.effectTag;return 4096&t?(e.effectTag=-4097&t|64,e):null;case 3:if(Bo(),c(h),c(p),0!=(64&(t=e.effectTag)))throw Error(R(285));return e.effectTag=-4097&t|64,e;case 5:return Ko(e),null;case 13:return c(M),4096&(t=e.effectTag)?(e.effectTag=-4097&t|64,e):null;case 19:return c(M),null;case 4:return Bo(),null;case 10:return po(e),null;default:return null}}(N)))return t.effectTag&=2047,t;null!==e&&(e.firstEffect=e.lastEffect=null,e.effectTag|=2048)}if(null!==(t=N.sibling))return t}while(null!==(N=e));return j===bl&&(j=El),null}function is(e){var t=e.expirationTime;return(e=e.childExpirationTime)<t?t:e}function ls(e){var t=eo();return no(99,function(e,t){for(;ss(),null!==Al;);if((D&(T|_l))!==L)throw Error(R(327));var n=e.finishedWork,a=e.finishedExpirationTime;if(null!==n){if(e.finishedWork=null,e.finishedExpirationTime=0,n===e.current)throw Error(R(177));e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90,e.nextKnownPendingLevel=0;var r=is(n);if(e.firstPendingTime=r,a<=e.lastSuspendedTime?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:a<=e.firstSuspendedTime&&(e.firstSuspendedTime=a-1),a<=e.lastPingedTime&&(e.lastPingedTime=0),a<=e.lastExpiredTime&&(e.lastExpiredTime=0),e===O&&(N=O=null,P=0),null!==(r=1<n.effectTag?null!==n.lastEffect?(n.lastEffect.nextEffect=n).firstEffect:n:n.firstEffect)){var o=D,i=(D|=_l,yl.current=null,zn=vn,Yn());if(In(i)){if("selectionStart"in i)var l={start:i.selectionStart,end:i.selectionEnd};else e:{var s=(l=(l=i.ownerDocument)&&l.defaultView||window).getSelection&&l.getSelection();if(s&&0!==s.rangeCount){l=s.anchorNode;var u=s.anchorOffset,d=s.focusNode;s=s.focusOffset;try{l.nodeType,d.nodeType}catch(e){l=null;break e}var c,f=0,p=-1,h=-1,m=0,g=0,y=i,v=null;t:for(;;){for(;y!==l||0!==u&&3!==y.nodeType||(p=f+u),y!==d||0!==s&&3!==y.nodeType||(h=f+s),3===y.nodeType&&(f+=y.nodeValue.length),null!==(c=y.firstChild);)v=y,y=c;for(;;){if(y===i)break t;if(v===l&&++m===u&&(p=f),v===d&&++g===s&&(h=f),null!==(c=y.nextSibling))break;v=(y=v).parentNode}y=c}l=-1===p||-1===h?null:{start:p,end:h}}else l=null}l=l||{start:0,end:0}}else l=null;vn=!(Wn={activeElementDetached:null,focusedElem:i,selectionRange:l}),Y=r;do{try{!function(){for(;null!==Y;){var e=Y.effectTag;0!=(256&e)&&function(e,t){switch(t.tag){case 0:case 11:case 15:case 22:return;case 1:var n,a;return 256&t.effectTag&&null!==e&&(n=e.memoizedProps,a=e.memoizedState,t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:x(t.type,n),a),e.__reactInternalSnapshotBeforeUpdate=t);case 3:case 5:case 6:case 4:case 17:return}throw Error(R(163))}(Y.alternate,Y),0==(512&e)||Rl||(Rl=!0,ao(97,function(){return ss(),null})),Y=Y.nextEffect}}()}catch(e){if(null===Y)throw Error(R(330));cs(Y,e),Y=Y.nextEffect}}while(null!==Y);Y=r;do{try{for(i=e,l=t;null!==Y;){var _,b,w=Y.effectTag;switch(16&w&&pt(Y.stateNode,""),128&w&&null!==(_=Y.alternate)&&null!==(b=_.ref)&&("function"==typeof b?b(null):b.current=null),1038&w){case 2:sl(Y),Y.effectTag&=-3;break;case 6:sl(Y),Y.effectTag&=-3,dl(Y.alternate,Y);break;case 1024:Y.effectTag&=-1025;break;case 1028:Y.effectTag&=-1025,dl(Y.alternate,Y);break;case 4:dl(Y.alternate,Y);break;case 8:ul(i,u=Y,l),function e(t){var n=t.alternate;t.return=null,t.child=null,t.memoizedState=null,t.updateQueue=null,t.dependencies=null,t.alternate=null,t.firstEffect=null,t.lastEffect=null,t.pendingProps=null,t.memoizedProps=null,(t.stateNode=null)!==n&&e(n)}(u)}Y=Y.nextEffect}}catch(e){if(null===Y)throw Error(R(330));cs(Y,e),Y=Y.nextEffect}}while(null!==Y);if(b=Wn,_=Yn(),w=b.focusedElem,l=b.selectionRange,_!==w&&w&&w.ownerDocument&&function e(t,n){return!(!t||!n)&&(t===n||(!t||3!==t.nodeType)&&(n&&3===n.nodeType?e(t,n.parentNode):"contains"in t?t.contains(n):!!t.compareDocumentPosition&&!!(16&t.compareDocumentPosition(n))))}(w.ownerDocument.documentElement,w)){null!==l&&In(w)&&(_=l.start,void 0===(b=l.end)&&(b=_),"selectionStart"in w?(w.selectionStart=_,w.selectionEnd=Math.min(b,w.value.length)):(b=(_=w.ownerDocument||document)&&_.defaultView||window).getSelection&&(b=b.getSelection(),u=w.textContent.length,i=Math.min(l.start,u),l=void 0===l.end?i:Math.min(l.end,u),!b.extend&&l<i&&(u=l,l=i,i=u),u=jn(w,i),d=jn(w,l),u&&d&&(1!==b.rangeCount||b.anchorNode!==u.node||b.anchorOffset!==u.offset||b.focusNode!==d.node||b.focusOffset!==d.offset)&&((_=_.createRange()).setStart(u.node,u.offset),b.removeAllRanges(),l<i?(b.addRange(_),b.extend(d.node,d.offset)):(_.setEnd(d.node,d.offset),b.addRange(_))))),_=[];for(b=w;b=b.parentNode;)1===b.nodeType&&_.push({element:b,left:b.scrollLeft,top:b.scrollTop});for("function"==typeof w.focus&&w.focus(),w=0;w<_.length;w++)(b=_[w]).element.scrollLeft=b.left,b.element.scrollTop=b.top}vn=!!zn,Wn=zn=null,e.current=n,Y=r;do{try{for(w=e;null!==Y;){var M,k,S=Y.effectTag;36&S&&function(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:return ol(3,n);case 1:var a;return e=n.stateNode,4&n.effectTag&&(null===t?e.componentDidMount():(a=n.elementType===n.type?t.memoizedProps:x(n.type,t.memoizedProps),e.componentDidUpdate(a,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),null!==(t=n.updateQueue)&&ko(0,t,e);case 3:if(null!==(t=n.updateQueue)){if((e=null)!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}ko(0,t,e)}return;case 5:return e=n.stateNode,null===t&&4&n.effectTag&&Vn(n.type,n.memoizedProps)&&e.focus();case 6:case 4:case 12:return;case 13:return null===n.memoizedState&&null!==(n=n.alternate)&&null!==(n=n.memoizedState)&&null!==(n=n.dehydrated)&&sn(n);case 19:case 17:case 20:case 21:return}throw Error(R(163))}(w,Y.alternate,Y),128&S&&(_=void 0,null!==(M=Y.ref)&&(k=Y.stateNode,Y.tag,_=k,"function"==typeof M?M(_):M.current=_)),Y=Y.nextEffect}}catch(e){if(null===Y)throw Error(R(330));cs(Y,e),Y=Y.nextEffect}}while(null!==Y);Y=null,$r(),D=o}else e.current=n;if(Rl)Rl=!1,Al=e,Hl=t;else for(Y=r;null!==Y;)t=Y.nextEffect,Y.nextEffect=null,Y=t;if(0===(t=e.firstPendingTime)&&(Il=null),1073741823===t?e===Wl?zl++:(zl=0,Wl=e):zl=0,"function"==typeof hs&&hs(n.stateNode,a),I(e),jl)throw jl=!1,e=Yl,Yl=null,e;(D&vl)===L&&E()}return null}.bind(null,e,t)),null}function ss(){var e;if(90!==Hl)return e=97<Hl?97:Hl,Hl=90,no(e,us)}function us(){if(null===Al)return!1;var t=Al;if(Al=null,(D&(T|_l))!==L)throw Error(R(331));var e=D;for(D|=_l,t=t.current.firstEffect;null!==t;){try{var n=t;if(0!=(512&n.effectTag))switch(n.tag){case 0:case 11:case 15:case 22:rl(5,n),ol(5,n)}}catch(e){if(null===t)throw Error(R(330));cs(t,e)}n=t.nextEffect,t.nextEffect=null,t=n}return D=e,E(),!0}function ds(e,t,n){bo(e,t=pl(e,t=Xi(n,t),1073741823)),null!==(e=Gl(e,1073741823))&&I(e)}function cs(e,t){if(3===e.tag)ds(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){ds(n,e,t);break}if(1===n.tag){var a=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof a.componentDidCatch&&(null===Il||!Il.has(a))){bo(n,e=hl(n,e=Xi(t,e),1073741823)),null!==(n=Gl(n,1073741823))&&I(n);break}}n=n.return}}function fs(e,t,n){var a=e.pingCache;null!==a&&a.delete(t),O===e&&P===n?j===Sl||j===kl&&1073741823===Cl&&g()-Nl<Pl?Zl(e,P):Ol=!0:!Es(e,n)||0!==(t=e.lastPingedTime)&&t<n||(e.lastPingedTime=n,I(e))}var ps=function(e,t,n){var a,r,o=t.expirationTime;if(null!==e){var i=t.pendingProps;if(e.memoizedProps!==i||h.current)Yi=!0;else{if(o<n){switch(Yi=!1,t.tag){case 3:Vi(t),Pi();break;case 5:if(Uo(t),4&t.mode&&1!==n&&i.hidden)return t.expirationTime=t.childExpirationTime=1,null;break;case 1:m(t.type)&&Yr(t);break;case 4:Vo(t,t.stateNode.containerInfo);break;case 10:o=t.memoizedProps.value,i=t.type._context,f(lo,i._currentValue),i._currentValue=o;break;case 13:if(null!==t.memoizedState)return 0!==(o=t.child.childExpirationTime)&&n<=o?Ui(e,t,n):(f(M,1&M.current),null!==(t=$i(e,t,n))?t.sibling:null);f(M,1&M.current);break;case 19:if(o=t.childExpirationTime>=n,0!=(64&e.effectTag)){if(o)return qi(e,t,n);t.effectTag|=64}if(null!==(i=t.memoizedState)&&(i.rendering=null,i.tail=null),f(M,M.current),!o)return null}return $i(e,t,n)}Yi=!1}}else Yi=!1;switch(t.expirationTime=0,t.tag){case 2:o=t.type;return null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,i=Or(t,p.current),mo(t,n),i=Zo(null,t,o,e,i,n),t.effectTag|=1,t="object"==typeof i&&null!==i&&"function"==typeof i.render&&void 0===i.$$typeof?(t.tag=1,t.memoizedState=null,t.updateQueue=null,m(o)?(l=!0,Yr(t)):l=!1,t.memoizedState=null!==i.state&&void 0!==i.state?i.state:null,yo(t),"function"==typeof(d=o.getDerivedStateFromProps)&&xo(t,0,d,e),i.updater=Co,Oo((t.stateNode=i)._reactInternalFiber=t,o,e,n),Wi(null,t,o,!0,l,n)):(t.tag=0,_(null,t,i,n),t.child);case 16:e:{if(i=t.elementType,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,-1===(a=i)._status&&(a._status=0,r=(r=a._ctor)(),(a._result=r).then(function(e){0===a._status&&(e=e.default,a._status=1,a._result=e)},function(e){0===a._status&&(a._status=2,a._result=e)})),1!==i._status)throw i._result;switch(i=i._result,t.type=i,l=t.tag=function(e){if("function"==typeof e)return vs(e)?1:0;if(null!=e){if((e=e.$$typeof)===Ye)return 11;if(e===Ae)return 14}return 2}(i),e=x(i,e),l){case 0:t=Fi(null,t,i,e,n);break e;case 1:t=zi(null,t,i,e,n);break e;case 11:t=Ii(null,t,i,e,n);break e;case 14:t=Ri(null,t,i,x(i.type,e),o,n);break e}throw Error(R(306,i,""))}return t;case 0:return o=t.type,i=t.pendingProps,Fi(e,t,o,i=t.elementType===o?i:x(o,i),n);case 1:return o=t.type,i=t.pendingProps,zi(e,t,o,i=t.elementType===o?i:x(o,i),n);case 3:if(Vi(t),o=t.updateQueue,null===e||null===o)throw Error(R(282));if(o=t.pendingProps,i=null!==(i=t.memoizedState)?i.element:null,vo(e,t),Mo(t,o,null,n),(o=t.memoizedState.element)===i)Pi(),t=$i(e,t,n);else{if((i=t.stateNode.hydrate)&&(xi=Gn(t.stateNode.containerInfo.firstChild),Ei=t,i=Ci=!0),i)for(n=Ro(t,null,o,n),t.child=n;n;)n.effectTag=-3&n.effectTag|1024,n=n.sibling;else _(e,t,o,n),Pi();t=t.child}return t;case 5:return Uo(t),null===e&&Di(t),o=t.type,i=t.pendingProps,l=null!==e?e.memoizedProps:null,d=i.children,Bn(o,i)?d=null:null!==l&&Bn(o,l)&&(t.effectTag|=16),Hi(e,t),t=4&t.mode&&1!==n&&i.hidden?(t.expirationTime=t.childExpirationTime=1,null):(_(e,t,d,n),t.child);case 6:return null===e&&Di(t),null;case 13:return Ui(e,t,n);case 4:return Vo(t,t.stateNode.containerInfo),o=t.pendingProps,null===e?t.child=Io(t,null,o,n):_(e,t,o,n),t.child;case 11:return o=t.type,i=t.pendingProps,Ii(e,t,o,i=t.elementType===o?i:x(o,i),n);case 7:return _(e,t,t.pendingProps,n),t.child;case 8:case 12:return _(e,t,t.pendingProps.children,n),t.child;case 10:e:{o=t.type._context,i=t.pendingProps,d=t.memoizedProps;var l=i.value,s=t.type._context;if(f(lo,s._currentValue),s._currentValue=l,null!==d)if(s=d.value,0===(l=rr(s,l)?0:0|("function"==typeof o._calculateChangedBits?o._calculateChangedBits(s,l):1073741823))){if(d.children===i.children&&!h.current){t=$i(e,t,n);break e}}else for(null!==(s=t.child)&&(s.return=t);null!==s;){var u=s.dependencies;if(null!==u)for(var d=s.child,c=u.firstContext;null!==c;){if(c.context===o&&0!=(c.observedBits&l)){1===s.tag&&((c=_o(n,null)).tag=2,bo(s,c)),s.expirationTime<n&&(s.expirationTime=n),null!==(c=s.alternate)&&c.expirationTime<n&&(c.expirationTime=n),ho(s.return,n),u.expirationTime<n&&(u.expirationTime=n);break}c=c.next}else d=10===s.tag&&s.type===t.type?null:s.child;if(null!==d)d.return=s;else for(d=s;null!==d;){if(d===t){d=null;break}if(null!==(s=d.sibling)){s.return=d.return,d=s;break}d=d.return}s=d}_(e,t,i.children,n),t=t.child}return t;case 9:return i=t.type,o=(l=t.pendingProps).children,mo(t,n),o=o(i=v(i,l.unstable_observedBits)),t.effectTag|=1,_(e,t,o,n),t.child;case 14:return l=x(i=t.type,t.pendingProps),l=x(i.type,l),Ri(e,t,i,l,o,n);case 15:return Ai(e,t,t.type,t.pendingProps,o,n);case 17:return o=t.type,i=t.pendingProps,i=t.elementType===o?i:x(o,i),null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),t.tag=1,m(o)?(e=!0,Yr(t)):e=!1,mo(t,n),To(t,o,i),Oo(t,o,i,n),Wi(null,t,o,!0,e,n);case 19:return qi(e,t,n)}throw Error(R(156,t.tag))},hs=null,ms=null;function gs(e,t,n,a){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=a,this.effectTag=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childExpirationTime=this.expirationTime=0,this.alternate=null}function ys(e,t,n,a){return new gs(e,t,n,a)}function vs(e){return(e=e.prototype)&&e.isReactComponent}function _s(e,t){var n=e.alternate;return null===n?((n=ys(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,(n.alternate=e).alternate=n):(n.pendingProps=t,n.effectTag=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childExpirationTime=e.childExpirationTime,n.expirationTime=e.expirationTime,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{expirationTime:t.expirationTime,firstContext:t.firstContext,responders:t.responders},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function bs(e,t,n,a,r,o){var i=2;if("function"==typeof(a=e))vs(e)&&(i=1);else if("string"==typeof e)i=5;else e:switch(e){case Te:return ws(n.children,r,o,t);case je:i=8,r|=7;break;case De:i=8,r|=1;break;case Oe:return(e=ys(12,n,t,8|r)).elementType=Oe,e.type=Oe,e.expirationTime=o,e;case Ie:return(e=ys(13,n,t,r)).type=Ie,e.elementType=Ie,e.expirationTime=o,e;case Re:return(e=ys(19,n,t,r)).elementType=Re,e.expirationTime=o,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case Ne:i=10;break e;case Pe:i=9;break e;case Ye:i=11;break e;case Ae:i=14;break e;case He:i=16,a=null;break e;case Fe:i=22;break e}throw Error(R(130,null==e?e:typeof e,""))}return(t=ys(i,n,t,r)).elementType=e,t.type=a,t.expirationTime=o,t}function ws(e,t,n,a){return(e=ys(7,e,a,t)).expirationTime=n,e}function Ms(e,t,n){return(e=ys(6,e,null,t)).expirationTime=n,e}function ks(e,t,n){return(t=ys(4,null!==e.children?e.children:[],e.key,t)).expirationTime=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Ss(e,t,n){this.tag=t,this.current=null,this.containerInfo=e,this.pingCache=this.pendingChildren=null,this.finishedExpirationTime=0,this.finishedWork=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=90,this.lastExpiredTime=this.lastPingedTime=this.nextKnownPendingLevel=this.lastSuspendedTime=this.firstSuspendedTime=this.firstPendingTime=0}function Es(e,t){var n=e.firstSuspendedTime;return e=e.lastSuspendedTime,0!==n&&t<=n&&e<=t}function xs(e,t){var n=e.firstSuspendedTime,a=e.lastSuspendedTime;n<t&&(e.firstSuspendedTime=t),(t<a||0===n)&&(e.lastSuspendedTime=t),t<=e.lastPingedTime&&(e.lastPingedTime=0),t<=e.lastExpiredTime&&(e.lastExpiredTime=0)}function Cs(e,t){t>e.firstPendingTime&&(e.firstPendingTime=t);var n=e.firstSuspendedTime;0!==n&&(n<=t?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:t>=e.lastSuspendedTime&&(e.lastSuspendedTime=t+1),t>e.nextKnownPendingLevel&&(e.nextKnownPendingLevel=t))}function Ls(e,t){var n=e.lastExpiredTime;(0===n||t<n)&&(e.lastExpiredTime=t)}function Ts(e,t,n,a){var r=t.current,o=Bl(),i=So.suspense,o=Ul(o,r,i);e:if(n){t:{if(xt(n=n._reactInternalFiber)!==n||1!==n.tag)throw Error(R(170));var l=n;do{switch(l.tag){case 3:l=l.stateNode.context;break t;case 1:if(m(l.type)){l=l.stateNode.__reactInternalMemoizedMergedChildContext;break t}}}while(null!==(l=l.return));throw Error(R(171))}if(1===n.tag){var s=n.type;if(m(s)){n=jr(n,s,l);break e}}n=l}else n=Tr;null===t.context?t.context=n:t.pendingContext=n,(t=_o(o,i)).payload={element:e},null!==(a=void 0===a?null:a)&&(t.callback=a),bo(r,t),Kl(r,o)}function Ds(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function Os(e,t){null!==(e=e.memoizedState)&&null!==e.dehydrated&&e.retryTime<t&&(e.retryTime=t)}function Ns(e,t){Os(e,t),(e=e.alternate)&&Os(e,t)}function Ps(e,t,n){var a,r,o=new Ss(e,t,n=null!=n&&!0===n.hydrate),i=ys(3,null,null,2===t?7:1===t?3:0);(o.current=i).stateNode=o,yo(i),e[Xn]=o.current,n&&0!==t&&(a=9===e.nodeType?e:e.ownerDocument,r=Et(a),Qt.forEach(function(e){zt(e,a,r)}),Zt.forEach(function(e){zt(e,a,r)})),this._internalRoot=o}function js(e){return e&&(1===e.nodeType||9===e.nodeType||11===e.nodeType||8===e.nodeType&&" react-mount-point-unstable "===e.nodeValue)}function Ys(e,t,n,a,r){var o,i,l,s=n._reactRootContainer;return s?(l=s._internalRoot,"function"==typeof r&&(o=r,r=function(){var e=Ds(l);o.call(e)}),Ts(t,l,e,r)):(l=(s=n._reactRootContainer=function(e,t){if(!(t=t?t:!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute("data-reactroot"))))for(var n;n=e.lastChild;)e.removeChild(n);return new Ps(e,0,t?{hydrate:!0}:void 0)}(n,a))._internalRoot,"function"==typeof r&&(i=r,r=function(){var e=Ds(l);i.call(e)}),Ql(function(){Ts(t,l,e,r)})),Ds(l)}function Is(e,t){if(js(t))return function(e,t,n,a){return{$$typeof:Le,key:null==(a=3<arguments.length&&void 0!==a?a:null)?null:""+a,children:e,containerInfo:t,implementation:n}}(e,t,null,2<arguments.length&&void 0!==arguments[2]?arguments[2]:null);throw Error(R(200))}Ps.prototype.render=function(e){Ts(e,this._internalRoot,null,null)},Ps.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Ts(null,e,null,function(){t[Xn]=null})},Wt=function(e){var t;13===e.tag&&(Kl(e,t=io(Bl(),150,100)),Ns(e,t))},Vt=function(e){13===e.tag&&(Kl(e,3),Ns(e,3))},Bt=function(e){var t;13===e.tag&&(Kl(e,t=Ul(Bl(),e,null)),Ns(e,t))},re=function(e,t,n){switch(t){case"input":if(Qe(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var a=n[t];if(a!==e&&a.form===e.form){var r=ta(a);if(!r)throw Error(R(90));qe(a),Qe(a,r)}}}break;case"textarea":ot(e,n);break;case"select":null!=(t=n.value)&&nt(e,!!n.multiple,t,!1)}},de=Xl,ce=function(e,t,n,a,r){var o=D;D|=4;try{return no(98,e.bind(null,t,n,a,r))}finally{(D=o)===L&&E()}};var pe=function(e,t){var n=D;D|=2;try{return e(t)}finally{(D=n)===L&&E()}},ar={Events:[Zn,ea,ta,ne,Z,sa,function(e){Ot(e,la)},se,ue,bn,jt,ss,{current:!(fe=function(){var e;(D&(1|T|_l))===L&&(null!==Fl&&(e=Fl,Fl=null,e.forEach(function(e,t){Ls(t,e),I(t)}),E()),ss())})}]},Rs=(a={findFiberByHostInstance:Qn,bundleType:0,version:"16.14.0",rendererPackageName:"react-dom"}).findFiberByHostInstance,a=y({},a,{overrideHookState:null,overrideProps:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:t.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Tt(e))?null:e.stateNode},findFiberByHostInstance:function(e){return Rs?Rs(e):null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null});if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var As=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!As.isDisabled&&As.supportsFiber)try{var Hs=As.inject(a);hs=function(e){try{As.onCommitFiberRoot(Hs,e,void 0,64==(64&e.current.effectTag))}catch(e){}},ms=function(e){try{As.onCommitFiberUnmount(Hs,e)}catch(e){}}}catch(e){}}e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ar,e.createPortal=Is,e.findDOMNode=function(e){if(null==e)return null;if(1!==e.nodeType){var t=e._reactInternalFiber;if(void 0===t){if("function"==typeof e.render)throw Error(R(188));throw Error(R(268,Object.keys(e)))}e=null===(e=Tt(t))?null:e.stateNode}return e},e.flushSync=function(e,t){if((D&(T|_l))!==L)throw Error(R(187));var n=D;D|=1;try{return no(99,e.bind(null,t))}finally{D=n,E()}},e.hydrate=function(e,t,n){if(js(t))return Ys(null,e,t,!0,n);throw Error(R(200))},e.render=function(e,t,n){if(js(t))return Ys(null,e,t,!1,n);throw Error(R(200))},e.unmountComponentAtNode=function(e){if(js(e))return!!e._reactRootContainer&&(Ql(function(){Ys(null,null,e,!1,function(){e._reactRootContainer=null,e[Xn]=null})}),!0);throw Error(R(40))},e.unstable_batchedUpdates=Xl,e.unstable_createPortal=function(e,t){return Is(e,t,2<arguments.length&&void 0!==arguments[2]?arguments[2]:null)},e.unstable_renderSubtreeIntoContainer=function(e,t,n,a){if(!js(n))throw Error(R(200));if(null==e||void 0===e._reactInternalFiber)throw Error(R(38));return Ys(e,t,n,!1,a)},e.version="16.14.0"},function(e,t,n){"use strict";e.exports=n(453)},function(I,l,R){"use strict"; |
| | | /** @license React v0.19.1 |
| | | * scheduler.production.min.js |
| | | * |
| | | * Copyright (c) Facebook, Inc. and its affiliates. |
| | | * |
| | | * This source code is licensed under the MIT license found in the |
| | | * LICENSE file in the root directory of this source tree. |
| | | */var o,s,u,t,n,a,e,r,i,d,c,f,p,h,m,g,y,v,_,b;function w(e,t){var n=e.length;for(e.push(t);;){var a=n-1>>>1,r=e[a];if(!(void 0!==r&&0<S(r,t)))break;e[a]=t,e[n]=r,n=a}}function M(e){return void 0===(e=e[0])?null:e}function k(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;for(var a=0,r=e.length;a<r;){var o=2*(a+1)-1,i=e[o],l=1+o,s=e[l];if(void 0!==i&&S(i,n)<0)a=void 0!==s&&S(s,i)<0?(e[a]=s,e[l]=n,l):(e[a]=i,e[o]=n,o);else{if(!(void 0!==s&&S(s,n)<0))break;e[a]=s,e[l]=n,a=l}}}}}function S(e,t){var n=e.sortIndex-t.sortIndex;return 0!=n?n:e.id-t.id}"undefined"==typeof window||"function"!=typeof MessageChannel?(n=t=null,a=function(){if(null!==t)try{var e=l.unstable_now();t(!0,e),t=null}catch(e){throw setTimeout(a,0),e}},e=Date.now(),l.unstable_now=function(){return Date.now()-e},o=function(e){null!==t?setTimeout(o,0,e):(t=e,setTimeout(a,0))},s=function(e,t){n=setTimeout(e,t)},u=function(){clearTimeout(n)},v=function(){return!1},_=l.unstable_forceFrameRate=function(){}):(r=window.performance,i=window.Date,d=window.setTimeout,c=window.clearTimeout,"undefined"!=typeof console&&(Y=window.cancelAnimationFrame,"function"!=typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"),"function"!=typeof Y&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills")),"object"==typeof r&&"function"==typeof r.now?l.unstable_now=function(){return r.now()}:(f=i.now(),l.unstable_now=function(){return i.now()-f}),p=!1,h=null,m=-1,g=5,y=0,v=function(){return l.unstable_now()>=y},_=function(){},l.unstable_forceFrameRate=function(e){e<0||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing framerates higher than 125 fps is not unsupported"):g=0<e?Math.floor(1e3/e):5},Y=new MessageChannel,b=Y.port2,Y.port1.onmessage=function(){if(null!==h){var e=l.unstable_now();y=e+g;try{h(!0,e)?b.postMessage(null):(p=!1,h=null)}catch(e){throw b.postMessage(null),e}}else p=!1},o=function(e){h=e,p||(p=!0,b.postMessage(null))},s=function(e,t){m=d(function(){e(l.unstable_now())},t)},u=function(){c(m),m=-1});var E=[],x=[],A=1,C=null,L=3,T=!1,D=!1,O=!1;function N(e){for(var t=M(x);null!==t;){if(null===t.callback)k(x);else{if(!(t.startTime<=e))break;k(x),t.sortIndex=t.expirationTime,w(E,t)}t=M(x)}}function P(e){var t;O=!1,N(e),D||(null!==M(E)?(D=!0,o(j)):null!==(t=M(x))&&s(P,t.startTime-e))}function j(e,t){D=!1,O&&(O=!1,u()),T=!0;var n=L;try{for(N(t),C=M(E);null!==C&&(!(C.expirationTime>t)||e&&!v());){var a,r=C.callback;null!==r?(C.callback=null,L=C.priorityLevel,a=r(C.expirationTime<=t),t=l.unstable_now(),"function"==typeof a?C.callback=a:C===M(E)&&k(E),N(t)):k(E),C=M(E)}var o,i=null!==C||(null!==(o=M(x))&&s(P,o.startTime-t),!1);return i}finally{C=null,L=n,T=!1}}function H(e){switch(e){case 1:return-1;case 2:return 250;case 5:return 1073741823;case 4:return 1e4;default:return 5e3}}var Y=_;l.unstable_IdlePriority=5,l.unstable_ImmediatePriority=1,l.unstable_LowPriority=4,l.unstable_NormalPriority=3,l.unstable_Profiling=null,l.unstable_UserBlockingPriority=2,l.unstable_cancelCallback=function(e){e.callback=null},l.unstable_continueExecution=function(){D||T||(D=!0,o(j))},l.unstable_getCurrentPriorityLevel=function(){return L},l.unstable_getFirstCallbackNode=function(){return M(E)},l.unstable_next=function(e){switch(L){case 1:case 2:case 3:var t=3;break;default:t=L}var n=L;L=t;try{return e()}finally{L=n}},l.unstable_pauseExecution=function(){},l.unstable_requestPaint=Y,l.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=L;L=e;try{return t()}finally{L=n}},l.unstable_scheduleCallback=function(e,t,n){var a,r=l.unstable_now();return"object"==typeof n&&null!==n?(a="number"==typeof(a=n.delay)&&0<a?r+a:r,n="number"==typeof n.timeout?n.timeout:H(e)):(n=H(e),a=r),e={id:A++,callback:t,priorityLevel:e,startTime:a,expirationTime:n=a+n,sortIndex:-1},r<a?(e.sortIndex=a,w(x,e),null===M(E)&&e===M(x)&&(O?u():O=!0,s(P,a-r))):(e.sortIndex=n,w(E,e),D||T||(D=!0,o(j))),e},l.unstable_shouldYield=function(){var e=l.unstable_now(),t=(N(e),M(E));return t!==C&&null!==C&&null!==t&&null!==t.callback&&t.startTime<=e&&t.expirationTime<C.expirationTime||v()},l.unstable_wrapCallback=function(t){var n=L;return function(){var e=L;L=n;try{return t.apply(this,arguments)}finally{L=e}}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var p=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,a=arguments[t];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n])}return e},h=(t.default=function(r,o){var e=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{},t=e.selectLocationState,n=void 0===t?m:t,t=e.adjustUrlOnReplay,a=void 0===t||t;if(void 0===n(o.getState()))throw new Error("Expected the routing state to be available either as `state.routing` or as the custom expression you can specify as `selectLocationState` in the `syncHistoryWithStore()` options. Ensure you have added the `routerReducer` to your store's reducers via `combineReducers` or whatever method you use to isolate your reducers.");function i(e){return n(o.getState()).locationBeforeTransitions||(e?l:void 0)}var l=void 0,s=void 0,u=void 0,d=void 0,c=void 0;l=i(),a&&(e=function(){var e=i(!0);c!==e&&l!==e&&(s=!0,c=e,r.transitionTo(p({},e,{action:"PUSH"})),s=!1)},u=o.subscribe(e),e());function f(e){s||(c=e,!l&&(l=e,i())||o.dispatch({type:h.LOCATION_CHANGE,payload:e}))}d=r.listen(f),r.getCurrentLocation&&f(r.getCurrentLocation());return p({},r,{listen:function(t){var n=i(!0),a=!1,e=o.subscribe(function(){var e=i(!0);e!==n&&(n=e,a||t(n))});return r.getCurrentLocation||t(n),function(){a=!0,e()}},unsubscribe:function(){a&&u(),d()}})},n(187)),m=function(e){return e.routing}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(a){return function(){return function(n){return function(e){if(e.type!==r.CALL_HISTORY_METHOD)return n(e);var e=e.payload,t=e.method,e=e.args;a[t].apply(a,function(e){{if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}}(e))}}}};var r=n(188)},function(e,t,n){"use strict"; |
| | | /** @license React v16.13.1 |
| | | * react-is.production.min.js |
| | | * |
| | | * Copyright (c) Facebook, Inc. and its affiliates. |
| | | * |
| | | * This source code is licensed under the MIT license found in the |
| | | * LICENSE file in the root directory of this source tree. |
| | | */var a="function"==typeof Symbol&&Symbol.for,r=a?Symbol.for("react.element"):60103,o=a?Symbol.for("react.portal"):60106,i=a?Symbol.for("react.fragment"):60107,l=a?Symbol.for("react.strict_mode"):60108,s=a?Symbol.for("react.profiler"):60114,u=a?Symbol.for("react.provider"):60109,d=a?Symbol.for("react.context"):60110,c=a?Symbol.for("react.async_mode"):60111,f=a?Symbol.for("react.concurrent_mode"):60111,p=a?Symbol.for("react.forward_ref"):60112,h=a?Symbol.for("react.suspense"):60113,m=a?Symbol.for("react.suspense_list"):60120,g=a?Symbol.for("react.memo"):60115,y=a?Symbol.for("react.lazy"):60116,v=a?Symbol.for("react.block"):60121,_=a?Symbol.for("react.fundamental"):60117,b=a?Symbol.for("react.responder"):60118,w=a?Symbol.for("react.scope"):60119;function M(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case c:case f:case i:case s:case l:case h:return e;default:switch(e=e&&e.$$typeof){case d:case p:case y:case g:case u:return e;default:return t}}case o:return t}}}function k(e){return M(e)===f}t.AsyncMode=c,t.ConcurrentMode=f,t.ContextConsumer=d,t.ContextProvider=u,t.Element=r,t.ForwardRef=p,t.Fragment=i,t.Lazy=y,t.Memo=g,t.Portal=o,t.Profiler=s,t.StrictMode=l,t.Suspense=h,t.isAsyncMode=function(e){return k(e)||M(e)===c},t.isConcurrentMode=k,t.isContextConsumer=function(e){return M(e)===d},t.isContextProvider=function(e){return M(e)===u},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return M(e)===p},t.isFragment=function(e){return M(e)===i},t.isLazy=function(e){return M(e)===y},t.isMemo=function(e){return M(e)===g},t.isPortal=function(e){return M(e)===o},t.isProfiler=function(e){return M(e)===s},t.isStrictMode=function(e){return M(e)===l},t.isSuspense=function(e){return M(e)===h},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===f||e===s||e===l||e===h||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===y||e.$$typeof===g||e.$$typeof===u||e.$$typeof===d||e.$$typeof===p||e.$$typeof===_||e.$$typeof===b||e.$$typeof===w||e.$$typeof===v)},t.typeOf=M},function(e,t,n){"use strict"; |
| | | /** @license React v17.0.2 |
| | | * react-is.production.min.js |
| | | * |
| | | * Copyright (c) Facebook, Inc. and its affiliates. |
| | | * |
| | | * This source code is licensed under the MIT license found in the |
| | | * LICENSE file in the root directory of this source tree. |
| | | */var a=60103,r=60106,o=60107,i=60108,l=60114,s=60109,u=60110,d=60112,c=60113,f=60120,p=60115,h=60116,m=60121,g=60122,y=60117,v=60129,_=60131;function b(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case a:switch(e=e.type){case o:case l:case i:case c:case f:return e;default:switch(e=e&&e.$$typeof){case u:case d:case h:case p:case s:return e;default:return t}}case r:return t}}}"function"==typeof Symbol&&Symbol.for&&(a=(w=Symbol.for)("react.element"),r=w("react.portal"),o=w("react.fragment"),i=w("react.strict_mode"),l=w("react.profiler"),s=w("react.provider"),u=w("react.context"),d=w("react.forward_ref"),c=w("react.suspense"),f=w("react.suspense_list"),p=w("react.memo"),h=w("react.lazy"),m=w("react.block"),g=w("react.server.block"),y=w("react.fundamental"),v=w("react.debug_trace_mode"),_=w("react.legacy_hidden"));var w=s,M=a,k=d,S=o,E=h,x=p,C=r,L=l,T=i,D=c;t.ContextConsumer=u,t.ContextProvider=w,t.Element=M,t.ForwardRef=k,t.Fragment=S,t.Lazy=E,t.Memo=x,t.Portal=C,t.Profiler=L,t.StrictMode=T,t.Suspense=D,t.isAsyncMode=function(){return!1},t.isConcurrentMode=function(){return!1},t.isContextConsumer=function(e){return b(e)===u},t.isContextProvider=function(e){return b(e)===s},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===a},t.isForwardRef=function(e){return b(e)===d},t.isFragment=function(e){return b(e)===o},t.isLazy=function(e){return b(e)===h},t.isMemo=function(e){return b(e)===p},t.isPortal=function(e){return b(e)===r},t.isProfiler=function(e){return b(e)===l},t.isStrictMode=function(e){return b(e)===i},t.isSuspense=function(e){return b(e)===c},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===o||e===l||e===v||e===i||e===c||e===f||e===_||"object"==typeof e&&null!==e&&(e.$$typeof===h||e.$$typeof===p||e.$$typeof===s||e.$$typeof===u||e.$$typeof===d||e.$$typeof===y||e.$$typeof===m||e[0]===g)},t.typeOf=b},function(e,t,n){"use strict";var a,r=n(1),o=void 0;window.edasprefix="acm",window.globalConfig={isParentEdas:function(){return window.parent&&-1!==window.parent.location.host.indexOf("edas")}},r.b.middleWare(function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},t=e.url,t=void 0===t?"":t,n=localStorage.getItem("namespace")?localStorage.getItem("namespace"):"";e.data=-1===t.indexOf("namespaceId=")?Object.assign({},e.data,{namespaceId:n}):e.data;var n="global"===(n=window.nownamespace||Object(r.a)("namespace")||"")?"":n,a=t.split("?");return 1<a.length&&-1!==a[1].indexOf("dataId")&&(t+="&tenant=".concat(n),e.url=t),e}),window.require.config({paths:{vs:"console-ui/public/js/vs"}}),window.require.config({"vs/nls":{availableLanguages:{"*":"zh-cn"}}}),window.require(["vs/editor/editor.main"],function(){window.monaco.languages.register({id:"properties"}),window.monaco.languages.setMonarchTokensProvider("properties",{tokenizer:{root:[[/^\#.*/,"comment"],[/.*\=/,"key"],[/^=.*/,"value"]]}}),window.monaco.editor.defineTheme("properties",{base:"vs",inherit:!1,rules:[{token:"key",foreground:"009968"},{token:"value",foreground:"009968"},{token:"comment",foreground:"666666"}]}),window.monaco.languages.registerCompletionItemProvider("properties",{provideCompletionItems:function(){return[{label:"simpleText",kind:window.monaco.languages.CompletionItemKind.Text},{label:"testing",kind:window.monaco.languages.CompletionItemKind.Keyword,insertText:{value:"testing(${1:condition})"}},{label:"ifelse",kind:window.monaco.languages.CompletionItemKind.Snippet,insertText:{value:["if (${1:condition}) {","\t$0","} else {","\t","}"].join("\n")},documentation:"If-Else Statement"}]}})}),window.importEditor=function(e){window.require(["vs/editor/editor.main"],function(){e&&e()})},window._getLink=(window,a={},function(e){return a[e]||""}),window.addEventListener("resize",function(){try{(void 0).timmer&&clearTimeout((void 0).timmer),o.timmer=setTimeout(function(){var e=800<(e=document.body.clientHeight)?e:800;window.parent.adjustHeight&&window.parent.adjustHeight(e)},500)}catch(e){}}),window.isIntel=function(){return-1!==window.location.host.indexOf("alibabacloud.com")}},function(e,t,n){},function(e,t,n){e.exports={default:n(461),__esModule:!0}},function(e,t,n){n(462),e.exports=n(77).Object.assign},function(e,t,n){var a=n(91);a(a.S+a.F,"Object",{assign:n(464)})},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t,n){"use strict";var f=n(78),p=n(121),h=n(148),m=n(124),g=n(149),y=n(194),r=Object.assign;e.exports=!r||n(108)(function(){var e={},t={},n=Symbol(),a="abcdefghijklmnopqrst";return e[n]=7,a.split("").forEach(function(e){t[e]=e}),7!=r({},e)[n]||Object.keys(r({},t)).join("")!=a})?function(e,t){for(var n=g(e),a=arguments.length,r=1,o=h.f,i=m.f;r<a;)for(var l,s=y(arguments[r++]),u=o?p(s).concat(o(s)):p(s),d=u.length,c=0;c<d;)l=u[c++],f&&!i.call(s,l)||(n[l]=s[l]);return n}:r},function(e,t,n){var s=n(94),u=n(466),d=n(467);e.exports=function(l){return function(e,t,n){var a,r=s(e),o=u(r.length),i=d(n,o);if(l&&t!=t){for(;i<o;)if((a=r[i++])!=a)return!0}else for(;i<o;i++)if((l||i in r)&&r[i]===t)return l||i||0;return!l&&-1}}},function(e,t,n){var a=n(144),r=Math.min;e.exports=function(e){return 0<e?r(a(e),9007199254740991):0}},function(e,t,n){var a=n(144),r=Math.max,o=Math.min;e.exports=function(e,t){return(e=a(e))<0?r(e+t,0):o(e,t)}},function(e,t,n){e.exports={default:n(469),__esModule:!0}},function(e,t,n){n(470),n(476),e.exports=n(153).f("iterator")},function(e,t,n){"use strict";var a=n(471)(!0);n(196)(String,"String",function(e){this._t=String(e),this._i=0},function(){var e=this._t,t=this._i;return t>=e.length?{value:void 0,done:!0}:(e=a(e,t),this._i+=e.length,{value:e,done:!1})})},function(e,t,n){var o=n(144),i=n(143);e.exports=function(r){return function(e,t){var n,e=String(i(e)),t=o(t),a=e.length;return t<0||a<=t?r?"":void 0:(n=e.charCodeAt(t))<55296||56319<n||t+1===a||(a=e.charCodeAt(t+1))<56320||57343<a?r?e.charAt(t):n:r?e.slice(t,t+2):a-56320+(n-55296<<10)+65536}}},function(e,t,n){"use strict";var a=n(151),r=n(120),o=n(152),i={};n(92)(i,n(95)("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=a(i,{next:r(1,n)}),o(e,t+" Iterator")}},function(e,t,n){var i=n(84),l=n(107),s=n(121);e.exports=n(78)?Object.defineProperties:function(e,t){l(e);for(var n,a=s(t),r=a.length,o=0;o<r;)i.f(e,n=a[o++],t[n]);return e}},function(e,t,n){n=n(76).document;e.exports=n&&n.documentElement},function(e,t,n){var a=n(85),r=n(149),o=n(145)("IE_PROTO"),i=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=r(e),a(e,o)?e[o]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?i:null}},function(e,t,n){n(477);for(var a=n(76),r=n(92),o=n(150),i=n(95)("toStringTag"),l="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),s=0;s<l.length;s++){var u=l[s],d=a[u],d=d&&d.prototype;d&&!d[i]&&r(d,i,u),o[u]=o.Array}},function(e,t,n){"use strict";var a=n(478),r=n(479),o=n(150),i=n(94);e.exports=n(196)(Array,"Array",function(e,t){this._t=i(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,r(1)):r(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])},"values"),o.Arguments=o.Array,a("keys"),a("values"),a("entries")},function(e,t){e.exports=function(){}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,n){e.exports={default:n(481),__esModule:!0}},function(e,t,n){n(482),n(487),n(488),n(489),e.exports=n(77).Symbol},function(I,R,e){"use strict";function a(e){var t=L[e]=_(M[E]);return t._k=e,t}function n(e,t){m(e);for(var n,a=V(t=g(t)),r=0,o=a.length;r<o;)Y(e,n=a[r++],t[n]);return e}function t(e){var t=ee.call(this,e=y(e,!0));return!(this===D&&s(L,e)&&!s(T,e))&&(!(t||!s(this,e)||!s(L,e)||s(this,x)&&this[x][e])||t)}function r(e,t){var n;if(e=g(e),t=y(t,!0),e!==D||!s(L,t)||s(T,t))return!(n=X(e,t))||!s(L,t)||s(e,x)&&e[x][t]||(n.enumerable=!0),n}function o(e){for(var t,n=Q(g(e)),a=[],r=0;n.length>r;)s(L,t=n[r++])||t==x||t==H||a.push(t);return a}function i(e){for(var t,n=e===D,a=Q(n?T:g(e)),r=[],o=0;a.length>o;)!s(L,t=a[o++])||n&&!s(D,t)||r.push(L[t]);return r}var l=e(76),s=e(85),u=e(78),d=e(91),A=e(197),H=e(483).KEY,c=e(108),f=e(146),p=e(152),F=e(123),h=e(95),z=e(153),W=e(154),V=e(484),B=e(485),m=e(107),U=e(93),K=e(149),g=e(94),y=e(142),v=e(120),_=e(151),G=e(486),q=e(199),b=e(148),$=e(84),J=e(121),X=q.f,w=$.f,Q=G.f,M=l.Symbol,k=l.JSON,S=k&&k.stringify,E="prototype",x=h("_hidden"),Z=h("toPrimitive"),ee={}.propertyIsEnumerable,C=f("symbol-registry"),L=f("symbols"),T=f("op-symbols"),D=Object[E],f="function"==typeof M&&!!b.f,O=l.QObject,N=!O||!O[E]||!O[E].findChild,P=u&&c(function(){return 7!=_(w({},"a",{get:function(){return w(this,"a",{value:7}).a}})).a})?function(e,t,n){var a=X(D,t);a&&delete D[t],w(e,t,n),a&&e!==D&&w(D,t,a)}:w,j=f&&"symbol"==typeof M.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof M},Y=function(e,t,n){return e===D&&Y(T,t,n),m(e),t=y(t,!0),m(n),s(L,t)?(n.enumerable?(s(e,x)&&e[x][t]&&(e[x][t]=!1),n=_(n,{enumerable:v(0,!1)})):(s(e,x)||w(e,x,v(1,{})),e[x][t]=!0),P(e,t,n)):w(e,t,n)};f||(A((M=function(){if(this instanceof M)throw TypeError("Symbol is not a constructor!");var t=F(0<arguments.length?arguments[0]:void 0),n=function(e){this===D&&n.call(T,e),s(this,x)&&s(this[x],t)&&(this[x][t]=!1),P(this,t,v(1,e))};return u&&N&&P(D,t,{configurable:!0,set:n}),a(t)})[E],"toString",function(){return this._k}),q.f=r,$.f=Y,e(198).f=G.f=o,e(124).f=t,b.f=i,u&&!e(122)&&A(D,"propertyIsEnumerable",t,!0),z.f=function(e){return a(h(e))}),d(d.G+d.W+d.F*!f,{Symbol:M});for(var te="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),ne=0;te.length>ne;)h(te[ne++]);for(var ae=J(h.store),re=0;ae.length>re;)W(ae[re++]);d(d.S+d.F*!f,"Symbol",{for:function(e){return s(C,e+="")?C[e]:C[e]=M(e)},keyFor:function(e){if(!j(e))throw TypeError(e+" is not a symbol!");for(var t in C)if(C[t]===e)return t},useSetter:function(){N=!0},useSimple:function(){N=!1}}),d(d.S+d.F*!f,"Object",{create:function(e,t){return void 0===t?_(e):n(_(e),t)},defineProperty:Y,defineProperties:n,getOwnPropertyDescriptor:r,getOwnPropertyNames:o,getOwnPropertySymbols:i});O=c(function(){b.f(1)});d(d.S+d.F*O,"Object",{getOwnPropertySymbols:function(e){return b.f(K(e))}}),k&&d(d.S+d.F*(!f||c(function(){var e=M();return"[null]"!=S([e])||"{}"!=S({a:e})||"{}"!=S(Object(e))})),"JSON",{stringify:function(e){for(var t,n,a=[e],r=1;r<arguments.length;)a.push(arguments[r++]);if(n=t=a[1],(U(t)||void 0!==e)&&!j(e))return B(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!j(t))return t}),a[1]=t,S.apply(k,a)}}),M[E][Z]||e(92)(M[E],Z,M[E].valueOf),p(M,"Symbol"),p(Math,"Math",!0),p(l.JSON,"JSON",!0)},function(e,t,n){function a(e){l(e,r,{value:{i:"O"+ ++s,w:{}}})}var r=n(123)("meta"),o=n(93),i=n(85),l=n(84).f,s=0,u=Object.isExtensible||function(){return!0},d=!n(108)(function(){return u(Object.preventExtensions({}))}),c=e.exports={KEY:r,NEED:!1,fastKey:function(e,t){if(!o(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!i(e,r)){if(!u(e))return"F";if(!t)return"E";a(e)}return e[r].i},getWeak:function(e,t){if(!i(e,r)){if(!u(e))return!0;if(!t)return!1;a(e)}return e[r].w},onFreeze:function(e){return d&&c.NEED&&u(e)&&!i(e,r)&&a(e),e}}},function(e,t,n){var l=n(121),s=n(148),u=n(124);e.exports=function(e){var t=l(e),n=s.f;if(n)for(var a,r=n(e),o=u.f,i=0;r.length>i;)o.call(e,a=r[i++])&&t.push(a);return t}},function(e,t,n){var a=n(195);e.exports=Array.isArray||function(e){return"Array"==a(e)}},function(e,t,n){var a=n(94),r=n(198).f,o={}.toString,i="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){if(!i||"[object Window]"!=o.call(e))return r(a(e));try{return r(e)}catch(e){return i.slice()}}},function(e,t){},function(e,t,n){n(154)("asyncIterator")},function(e,t,n){n(154)("observable")},function(e,t,n){e.exports={default:n(491),__esModule:!0}},function(e,t,n){n(492),e.exports=n(77).Object.setPrototypeOf},function(e,t,n){var a=n(91);a(a.S,"Object",{setPrototypeOf:n(493).set})},function(e,t,r){function o(e,t){if(a(e),!n(t)&&null!==t)throw TypeError(t+": can't set as prototype!")}var n=r(93),a=r(107);e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,n,a){try{(a=r(190)(Function.call,r(199).f(Object.prototype,"__proto__").set,2))(e,[]),n=!(e instanceof Array)}catch(e){n=!0}return function(e,t){return o(e,t),n?e.__proto__=t:a(e,t),e}}({},!1):void 0),check:o}},function(e,t,n){e.exports={default:n(495),__esModule:!0}},function(e,t,n){n(496);var a=n(77).Object;e.exports=function(e,t){return a.create(e,t)}},function(e,t,n){var a=n(91);a(a.S,"Object",{create:n(151)})},function(e,t,n){"use strict";var i=n(498);function a(){}function r(){}r.resetWarningCache=a,e.exports=function(){function e(e,t,n,a,r,o){if(o!==i)throw o=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types"),o.name="Invariant Violation",o}function t(){return e}var n={array:e.isRequired=e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:r,resetWarningCache:a};return n.PropTypes=n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";function s(e,t,n,a){e.removeEventListener&&e.removeEventListener(t,n,a||!1)}function a(e,t,n,a){return e.addEventListener&&e.addEventListener(t,n,a||!1),{off:function(){return s(e,t,n,a)}}}t.__esModule=!0,t.on=a,t.once=function(r,o,i,l){return a(r,o,function e(){for(var t=arguments.length,n=Array(t),a=0;a<t;a++)n[a]=arguments[a];i.apply(this,n),s(r,o,e,l)},l)},t.off=s},function(e,t,n){"use strict";t.__esModule=!0,t.prevent=t.noop=void 0,t.makeChain=function(){for(var e=arguments.length,o=Array(e),t=0;t<e;t++)o[t]=arguments[t];return 1!==o.length?function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];for(var a=0,r=o.length;a<r;a++)o[a]&&o[a].apply&&o[a].apply(this,t)}:o[0]},t.bindCtx=function(t,e,n){"string"==typeof e&&(e=[e]);n=n||t,e.forEach(function(e){n[e]=n[e].bind(t)})},t.promiseCall=function(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:o;if((0,a.isPromise)(e))return e.then(function(e){return t(e),e}).catch(function(e){n(e)});return(!1!==e?t:n)(e)},t.invoke=function(e,t,n){e=e&&t in e?e[t]:void 0;return e&&e.apply(void 0,n)},t.renderNode=function(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:[],e=void 0!==e?e:t;n&&!Array.isArray(n)&&(n=[n]);return"function"==typeof e?e.apply(void 0,n):e},t.checkDate=l,t.checkRangeDate=function(t,e,n){var a=!(3<arguments.length&&void 0!==arguments[3])||arguments[3],r=Array.isArray(t)?[0,1].map(function(e){return l(t[e])}):[null,null],o=r[0],r=r[1],n=Array.isArray(n)?n:[n,n],i=n[0],n=n[1];if(a&&o&&r&&o.isAfter(r))return!i&&n||!i&&1===e?[null,r]:[o,null];return[o,r]};var a=n(96),n=n(155),r=(n=n)&&n.__esModule?n:{default:n};var o=t.noop=function(){};t.prevent=function(){return!1};function l(e){return(e=(0,r.default)(e=void 0===e?null:e)).isValid()?e:null}},function(e,t,n){e.exports=function(){"use strict";var s={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},c=/(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|YYYY|YY?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g,e=/\d\d/,t=/\d\d?/,n=/\d*[^-_:/,()\s\d]+/,h={},a=function(e){return(e=+e)+(e>68?1900:2e3)},r=function(t){return function(e){this[t]=+e}},o=[/[+-]\d\d:?(\d\d)?|Z/,function(e){(this.zone||(this.zone={})).offset=function(e){if(!e)return 0;if("Z"===e)return 0;var t=e.match(/([+-]|\d\d)/g),n=60*t[1]+(+t[2]||0);return 0===n?0:"+"===t[0]?-n:n}(e)}],i=function(e){var t=h[e];return t&&(t.indexOf?t:t.s.concat(t.f))},l=function(e,t){var n,a=h.meridiem;if(a){for(var r=1;r<=24;r+=1)if(e.indexOf(a(r,0,t))>-1){n=r>12;break}}else n=e===(t?"pm":"PM");return n},f={A:[n,function(e){this.afternoon=l(e,!1)}],a:[n,function(e){this.afternoon=l(e,!0)}],S:[/\d/,function(e){this.milliseconds=100*+e}],SS:[e,function(e){this.milliseconds=10*+e}],SSS:[/\d{3}/,function(e){this.milliseconds=+e}],s:[t,r("seconds")],ss:[t,r("seconds")],m:[t,r("minutes")],mm:[t,r("minutes")],H:[t,r("hours")],h:[t,r("hours")],HH:[t,r("hours")],hh:[t,r("hours")],D:[t,r("day")],DD:[e,r("day")],Do:[n,function(e){var t=h.ordinal,n=e.match(/\d+/);if(this.day=n[0],t)for(var a=1;a<=31;a+=1)t(a).replace(/\[|\]/g,"")===e&&(this.day=a)}],M:[t,r("month")],MM:[e,r("month")],MMM:[n,function(e){var t=i("months"),n=(i("monthsShort")||t.map(function(e){return e.slice(0,3)})).indexOf(e)+1;if(n<1)throw new Error;this.month=n%12||n}],MMMM:[n,function(e){var t=i("months").indexOf(e)+1;if(t<1)throw new Error;this.month=t%12||t}],Y:[/[+-]?\d+/,r("year")],YY:[e,function(e){this.year=a(e)}],YYYY:[/\d{4}/,r("year")],Z:o,ZZ:o};function b(e){var t,r;t=e,r=h&&h.formats;for(var u=(e=t.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,function(e,t,n){var a=n&&n.toUpperCase();return t||r[n]||s[n]||r[a].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(e,t,n){return t||n.slice(1)})})).match(c),d=u.length,n=0;n<d;n+=1){var a=u[n],o=f[a],i=o&&o[0],l=o&&o[1];u[n]=l?{regex:i,parser:l}:a.replace(/^\[|\]$/g,"")}return function(e){for(var t={},n=0,a=0;n<d;n+=1){var r=u[n];if("string"==typeof r)a+=r.length;else{var o=r.regex,i=r.parser,l=e.slice(a),s=o.exec(l)[0];i.call(t,s),e=e.replace(s,"")}}return function(e){var t=e.afternoon;if(void 0!==t){var n=e.hours;t?n<12&&(e.hours+=12):12===n&&(e.hours=0),delete e.afternoon}}(t),t}}return function(e,t,f){f.p.customParseFormat=!0,e&&e.parseTwoDigitYear&&(a=e.parseTwoDigitYear);var n=t.prototype,p=n.parse;n.parse=function(e){var t=e.date,n=e.utc,a=e.args;this.$u=n;var r=a[1];if("string"==typeof r){var o=!0===a[2],i=!0===a[3],l=o||i,s=a[2];i&&(s=a[2]),h=this.$locale(),!o&&s&&(h=f.Ls[s]),this.$d=function(e,t,n){try{if(["x","X"].indexOf(t)>-1)return new Date(("X"===t?1e3:1)*e);var a=b(t)(e),r=a.year,o=a.month,i=a.day,l=a.hours,s=a.minutes,u=a.seconds,d=a.milliseconds,c=a.zone,f=new Date,p=i||(r||o?1:f.getDate()),h=r||f.getFullYear(),m=0;r&&!o||(m=o>0?o-1:f.getMonth());var g=l||0,y=s||0,v=u||0,_=d||0;return c?new Date(Date.UTC(h,m,p,g,y,v,_+60*c.offset*1e3)):n?new Date(Date.UTC(h,m,p,g,y,v,_)):new Date(h,m,p,g,y,v,_)}catch(e){return new Date("")}}(t,r,n),this.init(),s&&!0!==s&&(this.$L=this.locale(s).$L),l&&t!=this.format(r)&&(this.$d=new Date("")),h={}}else if(r instanceof Array)for(var u=r.length,d=1;d<=u;d+=1){a[1]=r[d-1];var c=f.apply(this,a);if(c.isValid()){this.$d=c.$d,this.$L=c.$L,this.init();break}d===u&&(this.$d=new Date(""))}else p.call(this,e)}}}()},function(e,t,n){e.exports=function(){"use strict";return function(e,t,a){a.updateLocale=function(e,t){var n=a.Ls[e];if(n)return(t?Object.keys(t):[]).forEach(function(e){n[e]=t[e]}),n}}}()},function(e,t,n){e.exports=function(e,t,n){function a(e,t,n,a,r){var e=e.name?e:e.$locale(),t=l(e[t]),n=l(e[n]),o=t||n.map(function(e){return e.slice(0,a)});if(!r)return o;var i=e.weekStart;return o.map(function(e,t){return o[(t+(i||0))%7]})}function r(){return n.Ls[n.locale()]}function o(e,t){return e.formats[t]||e.formats[t.toUpperCase()].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(e,t,n){return t||n.slice(1)})}var t=t.prototype,l=function(e){return e&&(e.indexOf?e:e.s)};t.localeData=function(){return function(){var t=this;return{months:function(e){return e?e.format("MMMM"):a(t,"months")},monthsShort:function(e){return e?e.format("MMM"):a(t,"monthsShort","months",3)},firstDayOfWeek:function(){return t.$locale().weekStart||0},weekdays:function(e){return e?e.format("dddd"):a(t,"weekdays")},weekdaysMin:function(e){return e?e.format("dd"):a(t,"weekdaysMin","weekdays",2)},weekdaysShort:function(e){return e?e.format("ddd"):a(t,"weekdaysShort","weekdays",3)},longDateFormat:function(e){return o(t.$locale(),e)},meridiem:this.$locale().meridiem,ordinal:this.$locale().ordinal}}.bind(this)()},n.localeData=function(){var t=r();return{firstDayOfWeek:function(){return t.weekStart||0},weekdays:function(){return n.weekdays()},weekdaysShort:function(){return n.weekdaysShort()},weekdaysMin:function(){return n.weekdaysMin()},months:function(){return n.months()},monthsShort:function(){return n.monthsShort()},longDateFormat:function(e){return o(t,e)},meridiem:t.meridiem,ordinal:t.ordinal}},n.months=function(){return a(r(),"months")},n.monthsShort=function(){return a(r(),"monthsShort","months",3)},n.weekdays=function(e){return a(r(),"weekdays",null,null,e)},n.weekdaysShort=function(e){return a(r(),"weekdaysShort","weekdays",3,e)},n.weekdaysMin=function(e){return a(r(),"weekdaysMin","weekdays",2,e)}}},function(e,t,n){e.exports=function(){"use strict";var i="month",l="quarter";return function(e,t){var n=t.prototype;n.quarter=function(e){return this.$utils().u(e)?Math.ceil((this.month()+1)/3):this.month(this.month()%3+3*(e-1))};var a=n.add;n.add=function(e,t){return e=Number(e),this.$utils().p(t)===l?this.add(3*e,i):a.bind(this)(e,t)};var o=n.startOf;n.startOf=function(e,t){var n=this.$utils(),a=!!n.u(t)||t;if(n.p(e)===l){var r=this.quarter()-1;return a?this.month(3*r).startOf(i).startOf("day"):this.month(3*r+2).endOf(i).endOf("day")}return o.bind(this)(e,t)}}}()},function(e,t,n){e.exports=function(){"use strict";return function(e,t,n){var a=t.prototype,o=a.format;n.en.ordinal=function(e){var t=["th","st","nd","rd"],n=e%100;return"["+e+(t[(n-20)%10]||t[n]||t[0])+"]"},a.format=function(e){var t=this,n=this.$locale();if(!this.isValid())return o.bind(this)(e);var a=this.$utils(),r=(e||"YYYY-MM-DDTHH:mm:ssZ").replace(/\[([^\]]+)]|Q|wo|ww|w|WW|W|zzz|z|gggg|GGGG|Do|X|x|k{1,2}|S/g,function(e){switch(e){case"Q":return Math.ceil((t.$M+1)/3);case"Do":return n.ordinal(t.$D);case"gggg":return t.weekYear();case"GGGG":return t.isoWeekYear();case"wo":return n.ordinal(t.week(),"W");case"w":case"ww":return a.s(t.week(),"w"===e?1:2,"0");case"W":case"WW":return a.s(t.isoWeek(),"W"===e?1:2,"0");case"k":case"kk":return a.s(String(0===t.$H?24:t.$H),"k"===e?1:2,"0");case"X":return Math.floor(t.$d.getTime()/1e3);case"x":return t.$d.getTime();case"z":return"["+t.offsetName()+"]";case"zzz":return"["+t.offsetName("long")+"]";default:return e}});return o.bind(this)(r)}}}()},function(e,t,n){e.exports=function(){"use strict";var l="week",s="year";return function(e,t,i){var n=t.prototype;n.week=function(e){if(void 0===e&&(e=null),null!==e)return this.add(7*(e-this.week()),"day");var t=this.$locale().yearStart||1;if(11===this.month()&&this.date()>25){var n=i(this).startOf(s).add(1,s).date(t),a=i(this).endOf(l);if(n.isBefore(a))return 1}var r=i(this).startOf(s).date(t).startOf(l).subtract(1,"millisecond"),o=this.diff(r,l,!0);return o<0?i(this).startOf("week").week():Math.ceil(o)},n.weeks=function(e){return void 0===e&&(e=null),this.week(e)}}}()},function(e,t,n){e.exports=function(e){"use strict";function t(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var n=t(e),a={name:"zh-cn",weekdays:"æææ¥_ææä¸_ææäº_ææä¸_ææå_ææäº_ææå
".split("_"),weekdaysShort:"卿¥_å¨ä¸_å¨äº_å¨ä¸_å¨å_å¨äº_å¨å
".split("_"),weekdaysMin:"æ¥_ä¸_äº_ä¸_å_äº_å
".split("_"),months:"䏿_äºæ_䏿_åæ_äºæ_å
æ_䏿_å
«æ_乿_åæ_å䏿_åäºæ".split("_"),monthsShort:"1æ_2æ_3æ_4æ_5æ_6æ_7æ_8æ_9æ_10æ_11æ_12æ".split("_"),ordinal:function(e,t){return"W"===t?e+"å¨":e+"æ¥"},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYYå¹´MæDæ¥",LLL:"YYYYå¹´MæDæ¥Ahç¹mmå",LLLL:"YYYYå¹´MæDæ¥ddddAhç¹mmå",l:"YYYY/M/D",ll:"YYYYå¹´MæDæ¥",lll:"YYYYå¹´MæDæ¥ HH:mm",llll:"YYYYå¹´MæDæ¥dddd HH:mm"},relativeTime:{future:"%så
",past:"%så",s:"å ç§",m:"1 åé",mm:"%d åé",h:"1 å°æ¶",hh:"%d å°æ¶",d:"1 天",dd:"%d 天",M:"1 个æ",MM:"%d 个æ",y:"1 å¹´",yy:"%d å¹´"},meridiem:function(e,t){var n=100*e+t;return n<600?"忍":n<900?"æ©ä¸":n<1100?"ä¸å":n<1300?"ä¸å":n<1800?"ä¸å":"æä¸"}};return n.default.locale(a,null,!0),a}(n(205))},function(e,t,n){"use strict";t.__esModule=!0,t.flex=t.transition=t.animation=void 0;var r=n(201),o=n(96);function a(e){if(!r.hasDOM)return!1;var n=document.createElement("div"),a=!1;return(0,o.each)(e,function(e,t){if(void 0!==n.style[t])return!(a={end:e})}),a}t.animation=a({WebkitAnimation:"webkitAnimationEnd",OAnimation:"oAnimationEnd",animation:"animationend"}),t.transition=a({WebkitTransition:"webkitTransitionEnd",OTransition:"oTransitionEnd",transition:"transitionend"}),t.flex=function(e){if(!r.hasDOM)return!1;var n=document.createElement("div"),a=!1;return(0,o.each)(e,function(e,t){return(0,o.each)(e,function(e){try{n.style[t]=e,a=a||n.style[t]===e}catch(e){}return!a}),!a}),a}({display:["flex","-webkit-flex","-moz-flex","-ms-flexbox"]})},function(e,t,n){"use strict";t.__esModule=!0,t.getFocusNodeList=i,t.saveLastFocusNode=function(){l=document.activeElement},t.clearLastFocusNode=function(){l=null},t.backLastFocusNode=function(){if(l)try{l.focus()}catch(e){}},t.limitTabRange=function(e,t){{var n,a;t.keyCode===r.default.TAB&&(e=i(e),n=e.length-1,-1<(a=e.indexOf(document.activeElement))&&(a=a+(t.shiftKey?-1:1),e[a=n<(a=a<0?n:a)?0:a].focus(),t.preventDefault()))}};var t=n(206),r=(t=t)&&t.__esModule?t:{default:t},a=n(96);function o(e){var t=e.nodeName.toLowerCase(),n=parseInt(e.getAttribute("tabindex"),10),n=!isNaN(n)&&-1<n;return function(e){for(;e;){var t=e.nodeName;if("BODY"===t||"HTML"===t)break;if("none"===e.style.display||"hidden"===e.style.visibility)return;e=e.parentNode}return 1}(e)&&("input"===t?!e.disabled&&"hidden"!==e.type:-1<["select","textarea","button"].indexOf(t)?!e.disabled:"a"===t&&e.getAttribute("href")||n)}function i(e){var n=[],t=e.querySelectorAll("*");return(0,a.each)(t,function(e){var t;o(e)&&(t=e.getAttribute("data-auto-focus")?"unshift":"push",n[t](e))}),o(e)&&n.unshift(e),n}var l=null},function(e,t,n){"use strict";t.__esModule=!0;var n=n(38),a=(n=n)&&n.__esModule?n:{default:n};function r(e){return e?("object"===(void 0===e?"undefined":(0,a.default)(e))?e=JSON.stringify(e):"string"!=typeof e&&(e=String(e)),e.replace(/['"]/gm,"").replace(/[\s'"]/gm,"-")):""}t.randomId=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:1e6,t=Math.ceil(Math.random()*t);return e?r(e)+"-"+t:t.toString(10)},t.escapeForId=r},function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e){return(e=e||"")+(a++).toString(36)};var a=Date.now();e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a="accept acceptCharset accessKey action allowFullScreen allowTransparency\nalt async autoComplete autoFocus autoPlay capture cellPadding cellSpacing challenge\ncharSet checked classID className colSpan cols content contentEditable contextMenu\ncontrols coords crossOrigin data dateTime default defer dir disabled download draggable\nencType form formAction formEncType formMethod formNoValidate formTarget frameBorder\nheaders height hidden high href hrefLang htmlFor httpEquiv icon id inputMode integrity\nis keyParams keyType kind label lang list loop low manifest marginHeight marginWidth max maxLength media\nmediaGroup method min minLength multiple muted name noValidate nonce open\noptimum pattern placeholder poster preload radioGroup readOnly rel required\nreversed role rowSpan rows sandbox scope scoped scrolling seamless selected\nshape size sizes span spellCheck src srcDoc srcLang srcSet start step style\nsummary tabIndex target title type useMap value width wmode wrap".replace(/\s+/g," ").replace(/\t|\n|\r/g,"").split(" "),r="onCopy onCut onPaste onCompositionEnd onCompositionStart onCompositionUpdate onKeyDown\n onKeyPress onKeyUp onFocus onBlur onChange onInput onSubmit onClick onContextMenu onDoubleClick\n onDrag onDragEnd onDragEnter onDragExit onDragLeave onDragOver onDragStart onDrop onMouseDown\n onMouseEnter onMouseLeave onMouseMove onMouseOut onMouseOver onMouseUp onSelect onTouchCancel\n onTouchEnd onTouchMove onTouchStart onScroll onWheel onAbort onCanPlay onCanPlayThrough\n onDurationChange onEmptied onEncrypted onEnded onError onLoadedData onLoadedMetadata\n onLoadStart onPause onPlay onPlaying onProgress onRateChange onSeeked onSeeking onStalled onSuspend onTimeUpdate onVolumeChange onWaiting onLoad onError".replace(/\s+/g," ").replace(/\t|\n|\r/g,"").split(" "),o=["data-","aria-"];t.default=function(e){var t,n={};for(t in e)!function(t){(-1<a.indexOf(t)||-1<r.indexOf(t)||o.map(function(e){return new RegExp("^"+e)}).some(function(e){return t.replace(e,"")!==t}))&&(n[t]=e[t])}(t);return n},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var w=s(n(12)),r=s(n(4)),o=s(n(6)),i=s(n(7)),M=s(n(2));t.initLocales=function(e){(d=e)&&(L=e[c],"boolean"!=typeof T&&(T=L&&L.rtl))},t.setLanguage=function(e){d&&(L=d[c=e],"boolean"!=typeof T&&(T=L&&L.rtl))},t.setLocale=function(e){L=(0,M.default)({},d?d[c]:{},e),"boolean"!=typeof T&&(T=L&&L.rtl)},t.setDirection=function(e){T="rtl"===e},t.getLocale=function(){return L},t.getLanguage=function(){return c},t.getDirection=function(){return T},t.config=function(_){var e,b=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};S.obj.isClassComponent(_)&&void 0===_.prototype.shouldComponentUpdate&&(_.prototype.shouldComponentUpdate=function(e,t){return!this.props.pure||(!u(this.props,e)||!u(this.state,t))});e=t=function(n){function a(e,t){(0,r.default)(this,a);e=(0,o.default)(this,n.call(this,e,t));return e._getInstance=e._getInstance.bind(e),e._deprecated=e._deprecated.bind(e),e}return(0,i.default)(a,n),a.prototype._getInstance=function(e){var n=this;this._instance=e,this._instance&&b.exportNames&&b.exportNames.forEach(function(e){var t=n._instance[e];n[e]="function"==typeof t?t.bind(n._instance):t})},a.prototype._deprecated=function(){!1!==this.context.nextWarning&&S.log.deprecated.apply(S.log,arguments)},a.prototype.getInstance=function(){return this._instance},a.prototype.render=function(){var e=this.props,t=e.prefix,n=e.locale,a=e.defaultPropsConfig,r=e.pure,o=e.rtl,i=e.device,l=e.popupContainer,s=e.errorBoundary,e=(0,w.default)(e,["prefix","locale","defaultPropsConfig","pure","rtl","device","popupContainer","errorBoundary"]),u=this.context,d=u.nextPrefix,c=u.nextLocale,f=u.nextDefaultPropsConfig,f=void 0===f?{}:f,p=u.nextPure,h=u.nextRtl,m=u.nextDevice,g=u.nextPopupContainer,u=u.nextErrorBoundary,y=b.componentName||C(_),v=(0,E.default)({prefix:t,locale:n,defaultPropsConfig:a,pure:r,device:i,popupContainer:l,rtl:o,errorBoundary:s},{nextPrefix:d,nextLocale:(0,M.default)({},L,void 0===c?{}:c),nextDefaultPropsConfig:f,nextPure:p,nextDevice:m,nextPopupContainer:g,nextRtl:"boolean"==typeof h?h:!0===T||void 0,nextErrorBoundary:u},y),t=["prefix","locale","pure","rtl","device","popupContainer"].reduce(function(e,t){return void 0!==v[t]&&(e[t]=v[t]),e},{}),n=("pure"in t&&t.pure&&S.log.warning("pure of ConfigProvider is deprecated, use Function Component or React.PureComponent"),"popupContainer"in t&&void 0===this.props.container&&-1<["Overlay","Popup"].indexOf(y)&&(t.container=t.popupContainer,delete t.popupContainer),b.transform?b.transform(e,this._deprecated):e),a=k.default.createElement(_,(0,M.default)({},v.defaultPropsConfig[y],n,t,{ref:S.obj.isClassComponent(_)?this._getInstance:null})),r=v.errorBoundary,i=r.open,l=(0,w.default)(r,["open"]);return i?k.default.createElement(x.default,l,a):a},a}(k.default.Component),t.propTypes=(0,M.default)({},_.propTypes||{},{prefix:a.default.string,locale:a.default.object,defaultPropsConfig:a.default.object,pure:a.default.bool,rtl:a.default.bool,device:a.default.oneOf(["tablet","desktop","phone"]),popupContainer:a.default.any,errorBoundary:a.default.oneOfType([a.default.bool,a.default.object])}),t.contextTypes=(0,M.default)({},_.contextTypes||{},{nextPrefix:a.default.string,nextLocale:a.default.object,nextDefaultPropsConfig:a.default.object,nextPure:a.default.bool,nextRtl:a.default.bool,nextWarning:a.default.bool,nextDevice:a.default.oneOf(["tablet","desktop","phone"]),nextPopupContainer:a.default.any,nextErrorBoundary:a.default.oneOfType([a.default.bool,a.default.object])});var t=e;return t.displayName="ConfigedComponent",t.displayName="Config("+C(_)+")",(0,l.default)(t,_),t};var k=s(n(0)),a=s(n(3)),l=s(n(100)),S=n(11),E=s(n(200)),x=s(n(207));function s(e){return e&&e.__esModule?e:{default:e}}var u=S.obj.shallowEqual;function C(e){return e.displayName||e.name||"Component"}var d=void 0,c="zh-cn",L={},T=void 0},function(e,t,n){"use strict";t.__esModule=!0;var n=n(3),n=(n=n)&&n.__esModule?n:{default:n};function a(e,t){return"function"==typeof(e=e.children)?e(r(t,o)):null}var r=function(e,t){var n,a,r={};for(n in e)Object.prototype.hasOwnProperty.call(e,n)&&(r[t(n,a=e[n])]=a);return r},o=function(e){return e.replace(/^(next)([A-Z])/,function(e,t,n){return n.toLowerCase()})};a.propTypes={children:n.default.func},a.contextTypes={nextPrefix:n.default.string,nextLocale:n.default.object,nextPure:n.default.bool,newRtl:n.default.bool,nextWarning:n.default.bool,nextDevice:n.default.oneOf(["tablet","desktop","phone"]),nextPopupContainer:n.default.any},t.default=a,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var n=n(4),a=(n=n)&&n.__esModule?n:{default:n};function r(){(0,a.default)(this,r),this._root=null,this._store=new Map}r.prototype.empty=function(){return 0===this._store.size},r.prototype.has=function(e){return this._store.has(e)},r.prototype.get=function(e,t){e=this.has(e)?this._store.get(e):this.root();return null==e?t:e},r.prototype.add=function(e,t){this.empty()&&(this._root=e),this._store.set(e,t)},r.prototype.update=function(e,t){this.has(e)&&this._store.set(e,t)},r.prototype.remove=function(e){this._store.delete(e),e===this._root&&(e=this._store.keys().next().value,this._root=e)},r.prototype.clear=function(){this._store.clear()},r.prototype.root=function(){return this._store.get(this._root)},t.default=r,e.exports=t.default},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){var a={"./af":208,"./af.js":208,"./ar":209,"./ar-dz":210,"./ar-dz.js":210,"./ar-kw":211,"./ar-kw.js":211,"./ar-ly":212,"./ar-ly.js":212,"./ar-ma":213,"./ar-ma.js":213,"./ar-sa":214,"./ar-sa.js":214,"./ar-tn":215,"./ar-tn.js":215,"./ar.js":209,"./az":216,"./az.js":216,"./be":217,"./be.js":217,"./bg":218,"./bg.js":218,"./bm":219,"./bm.js":219,"./bn":220,"./bn-bd":221,"./bn-bd.js":221,"./bn.js":220,"./bo":222,"./bo.js":222,"./br":223,"./br.js":223,"./bs":224,"./bs.js":224,"./ca":225,"./ca.js":225,"./cs":226,"./cs.js":226,"./cv":227,"./cv.js":227,"./cy":228,"./cy.js":228,"./da":229,"./da.js":229,"./de":230,"./de-at":231,"./de-at.js":231,"./de-ch":232,"./de-ch.js":232,"./de.js":230,"./dv":233,"./dv.js":233,"./el":234,"./el.js":234,"./en-au":235,"./en-au.js":235,"./en-ca":236,"./en-ca.js":236,"./en-gb":237,"./en-gb.js":237,"./en-ie":238,"./en-ie.js":238,"./en-il":239,"./en-il.js":239,"./en-in":240,"./en-in.js":240,"./en-nz":241,"./en-nz.js":241,"./en-sg":242,"./en-sg.js":242,"./eo":243,"./eo.js":243,"./es":244,"./es-do":245,"./es-do.js":245,"./es-mx":246,"./es-mx.js":246,"./es-us":247,"./es-us.js":247,"./es.js":244,"./et":248,"./et.js":248,"./eu":249,"./eu.js":249,"./fa":250,"./fa.js":250,"./fi":251,"./fi.js":251,"./fil":252,"./fil.js":252,"./fo":253,"./fo.js":253,"./fr":254,"./fr-ca":255,"./fr-ca.js":255,"./fr-ch":256,"./fr-ch.js":256,"./fr.js":254,"./fy":257,"./fy.js":257,"./ga":258,"./ga.js":258,"./gd":259,"./gd.js":259,"./gl":260,"./gl.js":260,"./gom-deva":261,"./gom-deva.js":261,"./gom-latn":262,"./gom-latn.js":262,"./gu":263,"./gu.js":263,"./he":264,"./he.js":264,"./hi":265,"./hi.js":265,"./hr":266,"./hr.js":266,"./hu":267,"./hu.js":267,"./hy-am":268,"./hy-am.js":268,"./id":269,"./id.js":269,"./is":270,"./is.js":270,"./it":271,"./it-ch":272,"./it-ch.js":272,"./it.js":271,"./ja":273,"./ja.js":273,"./jv":274,"./jv.js":274,"./ka":275,"./ka.js":275,"./kk":276,"./kk.js":276,"./km":277,"./km.js":277,"./kn":278,"./kn.js":278,"./ko":279,"./ko.js":279,"./ku":280,"./ku.js":280,"./ky":281,"./ky.js":281,"./lb":282,"./lb.js":282,"./lo":283,"./lo.js":283,"./lt":284,"./lt.js":284,"./lv":285,"./lv.js":285,"./me":286,"./me.js":286,"./mi":287,"./mi.js":287,"./mk":288,"./mk.js":288,"./ml":289,"./ml.js":289,"./mn":290,"./mn.js":290,"./mr":291,"./mr.js":291,"./ms":292,"./ms-my":293,"./ms-my.js":293,"./ms.js":292,"./mt":294,"./mt.js":294,"./my":295,"./my.js":295,"./nb":296,"./nb.js":296,"./ne":297,"./ne.js":297,"./nl":298,"./nl-be":299,"./nl-be.js":299,"./nl.js":298,"./nn":300,"./nn.js":300,"./oc-lnc":301,"./oc-lnc.js":301,"./pa-in":302,"./pa-in.js":302,"./pl":303,"./pl.js":303,"./pt":304,"./pt-br":305,"./pt-br.js":305,"./pt.js":304,"./ro":306,"./ro.js":306,"./ru":307,"./ru.js":307,"./sd":308,"./sd.js":308,"./se":309,"./se.js":309,"./si":310,"./si.js":310,"./sk":311,"./sk.js":311,"./sl":312,"./sl.js":312,"./sq":313,"./sq.js":313,"./sr":314,"./sr-cyrl":315,"./sr-cyrl.js":315,"./sr.js":314,"./ss":316,"./ss.js":316,"./sv":317,"./sv.js":317,"./sw":318,"./sw.js":318,"./ta":319,"./ta.js":319,"./te":320,"./te.js":320,"./tet":321,"./tet.js":321,"./tg":322,"./tg.js":322,"./th":323,"./th.js":323,"./tk":324,"./tk.js":324,"./tl-ph":325,"./tl-ph.js":325,"./tlh":326,"./tlh.js":326,"./tr":327,"./tr.js":327,"./tzl":328,"./tzl.js":328,"./tzm":329,"./tzm-latn":330,"./tzm-latn.js":330,"./tzm.js":329,"./ug-cn":331,"./ug-cn.js":331,"./uk":332,"./uk.js":332,"./ur":333,"./ur.js":333,"./uz":334,"./uz-latn":335,"./uz-latn.js":335,"./uz.js":334,"./vi":336,"./vi.js":336,"./x-pseudo":337,"./x-pseudo.js":337,"./yo":338,"./yo.js":338,"./zh-cn":339,"./zh-cn.js":339,"./zh-hk":340,"./zh-hk.js":340,"./zh-mo":341,"./zh-mo.js":341,"./zh-tw":342,"./zh-tw.js":342};function r(e){e=o(e);return n(e)}function o(e){if(n.o(a,e))return a[e];throw(e=new Error("Cannot find module '"+e+"'")).code="MODULE_NOT_FOUND",e}r.keys=function(){return Object.keys(a)},r.resolve=o,(e.exports=r).id=517},function(e,t,n){"use strict";t.__esModule=!0;var u=r(n(2)),d=r(n(12));t.default=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},t=e.scriptUrl,e=e.extraCommonProps,s=void 0===e?{}:e,e=o.has(t);document.querySelector('script[data-namespace="'+t+'"]')&&(e=!0);"undefined"!=typeof document&&"undefined"!=typeof window&&"function"==typeof document.createElement&&"string"==typeof t&&t.length&&!e&&((e=document.createElement("script")).setAttribute("src",t),e.setAttribute("data-namespace",t),o.add(t),document.body.appendChild(e));function n(e){var t=e.type,n=e.size,a=e.children,r=e.className,o=void 0===(o=e.prefix)?"next-":o,i=(0,d.default)(e,["type","size","children","className","prefix"]),l=null,t=(e.type&&(l=c.default.createElement("use",{xlinkHref:"#"+t})),a&&(l=a),(0,f.default)(((e={})[o+"icon-remote"]=!0,e),r));return c.default.createElement(p,{size:n},c.default.createElement("svg",(0,u.default)({className:t,focusable:!1},i,s),l))}return n.displayName="Iconfont",a.default.config(n)};var c=r(n(0)),f=r(n(13)),a=r(n(8)),n=r(n(343));function r(e){return e&&e.__esModule?e:{default:e}}var o=new Set,p=a.default.config(n.default);e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;!function(e){{if(e&&e.__esModule)return;var t,n={};if(null!=e)for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&((t=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(e,a):{}).get||t.set?Object.defineProperty(n,a,t):n[a]=e[a]);n.default=e}}(n(3));var a=l(n(520)),r=l(n(522)),o=l(n(0)),i=l(n(345));n(346);function l(e){return e&&e.__esModule?e:{default:e}}function s(){return(s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,a=arguments[t];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n])}return e}).apply(this,arguments)}function u(t,e){t&&e&&e.split(" ").forEach(function(e){return(0,a.default)(t,e)})}function d(t,e){t&&e&&e.split(" ").forEach(function(e){return(0,r.default)(t,e)})}n=function(a){var e;function t(){for(var r,e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return(r=a.call.apply(a,[this].concat(t))||this).onEnter=function(e,t){var n=r.getClassNames(t?"appear":"enter").className;r.removeClasses(e,"exit"),u(e,n),r.props.onEnter&&r.props.onEnter(e,t)},r.onEntering=function(e,t){var n=r.getClassNames(t?"appear":"enter").activeClassName;r.reflowAndAddClass(e,n),r.props.onEntering&&r.props.onEntering(e,t)},r.onEntered=function(e,t){var n=r.getClassNames("appear").doneClassName,a=r.getClassNames("enter").doneClassName,n=t?n+" "+a:a;r.removeClasses(e,t?"appear":"enter"),u(e,n),r.props.onEntered&&r.props.onEntered(e,t)},r.onExit=function(e){var t=r.getClassNames("exit").className;r.removeClasses(e,"appear"),r.removeClasses(e,"enter"),u(e,t),r.props.onExit&&r.props.onExit(e)},r.onExiting=function(e){var t=r.getClassNames("exit").activeClassName;r.reflowAndAddClass(e,t),r.props.onExiting&&r.props.onExiting(e)},r.onExited=function(e){var t=r.getClassNames("exit").doneClassName;r.removeClasses(e,"exit"),u(e,t),r.props.onExited&&r.props.onExited(e)},r.getClassNames=function(e){var t=r.props.classNames,n="string"==typeof t,a=n?(n&&t?t+"-":"")+e:t[e];return{className:a,activeClassName:n?a+"-active":t[e+"Active"],doneClassName:n?a+"-done":t[e+"Done"]}},r}e=a,(n=t).prototype=Object.create(e.prototype),(n.prototype.constructor=n).__proto__=e;var n=t.prototype;return n.removeClasses=function(e,t){var t=this.getClassNames(t),n=t.className,a=t.activeClassName,t=t.doneClassName;n&&d(e,n),a&&d(e,a),t&&d(e,t)},n.reflowAndAddClass=function(e,t){t&&(e&&e.scrollTop,u(e,t))},n.render=function(){var e=s({},this.props);return delete e.classNames,o.default.createElement(i.default,s({},e,{onEnter:this.onEnter,onEntered:this.onEntered,onEntering:this.onEntering,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited}))},t}(o.default.Component);n.defaultProps={classNames:""},n.propTypes={},t.default=n,e.exports=t.default},function(e,t,n){"use strict";var a=n(86),r=(t.__esModule=!0,t.default=function(e,t){e.classList?e.classList.add(t):(0,r.default)(e,t)||("string"==typeof e.className?e.className=e.className+" "+t:e.setAttribute("class",(e.className&&e.className.baseVal||"")+" "+t))},a(n(521)));e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){return e.classList?!!t&&e.classList.contains(t):-1!==(" "+(e.className.baseVal||e.className)+" ").indexOf(" "+t+" ")},e.exports=t.default},function(e,t,n){"use strict";function a(e,t){return e.replace(new RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}e.exports=function(e,t){e.classList?e.classList.remove(t):"string"==typeof e.className?e.className=a(e.className,t):e.setAttribute("class",a(e.className&&e.className.baseVal||"",t))}},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;a(n(3));var o=a(n(0)),i=n(23),l=a(n(347));function a(e){return e&&e.__esModule?e:{default:e}}n=function(r){var e;function t(){for(var a,e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return(a=r.call.apply(r,[this].concat(t))||this).handleEnter=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return a.handleLifecycle("onEnter",0,t)},a.handleEntering=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return a.handleLifecycle("onEntering",0,t)},a.handleEntered=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return a.handleLifecycle("onEntered",0,t)},a.handleExit=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return a.handleLifecycle("onExit",1,t)},a.handleExiting=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return a.handleLifecycle("onExiting",1,t)},a.handleExited=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return a.handleLifecycle("onExited",1,t)},a}e=r,(n=t).prototype=Object.create(e.prototype),(n.prototype.constructor=n).__proto__=e;var n=t.prototype;return n.handleLifecycle=function(e,t,n){var a=this.props.children,a=o.default.Children.toArray(a)[t];a.props[e]&&(t=a.props)[e].apply(t,n),this.props[e]&&this.props[e]((0,i.findDOMNode)(this))},n.render=function(){var e=this.props,t=e.children,n=e.in,e=function(e,t){if(null==e)return{};for(var n,a={},r=Object.keys(e),o=0;o<r.length;o++)n=r[o],0<=t.indexOf(n)||(a[n]=e[n]);return a}(e,["children","in"]),t=o.default.Children.toArray(t),a=t[0],t=t[1];return delete e.onEnter,delete e.onEntering,delete e.onEntered,delete e.onExit,delete e.onExiting,delete e.onExited,o.default.createElement(l.default,e,n?o.default.cloneElement(a,{key:"first",onEnter:this.handleEnter,onEntering:this.handleEntering,onEntered:this.handleEntered}):o.default.cloneElement(t,{key:"second",onEnter:this.handleExit,onEntering:this.handleExiting,onEntered:this.handleExited}))},t}(o.default.Component);n.propTypes={},t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.getChildMapping=a,t.mergeChildMappings=r,t.getInitialChildMapping=function(t,n){return a(t.children,function(e){return(0,c.cloneElement)(e,{onExited:n.bind(null,e),in:!0,appear:f(e,"appear",t),enter:f(e,"enter",t),exit:f(e,"exit",t)})})},t.getNextChildMapping=function(i,l,s){var u=a(i.children),d=r(l,u);return Object.keys(d).forEach(function(e){var t,n,a,r,o=d[e];(0,c.isValidElement)(o)&&(t=e in l,n=e in u,a=l[e],r=(0,c.isValidElement)(a)&&!a.props.in,!n||t&&!r?n||!t||r?n&&t&&(0,c.isValidElement)(a)&&(d[e]=(0,c.cloneElement)(o,{onExited:s.bind(null,o),in:a.props.in,exit:f(o,"exit",i),enter:f(o,"enter",i)})):d[e]=(0,c.cloneElement)(o,{in:!1}):d[e]=(0,c.cloneElement)(o,{onExited:s.bind(null,o),in:!0,exit:f(o,"exit",i),enter:f(o,"enter",i)}))}),d};var c=n(0);function a(e,t){var n=Object.create(null);return e&&c.Children.map(e,function(e){return e}).forEach(function(e){n[e.key]=(e=e,t&&(0,c.isValidElement)(e)?t(e):e)}),n}function r(t,n){function e(e){return(e in n?n:t)[e]}t=t||{},n=n||{};var a,r,o=Object.create(null),i=[];for(a in t)a in n?i.length&&(o[a]=i,i=[]):i.push(a);var l,s={};for(l in n){if(o[l])for(r=0;r<o[l].length;r++){var u=o[l][r];s[o[l][r]]=e(u)}s[l]=e(l)}for(r=0;r<i.length;r++)s[i[r]]=e(i[r]);return s}function f(e,t,n){return(null!=n[t]?n:e.props)[t]}},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=p(n(2)),r=p(n(12)),o=p(n(4)),i=p(n(6)),l=p(n(7)),s=n(0),u=p(s),d=p(n(3)),c=n(157),f=n(11);function p(e){return e&&e.__esModule?e:{default:e}}function h(){}var m=f.events.on,g=f.events.off,y=f.dom.addClass,v=f.dom.removeClass,_=["-webkit-","-moz-","-o-","ms-",""];function b(e,t){for(var n=window.getComputedStyle(e),a="",r=0;r<_.length&&!(a=n.getPropertyValue(_[r]+t));r++);return a}w=s.Component,(0,l.default)(M,w),M.prototype.componentWillUnmount=function(){var n=this;Object.keys(this.endListeners).forEach(function(t){n.endListeners[t].forEach(function(e){g(n.node,t,e)})}),this.endListeners={transitionend:[],animationend:[]}},M.prototype.generateEndListener=function(a,r,o,i){var l=this;return function e(t){var n;t&&t.target===a&&(l.timeoutMap[i]&&(clearTimeout(l.timeoutMap[i]),delete l.timeoutMap[i]),r(),g(a,o,e),-1<(n=(t=l.endListeners[o]).indexOf(e))&&t.splice(n,1))}},M.prototype.addEndListener=function(r,o){var i,e,l=this;f.support.transition||f.support.animation?(i=(0,f.guid)(),this.node=r,f.support.transition&&(e=this.generateEndListener(r,o,"transitionend",i),m(r,"transitionend",e),this.endListeners.transitionend.push(e)),f.support.animation&&(e=this.generateEndListener(r,o,"animationend",i),m(r,"animationend",e),this.endListeners.animationend.push(e)),setTimeout(function(){var e=parseFloat(b(r,"transition-delay"))||0,t=parseFloat(b(r,"transition-duration"))||0,n=parseFloat(b(r,"animation-delay"))||0,a=parseFloat(b(r,"animation-duration"))||0,t=Math.max(t+e,a+n);t&&(l.timeoutMap[i]=setTimeout(function(){o()},1e3*t+200))},15)):o()},M.prototype.removeEndtListener=function(){this.transitionOff&&this.transitionOff(),this.animationOff&&this.animationOff()},M.prototype.removeClassNames=function(t,n){Object.keys(n).forEach(function(e){v(t,n[e])})},M.prototype.handleEnter=function(e,t){var n=this.props.names;n&&(this.removeClassNames(e,n),y(e,n[t?"appear":"enter"])),(t?this.props.onAppear:this.props.onEnter)(e)},M.prototype.handleEntering=function(t,n){var a=this;setTimeout(function(){var e=a.props.names;e&&y(t,e[n?"appearActive":"enterActive"]),(n?a.props.onAppearing:a.props.onEntering)(t)},10)},M.prototype.handleEntered=function(t,e){var n=this.props.names;n&&(e?[n.appear,n.appearActive]:[n.enter,n.enterActive]).forEach(function(e){v(t,e)}),(e?this.props.onAppeared:this.props.onEntered)(t)},M.prototype.handleExit=function(e){var t=this.props.names;t&&(this.removeClassNames(e,t),y(e,t.leave)),this.props.onExit(e)},M.prototype.handleExiting=function(t){var n=this;setTimeout(function(){var e=n.props.names;e&&y(t,e.leaveActive),n.props.onExiting(t)},10)},M.prototype.handleExited=function(t){var e=this.props.names;e&&[e.leave,e.leaveActive].forEach(function(e){v(t,e)}),this.props.onExited(t)},M.prototype.render=function(){var e=this.props,e=(e.names,e.onAppear,e.onAppeared,e.onAppearing,e.onEnter,e.onEntering,e.onEntered,e.onExit,e.onExiting,e.onExited,(0,r.default)(e,["names","onAppear","onAppeared","onAppearing","onEnter","onEntering","onEntered","onExit","onExiting","onExited"]));return u.default.createElement(c.Transition,(0,a.default)({},e,{onEnter:this.handleEnter,onEntering:this.handleEntering,onEntered:this.handleEntered,onExit:this.handleExit,onExiting:this.handleExiting,onExited:this.handleExited,addEndListener:this.addEndListener}))},s=n=M,n.propTypes={names:d.default.oneOfType([d.default.string,d.default.object]),onAppear:d.default.func,onAppearing:d.default.func,onAppeared:d.default.func,onEnter:d.default.func,onEntering:d.default.func,onEntered:d.default.func,onExit:d.default.func,onExiting:d.default.func,onExited:d.default.func},n.defaultProps={onAppear:h,onAppearing:h,onAppeared:h,onEnter:h,onEntering:h,onEntered:h,onExit:h,onExiting:h,onExited:h};var w,l=s;function M(e){(0,o.default)(this,M);e=(0,i.default)(this,w.call(this,e));return f.func.bindCtx(e,["handleEnter","handleEntering","handleEntered","handleExit","handleExiting","handleExited","addEndListener"]),e.endListeners={transitionend:[],animationend:[]},e.timeoutMap={},e}l.displayName="AnimateChild",t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=p(n(2)),r=p(n(12)),o=p(n(4)),i=p(n(6)),l=p(n(7)),s=n(0),u=p(s),d=p(n(3)),c=n(11),f=p(n(344));function p(e){return e&&e.__esModule?e:{default:e}}function h(){}var m,g=c.dom.getStyle,l=(m=s.Component,(0,l.default)(y,m),y.prototype.beforeEnter=function(e){this.leaving&&this.afterLeave(e),this.cacheCurrentStyle(e),this.cacheComputedStyle(e),this.setCurrentStyleToZero(e),this.props.beforeEnter(e)},y.prototype.onEnter=function(e){this.setCurrentStyleToComputedStyle(e),this.props.onEnter(e)},y.prototype.afterEnter=function(e){this.restoreCurrentStyle(e),this.props.afterEnter(e)},y.prototype.beforeLeave=function(e){this.leaving=!0,this.cacheCurrentStyle(e),this.cacheComputedStyle(e),this.setCurrentStyleToComputedStyle(e),this.props.beforeLeave(e)},y.prototype.onLeave=function(e){this.setCurrentStyleToZero(e),this.props.onLeave(e)},y.prototype.afterLeave=function(e){this.leaving=!1,this.restoreCurrentStyle(e),this.props.afterLeave(e)},y.prototype.cacheCurrentStyle=function(e){this.styleBorderTopWidth=e.style.borderTopWidth,this.stylePaddingTop=e.style.paddingTop,this.styleHeight=e.style.height,this.stylePaddingBottom=e.style.paddingBottom,this.styleBorderBottomWidth=e.style.borderBottomWidth},y.prototype.cacheComputedStyle=function(e){this.borderTopWidth=g(e,"borderTopWidth"),this.paddingTop=g(e,"paddingTop"),this.height=e.offsetHeight,this.paddingBottom=g(e,"paddingBottom"),this.borderBottomWidth=g(e,"borderBottomWidth")},y.prototype.setCurrentStyleToZero=function(e){e.style.borderTopWidth="0px",e.style.paddingTop="0px",e.style.height="0px",e.style.paddingBottom="0px",e.style.borderBottomWidth="0px"},y.prototype.setCurrentStyleToComputedStyle=function(e){e.style.borderTopWidth=this.borderTopWidth+"px",e.style.paddingTop=this.paddingTop+"px",e.style.height=this.height+"px",e.style.paddingBottom=this.paddingBottom+"px",e.style.borderBottomWidth=this.borderBottomWidth+"px"},y.prototype.restoreCurrentStyle=function(e){e.style.borderTopWidth=this.styleBorderTopWidth,e.style.paddingTop=this.stylePaddingTop,e.style.height=this.styleHeight,e.style.paddingBottom=this.stylePaddingBottom,e.style.borderBottomWidth=this.styleBorderBottomWidth},y.prototype.render=function(){var e=this.props,t=e.animation,e=(0,r.default)(e,["animation"]);return u.default.createElement(f.default,(0,a.default)({},e,{animation:t||"expand",beforeEnter:this.beforeEnter,onEnter:this.onEnter,afterEnter:this.afterEnter,beforeLeave:this.beforeLeave,onLeave:this.onLeave,afterLeave:this.afterLeave}))},s=n=y,n.propTypes={animation:d.default.oneOfType([d.default.string,d.default.object]),beforeEnter:d.default.func,onEnter:d.default.func,afterEnter:d.default.func,beforeLeave:d.default.func,onLeave:d.default.func,afterLeave:d.default.func},n.defaultProps={beforeEnter:h,onEnter:h,afterEnter:h,beforeLeave:h,onLeave:h,afterLeave:h},s);function y(e){(0,o.default)(this,y);e=(0,i.default)(this,m.call(this,e));return c.func.bindCtx(e,["beforeEnter","onEnter","afterEnter","beforeLeave","onLeave","afterLeave"]),e}l.displayName="Expand",t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var b=a(n(2)),w=a(n(12)),M=a(n(0)),k=n(157),S=a(n(13));function a(e){return e&&e.__esModule?e:{default:e}}t.default=function(t){var e=t.animation,n=t.visible,a=t.children,r=t.timeout,r=void 0===r?300:r,o=t.style,i=t.mountOnEnter,l=t.unmountOnExit,s=t.appear,u=t.enter,d=t.exit,c=t.onEnter,f=t.onEntering,p=t.onEntered,h=t.onExit,m=t.onExiting,g=t.onExited,y=(0,w.default)(t,["animation","visible","children","timeout","style","mountOnEnter","unmountOnExit","appear","enter","exit","onEnter","onEntering","onEntered","onExit","onExiting","onExited"]),v={mountOnEnter:i,unmountOnExit:l,appear:s,enter:u,exit:d,onEnter:c,onEntering:f,onEntered:p,onExit:h,onExiting:m,onExited:g},i=(Object.keys(v).forEach(function(e){e in t&&void 0!==t[e]||delete v[e]}),"string"==typeof e?{in:e,out:e}:e),_=e?{entering:i.in,exiting:i.out}:{};return!1===e&&(_.entering="",_.exiting=""),M.default.createElement(k.Transition,(0,b.default)({},v,{in:n,timeout:e?r:0,appear:!0}),function(e){var e=(0,S.default)(((t={})[a.props.className]=!!a.props.className,t[_[e]]=e in _&&_[e],t)),t=(0,b.default)({},y,{className:e});return o&&a.props&&a.props.style&&(t.style=(0,b.default)({},a.props.style,o)),M.default.cloneElement(a,t)})},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.withContext=void 0;var a,h=c(n(2)),m=c(n(12)),o=c(n(4)),i=c(n(6)),r=c(n(7)),g=c(n(0)),s=c(n(23)),l=c(n(3)),y=c(n(62)),u=c(n(8)),d=n(11),v=c(n(156));function c(e){return e&&e.__esModule?e:{default:e}}var f,n=u.default.config,p=void 0,_={},l=(f=g.default.Component,(0,r.default)(b,f),b.prototype.componentWillUnmount=function(){var e,t=this.props.timeoutId;t in _&&(e=_[t],clearTimeout(e),delete _[t])},b.prototype.render=function(){var e=this.props,t=e.prefix,n=e.type,a=e.title,r=e.content,o=e.align,i=e.offset,l=e.hasMask,s=e.afterClose,u=e.animation,d=e.overlayProps,c=(e.timeoutId,e.className),f=e.style,e=(0,m.default)(e,["prefix","type","title","content","align","offset","hasMask","afterClose","animation","overlayProps","timeoutId","className","style"]),p=this.state.visible;return g.default.createElement(y.default,(0,h.default)({},d,{prefix:t,animation:u,visible:p,align:o,offset:i,hasMask:l,afterClose:s}),g.default.createElement(v.default,(0,h.default)({},e,{prefix:t,visible:!0,type:n,shape:"toast",title:a,style:f,className:t+"message-wrapper "+c,onClose:this.handleClose}),r))},a=r=b,r.contextTypes={prefix:l.default.string},r.propTypes={prefix:l.default.string,type:l.default.string,title:l.default.node,content:l.default.node,align:l.default.string,offset:l.default.array,hasMask:l.default.bool,afterClose:l.default.func,animation:l.default.oneOfType([l.default.object,l.default.bool]),overlayProps:l.default.object,onClose:l.default.func,timeoutId:l.default.string,style:l.default.object,className:l.default.string},r.defaultProps={prefix:"next-",align:"tc tc",offset:[0,30],hasMask:!1,animation:{in:"pulse",out:"zoomOut"},style:{},className:""},a);function b(){var e,t;(0,o.default)(this,b);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,f.call.apply(f,[this].concat(a)))).state={visible:!0},t.handleClose=function(){var e=0<arguments.length&&void 0!==arguments[0]&&arguments[0];t.setState({visible:!1}),e||t.props.onClose&&t.props.onClose()},(0,i.default)(t,e)}l.displayName="Mask";var w=n(l),M=function(e){e.duration;function t(){var e=o&&o.getInstance();e&&e.handleClose(!0),l=!0}var n=e.afterClose,a=e.contextConfig,e=(0,m.default)(e,["duration","afterClose","contextConfig"]),r=document.createElement("div"),a=(document.body.appendChild(r),(a=a)||u.default.getContext()),o=void 0,i=void 0,l=!1;return s.default.render(g.default.createElement(u.default,a,g.default.createElement(w,(0,h.default)({afterClose:function(){s.default.unmountComponentAtNode(r),document.body.removeChild(r),n&&n()}},e,{ref:function(e){i=e}}))),r,function(){(o=i)&&l&&t()}),{component:o,destroy:t}};function k(e,t){S(),t=t,n={},"string"==typeof(a=e)||g.default.isValidElement(a)?n.title=a:"[object Object]"==={}.toString.call(a)&&(n=(0,h.default)({},a)),"number"!=typeof n.duration&&(n.duration=3e3),t&&(n.type=t),e=n;var n,a=(0,d.guid)();p=M((0,h.default)({},e,{timeoutId:a})),0<e.duration&&(t=setTimeout(S,e.duration),_[a]=t)}function S(){p&&(p.destroy(),p=null)}function E(e){k(e)}function x(){S()}function C(e){k(e,"success")}function L(e){k(e,"warning")}function T(e){k(e,"error")}function D(e){k(e,"help")}function O(e){k(e,"loading")}function N(e){k(e,"notice")}t.default={show:E,hide:x,success:C,warning:L,error:T,help:D,loading:O,notice:N};t.withContext=function(n){return function(t){return g.default.createElement(u.default.Consumer,null,function(e){return g.default.createElement(n,(0,h.default)({},t,{contextMessage:{show:function(){return E((0,h.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},hide:x,success:function(){return C((0,h.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},warning:function(){return L((0,h.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},error:function(){return T((0,h.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},help:function(){return D((0,h.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},loading:function(){return O((0,h.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},notice:function(){return N((0,h.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))}}}))})}}},function(e,t,n){"use strict";t.__esModule=!0;t.default={allOverlays:[],addOverlay:function(e){this.removeOverlay(e),this.allOverlays.unshift(e)},isCurrentOverlay:function(e){return e&&this.allOverlays[0]===e},removeOverlay:function(e){e=this.allOverlays.indexOf(e);-1<e&&this.allOverlays.splice(e,1)}},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a,r,o=s(n(4)),i=s(n(38)),y=n(11),l=s(n(125));function s(e){return e&&e.__esModule?e:{default:e}}function u(){return window.pageXOffset||document.documentElement.scrollLeft}function d(){return window.pageYOffset||document.documentElement.scrollTop}var v="viewport";function c(e){return"offsetWidth"in e&&"offsetHeight"in e?{width:e.offsetWidth,height:e.offsetHeight}:{width:(e=e.getBoundingClientRect()).width,height:e.height}}function f(e,t){for(var n=0,a=0,r=0,o=0,i=c(e),l=i.width,i=i.height;isNaN(e.offsetTop)||(n+=e.offsetTop),isNaN(e.offsetLeft)||(a+=e.offsetLeft),e&&e.offsetParent&&(isNaN(e.offsetParent.scrollLeft)||e.offsetParent===document.body||(o+=e.offsetParent.scrollLeft),isNaN(e.offsetParent.scrollTop)||e.offsetParent===document.body||(r+=e.offsetParent.scrollTop)),null!==(e=e.offsetParent)&&e!==t;);var s=!t||t===document.body;return{top:n-r-(s?document.documentElement.scrollTop||document.body.scrollTop:0),left:a-o-(s?document.documentElement.scrollLeft||document.body.scrollLeft:0),width:l,height:i}}function p(e){if(!e||e===document.body)return{width:document.documentElement.clientWidth,height:document.documentElement.clientHeight};e=e.getBoundingClientRect();return{width:e.width,height:e.height}}m.prototype.setPosition=function(){var e=this.pinElement,t=this.baseElement,n=this.pinFollowBaseElementWhenFixed,a=this._getExpectedAlign(),r=void 0,o=void 0,i=void 0;if(e!==v){for(var r="fixed"===y.dom.getStyle(e,"position")||(y.dom.setStyle(e,"position","absolute"),!1),o=t!==v&&"fixed"===y.dom.getStyle(t,"position"),l=0;l<a.length;l++){var s=a[l],u=this._normalizePosition(e,s.split(" ")[0],r),d=this._normalizePosition(t,s.split(" ")[1],r&&!n),c=this._getParentOffset(e),f=this._getParentScrollOffset(e),p=r&&o?this._getLeftTop(t):d.offset(r&&n),h=p.top+d.y-c.top-u.y+f.top,p=p.left+d.x-c.left-u.x+f.left;if(this._setPinElementPostion(e,{left:p,top:h},this.offset),this._isInViewport(e,s))return s;i=i||(this.needAdjust&&!this.autoFit?{left:(d=this._getViewportOffset(e,s).right)<0?p+d:p,top:h}:{left:p,top:h})}var m=this._makeElementInViewport(e,i.left,"Left",r),g=this._makeElementInViewport(e,i.top,"Top",r);return this._setPinElementPostion(e,{left:m,top:g},this._calPinOffset(a[0])),a[0]}},m.prototype._getParentOffset=function(e){var e=e.offsetParent||document.documentElement,t=void 0;return(t=e===document.body&&"static"===y.dom.getStyle(e,"position")?{top:0,left:0}:this._getElementOffset(e)).top+=parseFloat(y.dom.getStyle(e,"border-top-width"),10),t.left+=parseFloat(y.dom.getStyle(e,"border-left-width"),10),t.offsetParent=e,t},m.prototype._makeElementInViewport=function(e,t,n,a){var r=document.documentElement,e=e.offsetParent||document.documentElement;return t<0&&(a?t=0:e===document.body&&"static"===y.dom.getStyle(e,"position")&&(t=Math.max(r["scroll"+n],document.body["scroll"+n]))),t},m.prototype._normalizePosition=function(e,t,n){e=this._normalizeElement(e,n);return this._normalizeXY(e,t),e},m.prototype._normalizeXY=function(e,t){var n=t.split("")[1],t=t.split("")[0];return e.x=this._xyConverter(n,e,"width"),e.y=this._xyConverter(t,e,"height"),e},m.prototype._xyConverter=function(e,n,a){e=e.replace(/t|l/gi,"0%").replace(/c/gi,"50%").replace(/b|r/gi,"100%").replace(/(\d+)%/gi,function(e,t){return n.size()[a]*(t/100)});return parseFloat(e,10)||0},m.prototype._getLeftTop=function(e){return{left:parseFloat(y.dom.getStyle(e,"left"))||0,top:parseFloat(y.dom.getStyle(e,"top"))||0}},m.prototype._normalizeElement=function(t,n){var a=this,e={element:t,x:0,y:0},r=t===v,o=document.documentElement;return e.offset=function(e){return n?{left:0,top:0}:r?{left:u(),top:d()}:a._getElementOffset(t,e)},e.size=function(){return r?{width:o.clientWidth,height:o.clientHeight}:c(t)},e},m.prototype._getElementOffset=function(e,t){var e=e.getBoundingClientRect(),n=document.documentElement,a=document.body,r=n.clientLeft||a.clientLeft||0,n=n.clientTop||a.clientTop||0;return{left:e.left+(t?0:u())-r,top:e.top+(t?0:d())-n}},m.prototype._getExpectedAlign=function(){var e=this.isRtl?this._replaceAlignDir(this.align,/l|r/g,{l:"r",r:"l"}):this.align,t=[e];return this.needAdjust&&(/t|b/g.test(e)&&t.push(this._replaceAlignDir(e,/t|b/g,{t:"b",b:"t"})),/l|r/g.test(e)&&t.push(this._replaceAlignDir(e,/l|r/g,{l:"r",r:"l"})),/c/g.test(e)&&(t.push(this._replaceAlignDir(e,/c(?= |$)/g,{c:"l"})),t.push(this._replaceAlignDir(e,/c(?= |$)/g,{c:"r"}))),t.push(this._replaceAlignDir(e,/l|r|t|b/g,{l:"r",r:"l",t:"b",b:"t"}))),t},m.prototype._replaceAlignDir=function(e,t,n){return e.replace(t,function(e){return n[e]})},m.prototype._isRightAligned=function(e){var e=e.split(" "),t=e[0],e=e[1];return"r"===t[1]&&t[1]===e[1]},m.prototype._isBottomAligned=function(e){var e=e.split(" "),t=e[0],e=e[1];return"b"===t[0]&&t[0]===e[0]},m.prototype._isInViewport=function(e,t){var n=p(this.container),a=f(e,this.container),r=c(e),o=this._isRightAligned(t)?n.width:n.width-1,t=this._isBottomAligned(t)?n.height:n.height-1;return this.autoFit?0<=a.top&&a.top+e.offsetHeight<=t:0<=a.left&&a.left+r.width<=o&&0<=a.top&&a.top+r.height<=t},m.prototype._getViewportOffset=function(e,t){var n=p(this.container),a=f(e,this.container),e=c(e),r=this._isRightAligned(t)?n.width:n.width-1,t=this._isBottomAligned(t)?n.height:n.height-1;return{top:a.top,right:r-(a.left+e.width),bottom:t-(a.top+e.height),left:a.left}},m.prototype._setPinElementPostion=function(e,t){var n,a,r=2<arguments.length&&void 0!==arguments[2]?arguments[2]:[0,0],o=t.top,t=t.left;this.isRtl?(n=f(this._getParentOffset(e).offsetParent).width,a=f(e).width,y.dom.setStyle(e,{left:"auto",right:n-(t+a)+r[0]+"px",top:o+r[1]+"px"})):y.dom.setStyle(e,{left:t+r[0]+"px",top:o+r[1]+"px"})},a=n=m,n.VIEWPORT=v,n.place=function(e){return new h(e).setPosition()},r=function(){var o=this;this._calPinOffset=function(e){var t,n,a,r=[].concat(o.offset);return o.autoFit&&e&&o.container&&o.container!==document.body&&(t=f(o.baseElement,o.container),n=f(o.pinElement,o.container),a=p(o.container),(e=e.split(" ")[0]).charAt(1),e=e.charAt(0),(n.top<0||n.top+n.height>a.height)&&(r[1]=-t.top-("t"===e?t.height:0))),r},this._getParentScrollOffset=function(e){var t=0,n=0;return e&&e.offsetParent&&e.offsetParent!==document.body&&(isNaN(e.offsetParent.scrollTop)||(t+=e.offsetParent.scrollTop),isNaN(e.offsetParent.scrollLeft)||(n+=e.offsetParent.scrollLeft)),{top:t,left:n}}};var h=a;function m(e){(0,o.default)(this,m),r.call(this),this.pinElement=e.pinElement,this.baseElement=e.baseElement,this.pinFollowBaseElementWhenFixed=e.pinFollowBaseElementWhenFixed,this.container=function(e){var t=e.container,e=e.baseElement;if(void 0===("undefined"==typeof document?"undefined":(0,i.default)(document)))return t;for(var n=(n=(0,l.default)(t,e))||document.body;"static"===y.dom.getStyle(n,"position");){if(!n||n===document.body)return document.body;n=n.parentNode}return n}(e),this.autoFit=e.autoFit||!1,this.align=e.align||"tl tl",this.offset=e.offset||[0,0],this.needAdjust=e.needAdjust||!1,this.isRtl=e.isRtl||!1}t.default=h,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var w=a(n(2)),M=a(n(12)),k=n(0),S=a(k),E=a(n(13)),x=a(n(183)),C=a(n(79)),L=n(11);function a(e){return e&&e.__esModule?e:{default:e}}t.default=function(e){if(!k.useState||!k.useRef||!k.useEffect)return L.log.warning("need react version > 16.8.0"),null;var t=e.prefix,t=void 0===t?"next-":t,n=e.animation,a=void 0===n?{in:"expandInDown",out:"expandOutUp"}:n,r=e.visible,n=e.hasMask,o=e.align,i=e.points,o=void 0===i?o?o.split(" "):void 0:i,l=e.onPosition,i=e.children,s=e.className,u=e.style,d=e.wrapperClassName,c=e.beforeOpen,f=e.onOpen,p=e.afterOpen,h=e.beforeClose,m=e.onClose,g=e.afterClose,e=(0,M.default)(e,["prefix","animation","visible","hasMask","align","points","onPosition","children","className","style","wrapperClassName","beforeOpen","onOpen","afterOpen","beforeClose","onClose","afterClose"]),y=(0,k.useState)(!0),v=y[0],_=y[1],b=(0,k.useRef)(null),y=S.default.createElement(C.default.OverlayAnimate,{visible:r,animation:a,onEnter:function(){_(!1),"function"==typeof c&&c(b.current)},onEntering:function(){"function"==typeof f&&f(b.current)},onEntered:function(){"function"==typeof p&&p(b.current)},onExit:function(){"function"==typeof h&&h(b.current)},onExiting:function(){"function"==typeof m&&m(b.current)},onExited:function(){_(!0),"function"==typeof g&&g(b.current)},timeout:300,style:u},i?(0,k.cloneElement)(i,{className:(0,E.default)([t+"overlay-inner",s,i&&i.props&&i.props.className])}):S.default.createElement("span",null)),s=(0,E.default)(((u={})[t+"overlay-wrapper v2"]=!0,u[d]=d,u.opened=r,u));return S.default.createElement(x.default,(0,w.default)({},e,{visible:r,isAnimationEnd:v,hasMask:n,wrapperClassName:s,maskClassName:t+"overlay-backdrop",maskRender:function(e){return S.default.createElement(C.default.OverlayAnimate,{visible:r,animation:!!a&&{in:"fadeIn",out:"fadeOut"},timeout:300,unmountOnExit:!0},e)},points:o,onPosition:function(e){(0,w.default)(e,{align:e.config.points}),"function"==typeof l&&l(e)},ref:b}),y)},e.exports=t.default},function(n,e){function a(e,t){return n.exports=a=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},n.exports.__esModule=!0,n.exports.default=n.exports,a(e,t)}n.exports=a,n.exports.__esModule=!0,n.exports.default=n.exports},function(e,t,n){"use strict";t.__esModule=!0;var a,d=g(n(12)),c=g(n(2)),r=g(n(4)),o=g(n(6)),i=g(n(7)),s=n(0),f=g(s),p=n(23),l=n(30),u=g(n(3)),h=n(11),m=g(n(348));function g(e){return e&&e.__esModule?e:{default:e}}var y,n=h.func.noop,v=h.func.makeChain,_=h.func.bindCtx,u=(y=s.Component,(0,i.default)(b,y),b.getDerivedStateFromProps=function(e,t){return"visible"in e?(0,c.default)({},t,{visible:e.visible}):null},b.prototype.componentWillUnmount=function(){var t=this;["_timer","_hideTimer","_showTimer"].forEach(function(e){t[e]&&clearTimeout(t[e])})},b.prototype.handleVisibleChange=function(e,t,n){"visible"in this.props||this.setState({visible:e}),this.props.onVisibleChange(e,t,n)},b.prototype.handleTriggerClick=function(e){this.state.visible&&!this.props.canCloseByTrigger||this.handleVisibleChange(!this.state.visible,"fromTrigger",e)},b.prototype.handleTriggerKeyDown=function(e){var t=this.props.triggerClickKeycode;(Array.isArray(t)?t:[t]).includes(e.keyCode)&&(e.preventDefault(),this.handleTriggerClick(e))},b.prototype.handleTriggerMouseEnter=function(e){var t=this;this._mouseNotFirstOnMask=!1,this._hideTimer&&(clearTimeout(this._hideTimer),this._hideTimer=null),this._showTimer&&(clearTimeout(this._showTimer),this._showTimer=null),this.state.visible||(this._showTimer=setTimeout(function(){t.handleVisibleChange(!0,"fromTrigger",e)},this.props.delay))},b.prototype.handleTriggerMouseLeave=function(e,t){var n=this;this._showTimer&&(clearTimeout(this._showTimer),this._showTimer=null),this.state.visible&&(this._hideTimer=setTimeout(function(){n.handleVisibleChange(!1,t||"fromTrigger",e)},this.props.delay))},b.prototype.handleTriggerFocus=function(e){this.handleVisibleChange(!0,"fromTrigger",e)},b.prototype.handleTriggerBlur=function(e){this._isForwardContent||this.handleVisibleChange(!1,"fromTrigger",e),this._isForwardContent=!1},b.prototype.handleContentMouseDown=function(){this._isForwardContent=!0},b.prototype.handleContentMouseEnter=function(){clearTimeout(this._hideTimer)},b.prototype.handleContentMouseLeave=function(e){this.handleTriggerMouseLeave(e,"fromContent")},b.prototype.handleMaskMouseEnter=function(){this._mouseNotFirstOnMask||(clearTimeout(this._hideTimer),this._hideTimer=null,this._mouseNotFirstOnMask=!1)},b.prototype.handleMaskMouseLeave=function(){this._mouseNotFirstOnMask=!0},b.prototype.handleRequestClose=function(e,t){this.handleVisibleChange(!1,e,t)},b.prototype.renderTrigger=function(){var e,t,n,a,r,o,i,l=this,s=this.props,u=s.trigger,s=s.disabled,d={key:"trigger","aria-haspopup":!0,"aria-expanded":this.state.visible};return this.state.visible||(d["aria-describedby"]=void 0),s||(s=this.props.triggerType,s=Array.isArray(s)?s:[s],e=u&&u.props||{},t=e.onClick,n=e.onKeyDown,a=e.onMouseEnter,r=e.onMouseLeave,o=e.onFocus,i=e.onBlur,s.forEach(function(e){switch(e){case"click":d.onClick=v(l.handleTriggerClick,t),d.onKeyDown=v(l.handleTriggerKeyDown,n);break;case"hover":d.onMouseEnter=v(l.handleTriggerMouseEnter,a),d.onMouseLeave=v(l.handleTriggerMouseLeave,r);break;case"focus":d.onFocus=v(l.handleTriggerFocus,o),d.onBlur=v(l.handleTriggerBlur,i)}})),u&&f.default.cloneElement(u,d)},b.prototype.renderContent=function(){var t=this,e=this.props,n=e.children,e=e.triggerType,e=Array.isArray(e)?e:[e],n=s.Children.only(n),a=n.props,r=a.onMouseDown,o=a.onMouseEnter,i=a.onMouseLeave,l={key:"portal"};return e.forEach(function(e){switch(e){case"focus":l.onMouseDown=v(t.handleContentMouseDown,r);break;case"hover":l.onMouseEnter=v(t.handleContentMouseEnter,o),l.onMouseLeave=v(t.handleContentMouseLeave,i)}}),f.default.cloneElement(n,l)},b.prototype.renderPortal=function(){function e(){return(0,p.findDOMNode)(t)}var t=this,n=this.props,a=n.target,r=n.safeNode,o=n.followTrigger,i=n.triggerType,l=n.hasMask,s=n.wrapperStyle,n=(0,d.default)(n,["target","safeNode","followTrigger","triggerType","hasMask","wrapperStyle"]),u=this.props.container,r=Array.isArray(r)?[].concat(r):[r],s=(r.unshift(e),s||{});return o&&(u=function(e){return e&&e.parentNode||e},s.position="relative"),"hover"===i&&l&&(n.onMaskMouseEnter=this.handleMaskMouseEnter,n.onMaskMouseLeave=this.handleMaskMouseLeave),f.default.createElement(m.default,(0,c.default)({},n,{key:"overlay",ref:function(e){return t.overlay=e},visible:this.state.visible,target:a||e,container:u,safeNode:r,wrapperStyle:s,triggerType:i,hasMask:l,onRequestClose:this.handleRequestClose}),this.props.children&&this.renderContent())},b.prototype.render=function(){return[this.renderTrigger(),this.renderPortal()]},a=i=b,i.propTypes={children:u.default.node,trigger:u.default.element,triggerType:u.default.oneOfType([u.default.string,u.default.array]),triggerClickKeycode:u.default.oneOfType([u.default.number,u.default.array]),visible:u.default.bool,defaultVisible:u.default.bool,onVisibleChange:u.default.func,disabled:u.default.bool,autoFit:u.default.bool,delay:u.default.number,canCloseByTrigger:u.default.bool,target:u.default.any,safeNode:u.default.any,followTrigger:u.default.bool,container:u.default.any,hasMask:u.default.bool,wrapperStyle:u.default.object,rtl:u.default.bool,v2:u.default.bool,placement:u.default.string,placementOffset:u.default.number},i.defaultProps={triggerType:"hover",triggerClickKeycode:[h.KEYCODE.SPACE,h.KEYCODE.ENTER],defaultVisible:!1,onVisibleChange:n,disabled:!1,autoFit:!1,delay:200,canCloseByTrigger:!0,followTrigger:!1,container:function(){return document.body},rtl:!1},a);function b(e){(0,r.default)(this,b);var t=(0,o.default)(this,y.call(this,e));return t.state={visible:void 0===e.visible?e.defaultVisible:e.visible},_(t,["handleTriggerClick","handleTriggerKeyDown","handleTriggerMouseEnter","handleTriggerMouseLeave","handleTriggerFocus","handleTriggerBlur","handleContentMouseEnter","handleContentMouseLeave","handleContentMouseDown","handleRequestClose","handleMaskMouseEnter","handleMaskMouseLeave"]),t}u.displayName="Popup",t.default=(0,l.polyfill)(u),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var T=a(n(2)),D=a(n(12)),O=n(0),N=a(O),P=a(n(13)),j=a(n(183)),Y=a(n(79)),I=n(11);function a(e){return e&&e.__esModule?e:{default:e}}t.default=function(r){if(!O.useState||!O.useRef||!O.useEffect)return I.log.warning("need react version > 16.8.0"),null;var e=r.prefix,e=void 0===e?"next-":e,t=r.animation,n=void 0===t?{in:"expandInDown",out:"expandOutUp"}:t,t=r.defaultVisible,a=r.onVisibleChange,o=void 0===a?function(){}:a,a=r.trigger,i=r.triggerType,i=void 0===i?"hover":i,l=r.overlay,s=r.onPosition,u=r.children,d=r.className,c=r.style,f=r.wrapperClassName,p=r.triggerClickKeycode,h=r.align,m=r.beforeOpen,g=r.onOpen,y=r.afterOpen,v=r.beforeClose,_=r.onClose,b=r.afterClose,w=(0,D.default)(r,["prefix","animation","defaultVisible","onVisibleChange","trigger","triggerType","overlay","onPosition","children","className","style","wrapperClassName","triggerClickKeycode","align","beforeOpen","onOpen","afterOpen","beforeClose","onClose","afterClose"]),t=(0,O.useState)(t),M=t[0],k=t[1],t=(0,O.useState)(n),S=t[0],E=t[1],t=(0,O.useState)(!0),x=t[0],C=t[1],L=(0,O.useRef)(null),t=((0,O.useEffect)(function(){"visible"in r&&k(r.visible)},[r.visible]),(0,O.useEffect)(function(){"animation"in r&&S!==n&&E(n)},[n]),l?u:a),a=l||u,a=N.default.createElement(Y.default.OverlayAnimate,{visible:M,animation:S,timeout:200,onEnter:function(){C(!1),"function"==typeof m&&m(L.current)},onEntering:function(){"function"==typeof g&&g(L.current)},onEntered:function(){"function"==typeof y&&y(L.current)},onExit:function(){"function"==typeof v&&v(L.current)},onExiting:function(){"function"==typeof _&&_(L.current)},onExited:function(){C(!0),"function"==typeof b&&b(L.current)},style:c},a?(0,O.cloneElement)(a,{className:(0,P.default)([e+"overlay-inner",d,a&&a.props&&a.props.className])}):N.default.createElement("span",null)),u=(0,P.default)(((l={})[e+"overlay-wrapper v2"]=!0,l[f]=f,l.opened=M,l)),c={};h&&(c.points=h.split(" "));return N.default.createElement(j.default.Popup,(0,T.default)({},w,c,{wrapperClassName:u,overlay:a,visible:M,isAnimationEnd:x,triggerType:i,onVisibleChange:function(e){for(var t=arguments.length,n=Array(1<t?t-1:0),a=1;a<t;a++)n[a-1]=arguments[a];"visible"in r||k(e),o.apply(void 0,[e].concat(n))},onPosition:function(e){(0,T.default)(e,{align:e.config.points});var t=e.config.placement;t&&"string"==typeof t&&("expandInDown"===S.in&&"expandOutUp"===S.out&&t.match(/t/)?E({in:"expandInUp",out:"expandOutDown"}):"expandInUp"===S.in&&"expandOutDown"===S.out&&t.match(/b/)&&E({in:"expandInDown",out:"expandOutUp"})),"function"==typeof s&&s(e)},triggerClickKeyCode:p,maskRender:function(e){return N.default.createElement(Y.default.OverlayAnimate,{visible:M,animation:!!S&&{in:"fadeIn",out:"fadeOut"},timeout:200,unmountOnExit:!0},e)},ref:L}),t)},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var s=a(n(2)),u=a(n(12)),o=n(0),d=a(o),i=a(n(23)),l=a(n(8)),c=a(n(79)),f=a(n(156)),p=n(11);function a(e){return e&&e.__esModule?e:{default:e}}var h={top:8,maxCount:0,duration:3e3},m=l.default.config(function(e){var t=e.prefix,l=void 0===t?"next-":t,t=e.dataSource,a=void 0===t?[]:t,r=(0,o.useState)()[1];return a.forEach(function(n){n.timer||(n.timer=setTimeout(function(){var e,t=a.indexOf(n);-1<t&&("function"==typeof(e=a[t]).onClose&&e.onClose(),a.splice(t,1),r({}))},n.duration))}),d.default.createElement("div",{className:l+"message-wrapper-v2",style:{top:h.top}},d.default.createElement(c.default,{animationAppear:!0,animation:{appear:"pulse",enter:"pulse",leave:l+"message-fade-leave"},singleMode:!1},a.map(function(e){var t=e.key,n=e.className,a=e.type,r=e.title,o=e.content,i=e.style,e=(0,u.default)(e,["key","className","type","title","content","style"]);return d.default.createElement("div",{className:l+"message-list",key:t},d.default.createElement(f.default,(0,s.default)({},e,{className:n,prefix:l,visible:!0,type:a,shape:"toast",title:r,style:i}),o))})))}),g=void 0,y=[];function r(o){return function(e){var t,n,a,r;return n=o,a={},"string"==typeof(t=e)||d.default.isValidElement(t)?a.title=t:"Object"===p.obj.typeOf(t)&&(a=(0,s.default)({},t)),n&&(a.type=n),n=void 0===(n=(t=e=a).key)?(0,p.guid)("message-"):n,t=(0,u.default)(t,["key"]),g||(g=document.createElement("div"),document.body.appendChild(g)),a=h.maxCount,e=h.duration,r=(0,s.default)({key:n,duration:e},t),y.push(r),a&&y.length>a&&y.shift(),i.default.render(d.default.createElement(l.default,l.default.getContext(),d.default.createElement(m,{dataSource:y})),g),{key:n,close:function(){r.timer&&clearTimeout(r.timer);var e=y.indexOf(r);-1<e&&("function"==typeof r.onClose&&r.onClose(),y.splice(e,1),i.default.render(d.default.createElement(l.default,l.default.getContext(),d.default.createElement(m,{dataSource:y})),g))}}}}t.default={open:r(),success:r("success"),warning:r("warning"),error:r("error"),help:r("help"),loading:r("loading"),notice:r("notice"),close:function(t){var e;t?(e=y.findIndex(function(e){return e.key===t}),y.splice(e,1)):y=[],g&&i.default.render(d.default.createElement(l.default,l.default.getContext(),d.default.createElement(m,{dataSource:y})),g)},destory:function(){g&&(i.default.unmountComponentAtNode(g),g.parentNode.removeChild(g),g=null)},config:function(){if(o.useState){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return s.default.apply(void 0,[h].concat(t))}p.log.warning("need react version > 16.8.0")}},e.exports=t.default},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";n(546)},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var p=s(n(2)),r=s(n(4)),o=s(n(6)),a=s(n(7)),h=s(n(38)),m=s(n(0)),i=s(n(3)),g=s(n(13)),y=n(11),l=s(n(27)),v=s(n(355));function s(e){return e&&e.__esModule?e:{default:e}}function _(e,r){var o=r.size,i=r.device,l=r.labelAlign,s=r.labelTextAlign,u=r.labelCol,d=r.wrapperCol,c=r.responsive,f=r.colon;return m.default.Children.map(e,function(e){return y.obj.isReactFragment(e)?_(e.props.children,r):e&&-1<["function","object"].indexOf((0,h.default)(e.type))&&"form_item"===e.type._typeMark?(t={labelCol:e.props.labelCol||u,wrapperCol:e.props.wrapperCol||d,labelAlign:e.props.labelAlign||("phone"===i?"top":l),labelTextAlign:e.props.labelTextAlign||s,colon:"colon"in e.props?e.props.colon:f,size:e.props.size||o,responsive:c},m.default.cloneElement(e,(n=t,a={},Object.keys(n).forEach(function(e){void 0!==n[e]&&(a[e]=n[e])}),a))):e;var t,n,a})}u=m.default.Component,(0,a.default)(b,u),b.prototype.getChildContext=function(){return{_formField:this.props.field||this._formField,_formSize:this.props.size,_formDisabled:this.props.disabled,_formPreview:this.props.isPreview,_formFullWidth:this.props.fullWidth,_formLabelForErrorMessage:this.props.useLabelForErrorMessage}},b.prototype.componentDidUpdate=function(e){var t=this.props;this._formField&&("value"in t&&t.value!==e.value&&this._formField.setValues(t.value),"error"in t&&t.error!==e.error&&this._formField.setValues(t.error))},b.prototype.render=function(){var e=this.props,t=e.className,n=e.inline,a=e.size,r=(e.device,e.labelAlign,e.labelTextAlign,e.onSubmit),o=e.children,i=(e.labelCol,e.wrapperCol,e.style),l=e.prefix,s=e.rtl,u=e.isPreview,d=e.component,c=e.responsive,f=e.gap,n=(e.colon,(0,g.default)(((e={})[l+"form"]=!0,e[l+"inline"]=n,e[""+l+a]=a,e[l+"form-responsive-grid"]=c,e[l+"form-preview"]=u,e[t]=!!t,e))),a=_(o,this.props);return m.default.createElement(d,(0,p.default)({role:"grid"},y.obj.pickOthers(b.propTypes,this.props),{className:n,style:i,dir:s?"rtl":void 0,onSubmit:r}),c?m.default.createElement(v.default,{gap:f},a):a)},a=n=b,n.propTypes={prefix:i.default.string,inline:i.default.bool,size:i.default.oneOf(["large","medium","small"]),fullWidth:i.default.bool,labelAlign:i.default.oneOf(["top","left","inset"]),labelTextAlign:i.default.oneOf(["left","right"]),field:i.default.any,saveField:i.default.func,labelCol:i.default.object,wrapperCol:i.default.object,onSubmit:i.default.func,children:i.default.any,className:i.default.string,style:i.default.object,value:i.default.object,onChange:i.default.func,component:i.default.oneOfType([i.default.string,i.default.func]),fieldOptions:i.default.object,rtl:i.default.bool,device:i.default.oneOf(["phone","tablet","desktop"]),responsive:i.default.bool,isPreview:i.default.bool,useLabelForErrorMessage:i.default.bool,colon:i.default.bool,disabled:i.default.bool,gap:i.default.oneOfType([i.default.arrayOf(i.default.number),i.default.number])},n.defaultProps={prefix:"next-",onSubmit:function(e){e.preventDefault()},size:"medium",labelAlign:"left",onChange:y.func.noop,component:"form",saveField:y.func.noop,device:"desktop",colon:!1,disabled:!1},n.childContextTypes={_formField:i.default.object,_formSize:i.default.string,_formDisabled:i.default.bool,_formPreview:i.default.bool,_formFullWidth:i.default.bool,_formLabelForErrorMessage:i.default.bool};var u,n=a;function b(e){(0,r.default)(this,b);var t,n,a=(0,o.default)(this,u.call(this,e));return a.onChange=function(e,t){a.props.onChange(a._formField.getValues(),{name:e,value:t,field:a._formField})},a._formField=null,!1!==e.field&&(t=(0,p.default)({},e.fieldOptions,{onChange:a.onChange}),e.field?(a._formField=e.field,n=a._formField.options.onChange,t.onChange=y.func.makeChain(n,a.onChange),a._formField.setOptions&&a._formField.setOptions(t)):("value"in e&&(t.values=e.value),a._formField=new l.default(a,t)),e.locale&&e.locale.Validate&&a._formField.setOptions({messages:e.locale.Validate}),e.saveField(a._formField)),a}n.displayName="Form",t.default=n,e.exports=t.default},function(e,t,n){"use strict";var a=n(86),m=(Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a(n(160))),i=a(n(551)),r=a(n(162)),o=a(n(161)),b=a(n(163)),w=a(n(73)),l=a(n(352)),s=a(n(353)),g=a(n(557)),M=n(566),u={state:"",valueName:"value",trigger:"onChange",inputValues:[]},a=function(){function a(e){var t=this,n=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};(0,l.default)(this,a),e||(0,M.warning)("`this` is missing in `Field`, you should use like `new Field(this)`"),this.com=e,this.fieldsMeta={},this.cachedBind={},this.instance={},this.instanceCount={},this.values=(0,w.default)({},n.values),this.processErrorMessage=n.processErrorMessage,this.afterValidateRerender=n.afterValidateRerender,this.options=(0,w.default)({parseName:!1,forceUpdate:!1,scrollToFirstError:!0,first:!1,onChange:function(){},autoUnmount:!0,autoValidate:!0},n),["init","getValue","getValues","setValue","setValues","getError","getErrors","setError","setErrors","validateCallback","validatePromise","getState","reset","resetToDefault","remove","spliceArray","addArrayValue","deleteArrayValue","getNames"].forEach(function(e){t[e]=t[e].bind(t)})}var n;return(0,s.default)(a,[{key:"setOptions",value:function(e){(0,w.default)(this.options,e)}},{key:"init",value:function(o){var e,i=this,t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},n=2<arguments.length?arguments[2]:void 0,a=t.id,r=t.initValue,l=t.valueName,l=void 0===l?"value":l,s=t.trigger,u=void 0===s?"onChange":s,s=t.rules,s=void 0===s?[]:s,d=t.props,d=void 0===d?{}:d,c=t.getValueFromEvent,c=void 0===c?null:c,f=t.getValueFormatter,f=void 0===f?c:f,p=t.setValueFormatter,t=t.autoValidate,t=void 0===t||t,h=this.options.parseName,m=(c&&(0,M.warning)("`getValueFromEvent` has been deprecated in `Field`, use `getValueFormatter` instead of it"),(0,w.default)({},d,n)),c="default".concat(l[0].toUpperCase()).concat(l.slice(1)),g=(void 0!==r?e=r:void 0!==m[c]&&(e=m[c]),this._getInitMeta(o)),y=((0,w.default)(g,{valueName:l,initValue:e,disabled:"disabled"in m&&m.disabled,getValueFormatter:f,setValueFormatter:p,rules:Array.isArray(s)?s:[s],ref:m.ref}),l in m&&(g.value=m[l],h?this.values=(0,M.setIn)(this.values,o,g.value):this.values[o]=g.value),"value"in g||(h?void 0!==(d=(0,M.getIn)(this.values,o))?g.value=d:(g.value=e,this.values=(0,M.setIn)(this.values,o,g.value)):void 0!==(n=this.values[o])?g.value=n:void 0!==e&&(g.value=e,this.values[o]=g.value)),(0,b.default)({"data-meta":"Field",id:a||o,ref:this._getCacheBind(o,"".concat(o,"__ref"),this._saveRef)},l,p?p(g.value,g.inputValues):g.value)),v={};if(this.options.autoValidate&&!1!==t)for(var _ in v=(0,M.mapValidateRules)(g.rules,u))(function(a){if(a===u)return;var r=v[a];y[a]=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];i._callNativePropsEvent.apply(i,[a,m].concat(t)),i._validate(o,r,a)}})(_);return y[u]=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];i._updateFieldValue.apply(i,[o].concat(t)),i._resetError(o),i._callNativePropsEvent.apply(i,[u,m].concat(t)),i.options.onChange(o,g.value);var a=v[u];a&&i._validate(o,a,u),i._reRender()},delete m[c],(0,w.default)({},m,y)}},{key:"_callNativePropsEvent",value:function(e,t){for(var n=arguments.length,a=new Array(2<n?n-2:0),r=2;r<n;r++)a[r-2]=arguments[r];e in t&&"function"==typeof t[e]&&t[e].apply(t,a)}},{key:"_getInitMeta",value:function(e){return e in this.fieldsMeta||(this.fieldsMeta[e]=(0,w.default)({},u)),this.fieldsMeta[e]}},{key:"_updateFieldValue",value:function(e){for(var t=arguments.length,n=new Array(1<t?t-1:0),a=1;a<t;a++)n[a-1]=arguments[a];var r=n[0],o=this._get(e);o&&(o.value=o.getValueFormatter?o.getValueFormatter.apply(this,n):(0,M.getValueFromEvent)(r),o.inputValues=n,this.options.parseName?this.values=(0,M.setIn)(this.values,e,o.value):this.values[e]=o.value)}},{key:"_getCacheBind",value:function(e,t,n){var a=this.cachedBind[e]=this.cachedBind[e]||{};return a[t]||(a[t]=n.bind(this,e)),a[t]}},{key:"_setCache",value:function(e,t,n){(this.cachedBind[e]=this.cachedBind[e]||{})[t]=n}},{key:"_getCache",value:function(e,t){return(this.cachedBind[e]||{})[t]}},{key:"_saveRef",value:function(e,t){var n="".concat(e,"_field"),a=this.options.autoUnmount;if(!t&&a)this.instanceCount[e]&&this.instanceCount[e]--,0<this.instanceCount[e]||((r=this.fieldsMeta[e])&&this._setCache(e,n,r),delete this.instance[e],this.remove(e));else{a&&!this.fieldsMeta[e]&&this._getCache(e,n)&&(this.fieldsMeta[e]=this._getCache(e,n),this.setValue(e,this.fieldsMeta[e]&&this.fieldsMeta[e].value,!1));var r=this._get(e);if(r){n=r.ref;if(n){if("string"==typeof n)throw new Error("can not set string ref for ".concat(e));"function"==typeof n?n(t):"object"===(0,o.default)(n)&&"current"in n&&(n.current=t)}a&&t&&(r=(r=this.instanceCount[e])||0,this.instanceCount[e]=r+1),this.instance[e]=t}}}},{key:"_validate",value:function(e,t,n){var a,r,o=this,i=this._get(e);i&&(a=i.value,i.state="loading",(r=this._getCache(e,n))&&"function"==typeof r.abort&&r.abort(),r=new g.default((0,b.default)({},e,t),{messages:this.options.messages}),this._setCache(e,n,r),r.validate((0,b.default)({},e,a),function(e){var t,e=e&&e.length?(t=(0,M.getErrorStrs)(e,o.processErrorMessage),"error"):(t=[],"success"),n=!1;e===i.state&&i.errors&&t.length===i.errors.length&&!t.find(function(e,t){return e!==i.errors[t]})||(n=!0),i.errors=t,i.state=e,n&&o._reRender()}))}},{key:"getValue",value:function(e){return this.options.parseName?(0,M.getIn)(this.values,e):this.values[e]}},{key:"getValues",value:function(e){var t=this,n={};return e&&e.length?e.forEach(function(e){n[e]=t.getValue(e)}):(0,w.default)(n,this.values),n}},{key:"setValue",value:function(e,t){var n=!(2<arguments.length&&void 0!==arguments[2])||arguments[2];e in this.fieldsMeta&&(this.fieldsMeta[e].value=t),this.options.parseName?this.values=(0,M.setIn)(this.values,e,t):this.values[e]=t,n&&this._reRender()}},{key:"setValues",value:function(){var n=this,t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},e=!(1<arguments.length&&void 0!==arguments[1])||arguments[1];this.options.parseName?(this.values=(0,w.default)({},this.values,t),this.getNames().forEach(function(e){var t=(0,M.getIn)(n.values,e);void 0!==t?n.fieldsMeta[e].value=t:n.values=(0,M.setIn)(n.values,e,n.fieldsMeta[e].value)})):Object.keys(t).forEach(function(e){n.setValue(e,t[e],!1)}),e&&this._reRender()}},{key:"setError",value:function(e,t){t=Array.isArray(t)?t:t?[t]:[];e in this.fieldsMeta?this.fieldsMeta[e].errors=t:this.fieldsMeta[e]={errors:t},this.fieldsMeta[e].errors&&0<this.fieldsMeta[e].errors.length?this.fieldsMeta[e].state="error":this.fieldsMeta[e].state="",this._reRender()}},{key:"setErrors",value:function(){var t=this,n=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};Object.keys(n).forEach(function(e){t.setError(e,n[e])})}},{key:"getError",value:function(e){e=this._get(e);return e&&e.errors&&e.errors.length?e.errors:null}},{key:"getErrors",value:function(e){var t=this,e=e||this.getNames(),n={};return e.forEach(function(e){n[e]=t.getError(e)}),n}},{key:"getState",value:function(e){e=this._get(e);return e&&e.state?e.state:""}},{key:"formatGetErrors",value:function(e){var t,n,a=this.getErrors(e),r=null;for(t in a)a.hasOwnProperty(t)&&a[t]&&(n=a[t],(r=r||{})[t]={errors:n});return r}},{key:"validateCallback",value:function(e,t){for(var o=this,e=(0,M.getParams)(e,t),i=e.names,l=e.callback,s=i||this.getNames(),n={},a={},r=!1,u=0;u<s.length;u++){var d=s[u],c=this._get(d);c&&c.rules&&c.rules.length&&(n[d]=c.rules,a[d]=this.getValue(d),r=!0,c.errors=[],c.state="")}r?new g.default(n,{first:this.options.first,messages:this.options.messages}).validate(a,function(e){var n=null,e=(e&&e.length&&(n={},e.forEach(function(e){var t=e.field;n[t]||(n[t]={errors:[]}),n[t].errors.push(e.message)})),n&&Object.keys(n).forEach(function(e){var t=o._get(e);t&&(t.errors=(0,M.getErrorStrs)(n[e].errors,o.processErrorMessage),t.state="error")}),o.formatGetErrors(s));e&&(n=(0,w.default)({},e,n));for(var t=0;t<s.length;t++){var a=s[t],r=o._get(a);!r||!r.rules||n&&a in n||(r.state="success")}l&&l(n,o.getValues(i?s:[])),o._reRender(),"function"==typeof o.afterValidateRerender&&o.afterValidateRerender({errorsGroup:n,options:o.options,instance:o.instance})}):(t=this.formatGetErrors(s),l&&l(t,this.getValues(i?s:[])))}},{key:"validatePromise",value:(n=(0,r.default)(m.default.mark(function e(t,n){var a,r,o,i,l,s,u,d,c,f,p,h;return m.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:r=(0,M.getParams)(t,n),a=r.names,r=r.callback,o=a||this.getNames(),i={},s=!(l={}),u=0;case 6:if(!(u<o.length)){e.next=15;break}if(d=o[u],c=this._get(d)){e.next=11;break}return e.abrupt("continue",12);case 11:c.rules&&c.rules.length&&(i[d]=c.rules,l[d]=this.getValue(d),s=!0,c.errors=[],c.state="");case 12:u++,e.next=6;break;case 15:if(s){e.next=22;break}if(f=this.formatGetErrors(o),r)return e.abrupt("return",r({errors:f,values:this.getValues(a?o:[])}));e.next=21;break;case 21:return e.abrupt("return",{errors:f,values:this.getValues(a?o:[])});case 22:return p=new g.default(i,{first:this.options.first,messages:this.options.messages}),e.next=25,p.validatePromise(l);case 25:if(p=e.sent,h=p&&p.errors||[],h=this._getErrorsGroup({errors:h,fieldNames:o}),h={errors:h,values:this.getValues(a?o:[])},e.prev=29,r)return e.next=33,r(h);e.next=34;break;case 33:h=e.sent;case 34:e.next=39;break;case 36:return e.prev=36,e.t0=e.catch(29),e.abrupt("return",e.t0);case 39:return this._reRender(),e.abrupt("return",h);case 41:case"end":return e.stop()}},e,this,[[29,36]])})),function(e,t){return n.apply(this,arguments)})},{key:"_getErrorsGroup",value:function(e){var n=this,t=e.errors,a=e.fieldNames,r=null,e=(t&&t.length&&(r={},t.forEach(function(e){var t=e.field;r[t]||(r[t]={errors:[]}),r[t].errors.push(e.message)})),r&&Object.keys(r).forEach(function(e){var t=n._get(e);t&&(t.errors=(0,M.getErrorStrs)(r[e].errors,n.processErrorMessage),t.state="error")}),this.formatGetErrors(a));e&&(r=(0,w.default)({},e,r));for(var o=0;o<a.length;o++){var i=a[o],l=this._get(i);!l||!l.rules||r&&i in r||(l.state="success")}return r}},{key:"_reset",value:function(e,n){var a=this,r=!1,t=(e="string"==typeof e?[e]:e)||Object.keys(this.fieldsMeta);e||(this.values={}),t.forEach(function(e){var t=a._get(e);t&&(r=!0,t.value=n?t.initValue:void 0,t.state="",delete t.errors,delete t.rules,delete t.rulesMap,a.options.parseName?a.values=(0,M.setIn)(a.values,e,t.value):a.values[e]=t.value)}),r&&this._reRender()}},{key:"reset",value:function(e){this._reset(e,!1)}},{key:"resetToDefault",value:function(e){this._reset(e,!0)}},{key:"getNames",value:function(){var e=this.fieldsMeta;return Object.keys(e).filter(function(){return!0})}},{key:"remove",value:function(e){var t=this;(e="string"==typeof e?[e]:e)||(this.values={}),(e||Object.keys(this.fieldsMeta)).forEach(function(e){e in t.fieldsMeta&&delete t.fieldsMeta[e],t.options.parseName?t.values=(0,M.deleteIn)(t.values,e):delete t.values[e]})}},{key:"addArrayValue",value:function(e,t){for(var n=arguments.length,a=new Array(2<n?n-2:0),r=2;r<n;r++)a[r-2]=arguments[r];return this._spliceArrayValue.apply(this,[e,t,0].concat(a))}},{key:"deleteArrayValue",value:function(e,t){return this._spliceArrayValue(e,t,2<arguments.length&&void 0!==arguments[2]?arguments[2]:1)}},{key:"_spliceArrayValue",value:function(e,r,o){for(var t=this,n=arguments.length,a=new Array(3<n?n-3:0),i=3;i<n;i++)a[i-3]=arguments[i];var l=a.length,s=o-l,u=r+o,d={},c=new RegExp("^(".concat(e,".)(\\d+)")),f=[],l=(this.getNames().forEach(function(e){var n,t,a=c.exec(e);a&&(n=parseInt(a[2]),u<=n&&(a=d[n],t={from:e,to:e.replace(c,function(e,t){return"".concat(t).concat(n-s)})},a?a.push(t):d[n]=[t]),0<s&&r<=n&&n<r+o&&f.push(e))}),Object.keys(d).map(function(e){return{index:Number(e),list:d[e]}}).sort(function(e,t){return 0<s?e.index-t.index:t.index-e.index})),l=(l.forEach(function(e){e.list.forEach(function(e){t.fieldsMeta[e.to]=t.fieldsMeta[e.from]})}),0<l.length?l.slice(l.length-(s<0?-s:s),l.length).forEach(function(e){e.list.forEach(function(e){delete t.fieldsMeta[e.from]})}):f.forEach(function(e){delete t.fieldsMeta[e]}),this.getValue(e));l&&l.splice.apply(l,[r,o].concat(a)),this._reRender()}},{key:"spliceArray",value:function(r,o,e){var i,l,t,n=this;-1===r.match(/{index}$/)?(0,M.warning)("key should match /{index}$/"):(t=r.replace("{index}","(\\d+)"),i=new RegExp("^".concat(t)),l={},this.getNames().forEach(function(e){var t,n,a=i.exec(e);a&&(t=parseInt(a[1]),o<t&&(n=l[t],e={from:e,to:"".concat(r.replace("{index}",t-1)).concat(e.replace(a[0],""))},n?n.push(e):l[t]=[e]))}),0<(t=Object.keys(l).map(function(e){return{index:Number(e),list:l[e]}}).sort(function(e,t){return e.index<t.index})).length&&t[0].index===o+1&&(t.forEach(function(e){e.list.forEach(function(e){var t=n.getValue(e.from);n.setValue(e.to,t,!1)})}),t[t.length-1].list.forEach(function(e){n.remove(e.from)}),t=(t=r.replace(".{index}","")).replace("[{index}]",""),(t=this.getValue(t))&&t.length--))}},{key:"_resetError",value:function(e){e=this._get(e);e&&(delete e.errors,e.state="")}},{key:"_reRender",value:function(){this.com&&(!this.options.forceUpdate&&this.com.setState?this.com.setState({}):this.com.forceUpdate&&this.com.forceUpdate())}},{key:"_get",value:function(e){return e in this.fieldsMeta?this.fieldsMeta[e]:null}},{key:"get",value:function(e){return e?this._get(e):this.fieldsMeta}}],[{key:"create",value:function(e){return new this(e,1<arguments.length&&void 0!==arguments[1]?arguments[1]:{})}},{key:"getUseField",value:function(e){var a=this,r=e.useState,o=e.useMemo;return function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},t=r(),n=(0,i.default)(t,2)[1];return o(function(){return a.create({setState:n},e)},[n])}}}]),a}();t.default=a},function(k,e,t){var S=t(161).default;function n(){"use strict"; |
| | | /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */k.exports=function(){return i},k.exports.__esModule=!0,k.exports.default=k.exports;var i={},e=Object.prototype,s=e.hasOwnProperty,t="function"==typeof Symbol?Symbol:{},a=t.iterator||"@@iterator",n=t.asyncIterator||"@@asyncIterator",r=t.toStringTag||"@@toStringTag";function o(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{o({},"")}catch(e){o=function(e,t,n){return e[t]=n}}function l(e,t,n,a){var r,o,i,l,t=t&&t.prototype instanceof c?t:c,t=Object.create(t.prototype),a=new b(a||[]);return t._invoke=(r=e,o=n,i=a,l="suspendedStart",function(e,t){if("executing"===l)throw new Error("Generator is already running");if("completed"===l){if("throw"===e)throw t;return M()}for(i.method=e,i.arg=t;;){var n=i.delegate;if(n){n=function e(t,n){var a=t.iterator[n.method];if(void 0===a){if(n.delegate=null,"throw"===n.method){if(t.iterator.return&&(n.method="return",n.arg=void 0,e(t,n),"throw"===n.method))return d;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return d}a=u(a,t.iterator,n.arg);if("throw"===a.type)return n.method="throw",n.arg=a.arg,n.delegate=null,d;a=a.arg;return a?a.done?(n[t.resultName]=a.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=void 0),n.delegate=null,d):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,d)}(n,i);if(n){if(n===d)continue;return n}}if("next"===i.method)i.sent=i._sent=i.arg;else if("throw"===i.method){if("suspendedStart"===l)throw l="completed",i.arg;i.dispatchException(i.arg)}else"return"===i.method&&i.abrupt("return",i.arg);l="executing";n=u(r,o,i);if("normal"===n.type){if(l=i.done?"completed":"suspendedYield",n.arg===d)continue;return{value:n.arg,done:i.done}}"throw"===n.type&&(l="completed",i.method="throw",i.arg=n.arg)}}),t}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}i.wrap=l;var d={};function c(){}function f(){}function p(){}var t={},h=(o(t,a,function(){return this}),Object.getPrototypeOf),h=h&&h(h(w([]))),m=(h&&h!==e&&s.call(h,a)&&(t=h),p.prototype=c.prototype=Object.create(t));function g(e){["next","throw","return"].forEach(function(t){o(e,t,function(e){return this._invoke(t,e)})})}function y(i,l){var t;this._invoke=function(n,a){function e(){return new l(function(e,t){!function t(e,n,a,r){var o,e=u(i[e],i,n);if("throw"!==e.type)return(n=(o=e.arg).value)&&"object"==S(n)&&s.call(n,"__await")?l.resolve(n.__await).then(function(e){t("next",e,a,r)},function(e){t("throw",e,a,r)}):l.resolve(n).then(function(e){o.value=e,a(o)},function(e){return t("throw",e,a,r)});r(e.arg)}(n,a,e,t)})}return t=t?t.then(e,e):e()}}function v(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function _(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function b(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(v,this),this.reset(!0)}function w(t){if(t){var n,e=t[a];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length))return n=-1,(e=function e(){for(;++n<t.length;)if(s.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e}).next=e}return{next:M}}function M(){return{value:void 0,done:!0}}return o(m,"constructor",f.prototype=p),o(p,"constructor",f),f.displayName=o(p,r,"GeneratorFunction"),i.isGeneratorFunction=function(e){e="function"==typeof e&&e.constructor;return!!e&&(e===f||"GeneratorFunction"===(e.displayName||e.name))},i.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,p):(e.__proto__=p,o(e,r,"GeneratorFunction")),e.prototype=Object.create(m),e},i.awrap=function(e){return{__await:e}},g(y.prototype),o(y.prototype,n,function(){return this}),i.AsyncIterator=y,i.async=function(e,t,n,a,r){void 0===r&&(r=Promise);var o=new y(l(e,t,n,a),r);return i.isGeneratorFunction(t)?o:o.next().then(function(e){return e.done?e.value:o.next()})},g(m),o(m,r,"Generator"),o(m,a,function(){return this}),o(m,"toString",function(){return"[object Generator]"}),i.keys=function(n){var e,a=[];for(e in n)a.push(e);return a.reverse(),function e(){for(;a.length;){var t=a.pop();if(t in n)return e.value=t,e.done=!1,e}return e.done=!0,e}},i.values=w,b.prototype={constructor:b,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!e)for(var t in this)"t"===t.charAt(0)&&s.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(n){if(this.done)throw n;var a=this;function e(e,t){return o.type="throw",o.arg=n,a.next=e,t&&(a.method="next",a.arg=void 0),!!t}for(var t=this.tryEntries.length-1;0<=t;--t){var r=this.tryEntries[t],o=r.completion;if("root"===r.tryLoc)return e("end");if(r.tryLoc<=this.prev){var i=s.call(r,"catchLoc"),l=s.call(r,"finallyLoc");if(i&&l){if(this.prev<r.catchLoc)return e(r.catchLoc,!0);if(this.prev<r.finallyLoc)return e(r.finallyLoc)}else if(i){if(this.prev<r.catchLoc)return e(r.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<r.finallyLoc)return e(r.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;0<=n;--n){var a=this.tryEntries[n];if(a.tryLoc<=this.prev&&s.call(a,"finallyLoc")&&this.prev<a.finallyLoc){var r=a;break}}var o=(r=r&&("break"===e||"continue"===e)&&r.tryLoc<=t&&t<=r.finallyLoc?null:r)?r.completion:{};return o.type=e,o.arg=t,r?(this.method="next",this.next=r.finallyLoc,d):this.complete(o)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),d},finish:function(e){for(var t=this.tryEntries.length-1;0<=t;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),_(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;0<=t;--t){var n,a,r=this.tryEntries[t];if(r.tryLoc===e)return"throw"===(n=r.completion).type&&(a=n.arg,_(r)),a}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:w(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),d}},i}k.exports=n,k.exports.__esModule=!0,k.exports.default=k.exports},function(e,t,n){var a=n(552),r=n(553),o=n(554),i=n(556);e.exports=function(e,t){return a(e)||r(e,t)||o(e,t)||i()},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=function(e){if(Array.isArray(e))return e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var a,r,o=[],i=!0,l=!1;try{for(n=n.call(e);!(i=(a=n.next()).done)&&(o.push(a.value),!t||o.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==n.return||n.return()}finally{if(l)throw r}}return o}},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,n){var a=n(555);e.exports=function(e,t){if(e){if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?a(e,t):void 0}},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n<t;n++)a[n]=e[n];return a},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,n){"use strict";var a=n(86),o=(Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a(n(160))),i=a(n(162)),r=a(n(163)),l=a(n(352)),s=a(n(353)),u=n(97),d=a(n(558)),c=n(559);function f(t,e){var n,a=Object.keys(t);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(t),e&&(n=n.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),a.push.apply(a,n)),a}function p(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?f(Object(n),!0).forEach(function(e){(0,r.default)(t,e,n[e])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):f(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))})}return t}function h(){}function m(n,e){var a,r,o={};return Object.keys(e).forEach(function(t){a=e[t],r=n[t],(a=Array.isArray(a)?a:[a]).forEach(function(e){e.validator=(0,c.getValidationMethod)(e),e.field=t,e.validator&&(o[t]=o[t]||[],o[t].push({rule:e,value:r,source:n,field:t}))})}),o}a=function(){function n(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};(0,l.default)(this,n),this._rules=e,this._options=p(p({},t),{},{messages:p(p({},d.default),t.messages)}),this.complete=[]}var t;return(0,s.default)(n,[{key:"abort",value:function(){for(var e=0;e<this.complete.length;e++)this.complete[e]=h}},{key:"messages",value:function(e){this._options.messages=Object.assign({},this._options.messages,e)}},{key:"validate",value:function(e,i){var t,r=this;if(!i)return this.validatePromise(e);this._rules&&0!==Object.keys(this._rules).length?(e=m(e,this._rules),0===Object.keys(e).length&&i(null),this.complete.push(function(e){var t,n,a,r=[],o={};for(t=0;t<e.length;t++)a=e[t],Array.isArray(a)?r=r.concat(a):r.push(a);if(r.length)for(t=0;t<r.length;t++)o[n=r[t].field]=o[n]||[],o[n].push(r[t]);else o=r=null;i(r,o)}),t=this.complete.length,(0,u.asyncMap)(e,this._options,function(e,t){var n=e.rule;function a(e){"boolean"==typeof e||e||(e=[]),e=(e=(e=Array.isArray(e)?e:[e]).length&&n.message?[].concat(n.message):e).map((0,u.complementError)(n)),t(e)}n.field=e.field;e=n.validator(n,e.value,a,r._options);e&&e.then&&e.then(function(){return a()},a)},function(e){r.complete[t-1](e)})):i&&i(null)}},{key:"validatePromise",value:(t=(0,i.default)(o.default.mark(function e(t){var n,a,r=this;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(this._rules&&0!==Object.keys(this._rules).length){e.next=2;break}return e.abrupt("return",Promise.resolve({errors:null}));case 2:if(n=m(t,this._rules),0===Object.keys(n).length)return e.abrupt("return",Promise.resolve({errors:null}));e.next=5;break;case 5:return e.next=7,(0,u.asyncMapPromise)(n,this._options,function(){var t=(0,i.default)(o.default.mark(function e(t){var n,a;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return(n=t.rule).field=t.field,e.prev=2,e.next=5,n.validator(n,t.value,null,r._options);case 5:a=e.sent,e.next=11;break;case 8:e.prev=8,e.t0=e.catch(2),a=e.t0;case 11:if(a)return(a=Array.isArray(a)?a:[a]).length&&n.message&&(a=[].concat(n.message)),e.abrupt("return",a.map((0,u.complementError)(n)));e.next=17;break;case 17:return e.abrupt("return",[]);case 18:case"end":return e.stop()}},e,null,[[2,8]])}));return function(e){return t.apply(this,arguments)}}());case 7:return a=e.sent,e.abrupt("return",(0,u.processErrorResults)(a));case 9:case"end":return e.stop()}},e,this)})),function(e){return t.apply(this,arguments)})}]),n}();t.default=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;t.default={default:"%s æ ¡éªå¤±è´¥",required:"%s æ¯å¿
å¡«åæ®µ",format:{number:"%s 䏿¯åæ³çæ°å",email:"%s 䏿¯åæ³ç email å°å",url:"%s 䏿¯åæ³ç URL å°å",tel:"%s 䏿¯åæ³ççµè¯å·ç "},number:{length:"%s é¿åº¦å¿
é¡»æ¯ %s",min:"%s åæ®µæ°å¼ä¸å¾å°äº %s",max:"%s åæ®µæ°å¼ä¸å¾å¤§äº %s",minLength:"%s åæ®µå符é¿åº¦ä¸å¾å°äº %s",maxLength:"%s åæ®µå符é¿åº¦ä¸å¾è¶
è¿ %s"},string:{length:"%s é¿åº¦å¿
é¡»æ¯ %s",min:"%s åæ®µæ°å¼ä¸å¾å°äº %s",max:"%s åæ®µæ°å¼ä¸å¾å¤§äº %s",minLength:"%s åæ®µå符é¿åº¦ä¸å¾å°äº %s",maxLength:"%s åæ®µå符é¿åº¦ä¸å¾è¶
è¿ %s"},array:{length:"%s 个æ°å¿
é¡»æ¯ %s",minLength:"%s 个æ°ä¸å¾å°äº %s",maxLength:"%s 个æ°ä¸å¾è¶
è¿ %s"},pattern:"%s åæ®µæ°å¼ %s ä¸å¹é
æ£å %s"}},function(e,t,n){"use strict";var a=n(86),s=(Object.defineProperty(t,"__esModule",{value:!0}),t.validateFunc=r,t.getValidationMethod=function(e){if("function"==typeof e.validator)return e.validator;for(var t=Object.keys(e),n=0;n<t.length;n++){var a=t[n];if("required"!==a&&a in s.default)return r(s.default[a],a)}if("required"in e&&e.required)return r(s.default.required,"required");return null},a(n(560)));function r(i,l){return function(e,t,n,a){var r=[];if("required"!==l){var o=[];if(s.default.required(e,t,o,a),0<o.length)return"required"in e&&e.required?n?n(o):Promise.reject(o):n?n([]):Promise.resolve(null)}return i(e,t,r,a),n?n(r):Promise?Promise.resolve(r):void 0}}},function(e,t,n){"use strict";var a=n(86),r=(Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a(n(561))),o=a(n(562)),i=a(n(563)),l=a(n(564)),a=a(n(565)),n={required:r.default,format:o.default,min:i.default,max:i.default,minLength:l.default,maxLength:l.default,length:l.default,pattern:a.default};t.default=n},function(e,t,n){"use strict";var a=n(110),r=(Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a(n(97)));t.default=function(e,t,n,a){null!=t&&""!==t&&0!==t.length||n.push(r.format(a.messages.required,e.aliasName||e.field))}},function(e,t,n){"use strict";var a=n(110),o=(Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a(n(97))),r={email:/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),number:/\d*/,tel:/^(1\d{10})$|(((400)-(\d{3})-(\d{4}))|^((\d{7,8})|(\d{3,4})-(\d{7,8})|(\d{7,8})-(\d{1,4}))$)$|^([ ]?)$/},i={number:function(e){return!isNaN(e)&&("number"==typeof e||"string"==typeof e&&!!e.match(r.number))},email:function(e){return"string"==typeof e&&!!e.match(r.email)&&e.length<255},url:function(e){return"string"==typeof e&&!!e.match(r.url)},tel:function(e){return"string"==typeof e&&!!e.match(r.tel)}};t.default=function(e,t,n,a){var r=e.format;-1<["email","number","url","tel"].indexOf(r)&&!i[r](t)&&n.push(o.format(a.messages.format[r],e.aliasName||e.field,e.format))}},function(e,t,n){"use strict";var a=n(110),s=(Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a(n(97)));t.default=function(e,t,n,a){var r,o,i=null,l="string"==typeof t;if("number"==typeof t?i="number":l&&(i="string"),!i)return!1;void 0===e.min&&void 0===e.max||(t=t,r=Number(e.max),o=Number(e.min),(t=l?Number(t):t)<o?n.push(s.format(a.messages[i].min,e.aliasName||e.field,e.min)):r<t&&n.push(s.format(a.messages[i].max,e.aliasName||e.field,e.max)))}},function(e,t,n){"use strict";var a=n(110),u=(Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a(n(97)));t.default=function(e,t,n,a){var r=null,o="number"==typeof t,i="string"==typeof t,l=Array.isArray(t);if(o?r="number":i?r="string":l&&(r="array"),!r)return!1;var i=t,l=Number(e.length),t=Number(e.maxLength),s=Number(e.minLength);(s||t||l)&&(i=(i=o?"".concat(i):i).length,l&&i!==e.length?n.push(u.format(a.messages[r].length,e.aliasName||e.field,e.length)):i<s?n.push(u.format(a.messages[r].minLength,e.aliasName||e.field,e.minLength)):t<i&&n.push(u.format(a.messages[r].maxLength,e.aliasName||e.field,e.maxLength)))}},function(e,t,n){"use strict";var a=n(110),r=(Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a(n(97)));t.default=function(e,t,n,a){e.pattern&&(e.pattern instanceof RegExp?e.pattern.test(t)||n.push(r.format(a.messages.pattern,e.aliasName||e.field,t,e.pattern)):"string"!=typeof e.pattern||new RegExp(e.pattern).test(t)||n.push(r.format(a.messages.pattern,e.aliasName||e.field,t,e.pattern)))}},function(e,n,r){"use strict";!function(e){var t=r(86),i=(Object.defineProperty(n,"__esModule",{value:!0}),n.getIn=function(e,t){if(!e)return e;var n="string"==typeof t?t.replace(/\[/,".").replace(/\]/,"").split("."):"",a=n.length;if(!a)return;for(var r=e,o=0;o<a&&r;++o)r=r[n[o]];return r},n.setIn=function(e,t,n){return a(e,n,"string"==typeof t?t.replace(/\[/,".").replace(/\]/,"").split("."):"",0)},n.deleteIn=function(e,t){if(e){var n="string"==typeof t?t.replace(/\[/,".").replace(/\]/,"").split("."):"",a=n.length;if(a)for(var r=e,o=0;o<a&&r;++o)o===a-1?delete r[n[o]]:r=r[n[o]];return e}},n.getErrorStrs=function(e,t){if(e)return e.map(function(e){e=void 0!==e.message?e.message:e;return"function"==typeof t?t(e):e});return e},n.getParams=function(e,t){var e="string"==typeof e?[e]:e,n=t;void 0===t&&"function"==typeof e&&(n=e,e=void 0);return{names:e,callback:n}},n.getValueFromEvent=function(e){if(!e||!e.target)return e;e=e.target;{if("checkbox"===e.type)return e.checked;if("radio"===e.type&&!e.value)return e.checked}return e.value},n.mapValidateRules=function(e,i){var l={};return e.forEach(function(e){var t=l,n=i,a=(0,s.default)({},e);a.trigger||(a.trigger=[n]),"string"==typeof a.trigger&&(a.trigger=[a.trigger]);for(var r=0;r<a.trigger.length;r++){var o=a.trigger[r];o in t?t[o].push(a):t[o]=[a]}delete a.trigger}),l},n.warning=void 0,t(r(163))),s=t(r(73));var a=function e(t,n,a,r){if(r>=a.length)return n;var o=a[r],n=e(t&&t[o],n,a,r+1);return t?Array.isArray(t)?((a=[].concat(t))[o]=n,a):(0,s.default)({},t,(0,i.default)({},o,n)):((r=isNaN(o)?{}:[])[o]=n,r)};t=function(){};void 0!==e&&e.env,n.warning=t}.call(this,r(354))},function(e,t,n){"use strict";t.__esModule=!0,t.cloneAndAddKey=function(e){{var t;if(e&&(0,a.isValidElement)(e))return t=e.key||"error",(0,a.cloneElement)(e,{key:t})}return e},t.scrollToFirstError=function(e){var t=e.errorsGroup,n=e.options,a=e.instance;if(t&&n.scrollToFirstError){var r,o=void 0,i=void 0;for(r in t)if(t.hasOwnProperty(r)){var l=u.default.findDOMNode(a[r]);if(!l)return;var s=l.offsetTop;(void 0===i||s<i)&&(i=s,o=l)}o&&("number"==typeof n.scrollToFirstError&&window&&"function"==typeof window.scrollTo?(e=document&&document.body&&document.body.offsetLeft?document.body.offsetLeft:0,window.scrollTo(e,i+n.scrollToFirstError)):o.scrollIntoViewIfNeeded&&o.scrollIntoViewIfNeeded(!0))}};var a=n(0),t=n(23),u=(n=t)&&n.__esModule?n:{default:n}},function(e,t,n){"use strict";t.__esModule=!0;var a=d(n(4)),r=d(n(6)),o=d(n(7)),v=d(n(2)),_=d(n(38)),i=n(0),b=d(i),l=d(n(3)),w=d(n(13)),s=d(n(8)),u=n(11),M=n(356),k=d(M);function d(e){return e&&e.__esModule?e:{default:e}}function S(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};return(0,v.default)({},(0,k.default)((0,v.default)({display:"flex"},arguments[1])),e)}var c,E=u.obj.pickOthers,i=(c=i.Component,(0,o.default)(x,c),x.prototype.render=function(){var i,l,s,u,e=this.props,t=e.prefix,n=e.direction,a=e.justify,r=e.align,o=e.wrap,d=e.flex,c=e.spacing,f=e.padding,p=e.margin,h=e.style,m=e.className,g=e.children,y=e.device,e=e.component,a={direction:n,justify:a,align:r,wrap:o,flex:d,spacing:c,padding:f,margin:p},r=e,d=E(Object.keys(x.propTypes),this.props),f=S(h,a),g=(p=g,i=(e={spacing:c,direction:n,wrap:o,device:y}).spacing,l=e.direction,s=e.wrap,e.device,u=b.default.Children.toArray(p),p?u.map(function(e,t){var n,a,r,o={},o=(0,M.getChildMargin)(i);return s||(n=[0===t,t===u.length-1],a="row"===l?["marginLeft","marginRight"]:["marginTop","marginBottom"],["marginTop","marginRight","marginBottom","marginLeft"].forEach(function(e){e in o&&-1===a.indexOf(e)&&(o[e]=0),a.forEach(function(e,t){e in o&&n[t]&&(o[e]=0)})})),b.default.isValidElement(e)?(t=e.props.margin,t=(0,M.getMargin)(t),r={},-1<["function","object"].indexOf((0,_.default)(e.type))&&"responsive_grid"===e.type._typeMark&&(r=(0,k.default)((0,v.default)({display:"grid"},e.props))),b.default.cloneElement(e,{style:(0,v.default)({},o,t,r,e.props.style||{})})):e}):null),y=(0,w.default)(((n={})[t+"box"]=!0,n),m);return o&&c?(e=function(e,t){e=S(e,t);return(0,M.filterOuterStyle)(e)}(h,a),p=function(e,t){e=S(e,t);return(0,M.filterHelperStyle)((0,v.default)({},e,(0,M.getSpacingHelperMargin)(t.spacing)))}(h,a),n=function(e,t){e=S(e,t);return(0,M.filterInnerStyle)(e)}(h,a),b.default.createElement(r,(0,v.default)({style:e,className:y},d),b.default.createElement("div",{style:p},b.default.createElement("div",{style:n,className:t+"box"},g)))):b.default.createElement(r,(0,v.default)({style:f,className:y},d),g)},u=n=x,n.propTypes={prefix:l.default.string,style:l.default.object,className:l.default.any,flex:l.default.oneOfType([l.default.arrayOf(l.default.oneOfType([l.default.number,l.default.string])),l.default.number]),direction:l.default.oneOf(["row","column","row-reverse"]),wrap:l.default.bool,spacing:l.default.oneOfType([l.default.arrayOf(l.default.number),l.default.number]),margin:l.default.oneOfType([l.default.arrayOf(l.default.number),l.default.number]),padding:l.default.oneOfType([l.default.arrayOf(l.default.number),l.default.number]),justify:l.default.oneOf(["flex-start","center","flex-end","space-between","space-around"]),align:l.default.oneOf(["flex-start","center","flex-end","baseline","stretch"]),device:l.default.oneOf(["phone","tablet","desktop"]),component:l.default.string},n.defaultProps={prefix:"next-",direction:"column",wrap:!1,component:"div"},u);function x(){return(0,a.default)(this,x),(0,r.default)(this,c.apply(this,arguments))}i.displayName="Box",t.default=s.default.config(i),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.filterUndefinedValue=function(n){if(!r(n))return n;var a={};return Object.keys(n).forEach(function(e){var t=n[e];void 0!==t&&(a[e]=t)}),a},t.stripObject=function(t,n){var a={};return Object.keys(t).forEach(function(e){e in n||(a[e]=t[e])}),a};var r=n(11).obj.isPlainObject},function(e,t,n){"use strict";t.__esModule=!0;var a=d(n(4)),r=d(n(6)),o=d(n(7)),i=n(0),l=d(i),s=d(n(3)),u=d(n(8));function d(e){return e&&e.__esModule?e:{default:e}}var c,f=n(11).obj.pickOthers,o=(c=i.Component,(0,o.default)(p,c),p.prototype.render=function(){var e=this.props,t=e.component,e=e.children,n=f(Object.keys(p.propTypes),this.props);return l.default.createElement(t,n,e)},i=n=p,n._typeMark="responsive_grid_cell",n.propTypes={device:s.default.oneOf(["phone","tablet","desktop"]),colSpan:s.default.oneOfType([s.default.number,s.default.object]),rowSpan:s.default.number,component:s.default.elementType},n.defaultProps={component:"div",device:"desktop"},i);function p(){return(0,a.default)(this,p),(0,r.default)(this,c.apply(this,arguments))}o.displayName="Cell",t.default=u.default.config(o),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var h=d(n(38)),m=d(n(2)),a=d(n(4)),r=d(n(6)),o=d(n(7)),g=d(n(0)),i=d(n(3)),p=d(n(13)),l=d(n(41)),s=d(n(355)),y=n(11),u=d(n(357)),v=n(574);function d(e){return e&&e.__esModule?e:{default:e}}var c,_=l.default.Row,b=l.default.Col,w=s.default.Cell,f=y.obj.isNil,s=(c=g.default.Component,(0,o.default)(M,c),M.prototype.getNames=function(e){var t=this.props.name,e=g.default.Children.toArray(e).filter(function(e){return e.props&&("name"in e.props||"data-meta"in e.props)}).map(function(e){return e.props.name||e.props.id});return e.length?e:t?[t]:[]},M.prototype.getHelper=function(e){var t=this.props.help,n=this.context._formField;return g.default.createElement(u.default,{name:void 0===t?this.getNames(e):void 0,field:n},t)},M.prototype.getState=function(e){var t=this.props.validateState;return t||(this.context._formField?(t=this.context._formField.getState,(e=this.getNames(e)).length?t(e[0]):""):void 0)},M.prototype.getSize=function(){return this.props.size||this.context._formSize},M.prototype.getDisabled=function(){return"disabled"in this.props?this.props.disabled:this.context._formDisabled},M.prototype.getIsPreview=function(){return"isPreview"in this.props?this.props.isPreview:this.context._formPreview},M.prototype.getFullWidth=function(){return f(this.props.fullWidth)?!!this.context._formFullWidth:this.props.fullWidth},M.prototype.getLabelForErrorMessage=function(){var e=this.props,t=e.errorMessageName,n=e.label,e=e.useLabelForErrorMessage;if(t)return t;if(!n||"string"!=typeof n)return null;t=n.replace(":","").replace("ï¼","");return(e||this.context._formLabelForErrorMessage)&&t?t:null},M.prototype.getItemLabel=function(e){var t=this.props,n=t.id,a=t.required,r=t.asterisk,a=void 0===r?a:r,r=t.label,o=t.labelCol,i=t.wrapperCol,l=t.prefix,s=t.responsive,u=t.labelWidth,d=t.labelTextAlign,t=t.colon,c=this.getLabelAlign(this.props.labelAlign,this.props.device);if(!r)return null;n=g.default.createElement("label",{htmlFor:n||this.getNames(e)[0],required:a,key:"label"},r),a=(0,p.default)(((e={})[l+"form-item-label"]=!0,e["has-colon"]=t,e[l+"left"]="left"===d,e));return s&&u&&"top"!==c?g.default.createElement("div",{className:a,style:{width:u}},n):(i||o)&&"top"!==c?g.default.createElement(b,(0,m.default)({},o,{className:a}),n):g.default.createElement("div",{className:a},n)},M.prototype.getItemWrapper=function(e){var a=this,t=this.props,n=t.hasFeedback,r=t.labelCol,o=t.wrapperCol,i=t.extra,l=t.prefix,s=t.renderPreview,u=t.name,t=this.getLabelAlign(this.props.labelAlign,this.props.device),d=this.getState(e),c=this.getIsPreview(),f={size:this.getSize()},p=(c&&(f.isPreview=!0),"renderPreview"in this.props&&"function"==typeof s&&(f.renderPreview=s),d&&("error"===d||n)&&(f.state=d),"inset"===t&&(f.label=this.getItemLabel(e)),this.getDisabled()&&(f.disabled=!0),this.getLabelForErrorMessage()),c=g.default.Children.map(e,function(e,t){var n;return e&&-1<["function","object"].indexOf((0,h.default)(e.type))&&"form_item"!==e.type._typeMark&&"form_error"!==e.type._typeMark?(n=f,n=!a.context._formField||"data-meta"in e.props||!("name"in e.props||u&&0===t)?(0,m.default)({},e.props,n):(t="name"in e.props&&e.props.name?e.props.name:u,a.context._formField.init(t,(0,m.default)({},(0,v.getFieldInitCfg)(a.props,e.type.displayName,p),{props:(0,m.default)({},e.props,{ref:e.ref})}),f)),g.default.cloneElement(e,n)):e}),s=this.getHelper(e);return(o||r)&&"top"!==t?g.default.createElement(b,(0,m.default)({},o,{className:l+"form-item-control",key:"item"}),c," ",s," ",i):g.default.createElement("div",{className:l+"form-item-control"},c," ",s," ",i)},M.prototype.getLabelAlign=function(e,t){return"phone"===t?"top":e},M.prototype.render=function(){var e,t=this.props,n=t.className,a=t.style,r=t.prefix,o=t.wrapperCol,i=t.labelCol,l=t.responsive,t=t.children,s=this.getLabelAlign(this.props.labelAlign,this.props.device),u=t,t=("function"==typeof t&&this.context._formField&&(u=t(this.context._formField.getValues())),this.getState(u)),d=this.getSize(),c=this.getFullWidth(),f=this.getIsPreview(),t=(0,p.default)(((e={})[r+"form-item"]=!0,e[""+r+s]=s,e["has-"+t]=!!t,e[""+r+d]=!!d,e[r+"form-item-fullwidth"]=c,e[""+n]=!!n,e[r+"form-preview"]=f,e)),d=l?w:(o||i)&&"top"!==s?_:"div",c="inset"===s?null:this.getItemLabel(u);return g.default.createElement(d,(0,m.default)({},y.obj.pickOthers(M.propTypes,this.props),{className:t,style:a}),c,this.getItemWrapper(u))},l=n=M,n.propTypes={prefix:i.default.string,rtl:i.default.bool,label:i.default.node,labelCol:i.default.object,wrapperCol:i.default.object,help:i.default.node,name:i.default.string,extra:i.default.node,validateState:i.default.oneOf(["error","success","loading","warning"]),hasFeedback:i.default.bool,style:i.default.object,id:i.default.string,children:i.default.oneOfType([i.default.node,i.default.func]),size:i.default.oneOf(["large","small","medium"]),fullWidth:i.default.bool,labelAlign:i.default.oneOf(["top","left","inset"]),labelTextAlign:i.default.oneOf(["left","right"]),className:i.default.string,required:i.default.bool,asterisk:i.default.bool,requiredMessage:i.default.string,requiredTrigger:i.default.oneOfType([i.default.string,i.default.array]),min:i.default.number,max:i.default.number,minmaxMessage:i.default.string,minmaxTrigger:i.default.oneOfType([i.default.string,i.default.array]),minLength:i.default.number,maxLength:i.default.number,minmaxLengthMessage:i.default.string,minmaxLengthTrigger:i.default.oneOfType([i.default.string,i.default.array]),length:i.default.number,lengthMessage:i.default.string,lengthTrigger:i.default.oneOfType([i.default.string,i.default.array]),pattern:i.default.any,patternMessage:i.default.string,patternTrigger:i.default.oneOfType([i.default.string,i.default.array]),format:i.default.oneOf(["number","email","url","tel"]),formatMessage:i.default.string,formatTrigger:i.default.oneOfType([i.default.string,i.default.array]),validator:i.default.func,validatorTrigger:i.default.oneOfType([i.default.string,i.default.array]),autoValidate:i.default.bool,device:i.default.oneOf(["phone","tablet","desktop"]),responsive:i.default.bool,colSpan:i.default.number,labelWidth:i.default.oneOfType([i.default.string,i.default.number]),isPreview:i.default.bool,renderPreview:i.default.func,errorMessageName:i.default.string,useLabelForErrorMessage:i.default.bool,colon:i.default.bool,disabled:i.default.bool,valueName:i.default.string},n.defaultProps={prefix:"next-",hasFeedback:!1,labelWidth:100},n.contextTypes={_formField:i.default.object,_formSize:i.default.oneOf(["large","small","medium"]),_formDisabled:i.default.bool,_formPreview:i.default.bool,_formFullWidth:i.default.bool,_formLabelForErrorMessage:i.default.bool},n._typeMark="form_item",l);function M(){return(0,a.default)(this,M),(0,r.default)(this,c.apply(this,arguments))}s.displayName="Item",t.default=s,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var g=l(n(2)),y=l(n(12)),a=l(n(4)),r=l(n(6)),o=l(n(7)),v=n(0),_=l(v),i=l(n(3)),b=l(n(13));function l(e){return e&&e.__esModule?e:{default:e}}s=v.Component,(0,o.default)(u,s),u.prototype.render=function(){var e,t,n=this.props,a=n.prefix,r=(n.pure,n.wrap),o=n.fixed,i=n.gutter,l=n.fixedWidth,s=n.align,u=n.justify,d=n.hidden,c=n.className,f=n.component,p=n.children,h=n.rtl,n=(0,y.default)(n,["prefix","pure","wrap","fixed","gutter","fixedWidth","align","justify","hidden","className","component","children","rtl"]),m=void 0,r=(!0===d?((e={})[a+"row-hidden"]=!0,m=e):"string"==typeof d?((e={})[a+"row-"+d+"-hidden"]=!!d,m=e):Array.isArray(d)&&(m=d.reduce(function(e,t){return e[a+"row-"+t+"-hidden"]=!!t,e},{})),(0,b.default)((0,g.default)(((e={})[a+"row"]=!0,e[a+"row-wrap"]=r,e[a+"row-fixed"]=o,e[a+"row-fixed-"+l]=!!l,e[a+"row-justify-"+u]=!!u,e[a+"row-align-"+s]=!!s,e),m,((d={})[c]=!!c,d)))),o=p,l=parseInt(i,10);return 0!==l&&(n.style=(0,g.default)({marginLeft:"-"+(t=l/2+"px"),marginRight:"-"+t},n.style||{}),o=v.Children.map(p,function(e){return e&&e.type&&"function"==typeof e.type&&e.type.isNextCol?(0,v.cloneElement)(e,{style:(0,g.default)({paddingLeft:t,paddingRight:t},e.style||{})}):e})),_.default.createElement(f,(0,g.default)({dir:h?"rtl":"ltr",role:"row",className:r},n),o)},o=n=u,n.propTypes={prefix:i.default.string,pure:i.default.bool,rtl:i.default.bool,className:i.default.string,style:i.default.object,children:i.default.node,gutter:i.default.oneOfType([i.default.string,i.default.number]),wrap:i.default.bool,fixed:i.default.bool,fixedWidth:i.default.oneOf(["xxs","xs","s","m","l","xl"]),align:i.default.oneOf(["top","center","bottom","baseline","stretch"]),justify:i.default.oneOf(["start","center","end","space-between","space-around"]),hidden:i.default.oneOfType([i.default.bool,i.default.string,i.default.array]),component:i.default.oneOfType([i.default.string,i.default.func])},n.defaultProps={prefix:"next-",pure:!1,fixed:!1,gutter:0,wrap:!1,component:"div"};var s,i=o;function u(){return(0,a.default)(this,u),(0,r.default)(this,s.apply(this,arguments))}i.displayName="Row",t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var g=s(n(2)),y=s(n(38)),v=s(n(12)),a=s(n(4)),r=s(n(6)),o=s(n(7)),i=n(0),_=s(i),l=s(n(3)),b=s(n(13));function s(e){return e&&e.__esModule?e:{default:e}}var u,w=["xxs","xs","s","m","l","xl"],o=(u=i.Component,(0,o.default)(d,u),d.prototype.render=function(){var e,a=this,t=this.props,r=t.prefix,n=(t.pure,t.span),o=t.offset,i=t.fixedSpan,l=t.fixedOffset,s=t.hidden,u=t.align,d=(t.xxs,t.xs,t.s,t.m,t.l,t.xl,t.component),c=t.className,f=t.children,p=t.rtl,t=(0,v.default)(t,["prefix","pure","span","offset","fixedSpan","fixedOffset","hidden","align","xxs","xs","s","m","l","xl","component","className","children","rtl"]),h=w.reduce(function(e,t){var n={};return"object"===(0,y.default)(a.props[t])?n=a.props[t]:n.span=a.props[t],e[r+"col-"+t+"-"+n.span]=!!n.span,e[r+"col-"+t+"-offset-"+n.offset]=!!n.offset,e},{}),m=void 0,n=(!0===s?((e={})[r+"col-hidden"]=!0,m=e):"string"==typeof s?((e={})[r+"col-"+s+"-hidden"]=!!s,m=e):Array.isArray(s)&&(m=s.reduce(function(e,t){return e[r+"col-"+t+"-hidden"]=!!t,e},{})),(0,b.default)((0,g.default)(((e={})[r+"col"]=!0,e[r+"col-"+n]=!!n,e[r+"col-fixed-"+i]=!!i,e[r+"col-offset-"+o]=!!o,e[r+"col-offset-fixed-"+l]=!!l,e[r+"col-"+u]=!!u,e),h,m,((s={})[c]=c,s))));return _.default.createElement(d,(0,g.default)({dir:p?"rtl":"ltr",role:"gridcell",className:n},t),f)},i=n=d,n.isNextCol=!0,n.propTypes={prefix:l.default.string,pure:l.default.bool,rtl:l.default.bool,className:l.default.string,children:l.default.node,span:l.default.oneOfType([l.default.string,l.default.number]),fixedSpan:l.default.oneOfType([l.default.string,l.default.number]),offset:l.default.oneOfType([l.default.string,l.default.number]),fixedOffset:l.default.oneOfType([l.default.string,l.default.number]),align:l.default.oneOf(["top","center","bottom","baseline","stretch"]),hidden:l.default.oneOfType([l.default.bool,l.default.string,l.default.array]),xxs:l.default.oneOfType([l.default.string,l.default.number,l.default.object]),xs:l.default.oneOfType([l.default.string,l.default.number,l.default.object]),s:l.default.oneOfType([l.default.string,l.default.number,l.default.object]),m:l.default.oneOfType([l.default.string,l.default.number,l.default.object]),l:l.default.oneOfType([l.default.string,l.default.number,l.default.object]),xl:l.default.oneOfType([l.default.string,l.default.number,l.default.object]),component:l.default.oneOfType([l.default.string,l.default.func])},n.defaultProps={prefix:"next-",pure:!1,component:"div"},i);function d(){return(0,a.default)(this,d),(0,r.default)(this,u.apply(this,arguments))}o.displayName="Col",t.default=o,e.exports=t.default},function(e,t,n){"use strict";function o(e,t){if(t in e)return e[t]}function i(e,t){var n={};return n[e]=t[e],n.message=o(t,e+"Message"),n.trigger=o(t,e+"Trigger"),n}function a(e,t){var n=[],a=(e.required&&n.push(i("required",e)),Number(e.maxLength)),r=Number(e.minLength),r=((r||a)&&n.push({minLength:r,maxLength:a,message:o(e,"minmaxLengthMessage")||o(e,"minLengthMessage")||o(e,"maxLengthMessage"),trigger:o(e,"minmaxLengthTrigger")||o(e,"minLengthTrigger")||o(e,"maxLengthTrigger")}),e.length&&n.push(i("length",e)),e.pattern&&n.push(i("pattern",e)),-1<["number","tel","url","email"].indexOf(e.format)&&n.push(i("format",e)),Number(e.max)),a=Number(e.min);return(r||a)&&n.push({min:a,max:r,message:o(e,"minmaxMessage")||o(e,"minMessage")||o(e,"maxMessage"),trigger:o(e,"minmaxTrigger")||o(e,"minTrigger")||o(e,"maxTrigger")}),e.validator&&"function"==typeof e.validator&&n.push({validator:e.validator,trigger:o(e,"validatorTrigger")}),t&&n.forEach(function(e){e.aliasName=t}),n}t.__esModule=!0,t.getRules=a,t.getFieldInitCfg=function(e,t,n){return{valueName:function(e,t){if(e.valueName)return e.valueName;if("string"==typeof t){e=t.replace(/Config\(/g,"").replace(/\)/g,"");if(-1!==["Switch","Checkbox","Radio"].indexOf(e))return"checked"}return"value"}(e,t),trigger:e.trigger||"onChange",autoValidate:e.autoValidate,rules:a(e,n)}}},function(e,t,n){"use strict";t.__esModule=!0;var a=c(n(2)),o=c(n(4)),i=c(n(6)),r=c(n(7)),l=c(n(0)),s=c(n(3)),u=c(n(18)),d=n(11);function c(e){return e&&e.__esModule?e:{default:e}}f=l.default.Component,(0,r.default)(p,f),p.prototype.render=function(){var e=this.props.children;return l.default.createElement(u.default,(0,a.default)({},d.obj.pickOthers(p.propTypes,this.props),{onClick:this.handleClick}),e)},r=n=p,n.propTypes={onClick:s.default.func,validate:s.default.oneOfType([s.default.bool,s.default.array]),field:s.default.object,children:s.default.node},n.defaultProps={onClick:d.func.noop},n.contextTypes={_formField:s.default.object};var f,n=r;function p(){var e,a;(0,o.default)(this,p);for(var t=arguments.length,n=Array(t),r=0;r<t;r++)n[r]=arguments[r];return(e=a=(0,i.default)(this,f.call.apply(f,[this].concat(n)))).handleClick=function(){var e=a.props,t=e.onClick,e=e.validate,n=a.context._formField||a.props.field;n?!0===e?n.validate(function(e){t(n.getValues(),e,n)}):Array.isArray(e)?n.validate(e,function(e){t(n.getValues(),e,n)}):t(n.getValues(),null,n):t()},(0,i.default)(a,e)}n.displayName="Submit",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var b=s(n(2)),w=s(n(38)),M=s(n(12)),o=s(n(4)),i=s(n(6)),a=s(n(7)),k=n(0),S=s(k),r=s(n(3)),E=s(n(13)),l=s(n(8)),x=n(11);function s(e){return e&&e.__esModule?e:{default:e}}function C(e){return{large:"small",medium:"xs",small:"xs"}[e]}u=k.Component,(0,a.default)(L,u),L.prototype.render=function(){var e=this.props,a=e.prefix,t=e.className,n=e.type,r=e.size,o=e.htmlType,i=e.loading,l=e.text,s=e.warning,u=e.ghost,d=e.component,c=e.iconSize,f=e.icons,p=e.disabled,h=e.onClick,m=e.children,g=e.rtl,e=(0,M.default)(e,["prefix","className","type","size","htmlType","loading","text","warning","ghost","component","iconSize","icons","disabled","onClick","children","rtl"]),y=0<=["light","dark"].indexOf(u)?u:"dark",n=((_={})[a+"btn"]=!0,_[""+a+r]=r,_[a+"btn-"+n]=n&&!u,_[a+"btn-text"]=l,_[a+"btn-warning"]=s,_[a+"btn-loading"]=i,_[a+"btn-ghost"]=u,_[a+"btn-"+y]=u,_[t]=t,_),l=null,v=(f&&f.loading&&(0,k.isValidElement)(f.loading)&&(i&&(delete n[a+"btn-loading"],n[a+"btn-custom-loading"]=!0),s=c||C(r),l=S.default.cloneElement(f.loading,{className:(0,E.default)(((y={})[a+"btn-custom-loading-icon"]=!0,y.show=i,y)),size:s})),k.Children.count(m)),u=k.Children.map(m,function(e,t){var n;return e&&-1<["function","object"].indexOf((0,w.default)(e.type))&&"icon"===e.type._typeMark?(t=(0,E.default)(((n={})[a+"btn-icon"]=!c,n[a+"icon-first"]=1<v&&0===t,n[a+"icon-last"]=1<v&&t===v-1,n[a+"icon-alone"]=1===v,n[e.props.className]=!!e.props.className,n)),"size"in e.props&&x.log.warning('The size of Icon will not take effect, when Icon is the [direct child element] of Button(<Button><Icon size="'+e.props.size+'" /></Button>), use <Button iconSize="'+e.props.size+'"> or <Button><div><Icon size="'+e.props.size+'" /></div></Button> instead of.'),S.default.cloneElement(e,{className:t,size:c||C(r)})):(0,k.isValidElement)(e)?e:S.default.createElement("span",{className:a+"btn-helper"},e)}),t=d,_=(0,b.default)({},x.obj.pickOthers(Object.keys(L.propTypes),e),{type:o,disabled:p,onClick:h,className:(0,E.default)(n)});return"button"!==t&&(delete _.type,_.disabled&&(delete _.onClick,_.href&&delete _.href)),S.default.createElement(t,(0,b.default)({},_,{dir:g?"rtl":void 0,onMouseUp:this.onMouseUp,ref:this.buttonRefHandler}),l,u)},a=n=L,n.propTypes=(0,b.default)({},l.default.propTypes,{prefix:r.default.string,rtl:r.default.bool,type:r.default.oneOf(["primary","secondary","normal"]),size:r.default.oneOf(["small","medium","large"]),icons:r.default.shape({loading:r.default.node}),iconSize:r.default.oneOfType([r.default.oneOf(["xxs","xs","small","medium","large","xl","xxl","xxxl","inherit"]),r.default.number]),htmlType:r.default.oneOf(["submit","reset","button"]),component:r.default.oneOf(["button","a","div","span"]),loading:r.default.bool,ghost:r.default.oneOf([!0,!1,"light","dark"]),text:r.default.bool,warning:r.default.bool,disabled:r.default.bool,onClick:r.default.func,className:r.default.string,onMouseUp:r.default.func,children:r.default.node}),n.defaultProps={prefix:"next-",type:"normal",size:"medium",icons:{},htmlType:"button",component:"button",loading:!1,ghost:!1,text:!1,warning:!1,disabled:!1,onClick:function(){}};var u,l=a;function L(){var e,t;(0,o.default)(this,L);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,u.call.apply(u,[this].concat(a)))).onMouseUp=function(e){t.button.blur(),t.props.onMouseUp&&t.props.onMouseUp(e)},t.buttonRefHandler=function(e){t.button=e},(0,i.default)(t,e)}l.displayName="Button",t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a,l=p(n(2)),s=p(n(12)),r=p(n(4)),o=p(n(6)),i=p(n(7)),u=n(0),d=p(u),c=p(n(3)),f=p(n(13)),n=p(n(8));function p(e){return e&&e.__esModule?e:{default:e}}h=u.Component,(0,i.default)(m,h),m.prototype.render=function(){var e,t=this.props,n=t.prefix,a=t.className,r=t.size,o=t.children,i=t.rtl,t=(0,s.default)(t,["prefix","className","size","children","rtl"]),n=(0,f.default)(((e={})[n+"btn-group"]=!0,e[a]=a,e)),a=u.Children.map(o,function(e){if(e)return d.default.cloneElement(e,{size:r})});return i&&(t.dir="rtl"),d.default.createElement("div",(0,l.default)({},t,{className:n}),a)},a=i=m,i.propTypes=(0,l.default)({},n.default.propTypes,{rtl:c.default.bool,prefix:c.default.string,size:c.default.string,className:c.default.string,children:c.default.node}),i.defaultProps={prefix:"next-",size:"medium"};var h,c=a;function m(){return(0,r.default)(this,m),(0,o.default)(this,h.apply(this,arguments))}c.displayName="ButtonGroup",t.default=n.default.config(c),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=c(n(2)),o=c(n(4)),i=c(n(6)),r=c(n(7)),l=c(n(0)),s=c(n(3)),u=c(n(18)),d=n(11);function c(e){return e&&e.__esModule?e:{default:e}}f=l.default.Component,(0,r.default)(p,f),p.prototype.render=function(){var e=this.props.children;return l.default.createElement(u.default,(0,a.default)({},d.obj.pickOthers(p.propTypes,this.props),{onClick:this.handleClick}),e)},r=n=p,n.propTypes={names:s.default.array,onClick:s.default.func,toDefault:s.default.bool,field:s.default.object,children:s.default.node},n.defaultProps={onClick:d.func.noop},n.contextTypes={_formField:s.default.object};var f,n=r;function p(){var e,r;(0,o.default)(this,p);for(var t=arguments.length,n=Array(t),a=0;a<t;a++)n[a]=arguments[a];return(e=r=(0,i.default)(this,f.call.apply(f,[this].concat(n)))).handleClick=function(){var e=r.props,t=e.names,n=e.toDefault,e=e.onClick,a=r.context._formField||r.props.field;a&&(n?a.resetToDefault(t):a.reset(t)),e()},(0,i.default)(r,e)}n.displayName="Reset",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var r=n(11),i=[];t.default={lock:function(e,t){var n=e.getAttribute("style"),a=(0,r.guid)();return i.push({uuid:a,container:e,originStyle:n}),r.dom.setStyle(e,t),a},unlock:function(t,n){var e,a,r=i.filter(function(e){return e.container===t}),o=r.find(function(e){return e.uuid===n});o&&(-1!==(e=r.indexOf(o))&&e<r.length-1?(a=o.originStyle,r[e+1].originStyle=a,i.splice(i.indexOf(o),1)):(t.setAttribute("style",o.originStyle||""),i.pop()))}},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.withContext=t.confirm=t.help=t.warning=t.notice=t.error=t.success=t.alert=t.show=t.ModalInner=void 0;var y=p(n(12)),o=p(n(4)),i=p(n(6)),a=p(n(7)),v=p(n(2)),r=n(0),_=p(r),l=p(n(23)),s=p(n(3)),b=p(n(13)),u=p(n(8)),d=p(n(25)),c=p(n(44)),f=p(n(358)),n=p(n(359));function p(e){return e&&e.__esModule?e:{default:e}}function w(){}var h,M=u.default.config(f.default),k=u.default.config(n.default),m={alert:"warning",confirm:"help",success:"success",error:"error",warning:"warning",notice:"notice",help:"help"},S=t.ModalInner=function(e){var t=e.type,n=e.messageProps,n=void 0===n?{}:n,a=e.title,r=e.rtl,o=e.prefix,e=e.content;return _.default.createElement(d.default,(0,v.default)({size:"large",shape:"addon",type:m[t]},n,{title:a,rtl:r,className:(0,b.default)((void 0===o?"next-":o)+"dialog-message",n.className)}),e)},r=(h=r.Component,(0,a.default)(g,h),g.prototype.wrapper=function(t,n){var a=this;return function(){var e=t.apply(void 0,arguments);if(e&&e.then)a.loading(!0),e.then(function(e){if(a.loading(!1),!1!==e)return n()}).catch(function(e){throw a.loading(!1),e});else if(!1!==e)return n()}},g.prototype.render=function(){var e=this.props,t=e.prefix,n=e.type,a=e.title,r=e.content,o=e.messageProps,i=e.footerActions,l=e.onOk,s=e.onCancel,u=e.onClose,d=e.okProps,c=e.needWrapper,f=e.rtl,p=e.className,h=e.v2,m=e.width,m=void 0===m?420:m,e=(0,y.default)(e,["prefix","type","title","content","messageProps","footerActions","onOk","onCancel","onClose","okProps","needWrapper","rtl","className","v2","width"]),g=c&&n?null:a,c=c&&n?_.default.createElement(S,{type:n,messageProps:o,title:a,rtl:f,prefix:t,content:r}):r,o=i||("confirm"===n?["ok","cancel"]:-1<["alert","success","error","notice","warning","help"].indexOf(n)?["ok"]:void 0),a=this.wrapper(l,this.close),r=this.wrapper(s,this.close),i=this.wrapper(u,this.close),n=this.state,l=n.visible,s=n.loading,u=(0,v.default)({},d),n=("loading"in d||(u.loading=s),(0,b.default)(t+"dialog-quick",p));return _.default.createElement(h?k:M,(0,v.default)({prefix:t,role:"alertdialog"},e,{visible:l,title:g,rtl:f,footerActions:o,onOk:this.state.loading?w:a,onCancel:r,onClose:i,okProps:u,className:n,width:h?m:void 0}),c)},n=f=g,f.propTypes={prefix:s.default.string,pure:s.default.bool,rtl:s.default.bool,type:s.default.oneOf(["alert","confirm","success","error","notice","warning","help"]),title:s.default.node,content:s.default.node,messageProps:s.default.object,footerActions:s.default.array,onOk:s.default.func,onCancel:s.default.func,onClose:s.default.func,okProps:s.default.object,locale:s.default.object,needWrapper:s.default.bool,className:s.default.string},f.defaultProps={prefix:"next-",pure:!1,messageProps:{},onOk:w,onCancel:w,onClose:w,okProps:{},locale:c.default.Dialog,needWrapper:!0},n);function g(){var e,t;(0,o.default)(this,g);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,h.call.apply(h,[this].concat(a)))).state={visible:!0,loading:!1},t.close=function(){t.setState({visible:!1})},t.loading=function(e){t.setState({loading:e})},(0,i.default)(t,e)}r.displayName="Modal";function E(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},t=document.createElement("div"),n=(document.body.appendChild(t),(n=e.contextConfig)||u.default.getContext()),a=void 0,r=void 0;return l.default.render(_.default.createElement(u.default,n,_.default.createElement(C,(0,v.default)({},e,{afterClose:function(){e.afterClose&&e.afterClose(),l.default.unmountComponentAtNode(t),t.parentNode.removeChild(t)},ref:function(e){r=e}}))),t,function(){a=r}),{hide:function(){var e=a&&a.getInstance();e&&e.close()}}}function x(t){return function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};return e.type=t,E(e)}}var C=u.default.config(r,{componentName:"Dialog"}),L=(t.show=E,x("alert")),T=(t.alert=L,x("success")),D=(t.success=T,x("error")),O=(t.error=D,x("notice")),N=(t.notice=O,x("warning")),P=(t.warning=N,x("help")),j=(t.help=P,x("confirm"));t.confirm=j,t.withContext=function(n){return function(t){return _.default.createElement(u.default.Consumer,null,function(e){return _.default.createElement(n,(0,v.default)({},t,{contextDialog:{show:function(){return E((0,v.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},alert:function(){return L((0,v.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},confirm:function(){return j((0,v.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},success:function(){return T((0,v.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},error:function(){return D((0,v.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},warning:function(){return N((0,v.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},notice:function(){return O((0,v.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))},help:function(){return P((0,v.default)({},0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{contextConfig:e}))}}}))})}}},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var r=f(n(2)),o=f(n(12)),i=f(n(4)),l=f(n(6)),a=f(n(7)),s=f(n(0)),u=f(n(3)),d=f(n(360)),c=f(n(24));function f(e){return e&&e.__esModule?e:{default:e}}function p(e){e.preventDefault()}h=d.default,(0,a.default)(m,h),m.prototype.render=function(){var e=this.props,t=e.showToggle,e=(0,o.default)(e,["showToggle"]),n=this.state,a=n.hint,n=n.htmlType,t=t?s.default.createElement(c.default,{type:a,onClick:this.toggleEye,onMouseDown:p}):null;return s.default.createElement(d.default,(0,r.default)({},e,{extra:t,htmlType:n}))},a=n=m,n.getDerivedStateFromProps=d.default.getDerivedStateFromProps,n.propTypes=(0,r.default)({},d.default.propTypes,{showToggle:u.default.bool}),n.defaultProps=(0,r.default)({},d.default.defaultProps,{showToggle:!0});var h,u=a;function m(){var e,t;(0,i.default)(this,m);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,l.default)(this,h.call.apply(h,[this].concat(a)))).state={hint:"eye-close",htmlType:"password"},t.toggleEye=function(e){e.preventDefault(),t.props.disabled||(e="eye"===t.state.hint,t.setState({hint:e?"eye-close":"eye",htmlType:e||!t.props.showToggle?"password":"text"}))},(0,l.default)(t,e)}t.default=u,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a,r,m=c(n(2)),o=c(n(38)),i=c(n(4)),l=c(n(6)),s=c(n(7)),g=c(n(0)),u=c(n(23)),d=c(n(3)),y=c(n(13)),v=n(11),n=c(n(361));function c(e){return e&&e.__esModule?e:{default:e}}var f,p=!("undefined"==typeof navigator||!navigator||!navigator.userAgent)&&navigator.userAgent.match(/^((?!chrome|android|windows).)*safari/i),_={visibility:"hidden",position:"absolute",zIndex:"-1000",top:"-1000px",overflowY:"hidden",left:0,right:0},d=(f=n.default,(0,s.default)(b,f),b.prototype.componentDidMount=function(){var e=this.props.autoHeight;e&&("object"===(void 0===e?"undefined":(0,o.default)(e))?this.setState(this._getMinMaxHeight(e,this.state.value)):this.setState({height:this._getHeight(this.state.value),overflowY:"hidden"}))},b.prototype.componentDidUpdate=function(e){this.props.autoHeight&&this.props.value!==e.value&&this._resizeTextArea(this.props.value)},b.prototype._getMinMaxHeight=function(e,t){var n=e.minRows,e=e.maxRows,a=u.default.findDOMNode(this.helpRef);if(!a)return{};a.setAttribute("rows",n);n=a.clientHeight,a.setAttribute("rows",e),e=a.clientHeight,a.setAttribute("rows","1"),a=this._getHeight(t);return{minHeight:n,maxHeight:e,height:a,overflowY:a<=e?"hidden":void 0}},b.prototype._getHeight=function(e){var t=u.default.findDOMNode(this.helpRef);return t?(t.value=e,t.scrollHeight):0},b.prototype.ieHack=function(e){var t;return 9===v.env.ieVersion&&this.props.maxLength&&(t=parseInt(this.props.maxLength))<this.getValueLength(e,!0)&&this.props.cutString&&(e=(e=(e=e.replace(/\n/g,"\n\n")).substr(0,t)).replace(/\n\n/g,"\n")),this.props.autoHeight&&this._resizeTextArea(e),e},b.prototype.getValueLength=function(e){var t=this.props,n=t.maxLength,t=t.cutString,e=""+e,a=this.props.getValueLength(e);return"number"!=typeof a&&(a=e.length),a=(v.env.ieVersion||p)&&n<(a=a+e.split("\n").length-1)&&t?n:a},b.prototype.saveTextAreaRef=function(e){this.inputRef=e},b.prototype.saveHelpRef=function(e){this.helpRef=e},b.prototype.render=function(){var e,t=this.props,n=t.rows,a=t.style,r=t.className,o=t.autoHeight,i=t.isPreview,l=t.renderPreview,s=t.prefix,u=t.rtl,d=t.hasBorder,c=t.size,t=t.composition,c=(0,y.default)(this.getClass(),((f={})[""+s+c]="large"===c||!1,f[s+"input-textarea"]=!0,f[s+"noborder"]=!d,f[r]=!!r,f)),d=this.getProps(),f=v.obj.pickAttrsWith(this.props,"data-"),p=v.obj.pickOthers((0,m.default)({},f,b.propTypes),this.props),h=(0,m.default)({},d.style,{height:this.state.height,minHeight:this.state.minHeight,maxHeight:this.state.maxHeight,overflowY:this.state.overflowY}),s=(0,y.default)(((e={})[s+"input-textarea"]=!0,e[s+"form-preview"]=!0,e[r]=!!r,e)),r=o?(0,m.default)({},a,{position:"relative"}):a;if(i)return e=d.value,"renderPreview"in this.props?g.default.createElement("div",(0,m.default)({},p,{className:s}),l(e,this.props)):g.default.createElement("div",(0,m.default)({},p,{className:s}),e.split("\n").map(function(e,t){return g.default.createElement("p",{key:"p-"+t},e)}));a={};return t&&(a.onCompositionStart=this.handleCompositionStart,a.onCompositionEnd=this.handleCompositionEnd),g.default.createElement("span",(0,m.default)({className:c,style:r,dir:u?"rtl":void 0},f),g.default.createElement("textarea",(0,m.default)({},p,d,a,{"data-real":!0,rows:n,style:h,ref:this.saveRef.bind(this),onKeyDown:this.onKeyDown.bind(this)})),o?g.default.createElement("textarea",{"data-fake":!0,ref:this.saveHelpRef.bind(this),style:(0,m.default)({},d.style,_),rows:"1"}):null,this.renderControl())},a=s=b,s.getDerivedStateFromProps=n.default.getDerivedStateFromProps,s.propTypes=(0,m.default)({},n.default.propTypes,{hasBorder:d.default.bool,state:d.default.oneOf(["error","warning"]),autoHeight:d.default.oneOfType([d.default.bool,d.default.object]),rows:d.default.number,isPreview:d.default.bool,renderPreview:d.default.func}),s.defaultProps=(0,m.default)({},n.default.defaultProps,{hasBorder:!0,isPreview:!1,rows:4,autoHeight:!1}),r=function(){var a=this;this._resizeTextArea=function(n){var e;a.nextFrameActionId&&(e=a.nextFrameActionId,window.cancelAnimationFrame?window.cancelAnimationFrame(e):window.clearTimeout(e)),a.nextFrameActionId=(e=function(){var e=a._getHeight(n),t=a.state.maxHeight||1/0;a.setState({height:a._getHeight(n),overflowY:e<=t?"hidden":void 0})},window.requestAnimationFrame?window.requestAnimationFrame(e):window.setTimeout(e,1))}},a);function b(e){(0,i.default)(this,b);var t=(0,l.default)(this,f.call(this,e)),n=(r.call(t),void 0),n="value"in e?e.value:e.defaultValue;return t.state={value:void 0===n?"":n},t}t.default=d,e.exports=t.default},function(e,t,n){"use strict";var a=n(56),r=n(363),o=n(584),i=n(369);function l(e){var e=new o(e),t=r(o.prototype.request,e);return a.extend(t,o.prototype,e),a.extend(t,e),t}var s=l(n(165));s.Axios=o,s.create=function(e){return l(i(s.defaults,e))},s.Cancel=n(370),s.CancelToken=n(598),s.isCancel=n(368),s.all=function(e){return Promise.all(e)},s.spread=n(599),s.isAxiosError=n(600),e.exports=s,e.exports.default=s},function(e,t,n){"use strict";var a=n(56),r=n(364),o=n(585),d=n(586),c=n(369),f=n(596),p=f.validators;function i(e){this.defaults=e,this.interceptors={request:new o,response:new o}}i.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=c(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e,n=t.transitional,a=(void 0!==n&&f.assertOptions(n,{silentJSONParsing:p.transitional(p.boolean,"1.0.0"),forcedJSONParsing:p.transitional(p.boolean,"1.0.0"),clarifyTimeoutError:p.transitional(p.boolean,"1.0.0")},!1),[]),r=!0,o=(this.interceptors.request.forEach(function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(r=r&&e.synchronous,a.unshift(e.fulfilled,e.rejected))}),[]);if(this.interceptors.response.forEach(function(e){o.push(e.fulfilled,e.rejected)}),r){for(var i=t;a.length;){var l=a.shift(),s=a.shift();try{i=l(i)}catch(e){s(e);break}}try{e=d(i)}catch(e){return Promise.reject(e)}for(;o.length;)e=e.then(o.shift(),o.shift())}else{var u=[d,void 0];for(Array.prototype.unshift.apply(u,a),u=u.concat(o),e=Promise.resolve(t);u.length;)e=e.then(u.shift(),u.shift())}return e},i.prototype.getUri=function(e){return e=c(this.defaults,e),r(e.url,e.params,e.paramsSerializer).replace(/^\?/,"")},a.forEach(["delete","get","head","options"],function(n){i.prototype[n]=function(e,t){return this.request(c(t||{},{method:n,url:e,data:(t||{}).data}))}}),a.forEach(["post","put","patch"],function(a){i.prototype[a]=function(e,t,n){return this.request(c(n||{},{method:a,url:e,data:t}))}}),e.exports=i},function(e,t,n){"use strict";var a=n(56);function r(){this.handlers=[]}r.prototype.use=function(e,t,n){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(t){a.forEach(this.handlers,function(e){null!==e&&t(e)})},e.exports=r},function(e,t,n){"use strict";var a=n(56),r=n(587),o=n(368),i=n(165);function l(e){e.cancelToken&&e.cancelToken.throwIfRequested()}e.exports=function(t){return l(t),t.headers=t.headers||{},t.data=r.call(t,t.data,t.headers,t.transformRequest),t.headers=a.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),a.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]}),(t.adapter||i.adapter)(t).then(function(e){return l(t),e.data=r.call(t,e.data,e.headers,t.transformResponse),e},function(e){return o(e)||(l(t),e&&e.response&&(e.response.data=r.call(t,e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(e,t,n){"use strict";var r=n(56),o=n(165);e.exports=function(t,n,e){var a=this||o;return r.forEach(e,function(e){t=e.call(a,t,n)}),t}},function(e,t,n){"use strict";var r=n(56);e.exports=function(n,a){r.forEach(n,function(e,t){t!==a&&t.toUpperCase()===a.toUpperCase()&&(n[a]=e,delete n[t])})}},function(e,t,n){"use strict";var r=n(367);e.exports=function(e,t,n){var a=n.config.validateStatus;n.status&&a&&!a(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";var l=n(56);e.exports=l.isStandardBrowserEnv()?{write:function(e,t,n,a,r,o){var i=[];i.push(e+"="+encodeURIComponent(t)),l.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),l.isString(a)&&i.push("path="+a),l.isString(r)&&i.push("domain="+r),!0===o&&i.push("secure"),document.cookie=i.join("; ")},read:function(e){e=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";var a=n(592),r=n(593);e.exports=function(e,t){return e&&!a(t)?r(e,t):t}},function(e,t,n){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t,n){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t,n){"use strict";var r=n(56),o=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,a={};return e&&r.forEach(e.split("\n"),function(e){n=e.indexOf(":"),t=r.trim(e.substr(0,n)).toLowerCase(),n=r.trim(e.substr(n+1)),!t||a[t]&&0<=o.indexOf(t)||(a[t]="set-cookie"===t?(a[t]||[]).concat([n]):a[t]?a[t]+", "+n:n)}),a}},function(e,t,n){"use strict";var a,r,o,i=n(56);function l(e){return r&&(o.setAttribute("href",e),e=o.href),o.setAttribute("href",e),{href:o.href,protocol:o.protocol?o.protocol.replace(/:$/,""):"",host:o.host,search:o.search?o.search.replace(/^\?/,""):"",hash:o.hash?o.hash.replace(/^#/,""):"",hostname:o.hostname,port:o.port,pathname:"/"===o.pathname.charAt(0)?o.pathname:"/"+o.pathname}}e.exports=i.isStandardBrowserEnv()?(r=/(msie|trident)/i.test(navigator.userAgent),o=document.createElement("a"),a=l(window.location.href),function(e){e=i.isString(e)?l(e):e;return e.protocol===a.protocol&&e.host===a.host}):function(){return!0}},function(e,t,n){"use strict";var l=n(597),a={},s=(["object","boolean","number","function","string","symbol"].forEach(function(t,n){a[t]=function(e){return typeof e===t||"a"+(n<1?"n ":" ")+t}}),{}),o=l.version.split(".");function u(e,t){for(var n=t?t.split("."):o,a=e.split("."),r=0;r<3;r++){if(n[r]>a[r])return!0;if(n[r]<a[r])return!1}return!1}a.transitional=function(a,r,n){var o=r&&u(r);function i(e,t){return"[Axios v"+l.version+"] Transitional option '"+e+"'"+t+(n?". "+n:"")}return function(e,t,n){if(!1===a)throw new Error(i(t," has been removed in "+r));return o&&!s[t]&&(s[t]=!0,console.warn(i(t," has been deprecated since v"+r+" and will be removed in the near future"))),!a||a(e,t,n)}},e.exports={isOlderVersion:u,assertOptions:function(e,t,n){if("object"!=typeof e)throw new TypeError("options must be an object");for(var a=Object.keys(e),r=a.length;0<r--;){var o=a[r],i=t[o];if(i){var l=e[o],i=void 0===l||i(l,o,e);if(!0!==i)throw new TypeError("option "+o+" must be "+i)}else if(!0!==n)throw Error("Unknown option "+o)}},validators:a}},function(e){e.exports=JSON.parse('{"_from":"axios@0.21.4","_id":"axios@0.21.4","_inBundle":false,"_integrity":"sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==","_location":"/axios","_phantomChildren":{},"_requested":{"type":"version","registry":true,"raw":"axios@0.21.4","name":"axios","escapedName":"axios","rawSpec":"0.21.4","saveSpec":null,"fetchSpec":"0.21.4"},"_requiredBy":["/"],"_resolved":"https://registry.npmjs.org/axios/-/axios-0.21.4.tgz","_shasum":"c67b90dc0568e5c1cf2b0b858c43ba28e2eda575","_spec":"axios@0.21.4","_where":"/Users/xiweng.yy/Documents/java/opensource/nacos/console-ui","author":{"name":"Matt Zabriskie"},"browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"bugs":{"url":"https://github.com/axios/axios/issues"},"bundleDependencies":false,"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"dependencies":{"follow-redirects":"^1.14.0"},"deprecated":false,"description":"Promise based HTTP client for the browser and node.js","devDependencies":{"coveralls":"^3.0.0","es6-promise":"^4.2.4","grunt":"^1.3.0","grunt-banner":"^0.6.0","grunt-cli":"^1.2.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","grunt-eslint":"^23.0.0","grunt-karma":"^4.0.0","grunt-mocha-test":"^0.13.3","grunt-ts":"^6.0.0-beta.19","grunt-webpack":"^4.0.2","istanbul-instrumenter-loader":"^1.0.0","jasmine-core":"^2.4.1","karma":"^6.3.2","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^2.1.0","karma-jasmine":"^1.1.1","karma-jasmine-ajax":"^0.1.13","karma-safari-launcher":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-sinon":"^1.0.5","karma-sourcemap-loader":"^0.3.8","karma-webpack":"^4.0.2","load-grunt-tasks":"^3.5.2","minimist":"^1.2.0","mocha":"^8.2.1","sinon":"^4.5.0","terser-webpack-plugin":"^4.2.3","typescript":"^4.0.5","url-search-params":"^0.10.0","webpack":"^4.44.2","webpack-dev-server":"^3.11.0"},"homepage":"https://axios-http.com","jsdelivr":"dist/axios.min.js","keywords":["xhr","http","ajax","promise","node"],"license":"MIT","main":"index.js","name":"axios","repository":{"type":"git","url":"git+https://github.com/axios/axios.git"},"scripts":{"build":"NODE_ENV=production grunt build","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","examples":"node ./examples/server.js","fix":"eslint --fix lib/**/*.js","postversion":"git push && git push --tags","preversion":"npm test","start":"node ./sandbox/server.js","test":"grunt test","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json"},"typings":"./index.d.ts","unpkg":"dist/axios.min.js","version":"0.21.4"}')},function(e,t,n){"use strict";var a=n(370);function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");this.promise=new Promise(function(e){t=e});var t,n=this;e(function(e){n.reason||(n.reason=new a(e),t(n.reason))})}r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var t;return{token:new r(function(e){t=e}),cancel:t}},e.exports=r},function(e,t,n){"use strict";e.exports=function(t){return function(e){return t.apply(null,e)}}},function(e,t,n){"use strict";e.exports=function(e){return"object"==typeof e&&!0===e.isAxiosError}},function(e,t,n){"use strict";function l(e,t){for(var n,a=e;null!==(n=a.next);a=n)if(n.key===t)return a.next=n.next,n.next=e.next,e.next=n}var a=n(166),r=n(606),s=n(608),u=a("%TypeError%"),d=a("%WeakMap%",!0),c=a("%Map%",!0),f=r("WeakMap.prototype.get",!0),p=r("WeakMap.prototype.set",!0),h=r("WeakMap.prototype.has",!0),m=r("Map.prototype.get",!0),g=r("Map.prototype.set",!0),y=r("Map.prototype.has",!0);e.exports=function(){var r,o,i,t={assert:function(e){if(!t.has(e))throw new u("Side channel does not contain "+s(e))},get:function(e){if(d&&e&&("object"==typeof e||"function"==typeof e)){if(r)return f(r,e)}else if(c){if(o)return m(o,e)}else{var t;if(i)return(t=l(t=i,e))&&t.value}},has:function(e){if(d&&e&&("object"==typeof e||"function"==typeof e)){if(r)return h(r,e)}else if(c){if(o)return y(o,e)}else if(i)return!!l(i,e);return!1},set:function(e,t){var n,a;d&&e&&("object"==typeof e||"function"==typeof e)?(r=r||new d,p(r,e,t)):c?(o=o||new c,g(o,e,t)):(t=t,(a=l(n=i=i||{key:{},next:null},e=e))?a.value=t:n.next={key:e,next:n.next,value:t})}};return t}},function(e,t,n){"use strict";var a="undefined"!=typeof Symbol&&Symbol,r=n(603);e.exports=function(){return"function"==typeof a&&("function"==typeof Symbol&&("symbol"==typeof a("foo")&&("symbol"==typeof Symbol("bar")&&r())))}},function(e,t,n){"use strict";e.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"!=typeof Symbol.iterator){var e={},t=Symbol("test"),n=Object(t);if("string"==typeof t)return!1;if("[object Symbol]"!==Object.prototype.toString.call(t))return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;for(t in e[t]=42,e)return!1;if("function"==typeof Object.keys&&0!==Object.keys(e).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(e).length)return!1;n=Object.getOwnPropertySymbols(e);if(1!==n.length||n[0]!==t)return!1;if(!Object.prototype.propertyIsEnumerable.call(e,t))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){n=Object.getOwnPropertyDescriptor(e,t);if(42!==n.value||!0!==n.enumerable)return!1}}return!0}},function(e,t,n){"use strict";var s=Array.prototype.slice,u=Object.prototype.toString;e.exports=function(t){var n=this;if("function"!=typeof n||"[object Function]"!==u.call(n))throw new TypeError("Function.prototype.bind called on incompatible "+n);for(var a,e,r=s.call(arguments,1),o=Math.max(0,n.length-r.length),i=[],l=0;l<o;l++)i.push("$"+l);return a=Function("binder","return function ("+i.join(",")+"){ return binder.apply(this,arguments); }")(function(){var e;return this instanceof a?(e=n.apply(this,r.concat(s.call(arguments))),Object(e)===e?e:this):n.apply(t,r.concat(s.call(arguments)))}),n.prototype&&((e=function(){}).prototype=n.prototype,a.prototype=new e,e.prototype=null),a}},function(e,t,n){"use strict";n=n(167);e.exports=n.call(Function.call,Object.prototype.hasOwnProperty)},function(e,t,n){"use strict";var a=n(166),r=n(607),o=r(a("String.prototype.indexOf"));e.exports=function(e,t){t=a(e,!!t);return"function"==typeof t&&-1<o(e,".prototype.")?r(t):t}},function(e,t,n){"use strict";var a=n(167),n=n(166),r=n("%Function.prototype.apply%"),o=n("%Function.prototype.call%"),i=n("%Reflect.apply%",!0)||a.call(o,r),l=n("%Object.getOwnPropertyDescriptor%",!0),s=n("%Object.defineProperty%",!0),u=n("%Math.max%");if(s)try{s({},"a",{value:1})}catch(e){s=null}e.exports=function(e){var t=i(a,o,arguments);return l&&s&&l(t,"length").configurable&&s(t,"length",{value:1+u(0,e.length-(arguments.length-1))}),t};function d(){return i(a,r,arguments)}s?s(e.exports,"apply",{value:d}):e.exports.apply=d},function(n,a,o){var e="function"==typeof Map&&Map.prototype,t=Object.getOwnPropertyDescriptor&&e?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,_=e&&t&&"function"==typeof t.get?t.get:null,J=e&&Map.prototype.forEach,t="function"==typeof Set&&Set.prototype,e=Object.getOwnPropertyDescriptor&&t?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,b=t&&e&&"function"==typeof e.get?e.get:null,X=t&&Set.prototype.forEach,w="function"==typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,M="function"==typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,k="function"==typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,Q=Boolean.prototype.valueOf,i=Object.prototype.toString,Z=Function.prototype.toString,ee=String.prototype.match,S=String.prototype.slice,E=String.prototype.replace,l=String.prototype.toUpperCase,x=String.prototype.toLowerCase,d=RegExp.prototype.test,C=Array.prototype.concat,L=Array.prototype.join,te=Array.prototype.slice,r=Math.floor,T="function"==typeof BigInt?BigInt.prototype.valueOf:null,c=Object.getOwnPropertySymbols,D="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?Symbol.prototype.toString:null,O="function"==typeof Symbol&&"object"==typeof Symbol.iterator,N="function"==typeof Symbol&&Symbol.toStringTag&&(typeof Symbol.toStringTag===O||"symbol")?Symbol.toStringTag:null,P=Object.prototype.propertyIsEnumerable,j=("function"==typeof Reflect?Reflect:Object).getPrototypeOf||([].__proto__===Array.prototype?function(e){return e.__proto__}:null);function Y(e,t){if(e===1/0||e===-1/0||e!=e||e&&-1e3<e&&e<1e3||d.call(/e/,t))return t;var n=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if("number"==typeof e){var a=e<0?-r(-e):r(e);if(a!==e)return e=String(a),a=S.call(t,e.length+1),E.call(e,n,"$&_")+"."+E.call(E.call(a,/([0-9]{3})/g,"$&_"),/_$/,"")}return E.call(t,n,"$&_")}var I=o(609),e=I.custom,R=z(e)?e:null;function A(e,t,n){n="double"===(n.quoteStyle||t)?'"':"'";return n+e+n}function H(e){return!("[object Array]"!==V(e)||N&&"object"==typeof e&&N in e)}function F(e){return!("[object RegExp]"!==V(e)||N&&"object"==typeof e&&N in e)}function z(e){if(O)return e&&"object"==typeof e&&e instanceof Symbol;if("symbol"==typeof e)return 1;if(e&&"object"==typeof e&&D)try{return D.call(e),1}catch(e){}}n.exports=function a(n,e,r,o){var i=e||{};if(W(i,"quoteStyle")&&"single"!==i.quoteStyle&&"double"!==i.quoteStyle)throw new TypeError('option "quoteStyle" must be "single" or "double"');if(W(i,"maxStringLength")&&("number"==typeof i.maxStringLength?i.maxStringLength<0&&i.maxStringLength!==1/0:null!==i.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');e=!W(i,"customInspect")||i.customInspect;if("boolean"!=typeof e&&"symbol"!==e)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(W(i,"indent")&&null!==i.indent&&"\t"!==i.indent&&!(parseInt(i.indent,10)===i.indent&&0<i.indent))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(W(i,"numericSeparator")&&"boolean"!=typeof i.numericSeparator)throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var t=i.numericSeparator;if(void 0===n)return"undefined";if(null===n)return"null";if("boolean"==typeof n)return n?"true":"false";if("string"==typeof n)return function e(t,n){if(t.length>n.maxStringLength)return a=t.length-n.maxStringLength,a="... "+a+" more character"+(1<a?"s":""),e(S.call(t,0,n.maxStringLength),n)+a;var a=E.call(E.call(t,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,ne);return A(a,"single",n)}(n,i);if("number"==typeof n){if(0===n)return 0<1/0/n?"0":"-0";var l=String(n);return t?Y(n,l):l}if("bigint"==typeof n)return l=String(n)+"n",t?Y(n,l):l;t=void 0===i.depth?5:i.depth;if(t<=(r=void 0===r?0:r)&&0<t&&"object"==typeof n)return H(n)?"[Array]":"[Object]";var s,u,d,c,f,p,l=function(e,t){var n;if("\t"===e.indent)n="\t";else{if(!("number"==typeof e.indent&&0<e.indent))return null;n=L.call(Array(e.indent+1)," ")}return{base:n,prev:L.call(Array(t+1),n)}}(i,r);if(void 0===o)o=[];else if(0<=B(o,n))return"[Circular]";function h(e,t,n){return t&&(o=te.call(o)).push(t),n?(t={depth:i.depth},W(i,"quoteStyle")&&(t.quoteStyle=i.quoteStyle),a(e,t,r+1,o)):a(e,i,r+1,o)}if("function"==typeof n&&!F(n))return"[Function"+((v=function(e){if(e.name)return e.name;e=ee.call(Z.call(e),/^function\s*([\w$]+)/);if(e)return e[1];return null}(n))?": "+v:" (anonymous)")+"]"+(0<(v=$(n,h)).length?" { "+L.call(v,", ")+" }":"");if(z(n))return v=O?E.call(String(n),/^(Symbol\(.*\))_[^)]*$/,"$1"):D.call(n),"object"!=typeof n||O?v:U(v);if(function(e){if(!e||"object"!=typeof e)return;if("undefined"!=typeof HTMLElement&&e instanceof HTMLElement)return 1;return"string"==typeof e.nodeName&&"function"==typeof e.getAttribute}(n)){for(var m="<"+x.call(String(n.nodeName)),g=n.attributes||[],y=0;y<g.length;y++)m+=" "+g[y].name+"="+A((s=g[y].value,E.call(String(s),/"/g,""")),"double",i);return m+=">",n.childNodes&&n.childNodes.length&&(m+="..."),m+="</"+x.call(String(n.nodeName))+">"}if(H(n)){if(0===n.length)return"[]";var v=$(n,h);return l&&!function(e){for(var t=0;t<e.length;t++)if(0<=B(e[t],"\n"))return;return 1}(v)?"["+q(v,l)+"]":"[ "+L.call(v,", ")+" ]"}if(!("[object Error]"!==V(v=n)||N&&"object"==typeof v&&N in v))return c=$(n,h),"cause"in Error.prototype||!("cause"in n)||P.call(n,"cause")?0===c.length?"["+String(n)+"]":"{ ["+String(n)+"] "+L.call(c,", ")+" }":"{ ["+String(n)+"] "+L.call(C.call("[cause]: "+h(n.cause),c),", ")+" }";if("object"==typeof n&&e){if(R&&"function"==typeof n[R]&&I)return I(n,{depth:t-r});if("symbol"!==e&&"function"==typeof n.inspect)return n.inspect()}return function(e){if(_&&e&&"object"==typeof e)try{_.call(e);try{b.call(e)}catch(e){return 1}return e instanceof Map}catch(e){}return}(n)?(u=[],J.call(n,function(e,t){u.push(h(t,n,!0)+" => "+h(e,n))}),G("Map",_.call(n),u,l)):function(e){if(b&&e&&"object"==typeof e)try{b.call(e);try{_.call(e)}catch(e){return 1}return e instanceof Set}catch(e){}return}(n)?(d=[],X.call(n,function(e){d.push(h(e,n))}),G("Set",b.call(n),d,l)):function(e){if(w&&e&&"object"==typeof e)try{w.call(e,w);try{M.call(e,M)}catch(e){return 1}return e instanceof WeakMap}catch(e){}return}(n)?K("WeakMap"):function(e){if(M&&e&&"object"==typeof e)try{M.call(e,M);try{w.call(e,w)}catch(e){return 1}return e instanceof WeakSet}catch(e){}return}(n)?K("WeakSet"):function(e){if(k&&e&&"object"==typeof e)try{return k.call(e),1}catch(e){}return}(n)?K("WeakRef"):"[object Number]"!==V(c=n)||N&&"object"==typeof c&&N in c?function(e){if(e&&"object"==typeof e&&T)try{return T.call(e),1}catch(e){}return}(n)?U(h(T.call(n))):"[object Boolean]"!==V(t=n)||N&&"object"==typeof t&&N in t?"[object String]"!==V(e=n)||N&&"object"==typeof e&&N in e?("[object Date]"!==V(t=n)||N&&"object"==typeof t&&N in t)&&!F(n)?(e=$(n,h),t=j?j(n)===Object.prototype:n instanceof Object||n.constructor===Object,f=n instanceof Object?"":"null prototype",p=!t&&N&&Object(n)===n&&N in n?S.call(V(n),8,-1):f?"Object":"",t=(!t&&"function"==typeof n.constructor&&n.constructor.name?n.constructor.name+" ":"")+(p||f?"["+L.call(C.call([],p||[],f||[]),": ")+"] ":""),0===e.length?t+"{}":l?t+"{"+q(e,l)+"}":t+"{ "+L.call(e,", ")+" }"):String(n):U(h(String(n))):U(Q.call(n)):U(h(Number(n)))};var s=Object.prototype.hasOwnProperty||function(e){return e in this};function W(e,t){return s.call(e,t)}function V(e){return i.call(e)}function B(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0,a=e.length;n<a;n++)if(e[n]===t)return n;return-1}function ne(e){var e=e.charCodeAt(0),t={8:"b",9:"t",10:"n",12:"f",13:"r"}[e];return t?"\\"+t:"\\x"+(e<16?"0":"")+l.call(e.toString(16))}function U(e){return"Object("+e+")"}function K(e){return e+" { ? }"}function G(e,t,n,a){return e+" ("+t+") {"+(a?q(n,a):L.call(n,", "))+"}"}function q(e,t){if(0===e.length)return"";var n="\n"+t.prev+t.base;return n+L.call(e,","+n)+"\n"+t.prev}function $(e,t){var n=H(e),a=[];if(n){a.length=e.length;for(var r=0;r<e.length;r++)a[r]=W(e,r)?t(e[r],e):""}var o,i="function"==typeof c?c(e):[];if(O)for(var l={},s=0;s<i.length;s++)l["$"+i[s]]=i[s];for(o in e)!W(e,o)||n&&String(Number(o))===o&&o<e.length||O&&l["$"+o]instanceof Symbol||(d.call(/[^\w$]/,o)?a.push(t(o,e)+": "+t(e[o],e)):a.push(o+": "+t(e[o],e)));if("function"==typeof c)for(var u=0;u<i.length;u++)P.call(e,i[u])&&a.push("["+t(i[u])+"]: "+t(e[i[u]],e));return a}},function(e,t){},function(e,t,n){"use strict";function s(e,t){var n,a,r,o,i={},e=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,l=t.parameterLimit===1/0?void 0:t.parameterLimit,s=e.split(t.delimiter,l),u=-1,d=t.charset;if(t.charsetSentinel)for(n=0;n<s.length;++n)0===s[n].indexOf("utf8=")&&("utf8=%E2%9C%93"===s[n]?d="utf-8":"utf8=%26%2310003%3B"===s[n]&&(d="iso-8859-1"),u=n,n=s.length);for(n=0;n<s.length;++n)n!==u&&((o=-1===(o=-1===(o=(a=s[n]).indexOf("]="))?a.indexOf("="):o+1)?(r=t.decoder(a,p.decoder,d,"key"),t.strictNullHandling?null:""):(r=t.decoder(a.slice(0,o),p.decoder,d,"key"),c.maybeMap(v(a.slice(o+1),t),function(e){return t.decoder(e,p.decoder,d,"value")})))&&t.interpretNumericEntities&&"iso-8859-1"===d&&(o=o.replace(/&#(\d+);/g,function(e,t){return String.fromCharCode(parseInt(t,10))})),-1<a.indexOf("[]=")&&(o=f(o)?[o]:o),y.call(i,r)?i[r]=c.combine(i[r],o):i[r]=o);return i}function u(e,t,n,a){if(e){var r=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,o=/(\[[^[\]]*])/g,i=0<n.depth&&/(\[[^[\]]*])/.exec(r),e=i?r.slice(0,i.index):r,l=[];if(e){if(!n.plainObjects&&y.call(Object.prototype,e)&&!n.allowPrototypes)return;l.push(e)}for(var s=0;0<n.depth&&null!==(i=o.exec(r))&&s<n.depth;){if(s+=1,!n.plainObjects&&y.call(Object.prototype,i[1].slice(1,-1))&&!n.allowPrototypes)return;l.push(i[1])}i&&l.push("["+r.slice(i.index)+"]");for(var u=l,e=t,d=n,c=a?e:v(e,d),f=u.length-1;0<=f;--f){var p,h,m,g=u[f];"[]"===g&&d.parseArrays?p=[].concat(c):(p=d.plainObjects?Object.create(null):{},h="["===g.charAt(0)&&"]"===g.charAt(g.length-1)?g.slice(1,-1):g,m=parseInt(h,10),d.parseArrays||""!==h?!isNaN(m)&&g!==h&&String(m)===h&&0<=m&&d.parseArrays&&m<=d.arrayLimit?(p=[])[m]=c:"__proto__"!==h&&(p[h]=c):p={0:c}),c=p}return c}}var c=n(372),y=Object.prototype.hasOwnProperty,f=Array.isArray,p={allowDots:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:c.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},v=function(e,t){return e&&"string"==typeof e&&t.comma&&-1<e.indexOf(",")?e.split(","):e};e.exports=function(e,t){var n=function(e){if(!e)return p;if(null!==e.decoder&&void 0!==e.decoder&&"function"!=typeof e.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var t=(void 0===e.charset?p:e).charset;return{allowDots:void 0===e.allowDots?p.allowDots:!!e.allowDots,allowPrototypes:("boolean"==typeof e.allowPrototypes?e:p).allowPrototypes,allowSparse:("boolean"==typeof e.allowSparse?e:p).allowSparse,arrayLimit:("number"==typeof e.arrayLimit?e:p).arrayLimit,charset:t,charsetSentinel:("boolean"==typeof e.charsetSentinel?e:p).charsetSentinel,comma:("boolean"==typeof e.comma?e:p).comma,decoder:("function"==typeof e.decoder?e:p).decoder,delimiter:("string"==typeof e.delimiter||c.isRegExp(e.delimiter)?e:p).delimiter,depth:"number"==typeof e.depth||!1===e.depth?+e.depth:p.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:("boolean"==typeof e.interpretNumericEntities?e:p).interpretNumericEntities,parameterLimit:("number"==typeof e.parameterLimit?e:p).parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:("boolean"==typeof e.plainObjects?e:p).plainObjects,strictNullHandling:("boolean"==typeof e.strictNullHandling?e:p).strictNullHandling}}(t);if(""===e||null==e)return n.plainObjects?Object.create(null):{};for(var a="string"==typeof e?s(e,n):e,r=n.plainObjects?Object.create(null):{},o=Object.keys(a),i=0;i<o.length;++i)var l=o[i],l=u(l,a[l],n,"string"==typeof e),r=c.merge(r,l,n);return!0===n.allowSparse?r:c.compact(r)}},function(e,t,n){},function(e,t){e.exports=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)}},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var o=c(n(2)),a=c(n(4)),r=c(n(6)),i=c(n(7)),l=n(0),s=c(l),u=c(n(3)),d=c(n(62)),n=n(11);function c(e){return e&&e.__esModule?e:{default:e}}var f,p=n.func.noop,h=n.func.makeChain,m=n.func.bindCtx,g=d.default.Popup,i=(f=l.Component,(0,i.default)(y,f),y.getDerivedStateFromProps=function(e){var t={};return"visible"in e&&(t.visible=e.visible),t},y.prototype.getVisible=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:this.props;return("visible"in e?e:this.state).visible},y.prototype.onMenuClick=function(){var e=this.props.autoClose;"visible"in this.props||!e||this.setState({visible:!1}),this.onVisibleChange(!1,"fromContent")},y.prototype.onVisibleChange=function(e,t){this.setState({visible:e}),this.props.onVisibleChange(e,t)},y.prototype.onTriggerKeyDown=function(){var e=!0;"autoFocus"in this.props&&(e=this.props.autoFocus),this.setState({autoFocus:e})},y.prototype.render=function(){var e=this.props,t=e.trigger,n=e.rtl,e=e.autoClose,a=l.Children.only(this.props.children),r=a,e=("function"==typeof a.type&&a.type.isNextMenu?r=s.default.cloneElement(a,{onItemClick:h(this.onMenuClick,a.props.onItemClick)}):e&&(r=s.default.cloneElement(a,{onClick:h(this.onMenuClick,a.props.onClick)})),s.default.cloneElement(t,{onKeyDown:h(this.onTriggerKeyDown,t.props.onKeyDown)}));return s.default.createElement(g,(0,o.default)({},this.props,{rtl:n,autoFocus:this.state.autoFocus,trigger:e,visible:this.getVisible(),onVisibleChange:this.onVisibleChange,canCloseByOutSideClick:!0}),r)},d=n=y,n.propTypes={prefix:u.default.string,pure:u.default.bool,rtl:u.default.bool,className:u.default.string,children:u.default.node,visible:u.default.bool,defaultVisible:u.default.bool,onVisibleChange:u.default.func,trigger:u.default.node,triggerType:u.default.oneOfType([u.default.string,u.default.array]),disabled:u.default.bool,align:u.default.string,offset:u.default.array,delay:u.default.number,autoFocus:u.default.bool,hasMask:u.default.bool,autoClose:u.default.bool,cache:u.default.bool,animation:u.default.oneOfType([u.default.object,u.default.bool])},n.defaultProps={prefix:"next-",pure:!1,defaultVisible:!1,autoClose:!1,onVisibleChange:p,triggerType:"hover",disabled:!1,align:"tl bl",offset:[0,0],delay:200,hasMask:!1,cache:!1,onPosition:p},d);function y(e){(0,a.default)(this,y);var t=(0,r.default)(this,f.call(this,e));return t.state={visible:"visible"in e?e.visible:e.defaultVisible||!1,autoFocus:"autoFocus"in e&&e.autoFocus},m(t,["onTriggerKeyDown","onMenuClick","onVisibleChange"]),t}i.displayName="Dropdown",t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=f(n(2)),r=f(n(12)),o=f(n(4)),i=f(n(6)),l=f(n(7)),s=n(0),u=f(s),d=f(n(3)),c=f(n(376));function f(e){return e&&e.__esModule?e:{default:e}}p=s.Component,(0,l.default)(h,p),h.prototype.render=function(){var e=this.props,t=e.checkboxDisabled,e=(0,r.default)(e,["checkboxDisabled"]);return u.default.createElement(c.default,(0,a.default)({role:"menuitemcheckbox",checkType:"checkbox",checkDisabled:t},e))},s=n=h,n.menuChildType="item",n.propTypes={checked:d.default.bool,indeterminate:d.default.bool,disabled:d.default.bool,onChange:d.default.func,helper:d.default.node,children:d.default.node,checkboxDisabled:d.default.bool},n.defaultProps={checked:!1,indeterminate:!1,disabled:!1,onChange:function(){},checkboxDisabled:!1};var p,l=s;function h(){return(0,o.default)(this,h),(0,i.default)(this,p.apply(this,arguments))}l.displayName="CheckboxItem",t.default=l,e.exports=t.default},function(e,t,n){e.exports={default:n(616),__esModule:!0}},function(e,t,n){n(617);var a=n(77).Object;e.exports=function(e,t,n){return a.defineProperty(e,t,n)}},function(e,t,n){var a=n(91);a(a.S+a.F*!n(78),"Object",{defineProperty:n(84).f})},function(e,t,n){"use strict";t.__esModule=!0;var a=u(n(2)),r=u(n(4)),o=u(n(6)),i=u(n(7));t.default=function(n){var e,t;return t=e=function(e){function t(){return(0,r.default)(this,t),(0,o.default)(this,e.apply(this,arguments))}return(0,i.default)(t,e),t.prototype.render=function(){return l.default.createElement(n,(0,a.default)({},this.props,{context:this.context}))},t}(l.default.Component),e.displayName="Checkbox",e.contextTypes={onChange:s.default.func,__group__:s.default.bool,selectedValue:s.default.array,disabled:s.default.bool,prefix:s.default.string},t};var l=u(n(0)),s=u(n(3));function u(e){return e&&e.__esModule?e:{default:e}}e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var f=d(n(2)),p=d(n(38)),a=d(n(4)),r=d(n(6)),o=d(n(7)),i=n(0),h=d(i),l=d(n(3)),m=d(n(13)),s=n(30),u=n(11),g=d(n(377));function d(e){return e&&e.__esModule?e:{default:e}}var c,y=u.obj.pickOthers,i=(c=i.Component,(0,o.default)(v,c),v.prototype.getChildContext=function(){return{__group__:!0,onChange:this.onChange,selectedValue:this.state.value,disabled:this.props.disabled}},v.getDerivedStateFromProps=function(e){return"value"in e?(e=e.value,{value:e=Array.isArray(e)?e:null==e?[]:[e]}):null},v.prototype.onChange=function(e,t){var n=this.state.value,a=n.indexOf(e),n=[].concat(n);-1===a?n.push(e):n.splice(a,1),"value"in this.props||this.setState({value:n}),this.props.onChange(n,t)},v.prototype.render=function(){var a=this,e=this.props,t=e.className,n=e.style,r=e.prefix,o=e.disabled,i=e.direction,l=e.rtl,s=e.isPreview,e=e.renderPreview,u=y(v.propTypes,this.props),d=void 0,c=[],d=this.props.children?h.default.Children.map(this.props.children,function(e){return h.default.isValidElement(e)?(a.state.value&&-1<a.state.value.indexOf(e.props.value)&&c.push({label:e.props.children,value:e.props.value}),h.default.cloneElement(e,void 0===e.props.rtl?{rtl:l}:null)):e}):this.props.dataSource.map(function(e,t){var n=e,e=("object"!==(void 0===e?"undefined":(0,p.default)(e))&&(n={label:e,value:e,disabled:o}),a.state.value&&-1<a.state.value.indexOf(n.value));return e&&c.push({label:n.label,value:n.value}),h.default.createElement(g.default,{key:t,value:n.value,checked:e,rtl:l,disabled:o||n.disabled,label:n.label})});if(s)return s=(0,m.default)(t,r+"form-preview"),"renderPreview"in this.props?h.default.createElement("div",(0,f.default)({},u,{dir:l?"rtl":void 0,className:s}),e(c,this.props)):h.default.createElement("p",(0,f.default)({},u,{dir:l?"rtl":void 0,className:s}),c.map(function(e){return e.label}).join(", "));s=(0,m.default)(((e={})[r+"checkbox-group"]=!0,e[r+"checkbox-group-"+i]=!0,e[t]=!!t,e.disabled=o,e));return h.default.createElement("span",(0,f.default)({dir:l?"rtl":void 0},u,{className:s,style:n}),d)},u=n=v,n.propTypes={prefix:l.default.string,rtl:l.default.bool,className:l.default.string,style:l.default.object,disabled:l.default.bool,dataSource:l.default.oneOfType([l.default.arrayOf(l.default.string),l.default.arrayOf(l.default.object)]),value:l.default.oneOfType([l.default.array,l.default.string,l.default.number]),defaultValue:l.default.oneOfType([l.default.array,l.default.string,l.default.number]),children:l.default.arrayOf(l.default.element),onChange:l.default.func,direction:l.default.oneOf(["hoz","ver"]),isPreview:l.default.bool,renderPreview:l.default.func},n.defaultProps={dataSource:[],onChange:function(){},prefix:"next-",direction:"hoz",isPreview:!1},n.childContextTypes={onChange:l.default.func,__group__:l.default.bool,selectedValue:l.default.array,disabled:l.default.bool},u);function v(e){(0,a.default)(this,v);var t=(0,r.default)(this,c.call(this,e)),n=[];return"value"in e?n=e.value:"defaultValue"in e&&(n=e.defaultValue),Array.isArray(n)||(n=null==n?[]:[n]),t.state={value:[].concat(n)},t.onChange=t.onChange.bind(t),t}i.displayName="CheckboxGroup",t.default=(0,s.polyfill)(i),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=u(n(2)),r=u(n(4)),o=u(n(6)),i=u(n(7));t.default=function(n){var e,t;return t=e=function(e){function t(){return(0,r.default)(this,t),(0,o.default)(this,e.apply(this,arguments))}return(0,i.default)(t,e),t.prototype.render=function(){return l.default.createElement(n,(0,a.default)({},this.props,{context:this.context}))},t}(l.default.Component),e.displayName="Radio",e.contextTypes={onChange:s.default.func,__group__:s.default.bool,isButton:s.default.bool,selectedValue:s.default.oneOfType([s.default.string,s.default.number,s.default.bool]),disabled:s.default.bool},t};var l=u(n(0)),s=u(n(3));function u(e){return e&&e.__esModule?e:{default:e}}e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var m=c(n(2)),g=c(n(38)),a=c(n(4)),r=c(n(6)),o=c(n(7)),i=n(0),y=c(i),l=c(n(3)),v=c(n(13)),s=n(30),u=c(n(8)),d=n(11),_=c(n(380));function c(e){return e&&e.__esModule?e:{default:e}}var f,b=d.obj.pickOthers,i=(f=i.Component,(0,o.default)(w,f),w.getDerivedStateFromProps=function(e,t){return"value"in e&&e.value!==t.value?{value:e.value}:null},w.prototype.getChildContext=function(){var e=this.props.disabled;return{__group__:!0,isButton:"button"===this.props.shape,onChange:this.onChange,selectedValue:this.state.value,disabled:e}},w.prototype.onChange=function(e,t){"value"in this.props||this.setState({value:e}),e!==this.state.value&&this.props.onChange(e,t)},w.prototype.render=function(){var r=this,e=this.props,o=e.rtl,t=e.className,a=e.disabled,n=e.shape,i=e.size,l=e.style,s=e.prefix,u=e.direction,d=e.component,c=e.isPreview,e=e.renderPreview,f=b(Object.keys(w.propTypes),this.props),p=(o&&(f.dir="rtl"),void 0),h={},p=this.props.children?y.default.Children.map(this.props.children,function(e,t){if(!y.default.isValidElement(e))return e;var n=r.state.value===e.props.value,t=(n&&(h.label=e.props.children,h.value=e.props.value),0===t&&!r.state.value||n?0:-1),a=void 0===e.props.rtl?o:e.props.rtl;return e.type&&"Config(Radio)"===e.type.displayName?y.default.cloneElement(e,{checked:n,tabIndex:t,rtl:a}):y.default.cloneElement(e,{checked:n,rtl:a})}):this.props.dataSource.map(function(e,t){var n=e,e=("object"!==(void 0===e?"undefined":(0,g.default)(e))&&(n={label:e,value:e,disabled:a}),r.state.value===n.value);return e&&(h.label=n.label,h.value=n.value),y.default.createElement(_.default,{key:t,tabIndex:0===t&&!r.state.value||e?0:-1,value:n.value,checked:e,label:n.label,disabled:a||n.disabled})});if(c)return c=(0,v.default)(t,s+"form-preview"),"renderPreview"in this.props?y.default.createElement("div",(0,m.default)({},f,{className:c}),e(h,this.props)):y.default.createElement("p",(0,m.default)({},f,{className:c}),h.label);e="button"===n,n=(0,v.default)(((c={})[s+"radio-group"]=!0,c[s+"radio-group-"+u]=!e,c[s+"radio-button"]=e,c[s+"radio-button-"+i]=e,c[t]=!!t,c.disabled=a,c));return y.default.createElement(d,(0,m.default)({},f,{"aria-disabled":a,role:"radiogroup",className:n,style:l}),p)},d=n=w,n.propTypes=(0,m.default)({},u.default.propTypes,{prefix:l.default.string,className:l.default.string,style:l.default.object,name:l.default.string,value:l.default.oneOfType([l.default.string,l.default.number,l.default.bool]),defaultValue:l.default.oneOfType([l.default.string,l.default.number,l.default.bool]),component:l.default.oneOfType([l.default.string,l.default.func]),onChange:l.default.func,disabled:l.default.bool,shape:l.default.oneOf(["normal","button"]),size:l.default.oneOf(["large","medium","small"]),dataSource:l.default.oneOfType([l.default.arrayOf(l.default.string),l.default.arrayOf(l.default.object)]),children:l.default.oneOfType([l.default.arrayOf(l.default.element),l.default.element]),direction:l.default.oneOf(["hoz","ver"]),isPreview:l.default.bool,renderPreview:l.default.func}),n.defaultProps={dataSource:[],size:"medium",onChange:function(){},prefix:"next-",component:"div",direction:"hoz",isPreview:!1},n.childContextTypes={onChange:l.default.func,__group__:l.default.bool,isButton:l.default.bool,selectedValue:l.default.oneOfType([l.default.string,l.default.number,l.default.bool]),disabled:l.default.bool},d);function w(e){(0,a.default)(this,w);var t=(0,r.default)(this,f.call(this,e)),n="";return"value"in e?n=e.value:"defaultValue"in e&&(n=e.defaultValue),t.state={value:n},t.onChange=t.onChange.bind(t),t}i.displayName="RadioGroup",t.default=(0,s.polyfill)(i),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=c(n(2)),r=c(n(4)),o=c(n(6)),i=c(n(7)),l=n(0),s=c(l),u=c(n(3)),d=c(n(376));function c(e){return e&&e.__esModule?e:{default:e}}f=l.Component,(0,i.default)(p,f),p.prototype.render=function(){return s.default.createElement(d.default,(0,a.default)({role:"menuitemradio",checkType:"radio"},this.props))},l=n=p,n.menuChildType="item",n.propTypes={checked:u.default.bool,disabled:u.default.bool,onChange:u.default.func,helper:u.default.node,children:u.default.node},n.defaultProps={checked:!1,disabled:!1,onChange:function(){}};var f,i=l;function p(){return(0,r.default)(this,p),(0,o.default)(this,f.apply(this,arguments))}i.displayName="RadioItem",t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var s=l(n(2)),u=l(n(38)),d=l(n(12)),a=l(n(4)),r=l(n(6)),o=l(n(7)),c=n(0),f=l(c),i=l(n(3)),p=l(n(13)),h=l(n(98));function l(e){return e&&e.__esModule?e:{default:e}}m=c.Component,(0,o.default)(g,m),g.prototype.render=function(){var e=this.props,t=e.root,n=e.className,a=e.label,r=e.children,o=e.parentMode,e=(0,d.default)(e,["root","className","label","children","parentMode"]),i=t.props.prefix,n=(0,p.default)(((l={})[i+"menu-group-label"]=!0,l[n]=!!n,l)),l=r.map(function(e){var t;if("function"!=typeof e&&"object"!==(void 0===e?"undefined":(0,u.default)(e)))return e;var n=e.props.className,n=(0,p.default)(((t={})[i+"menu-group-item"]=!0,t[n]=!!n,t));return(0,c.cloneElement)(e,{parentMode:o,className:n})});return[f.default.createElement(h.default,(0,s.default)({key:"menu-group-label",className:n,replaceClassName:!0,root:t,parentMode:o},e),a)].concat(l)},o=n=g,n.menuChildType="group",n.propTypes={root:i.default.object,className:i.default.string,label:i.default.node,children:i.default.node,parentMode:i.default.oneOf(["inline","popup"])};var m,n=o;function g(){return(0,a.default)(this,g),(0,r.default)(this,m.apply(this,arguments))}n.displayName="Group",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var r=f(n(2)),o=f(n(12)),a=f(n(4)),i=f(n(6)),l=f(n(7)),s=n(0),u=f(s),d=f(n(3)),c=f(n(13));function f(e){return e&&e.__esModule?e:{default:e}}p=s.Component,(0,l.default)(h,p),h.prototype.render=function(){var e,t=this.props,n=t.root,a=t.className,t=(t.parentMode,t.parent,(0,o.default)(t,["root","className","parentMode","parent"])),n=n.props.prefix,n=(0,c.default)(((e={})[n+"menu-divider"]=!0,e[a]=!!a,e));return u.default.createElement("li",(0,r.default)({role:"separator",className:n},t))},s=n=h,n.menuChildType="divider",n.propTypes={root:d.default.object,className:d.default.string};var p,l=s;function h(){return(0,a.default)(this,h),(0,i.default)(this,p.apply(this,arguments))}l.displayName="Divider",t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var c=g(n(2)),f=g(n(12)),a=g(n(4)),r=g(n(6)),o=g(n(7)),i=(t.default=function(e){w&&w.destroy();var t=e.afterClose,e=(0,f.default)(e,["afterClose"]),n=document.createElement("div"),a=(document.body.appendChild(n),d.default.getContext()),r=void 0;return(0,l.render)(p.default.createElement(d.default,a,p.default.createElement(M,(0,c.default)({ref:function(e){r=e},afterClose:function(){(0,l.unmountComponentAtNode)(n),document.body.removeChild(n),t&&t()}},e))),n),w={destroy:function(){r&&r.close()}}},n(0)),p=g(i),l=n(23),s=g(n(3)),h=g(n(13)),m=g(n(62)),u=n(11),d=g(n(8)),n=g(n(373));function g(e){return e&&e.__esModule?e:{default:e}}var y,v=u.func.bindCtx,_=d.default.getContextProps,b=d.default.config(n.default),w=void 0,M=(y=i.Component,(0,o.default)(k,y),k.prototype.getOverlay=function(e){this.overlay=e},k.prototype.close=function(){this.setState({visible:!1}),w=null},k.prototype.handleOverlayClose=function(e,t){if(!("docClick"===e&&this.popupNodes.some(function(e){return e.contains(t.target)}))){this.close();var n=this.props.overlayProps;if(n&&n.onRequestClose){for(var a=arguments.length,r=Array(2<a?a-2:0),o=2;o<a;o++)r[o-2]=arguments[o];n.onRequestClose.apply(n,[e,t].concat(r))}}},k.prototype.handleOverlayOpen=function(){this.popupNodes=this.overlay.getInstance().getContent().getInstance().popupNodes;var e=this.props.overlayProps;e&&e.onOpen&&e.onOpen()},k.prototype.handleItemClick=function(){var e;this.close(),this.props.onItemClick&&(e=this.props).onItemClick.apply(e,arguments)},k.prototype.render=function(){var e=this.props,t=e.className,n=e.popupClassName,a=e.target,r=e.align,o=e.offset,i=e.afterClose,l=e.overlayProps,l=void 0===l?{}:l,e=(0,f.default)(e,["className","popupClassName","target","align","offset","afterClose","overlayProps"]),s=_(this.props),u=s.prefix,d=this.state.visible,l=(0,c.default)({},s,l,{target:a,align:r,offset:o,afterClose:i,visible:d,onRequestClose:this.handleOverlayClose,onOpen:this.handleOverlayOpen,ref:this.getOverlay}),o=(0,c.default)({},s,{triggerType:"hover"},e,{className:(0,h.default)(((a={})[u+"context"]=!0,a[t]=!!t,a)),popupClassName:(0,h.default)(((r={})[u+"context"]=!0,r[n]=!!n,r)),onItemClick:this.handleItemClick});return l.rtl=!1,p.default.createElement(m.default,l,p.default.createElement(b,o))},n=u=k,u.propTypes={className:s.default.string,popupClassName:s.default.string,target:s.default.any,align:s.default.string,offset:s.default.array,overlayProps:s.default.object,afterClose:s.default.func,mode:s.default.oneOf(["inline","popup"]),onOpen:s.default.func,onItemClick:s.default.func},u.defaultProps={prefix:"next-",align:"tl tl",mode:"popup"},n);function k(e){(0,a.default)(this,k);e=(0,r.default)(this,y.call(this,e));return e.state={visible:!0},v(e,["handleOverlayClose","handleOverlayOpen","handleItemClick","getOverlay"]),e}M.displayName="ContextMenu",e.exports=t.default},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var m=s(n(2)),a=s(n(4)),r=s(n(6)),o=s(n(7)),g=s(n(0)),i=s(n(3)),y=s(n(13)),l=s(n(8)),v=s(n(381)),_=s(n(382)),b=s(n(383)),w=s(n(384));function s(e){return e&&e.__esModule?e:{default:e}}var u,M=n(11).obj.pickOthers,l=(u=g.default.Component,(0,o.default)(k,u),k.prototype.render=function(){var e,t=this.props,n=t.prefix,a=t.className,r=t.title,o=t.subTitle,i=t.extra,l=t.showTitleBullet,s=t.showHeadDivider,u=t.children,d=t.rtl,c=t.contentHeight,f=t.free,p=t.actions,h=t.hasBorder,t=t.media,h=(0,y.default)(((e={})[n+"card"]=!0,e[n+"card-free"]=f,e[n+"card-noborder"]=!h,e[n+"card-show-divider"]=s,e[n+"card-hide-divider"]=!s,e),a),n=M(Object.keys(k.propTypes),this.props);return n.dir=d?"rtl":void 0,g.default.createElement("div",(0,m.default)({},n,{className:h}),t&&g.default.createElement(b.default,null,t),g.default.createElement(v.default,{title:r,subTitle:o,extra:i,showTitleBullet:l}),f?u:g.default.createElement(_.default,{contentHeight:c},u),p&&g.default.createElement(w.default,null,p))},o=n=k,n.displayName="Card",n.propTypes=(0,m.default)({},l.default.propTypes,{prefix:i.default.string,rtl:i.default.bool,media:i.default.node,title:i.default.node,subTitle:i.default.node,actions:i.default.node,showTitleBullet:i.default.bool,showHeadDivider:i.default.bool,contentHeight:i.default.oneOfType([i.default.string,i.default.number]),extra:i.default.node,free:i.default.bool,hasBorder:i.default.bool,className:i.default.string,children:i.default.node}),n.defaultProps={prefix:"next-",free:!1,showTitleBullet:!0,showHeadDivider:!0,hasBorder:!0,contentHeight:120},o);function k(){return(0,a.default)(this,k),(0,r.default)(this,u.apply(this,arguments))}l.displayName="Card",t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var l=f(n(2)),s=f(n(12)),a=f(n(4)),r=f(n(6)),o=f(n(7)),i=n(0),u=f(i),d=f(n(3)),c=f(n(13)),n=f(n(8));function f(e){return e&&e.__esModule?e:{default:e}}p=i.Component,(0,o.default)(h,p),h.prototype.render=function(){var e=this.props,t=e.prefix,n=e.title,a=e.subTitle,r=e.extra,o=e.className,i=e.component,e=(0,s.default)(e,["prefix","title","subTitle","extra","className","component"]);return u.default.createElement(i,(0,l.default)({},e,{className:(0,c.default)(t+"card-header",o)}),r&&u.default.createElement("div",{className:t+"card-header-extra"},r),u.default.createElement("div",{className:t+"card-header-titles"},n&&u.default.createElement("div",{className:t+"card-header-title"},n),a&&u.default.createElement("div",{className:t+"card-header-subtitle"},a)))},o=i=h,i.propTypes={prefix:d.default.string,title:d.default.node,subTitle:d.default.node,extra:d.default.node,component:d.default.elementType,className:d.default.string},i.defaultProps={prefix:"next-",component:"div"};var p,d=o;function h(){return(0,a.default)(this,h),(0,r.default)(this,p.apply(this,arguments))}d.displayName="CardHeader",t.default=n.default.config(d),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var i=f(n(2)),l=f(n(12)),a=f(n(4)),r=f(n(6)),o=f(n(7)),s=n(0),u=f(s),d=f(n(3)),c=f(n(13)),n=f(n(8));function f(e){return e&&e.__esModule?e:{default:e}}p=s.Component,(0,o.default)(h,p),h.prototype.render=function(){var e,t=this.props,n=t.prefix,a=t.component,r=t.inset,o=t.className,t=(0,l.default)(t,["prefix","component","inset","className"]),n=(0,c.default)(n+"card-divider",((e={})[n+"card-divider--inset"]=r,e),o);return u.default.createElement(a,(0,i.default)({},t,{className:n}))},o=s=h,s.propTypes={prefix:d.default.string,component:d.default.elementType,inset:d.default.bool,className:d.default.string},s.defaultProps={prefix:"next-",component:"hr"};var p,d=o;function h(){return(0,a.default)(this,h),(0,r.default)(this,p.apply(this,arguments))}d.displayName="CardDivider",t.default=n.default.config(d),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var r=f(n(2)),o=f(n(12)),a=f(n(4)),i=f(n(6)),l=f(n(7)),s=n(0),u=f(s),d=f(n(3)),c=f(n(13)),n=f(n(8));function f(e){return e&&e.__esModule?e:{default:e}}p=s.Component,(0,l.default)(h,p),h.prototype.render=function(){var e=this.props,t=e.prefix,n=e.className,a=e.component,e=(0,o.default)(e,["prefix","className","component"]);return u.default.createElement(a,(0,r.default)({},e,{className:(0,c.default)(t+"card-content-container",n)}))},l=s=h,s.propTypes={prefix:d.default.string,component:d.default.elementType,className:d.default.string},s.defaultProps={prefix:"next-",component:"div"};var p,d=l;function h(){return(0,a.default)(this,h),(0,i.default)(this,p.apply(this,arguments))}d.displayName="CardContent",t.default=n.default.config(d),e.exports=t.default},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";t.__esModule=!0;var a,m=S(n(12)),r=S(n(38)),g=S(n(2)),i=S(n(4)),l=S(n(6)),o=S(n(7)),L=S(n(0)),s=S(n(3)),u=n(23),y=S(n(13)),d=S(n(172)),c=n(30),v=S(n(33)),f=S(n(8)),p=S(n(44)),_=n(11),T=S(n(127)),D=S(n(385)),O=S(n(641)),h=S(n(128)),b=S(n(129)),w=S(n(386)),M=S(n(387)),k=S(n(173)),n=S(n(642));function S(e){return e&&e.__esModule?e:{default:e}}function E(){}var x,C=L.default.Children,k=(x=L.default.Component,(0,o.default)(N,x),N.prototype.getChildContext=function(){return{notRenderCellIndex:this.notRenderCellIndex||[],lockType:this.props.lockType}},N.getDerivedStateFromProps=function(e){var t={};return void 0!==e.sort&&(t.sort=e.sort),t},N.prototype.componentDidMount=function(){this.notRenderCellIndex=[]},N.prototype.shouldComponentUpdate=function(e,t,n){return!e.pure||!((0,d.default)(e,this.props)&&_.obj.shallowEqual(t,this.state)&&_.obj.shallowEqual(n,this.context))},N.prototype.componentDidUpdate=function(){this.notRenderCellIndex=[]},N.prototype.normalizeChildrenState=function(e){var t=e.columns;return e.children&&(t=this.normalizeChildren(e)),this.fetchInfoFromBinaryChildren(t)},N.prototype.normalizeChildren=function(e){var t=e.columns;return t=e.children?function n(e){var a=[];return C.forEach(e,function(e){var t;e&&(t=(0,g.default)({},e.props),e.ref&&(t.ref=e.ref),e&&-1<["function","object"].indexOf((0,r.default)(e.type))&&("column"===e.type._typeMark||"columnGroup"===e.type._typeMark)||_.log.warning("Use <Table.Column/>, <Table.ColumnGroup/> as child."),a.push(t),e.props.children&&(t.children=n(e.props.children)))}),a}(e.children):t},N.prototype.fetchInfoFromBinaryChildren=function(e){function r(e,t){return t=t||0,e.forEach(function(e){e.children?t=r(e.children,t):t+=1}),t}var a=!1,o=[],i=[],e=(function t(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:[],n=arguments[1];i[n]=i[n]||[],e.forEach(function(e){e.children?(a=!0,t(e.children,n+1)):o.push(e),i[n].push(e)})}(e,0),i.forEach(function(e,a){e.forEach(function(e,t){var n=e.children;n&&(n=r(n),e.colSpan=n,i[a][t]=e)})}),this.props),t=e.lockType,e=e.lengths,t="right"===t?e.origin-e.right:0;return this.addColIndex(o,t),{flatChildren:o,groupChildren:i,hasGroupHeader:a}},N.prototype.renderColGroup=function(e){e=e.map(function(e,t){e=e.width,e=e?{width:e}:{};return L.default.createElement("col",{style:e,key:t})});return L.default.createElement("colgroup",{key:"table-colgroup"},e)},N.prototype.renderTable=function(e,t){var n,a,r,o,i,l,s,u,d,c,f,p,h,m,g,y,v,_,b,w,M,k,S,E,x,C;return t.length||!t.length&&!this.props.lockType?(n=(M=this.props).hasHeader,a=M.components,r=M.prefix,o=M.wrapperContent,i=M.filterParams,l=M.locale,s=M.dataSource,u=M.emptyContent,d=M.loading,c=M.primaryKey,f=M.cellProps,p=M.rowProps,h=M.onRowClick,m=M.onRowMouseEnter,g=M.onRowMouseLeave,y=M.expandedIndexSimulate,v=M.pure,_=M.rtl,b=M.crossline,w=M.sortIcons,M=M.tableWidth,k=this.state.sort,S=void 0===(S=a.Header)?D.default:S,E=void 0===(E=a.Wrapper)?O.default:E,x=void 0===(x=a.Body)?T.default:x,C=this.renderColGroup(t),[L.default.createElement("div",{key:r+"table-column-resize-proxy",ref:this.getResizeProxyDomRef,className:r+"table-column-resize-proxy"}),L.default.createElement(E,{key:r+"table-wrapper",colGroup:C,ref:this.getWrapperRef,prefix:r,tableWidth:M},n?L.default.createElement(S,{prefix:r,rtl:_,pure:v,affixRef:this.getAffixRef,colGroup:C,className:r+"table-header",filterParams:i,tableEl:this.tableEl,columns:e,locale:l,headerCellRef:this.getHeaderCellRef,components:a,onFilter:this.onFilter,sort:k,onResizeChange:this.onResizeChange,onSort:this.onSort,sortIcons:w,tableWidth:M,resizeProxyDomRef:this.resizeProxyDomRef}):null,L.default.createElement(x,{prefix:r,rtl:_,pure:v,crossline:b,colGroup:C,className:r+"table-body",components:a,loading:d,emptyContent:u,getCellProps:f,primaryKey:c,getRowProps:p,columns:t,rowRef:this.getRowRef,cellRef:this.getCellRef,onRowClick:h,expandedIndexSimulate:y,tableEl:this.tableEl,onRowMouseEnter:m,onRowMouseLeave:g,dataSource:s,locale:l,onBodyMouseOver:this.onBodyMouseOver,onBodyMouseOut:this.onBodyMouseOut,tableWidth:M}),o)]):null},N.prototype.render=function(){var e,t=this.normalizeChildrenState(this.props),t=(this.groupChildren=t.groupChildren,this.flatChildren=t.flatChildren,this.renderTable(t.groupChildren,t.flatChildren)),n=this.props,a=n.className,r=n.style,o=n.hasBorder,i=n.isZebra,l=n.loading,s=n.size,u=n.hasHeader,d=n.prefix,c=(n.dataSource,n.entireDataSource,n.onSort,n.onResizeChange,n.onRowClick,n.onRowMouseEnter,n.onRowMouseLeave,n.onFilter,n.rowProps,n.cellProps,n.scrollToRow,n.primaryKey,n.components,n.wrapperContent,n.lockType,n.locale,n.expandedIndexSimulate,n.refs,n.pure,n.rtl),f=(n.emptyContent,n.filterParams,n.columns,n.sortIcons,n.loadingComponent),f=void 0===f?v.default:f,p=n.tableLayout,h=(n.tableWidth,n.ref),n=(0,m.default)(n,["className","style","hasBorder","isZebra","loading","size","hasHeader","prefix","dataSource","entireDataSource","onSort","onResizeChange","onRowClick","onRowMouseEnter","onRowMouseLeave","onFilter","rowProps","cellProps","scrollToRow","primaryKey","components","wrapperContent","lockType","locale","expandedIndexSimulate","refs","pure","rtl","emptyContent","filterParams","columns","sortIcons","loadingComponent","tableLayout","tableWidth","ref"]),s=(0,y.default)(((e={})[d+"table"]=!0,e[d+"table-"+s]=s,e[d+"table-layout-"+p]=p,e["only-bottom-border"]=!o,e["no-header"]=!u,e.zebra=i,e[a]=a,e)),p=(c&&(n.dir="rtl"),L.default.createElement("div",(0,g.default)({className:s,style:r,ref:h||this.getTableEl},_.obj.pickOthers(Object.keys(N.propTypes),n)),t));return l?L.default.createElement(f,{className:d+"table-loading"},p):p},a=o=N,o.Column=k.default,o.ColumnGroup=n.default,o.Header=D.default,o.Body=T.default,o.Wrapper=O.default,o.Row=h.default,o.Cell=b.default,o.Filter=w.default,o.Sort=M.default,o.propTypes=(0,g.default)({},f.default.propTypes,{prefix:s.default.string,pure:s.default.bool,rtl:s.default.bool,tableLayout:s.default.oneOf(["fixed","auto"]),tableWidth:s.default.number,className:s.default.string,style:s.default.object,size:s.default.oneOf(["small","medium"]),dataSource:s.default.array,entireDataSource:s.default.array,onRowClick:s.default.func,onRowMouseEnter:s.default.func,onRowMouseLeave:s.default.func,onSort:s.default.func,onFilter:s.default.func,onResizeChange:s.default.func,rowProps:s.default.func,cellProps:s.default.func,hasBorder:s.default.bool,hasHeader:s.default.bool,isZebra:s.default.bool,loading:s.default.bool,loadingComponent:s.default.func,filterParams:s.default.object,sort:s.default.object,sortIcons:s.default.object,locale:s.default.object,components:s.default.object,columns:s.default.array,emptyContent:s.default.node,primaryKey:s.default.oneOfType([s.default.symbol,s.default.string]),lockType:s.default.oneOf(["left","right"]),wrapperContent:s.default.any,refs:s.default.object,expandedRowRender:s.default.func,rowExpandable:s.default.func,expandedRowIndent:s.default.array,hasExpandedRowCtrl:s.default.bool,getExpandedColProps:s.default.func,openRowKeys:s.default.array,defaultOpenRowKeys:s.default.array,onRowOpen:s.default.func,onExpandedRowClick:s.default.func,fixedHeader:s.default.bool,maxBodyHeight:s.default.oneOfType([s.default.number,s.default.string]),rowSelection:s.default.object,stickyHeader:s.default.bool,offsetTop:s.default.number,affixProps:s.default.object,indent:s.default.number,isTree:s.default.bool,useVirtual:s.default.bool,rowHeight:s.default.oneOfType([s.default.number,s.default.func]),scrollToRow:s.default.number,onBodyScroll:s.default.func,expandedIndexSimulate:s.default.bool,crossline:s.default.bool,lengths:s.default.object}),o.defaultProps={dataSource:[],onRowClick:E,onRowMouseEnter:E,onRowMouseLeave:E,onSort:E,onFilter:E,onResizeChange:E,size:"medium",rowProps:E,cellProps:E,prefix:"next-",hasBorder:!0,hasHeader:!0,isZebra:!1,loading:!1,expandedIndexSimulate:!1,primaryKey:"id",components:{},locale:p.default.Table,crossline:!1},o.childContextTypes={notRenderCellIndex:s.default.array,lockType:s.default.oneOf(["left","right"])},o.contextTypes={getTableInstance:s.default.func,getTableInstanceForFixed:s.default.func,getTableInstanceForVirtual:s.default.func,getTableInstanceForExpand:s.default.func},a);function N(e,t){(0,i.default)(this,N);var o=(0,l.default)(this,x.call(this,e,t)),t=(o.state={sort:o.props.sort||{}},o.onSort=function(e,t,n){void 0===o.props.sort?o.setState({sort:n},function(){o.props.onSort(e,t,n)}):o.props.onSort(e,t,n)},o.onFilter=function(e){o.props.onFilter(e)},o.onResizeChange=function(e,t){o.props.onResizeChange(e,t)},o.getResizeProxyDomRef=function(e){if(!e)return o.resizeProxyDomRef;o.resizeProxyDomRef=e},o.getWrapperRef=function(e){if(!e)return o.wrapper;o.wrapper=e},o.getAffixRef=function(e){if(!e)return o.affixRef;o.affixRef=e},o.getHeaderCellRef=function(e,t,n){e="header_cell_"+e+"_"+t;if(!n)return o[e];o[e]=n},o.getRowRef=function(e,t){e="row_"+e;if(!t)return o[e];o[e]=t},o.getCellRef=function(e,t,n){e="cell_"+e+"_"+t;if(!n)return o[e];o[e]=n},o.handleColHoverClass=function(e,a,t){var n=o.props.crossline,r=t?"addClass":"removeClass";n&&o.props.entireDataSource.forEach(function(e,t){try{var n=(0,u.findDOMNode)(o.getCellRef(t,a));n&&_.dom[r](n,"hovered")}catch(e){return null}})},o.findEventTarget=function(e){var t=o.props.prefix,e=_.dom.getClosest(e.target,"td."+t+"table-cell"),t=e&&e.getAttribute("data-next-table-col"),n=e&&e.getAttribute("data-next-table-row");try{if((0,u.findDOMNode)(o.getCellRef(n,t))===e)return{colIndex:t,rowIndex:n}}catch(e){}return{}},o.onBodyMouseOver=function(e){var t;o.props.crossline&&(t=(e=o.findEventTarget(e)).colIndex,e=e.rowIndex,t&&e&&(o.handleColHoverClass(e,t,!0),o.colIndex=t,o.rowIndex=e))},o.onBodyMouseOut=function(e){var t;o.props.crossline&&(t=(e=o.findEventTarget(e)).colIndex,e=e.rowIndex,t&&e&&(o.handleColHoverClass(o.rowIndex,o.colIndex,!1),o.colIndex=-1,o.rowIndex=-1))},o.addColIndex=function(e){var n=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0;e.forEach(function(e,t){e.__colIndex=n+t})},o.getTableEl=function(e){o.tableEl=e},o.context),n=t.getTableInstance,a=t.getTableInstanceForVirtual,r=t.getTableInstanceForFixed,t=t.getTableInstanceForExpand;return n&&n(e.lockType,o),r&&r(e.lockType,o),a&&a(e.lockType,o),t&&t(o),o.notRenderCellIndex=[],o}k.displayName="Table",t.default=(0,c.polyfill)(k),e.exports=t.default},function(e,t){var i=Object.prototype.hasOwnProperty;function l(e,t){if(!e&&!t||e===t)return 1;if(!e==!t&&e.length===t.length){for(var n=0;n<e.length;n++)if(!function(e,t){for(var n in e)if(i.call(e,n))return e[n]===t[n]}(e[n],t[n]))return;return 1}}e.exports=function e(t,n){if(!t&&!n||t===n)return!0;if(!t!=!n)return!1;if("object"!=typeof t)return t===n;if(t instanceof Array){for(var a=0;a<t.length;a++)if(!e(t[a],n[a]))return!1;return t.length===n.length}return function e(t,n){var a,r=0,o=0;for(a in t)if(i.call(t,a)){switch(a){case"transform":if(l(t[a],n[a]))break;return!1;case"shadowOffset":if(e(t[a],n[a]))break;return!1;default:if(t[a]!==n[a])return!1}r++}for(a in n)i.call(n,a)&&o++;return r===o}(t,n)}},function(e,t,n){"use strict";t.__esModule=!0;var a=u(n(4)),o=u(n(6)),r=u(n(7)),i=u(n(0)),l=(n(23),u(n(3))),s=n(11);function u(e){return e&&e.__esModule?e:{default:e}}d=i.default.Component,(0,r.default)(c,d),c.prototype.componentWillUnmount=function(){this.destory()},c.prototype.destory=function(){s.events.off(document,"mousemove",this.onMouseMove),s.events.off(document,"mouseup",this.onMouseUp),this.select()},c.prototype.unSelect=function(){s.dom.setStyle(document.body,{userSelect:"none",cursor:"ew-resize"}),document.body.setAttribute("unselectable","on")},c.prototype.select=function(){s.dom.setStyle(document.body,{userSelect:"",cursor:""}),document.body.removeAttribute("unselectable")},c.prototype.render=function(){var e=this.props.prefix;return i.default.createElement("a",{className:e+"table-resize-handler",onMouseDown:this.onMouseDown})},r=n=c,n.propTypes={prefix:l.default.string,rtl:l.default.bool,onChange:l.default.func,dataIndex:l.default.string,tableEl:l.default.any,resizeProxyDomRef:l.default.any,cellDomRef:l.default.any,col:l.default.any,hasLock:l.default.bool,asyncResizable:l.default.bool},n.defaultProps={onChange:function(){}};var d,l=r;function c(){(0,a.default)(this,c);var r=(0,o.default)(this,d.call(this));return r.showResizeProxy=function(){r.props.resizeProxyDomRef.style.cssText="display:block;left:"+r.startLeft+"px;"},r.moveResizeProxy=function(){var e=r.startLeft+r.changedPageX;r.props.resizeProxyDomRef.style.cssText="left:"+e+"px;display:block;"},r.resetResizeProxy=function(){r.asyncResizeFlag&&r.props.onChange(r.props.dataIndex,r.changedPageX),r.changedPageX=0,r.tRight=0,r.asyncResizeFlag=!1,r.props.resizeProxyDomRef.style.cssText="display:none;"},r.movingLimit=function(){var e=r.startLeft+r.changedPageX;e>r.tRight&&(e=r.tRight,r.changedPageX=r.tRight-r.startLeft),e-r.cellLeft<r.cellMinWidth&&(r.changedPageX=r.cellLeft+r.cellMinWidth-r.startLeft),e<0&&(r.changedPageX=0-r.startLeft),r.props.col.width+r.changedPageX<r.cellMinWidth&&(r.changedPageX=r.cellMinWidth-r.props.col.width)},r.onMouseDown=function(e){var t,n=r.props.tableEl.getBoundingClientRect(),a=n.left,n=n.width;r.props.cellDomRef&&(t=r.props.cellDomRef.getBoundingClientRect().left,r.lastPageX=e.pageX,r.tLeft=a,r.tRight=n,r.startLeft=e.pageX-a,r.cellLeft=t-a,r.props.asyncResizable&&r.showResizeProxy(),s.events.on(document,"mousemove",r.onMouseMove),s.events.on(document,"mouseup",r.onMouseUp),r.unSelect())},r.onMouseMove=function(e){e=e.pageX;r.changedPageX=e-r.lastPageX,r.props.rtl&&(r.changedPageX=-r.changedPageX),r.props.hasLock&&!r.props.asyncResizable&&(r.cellLeft=r.props.cellDomRef.getBoundingClientRect().left-r.tLeft),r.movingLimit(),r.props.asyncResizable?(r.asyncResizeFlag=!0,r.moveResizeProxy()):(r.props.onChange(r.props.dataIndex,r.changedPageX),r.lastPageX=e)},r.onMouseUp=function(){r.props.asyncResizable&&r.resetResizeProxy(),r.startLeft=0,r.destory()},r.cellMinWidth=40,r.lastPageX=0,r.tRight=0,r.tLeft=0,r.cellLeft=0,r.startLeft=0,r.changedPageX=0,r.asyncResizeFlag=!1,r}l.displayName="Resize",t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=s(n(4)),r=s(n(6)),o=s(n(7)),i=n(0),l=s(i),n=s(n(3));function s(e){return e&&e.__esModule?e:{default:e}}u=i.Component,(0,o.default)(d,u),d.prototype.render=function(){var e=this.props,t=e.colGroup,n=e.children,a=e.tableWidth,e=e.component;return l.default.createElement(e,{role:"table",style:{width:a}},t,n)},d.propTypes={tableWidth:n.default.number};var u,i=d;function d(){return(0,a.default)(this,d),(0,r.default)(this,u.apply(this,arguments))}i.displayName="Wrapper",(t.default=i).defaultProps={component:"table"},i.propTypes={children:n.default.any,prefix:n.default.string,colGroup:n.default.any,component:n.default.string},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=l(n(4)),r=l(n(6)),o=l(n(7)),i=l(n(0)),n=l(n(3));function l(e){return e&&e.__esModule?e:{default:e}}s=i.default.Component,(0,o.default)(u,s),u.prototype.getChildContext=function(){return{parent:this}},u.prototype.render=function(){return null},o=i=u,i.propTypes={title:n.default.oneOfType([n.default.element,n.default.node,n.default.func])},i.childContextTypes={parent:n.default.any},i.defaultProps={title:"column-group"},i._typeMark="columnGroup";var s,n=o;function u(){return(0,a.default)(this,u),(0,r.default)(this,s.apply(this,arguments))}n.displayName="ColumnGroup",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var o=r(n(2)),i=r(n(12)),l=r(n(4)),s=r(n(6)),u=r(n(7));t.default=function(r){e=t=function(n){function a(e,t){(0,l.default)(this,a);var i=(0,s.default)(this,n.call(this,e,t));return i.onTreeNodeClick=function(e){var r=i.props.primaryKey,t=e[r],o=i.ds,n=[].concat(i.state.openRowKeys),a=n.indexOf(t);-1<a?function(t){function n(e){e.forEach(function(e){a.push(e[r]),e.children&&n(e.children)})}var a=[t];return o.forEach(function(e){e[r]===t&&e.children&&n(e.children)}),a}(t).forEach(function(e){e=n.indexOf(e);-1<e&&n.splice(e,1)}):n.push(t),"openRowKeys"in i.props||i.setState({openRowKeys:n}),i.props.onRowOpen(n,t,-1===a,e)},i.state={openRowKeys:e.openRowKeys||e.defaultOpenRowKeys||[]},i}return(0,u.default)(a,n),a.prototype.getChildContext=function(){return{openTreeRowKeys:this.state.openRowKeys,indent:this.props.indent,treeStatus:this.getTreeNodeStatus(this.ds),onTreeNodeClick:this.onTreeNodeClick,isTree:this.props.isTree}},a.getDerivedStateFromProps=function(e){return"openRowKeys"in e?{openRowKeys:e.openRowKeys||[]}:null},a.prototype.normalizeDataSource=function(e){var r=this.state.openRowKeys,o=this.props.primaryKey,i=[];return function t(e,n){var a=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;e.forEach(function(e){0===(e.__level=n)||-1<r.indexOf(a)?e.__hidden=!1:e.__hidden=!0,i.push(e),e.children&&t(e.children,n+1,e[o])})}(e,0),this.ds=i},a.prototype.getTreeNodeStatus=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:[],t=this.state.openRowKeys,n=this.props.primaryKey,a=[];return t.forEach(function(t){e.forEach(function(e){e[n]===t&&e.children&&e.children.forEach(function(e){a.push(e[n])})})}),a},a.prototype.render=function(){var e=this.props,t=e.components,n=e.isTree,a=e.dataSource,e=(e.indent,(0,i.default)(e,["components","isTree","dataSource","indent"]));return n&&((t=(0,o.default)({},t)).Row||(t.Row=f.default),t.Cell||(t.Cell=p.default),a=this.normalizeDataSource(a)),d.default.createElement(r,(0,o.default)({},e,{dataSource:a,components:t}))},a}(d.default.Component),t.TreeRow=f.default,t.TreeCell=p.default,t.propTypes=(0,o.default)({openRowKeys:a.default.array,defaultOpenRowKeys:a.default.array,onRowOpen:a.default.func,primaryKey:a.default.oneOfType([a.default.symbol,a.default.string]),indent:a.default.number,isTree:a.default.bool,locale:a.default.object},r.propTypes),t.defaultProps=(0,o.default)({},r.defaultProps,{primaryKey:"id",onRowOpen:m,components:{},indent:12}),t.childContextTypes={openTreeRowKeys:a.default.array,indent:a.default.number,treeStatus:a.default.array,onTreeNodeClick:a.default.func,isTree:a.default.bool};var e,t=e;return t.displayName="TreeTable",(0,h.statics)(t,r),(0,c.polyfill)(t)};var d=r(n(0)),a=r(n(3)),c=n(30),f=r(n(644)),p=r(n(645)),h=n(67);function r(e){return e&&e.__esModule?e:{default:e}}var m=function(){};e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var l=f(n(2)),s=f(n(12)),a=f(n(4)),r=f(n(6)),o=f(n(7)),u=f(n(0)),i=f(n(3)),d=f(n(13)),c=f(n(388));function f(e){return e&&e.__esModule?e:{default:e}}p=u.default.Component,(0,o.default)(h,p),h.prototype.render=function(){var e=this.props,t=e.className,n=e.record,a=e.primaryKey,r=e.prefix,e=(0,s.default)(e,["className","record","primaryKey","prefix"]),o=this.context,i=o.treeStatus,o=o.openRowKeys,o=(0,d.default)(((i={hidden:!(-1<i.indexOf(n[a]))&&0!==n.__level})[r+"table-row-level-"+n.__level]=!0,i.opened=-1<o.indexOf(n[a]),i[t]=t,i));return u.default.createElement(c.default,(0,l.default)({},e,{record:n,className:o,primaryKey:a,prefix:r}))},o=n=h,n.propTypes=(0,l.default)({},c.default.propTypes),n.defaultProps=(0,l.default)({},c.default.defaultProps),n.contextTypes={treeStatus:i.default.array,openRowKeys:i.default.array};var p,n=o;function h(){return(0,a.default)(this,h),(0,r.default)(this,p.apply(this,arguments))}n.displayName="TreeRow",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var h=s(n(2)),o=s(n(4)),i=s(n(6)),a=s(n(7)),m=s(n(0)),r=s(n(3)),g=s(n(24)),l=n(11),y=s(n(129));function s(e){return e&&e.__esModule?e:{default:e}}u=m.default.Component,(0,a.default)(d,u),d.prototype.render=function(){var t=this,e=this.props,n=e.colIndex,a=e.record,r=e.prefix,o=e.primaryKey,i=e.locale,l=e.rtl,e=e.children,s=this.context,u=s.openTreeRowKeys,d=s.indent,c=s.isTree,f=void 0,p=void 0;return n===(s.rowSelection?1:0)&&(c&&((n={})[l?"paddingRight":"paddingLeft"]=d*(a.__level+1),f=n,p=m.default.createElement(g.default,{size:"xs",rtl:l,className:r+"table-tree-placeholder",type:"arrow-right"}),a.children&&a.children.length&&(s=-1<u.indexOf(a[o]),p=m.default.createElement(g.default,{className:r+"table-tree-arrow",type:s?"arrow-down":"arrow-right",size:"xs",rtl:l,onClick:function(e){return t.onTreeNodeClick(a,e)},onKeyDown:function(e){return t.expandedKeydown(a,e)},role:"button",tabIndex:"0","aria-expanded":s,"aria-label":s?i.expanded:i.folded})))),m.default.createElement(y.default,(0,h.default)({},this.props,{innerStyle:f,isIconLeft:!!p}),e,p)},a=n=d,n.propTypes=(0,h.default)({indent:r.default.number,locale:r.default.object},y.default.propTypes),n.defaultProps=(0,h.default)({},y.default.defaultProps,{component:"td",indent:20}),n.contextTypes={openTreeRowKeys:r.default.array,indent:r.default.number,onTreeNodeClick:r.default.func,isTree:r.default.bool,rowSelection:r.default.object};var u,n=a;function d(){var e,n;(0,o.default)(this,d);for(var t=arguments.length,a=Array(t),r=0;r<t;r++)a[r]=arguments[r];return(e=n=(0,i.default)(this,u.call.apply(u,[this].concat(a)))).onTreeNodeClick=function(e,t){t.stopPropagation(),n.context.onTreeNodeClick(e)},n.expandedKeydown=function(e,t){t.preventDefault(),t.stopPropagation(),t.keyCode===l.KEYCODE.ENTER&&n.onTreeNodeClick(e,t)},(0,i.default)(n,e)}n.displayName="TreeCell",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var s=l(n(2)),u=l(n(12)),i=l(n(4)),d=l(n(6)),a=l(n(7));t.default=function(l,e){t=n=function(r){function o(){var e,s;(0,i.default)(this,o);for(var t=arguments.length,n=Array(t),a=0;a<t;a++)n[a]=arguments[a];return(e=s=(0,d.default)(this,r.call.apply(r,[this].concat(n)))).state={},s.getNode=function(e,t,n){n=n?n.charAt(0).toUpperCase()+n.substr(1):"",s[""+e+n+"Node"]=t},s.getTableInstance=function(e,t){s.tableInc=t},s.onFixedScrollSync=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{currentTarget:{}},t=e.currentTarget||{},n=s.headerNode,a=s.bodyNode,r=t.scrollLeft,o=!(r<t.scrollWidth-t.clientWidth),i=s.props,l=i.prefix;i.loading||o===s.scrollToRightEnd||(s.scrollToRightEnd=o,i=s.getTableNode(),h.dom[o?"removeClass":"addClass"](i,l+"table-scrolling-to-right")),e.currentTarget===e.target&&(t===a?n&&r!==n.scrollLeft&&(n.scrollLeft=r):t===n&&a&&r!==a.scrollLeft&&(a.scrollLeft=r))},(0,d.default)(s,e)}return(0,a.default)(o,r),o.prototype.getChildContext=function(){return{fixedHeader:this.props.fixedHeader,maxBodyHeight:this.props.maxBodyHeight,getTableInstanceForFixed:this.getTableInstance,onFixedScrollSync:this.onFixedScrollSync,getNode:this.getNode}},o.prototype.componentDidMount=function(){this.adjustFixedHeaderSize(),this.scrollToRightEnd=void 0,this.onFixedScrollSync({currentTarget:this.bodyNode,target:this.bodyNode})},o.prototype.componentDidUpdate=function(){this.adjustFixedHeaderSize(),this.onFixedScrollSync({currentTarget:this.bodyNode,target:this.bodyNode})},o.prototype.getTableNode=function(){var e=this.tableInc;try{return(0,f.findDOMNode)(e.tableEl)}catch(e){return null}},o.prototype.adjustFixedHeaderSize=function(){var e,t=this.props,n=t.hasHeader,a=t.rtl,t=t.prefix,r=a?"paddingLeft":"paddingRight",a=a?"marginLeft":"marginRight",o=this.bodyNode,i=+h.dom.scrollbar().width||0;n&&!this.props.lockType&&o&&(e=o.scrollHeight>o.clientHeight,o.scrollWidth,o.clientWidth,o={},e||(o[r]=0,o[a]=0),+i&&(o.marginBottom=-i,o.paddingBottom=i,e&&(o[a]=i)),h.dom.setStyle(this.headerNode,o)),n&&!this.props.lockType&&this.headerNode&&(r=this.headerNode.querySelector("."+t+"table-header-fixer"),e=h.dom.getStyle(this.headerNode,"height"),a=h.dom.getStyle(this.headerNode,"paddingBottom"),h.dom.setStyle(r,{width:i,height:e-a}))},o.prototype.render=function(){var e=this.props,t=e.components,n=e.className,a=e.prefix,r=e.fixedHeader,o=e.lockType,i=e.dataSource,e=(e.maxBodyHeight,(0,u.default)(e,["components","className","prefix","fixedHeader","lockType","dataSource","maxBodyHeight"]));return r&&((t=(0,s.default)({},t)).Header||(t.Header=m.default),t.Body||(t.Body=g.default),t.Wrapper||(t.Wrapper=y.default),n=(0,p.default)(((r={})[a+"table-fixed"]=!0,r[a+"table-wrap-empty"]=!i.length,r[n]=n,r))),c.default.createElement(l,(0,s.default)({},e,{dataSource:i,lockType:o,components:t,className:n,prefix:a}))},o}(c.default.Component),n.FixedHeader=m.default,n.FixedBody=g.default,n.FixedWrapper=y.default,n.propTypes=(0,s.default)({hasHeader:r.default.bool,fixedHeader:r.default.bool,maxBodyHeight:r.default.oneOfType([r.default.number,r.default.string])},l.propTypes),n.defaultProps=(0,s.default)({},l.defaultProps,{hasHeader:!0,fixedHeader:!1,maxBodyHeight:200,components:{},refs:{},prefix:"next-"}),n.childContextTypes={fixedHeader:r.default.bool,getNode:r.default.func,onFixedScrollSync:r.default.func,getTableInstanceForFixed:r.default.func,maxBodyHeight:r.default.oneOfType([r.default.number,r.default.string])};var t,n=t;return n.displayName="FixedTable",(0,o.statics)(n,l),n};var c=l(n(0)),r=l(n(3)),f=n(23),p=l(n(13)),h=n(11),m=l(n(130)),g=l(n(390)),y=l(n(131)),o=n(67);function l(e){return e&&e.__esModule?e:{default:e}}e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var i=o(n(12)),f=o(n(2)),r=o(n(4)),l=o(n(6)),s=o(n(7)),u=(t.default=function(o){e=t=function(n){function a(e,t){(0,r.default)(this,a);var c=(0,l.default)(this,n.call(this,e,t));return c.addSelection=function(e){var t=c.props,n=t.prefix,a=t.rowSelection,t=t.size,a=a.columnProps&&a.columnProps()||{};e.find(function(e){return"selection"===e.key})||e.unshift((0,f.default)({key:"selection",title:c.renderSelectionHeader.bind(c),cell:c.renderSelectionBody.bind(c),width:"small"===t?34:50,className:n+"table-selection "+n+"table-prerow",__normalized:!0},a))},c.renderSelectionHeader=function(){var e=c.selectAllRow,t={},n=c.props,a=n.rowSelection,r=n.primaryKey,o=n.dataSource,i=n.entireDataSource,n=n.locale,l=c.state.selectedRowKeys,s=a.mode||"multiple",u=!!l.length,d=!1,i=(c.flatDataSource(i||o).filter(function(e,t){return!a.getProps||!(a.getProps(e,t)||{}).disabled}).map(function(e){return e[r]}).forEach(function(e){-1===l.indexOf(e)?u=!1:d=!0}),t.onClick=b(function(e){e.stopPropagation()},t.onClick),a.titleProps&&a.titleProps()||{});return u&&(d=!1),["multiple"===s?p.default.createElement(h.default,(0,f.default)({key:"_total",indeterminate:d,"aria-label":n.selectAll,checked:u,onChange:e},t,i)):null,a.titleAddons&&a.titleAddons()]},c.renderSelectionBody=function(e,t,n){var a=c.props,r=a.rowSelection,a=a.primaryKey,o=c.state.selectedRowKeys,i=r.mode||"multiple",o=-1<o.indexOf(n[a]),a=c.selectOneRow.bind(c,t,n),r=r.getProps&&r.getProps(n,t)||{};return r.onClick=b(function(e){e.stopPropagation()},r.onClick),"multiple"===i?p.default.createElement(h.default,(0,f.default)({checked:o,onChange:a},r)):p.default.createElement(m.default,(0,f.default)({checked:o,onChange:a},r))},c.selectAllRow=function(a,e){var r=[].concat(c.state.selectedRowKeys),t=c.props,n=t.rowSelection,o=t.primaryKey,i=t.dataSource,t=t.entireDataSource,l=c.state.selectedRowKeys,s=n.getProps,u={},d=[];c.flatDataSource(t||i).forEach(function(e,t){var n=e[o];s&&(u=s(e,t)||{}),a&&(!u.disabled||-1<l.indexOf(n))||u.disabled&&-1<l.indexOf(n)?(r.push(n),d.push(e)):-1<(t=r.indexOf(n))&&r.splice(t,1)}),d=w(d,o),"function"==typeof n.onSelectAll&&n.onSelectAll(a,d),c.triggerSelection(n,w(r),d),e.stopPropagation()},c.state={selectedRowKeys:e.rowSelection&&"selectedRowKeys"in e.rowSelection&&e.rowSelection.selectedRowKeys||[]},c}return(0,s.default)(a,n),a.prototype.getChildContext=function(){return{rowSelection:this.props.rowSelection,selectedRowKeys:this.state.selectedRowKeys}},a.getDerivedStateFromProps=function(e){return e.rowSelection&&"selectedRowKeys"in e.rowSelection?{selectedRowKeys:e.rowSelection.selectedRowKeys||[]}:null},a.prototype.normalizeChildren=function(e){var t=this.props,n=t.prefix,a=t.rowSelection,t=t.size;return a&&(e=u.Children.map(e,function(e,t){return p.default.cloneElement(e,{key:t})}),a=a.columnProps&&a.columnProps()||{},e.unshift(p.default.createElement(v.default,(0,f.default)({key:"selection",title:this.renderSelectionHeader.bind(this),cell:this.renderSelectionBody.bind(this),width:"small"===t?34:50,className:n+"table-selection "+n+"table-prerow",__normalized:!0},a)))),e},a.prototype.selectOneRow=function(e,t,n,a){var r=[].concat(this.state.selectedRowKeys),o=this.props,i=o.primaryKey,l=o.rowSelection,s=o.dataSource,o=o.entireDataSource,u=l.mode||"multiple",d=t[i],u=(d||c.log.warning("Can't get value from record using given "+i+" as primaryKey."),"multiple"===u?n?r.push(d):(u=r.indexOf(d),r.splice(u,1)):n&&(r=[d]),s),d=(Array.isArray(o)&&o.length>s.length&&(u=o),w(u.filter(function(e){return-1<r.indexOf(e[i])}),i));"function"==typeof l.onSelect&&l.onSelect(n,t,d),this.triggerSelection(l,r,d),a.stopPropagation()},a.prototype.triggerSelection=function(e,t,n){"selectedRowKeys"in e||this.setState({selectedRowKeys:t}),"function"==typeof e.onChange&&e.onChange(t,n)},a.prototype.flatDataSource=function(e){var n,a,r=e,t=this.context.listHeader;return t&&(r=[],n=t.hasChildrenSelection,a=t.hasSelection,e.forEach(function(e){var t=e.children;a&&r.push(e),t&&n&&(r=r.concat(t))})),r},a.prototype.render=function(){var e=this.props,t=e.rowSelection,n=e.components,a=e.children,r=e.columns,e=(0,i.default)(e,["rowSelection","components","children","columns"]);return t&&(r&&!a?this.addSelection(r):a=this.normalizeChildren(a||[]),(n=(0,f.default)({},n)).Row=n.Row||y.default),p.default.createElement(o,(0,f.default)({},e,{columns:r,components:n,children:a}))},a}(p.default.Component),t.SelectionRow=y.default,t.propTypes=(0,f.default)({rowSelection:a.default.object,primaryKey:a.default.oneOfType([a.default.symbol,a.default.string]),dataSource:a.default.array,entireDataSource:a.default.array},o.propTypes),t.defaultProps=(0,f.default)({},o.defaultProps,{locale:g.default.Table,primaryKey:"id",prefix:"next-"}),t.contextTypes={listHeader:a.default.any},t.childContextTypes={rowSelection:a.default.object,selectedRowKeys:a.default.array};var e,t=e;return t.displayName="SelectionTable",(0,_.statics)(t,o),(0,d.polyfill)(t)},n(0)),p=o(u),a=o(n(3)),d=n(30),h=o(n(71)),m=o(n(88)),c=n(11),g=o(n(44)),y=o(n(388)),v=o(n(173)),_=n(67);function o(e){return e&&e.__esModule?e:{default:e}}var b=c.func.makeChain,w=function(e){var n=1<arguments.length&&void 0!==arguments[1]?arguments[1]:"this",a={},r=[];return e.forEach(function(e){var t=void 0,t="this"===n?e:e[n];a[t]||(r.push(e),a[t]=!0)}),r};e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var u=s(n(12)),d=s(n(2)),i=s(n(4)),l=s(n(6)),a=s(n(7)),c=(t.default=function(s,e){t=n=function(r){function o(){var e,u;(0,i.default)(this,o);for(var t=arguments.length,n=Array(t),a=0;a<t;a++)n[a]=arguments[a];return(e=u=(0,l.default)(this,r.call.apply(r,[this].concat(n)))).state={openRowKeys:u.props.openRowKeys||u.props.defaultOpenRowKeys||[]},u.saveExpandedRowRef=function(e,t){u.expandedRowRefs||(u.expandedRowRefs={}),u.expandedRowRefs[e]=t},u.setExpandedWidth=function(){var e=u.props.prefix,t=u.getTableNode(),n=+(t&&t.clientWidth)-1||"100%",a=t&&t.querySelector("."+e+"table-body");Object.keys(u.expandedRowRefs||{}).forEach(function(e){g.dom.setStyle(u.expandedRowRefs[e],{width:a&&a.clientWidth||n})})},u.getTableInstance=function(e){u.tableInc=e},u.expandedKeydown=function(e,t,n,a){a.preventDefault(),a.stopPropagation(),a.keyCode===g.KEYCODE.ENTER&&u.onExpandedClick(e,t,n,a)},u.renderExpandedCell=function(e,t,n){var a,r=u.props,o=r.getExpandedColProps,i=r.prefix,l=r.locale,r=r.rowExpandable;if("function"==typeof r&&!r(n,t))return"";var r=u.state.openRowKeys,s=u.props.primaryKey,r=-1<r.indexOf(n[s]),s=r?f.default.createElement(m.default,{type:"minus",size:"xs",className:i+"table-expand-unfold"}):f.default.createElement(m.default,{type:"add",size:"xs",className:i+"table-expand-fold"}),o=o(n,t)||{},i=(0,h.default)(((a={})[i+"table-expanded-ctrl"]=!0,a.disabled=o.disabled,a[o.className]=o.className,a));return o.disabled||(o.onClick=u.onExpandedClick.bind(u,e,n,t)),f.default.createElement("span",(0,d.default)({},o,{role:"button",tabIndex:"0",onKeyDown:u.expandedKeydown.bind(u,e,n,t),"aria-label":r?l.expanded:l.folded,"aria-expanded":r,className:i}),s)},u.addExpandCtrl=function(e){var t=u.props,n=t.prefix,t=t.size;e.find(function(e){return"expanded"===e.key})||e.unshift({key:"expanded",title:"",cell:u.renderExpandedCell.bind(u),width:"small"===t?34:50,className:n+"table-expanded "+n+"table-prerow",__normalized:!0})},(0,l.default)(u,e)}return(0,a.default)(o,r),o.prototype.getChildContext=function(){return{openRowKeys:this.state.openRowKeys,expandedRowRender:this.props.expandedRowRender,expandedIndexSimulate:this.props.expandedIndexSimulate,expandedRowWidthEquals2Table:e,getExpandedRowRef:this.saveExpandedRowRef,getTableInstanceForExpand:this.getTableInstance,expandedRowIndent:e?[0,0]:this.props.expandedRowIndent}},o.getDerivedStateFromProps=function(e){return"openRowKeys"in e?{openRowKeys:e.openRowKeys||[]}:null},o.prototype.componentDidMount=function(){this.setExpandedWidth(),g.events.on(window,"resize",this.setExpandedWidth)},o.prototype.componentDidUpdate=function(){this.setExpandedWidth()},o.prototype.componentWillUnmount=function(){g.events.off(window,"resize",this.setExpandedWidth)},o.prototype.getTableNode=function(){var e=this.tableInc;try{return(0,p.findDOMNode)(e.tableEl)}catch(e){return null}},o.prototype.onExpandedClick=function(e,t,n,a){var r=[].concat(this.state.openRowKeys),o=t[this.props.primaryKey],i=r.indexOf(o);-1<i?r.splice(i,1):r.push(o),"openRowKeys"in this.props||this.setState({openRowKeys:r}),this.props.onRowOpen(r,o,-1===i,t),a.stopPropagation()},o.prototype.normalizeChildren=function(e){var t=this.props,n=t.prefix,t=t.size,e=c.Children.map(e,function(e,t){return f.default.cloneElement(e,{key:t})});return e.unshift(f.default.createElement(v.default,{title:"",key:"expanded",cell:this.renderExpandedCell.bind(this),width:"small"===t?34:50,className:n+"table-expanded "+n+"table-prerow",__normalized:!0})),e},o.prototype.normalizeDataSource=function(e){var n=[];return e.forEach(function(e){var t=(0,d.default)({},e);t.__expanded=!0,n.push(e,t)}),n},o.prototype.render=function(){var e=this.props,t=e.components,n=(e.openRowKeys,e.expandedRowRender),a=(e.rowExpandable,e.hasExpandedRowCtrl),r=e.children,o=e.columns,i=e.dataSource,l=e.entireDataSource,e=(e.getExpandedColProps,e.expandedRowIndent,e.onRowOpen,e.onExpandedRowClick,(0,u.default)(e,["components","openRowKeys","expandedRowRender","rowExpandable","hasExpandedRowCtrl","children","columns","dataSource","entireDataSource","getExpandedColProps","expandedRowIndent","onRowOpen","onExpandedRowClick"]));return n&&!t.Row&&((t=(0,d.default)({},t)).Row=y.default,i=this.normalizeDataSource(i),l=this.normalizeDataSource(l)),n&&a&&(o&&!r?this.addExpandCtrl(o):r=this.normalizeChildren(r||[])),f.default.createElement(s,(0,d.default)({},e,{columns:o,dataSource:i,entireDataSource:l,components:t}),r)},o}(f.default.Component),n.ExpandedRow=y.default,n.propTypes=(0,d.default)({expandedRowRender:r.default.func,rowExpandable:r.default.func,expandedRowIndent:r.default.array,openRowKeys:r.default.array,defaultOpenRowKeys:r.default.array,hasExpandedRowCtrl:r.default.bool,getExpandedColProps:r.default.func,onRowOpen:r.default.func,onExpandedRowClick:r.default.func,locale:r.default.object},s.propTypes),n.defaultProps=(0,d.default)({},s.defaultProps,{getExpandedColProps:b,onRowOpen:b,hasExpandedRowCtrl:!0,components:{},expandedRowIndent:e?[0,0]:[1,0],prefix:"next-"}),n.childContextTypes={openRowKeys:r.default.array,expandedRowRender:r.default.func,expandedIndexSimulate:r.default.bool,expandedRowWidthEquals2Table:r.default.bool,expandedRowIndent:r.default.array,getExpandedRowRef:r.default.func,getTableInstanceForExpand:r.default.func};var t,n=t;return n.displayName="ExpandedTable",(0,_.statics)(n,s),(0,o.polyfill)(n)},n(0)),f=s(c),p=n(23),r=s(n(3)),h=s(n(13)),o=n(30),m=s(n(24)),g=n(11),y=s(n(389)),v=s(n(173)),_=n(67);function s(e){return e&&e.__esModule?e:{default:e}}var b=function(){};e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var f=c(n(2)),p=c(n(12)),o=c(n(4)),i=c(n(6)),l=c(n(7));t.default=function(c){e=t=function(a){function r(e,t){(0,o.default)(this,r);var n=(0,i.default)(this,a.call(this,e,t)),t=(n.onScroll=function(){var e,t=n.bodyNode.scrollTop;t!==n.lastScrollTop&&(e=n.computeScrollToRow(t),"scrollToRow"in n.props||n.setState({scrollToRow:e}),n.props.onBodyScroll(e),n.lastScrollTop=t)},n.getBodyNode=function(e,t){t=t?t.charAt(0).toUpperCase()+t.substr(1):"",n["body"+t+"Node"]=e},n.getTableInstance=function(e,t){e=e?e.charAt(0).toUpperCase()+e.substr(1):"",n["table"+e+"Inc"]=t},e.useVirtual),e=e.dataSource,t=t&&e&&0<e.length;return n.state={rowHeight:n.props.rowHeight,scrollToRow:n.props.scrollToRow,height:n.props.maxBodyHeight,hasVirtualData:t},n}return(0,l.default)(r,a),r.prototype.getChildContext=function(){return{onVirtualScroll:this.onScroll,bodyHeight:this.computeBodyHeight(),innerTop:this.computeInnerTop(),getBodyNode:this.getBodyNode,getTableInstanceForVirtual:this.getTableInstance,rowSelection:this.rowSelection}},r.getDerivedStateFromProps=function(e,t){var n={};return"maxBodyHeight"in e&&t.height!==e.maxBodyHeight&&(n.height=e.maxBodyHeight),"scrollToRow"in e&&(n.scrollToRow=e.scrollToRow),t.useVirtual===e.useVirtual&&t.dataSource===e.dataSource||(n.hasVirtualData=e.useVirtual&&e.dataSource&&0<e.dataSource.length),n},r.prototype.componentDidMount=function(){this.state.hasVirtualData&&this.bodyNode&&(this.lastScrollTop=this.bodyNode.scrollTop),this.adjustScrollTop(),this.adjustSize(),this.reComputeSize()},r.prototype.componentDidUpdate=function(){this.adjustScrollTop(),this.adjustSize(),this.reComputeSize()},r.prototype.reComputeSize=function(){var e=this.state,t=e.rowHeight,e=e.hasVirtualData;"function"==typeof t&&e&&(e=(t=this.getRowNode())&&t.clientHeight)!==this.state.rowHeight&&this.setState({rowHeight:e})},r.prototype.computeBodyHeight=function(){var e=this.state.rowHeight,t=this.props.dataSource;if("function"==typeof e)return 0;var n=0;return t.forEach(function(e){e.__hidden||(n+=1)}),n*e},r.prototype.computeInnerTop=function(){var e=this.state.rowHeight;return"function"==typeof e?0:Math.max(this.start-y,0)*e},r.prototype.getVisibleRange=function(e){var t=this.state,n=t.height,t=t.rowHeight,a=this.props.dataSource.length,r=void 0,o=0,i=0,r="function"==typeof t?1:(o=parseInt(u.dom.getPixels(n)/t,10),"number"==typeof e&&(i=e<a?e:0),Math.min(+i+1+o+10,a));return this.end=r,this.visibleCount=o,{start:i,end:r}},r.prototype.adjustScrollTop=function(){this.state.hasVirtualData&&this.bodyNode&&(this.bodyNode.scrollTop=this.lastScrollTop%this.state.rowHeight+this.state.rowHeight*this.state.scrollToRow)},r.prototype.adjustSize=function(){var e,t,n,a,r;this.state.hasVirtualData&&this.bodyNode&&(e=(r=this.bodyNode).querySelector("div"),t=r.clientHeight,r=r.clientWidth,n=this.tableInc,n=(0,s.findDOMNode)(n),a=this.props.prefix,r<(n=(r=n.querySelector("."+a+"table-header table"))&&r.clientWidth)?(u.dom.setStyle(e,"min-width",n),a=this.bodyLeftNode,r=this.bodyRightNode,a&&u.dom.setStyle(a,"max-height",t),r&&u.dom.setStyle(r,"max-height",t)):u.dom.setStyle(e,"min-width","auto"))},r.prototype.computeScrollToRow=function(e){var t=this.state.rowHeight,e=parseInt(e/t);return this.start=e},r.prototype.getRowNode=function(){try{return(0,s.findDOMNode)(this.tableInc.getRowRef(0))}catch(e){return null}},r.prototype.render=function(){var e,a,r,o,t=this.props,n=(t.useVirtual,t.components),i=t.dataSource,l=t.fixedHeader,s=(t.rowHeight,t.scrollToRow),t=(t.onBodyScroll,(0,p.default)(t,["useVirtual","components","dataSource","fixedHeader","rowHeight","scrollToRow","onBodyScroll"])),u=i,d=i;return this.rowSelection=this.props.rowSelection,this.state.hasVirtualData&&(d=[],n=(0,f.default)({},n),e=this.getVisibleRange(this.state.scrollToRow),a=e.start,r=e.end,o=-1,i.forEach(function(e,t,n){e.__hidden||(o+=1)>=Math.max(a-y,0)&&o<r&&d.push(e),e.__rowIndex=t}),n.Body||(n.Body=m.default),l=!0),h.default.createElement(c,(0,f.default)({},t,{scrollToRow:s,dataSource:d,entireDataSource:u,components:n,fixedHeader:l}))},r}(h.default.Component),t.VirtualBody=m.default,t.propTypes=(0,f.default)({useVirtual:a.default.bool,rowHeight:a.default.oneOfType([a.default.number,a.default.func]),maxBodyHeight:a.default.oneOfType([a.default.number,a.default.string]),primaryKey:a.default.oneOfType([a.default.symbol,a.default.string]),dataSource:a.default.array,onBodyScroll:a.default.func},c.propTypes),t.defaultProps=(0,f.default)({},c.defaultProps,{primaryKey:"id",rowHeight:g,maxBodyHeight:200,components:{},prefix:"next-",onBodyScroll:g}),t.childContextTypes={onVirtualScroll:a.default.func,bodyHeight:a.default.number,innerTop:a.default.number,getBodyNode:a.default.func,getTableInstanceForVirtual:a.default.func,rowSelection:a.default.object};var e,t=e;return t.displayName="VirtualTable",(0,d.statics)(t,c),(0,r.polyfill)(t)};var h=c(n(0)),s=n(23),a=c(n(3)),r=n(30),u=n(11),m=c(n(650)),d=n(67);function c(e){return e&&e.__esModule?e:{default:e}}var g=function(){},y=10;e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var u=s(n(2)),d=s(n(12)),o=s(n(4)),i=s(n(6)),a=s(n(7)),c=s(n(0)),r=n(23),l=s(n(3)),f=s(n(127));function s(e){return e&&e.__esModule?e:{default:e}}p=c.default.Component,(0,a.default)(h,p),h.prototype.componentDidMount=function(){var e=(0,r.findDOMNode)(this);this.context.getNode("body",e),this.context.getBodyNode(e,this.context.lockType),this.context.getLockNode("body",e,this.context.lockType)},h.prototype.render=function(){var e=this.props,t=e.prefix,n=e.className,a=e.colGroup,r=e.tableWidth,e=(0,d.default)(e,["prefix","className","colGroup","tableWidth"]),o=this.context,i=o.maxBodyHeight,l=o.bodyHeight,o=o.innerTop,r={width:r},s={position:"relative"};return i<l&&(s.height=l),c.default.createElement("div",{style:{maxHeight:i},className:n,onScroll:this.onScroll},c.default.createElement("div",{style:s,ref:this.virtualScrollRef},c.default.createElement("div",{style:{position:"relative",transform:"translateY("+o+"px)",willChange:"transform"}},c.default.createElement("table",{ref:this.tableRef,style:r},a,c.default.createElement(f.default,(0,u.default)({},e,{prefix:t}))))))},a=n=h,n.propTypes={children:l.default.any,prefix:l.default.string,className:l.default.string,colGroup:l.default.any,tableWidth:l.default.number},n.contextTypes={maxBodyHeight:l.default.oneOfType([l.default.number,l.default.string]),onBodyScroll:l.default.func,onFixedScrollSync:l.default.func,onVirtualScroll:l.default.func,onLockBodyScroll:l.default.func,bodyHeight:l.default.number,innerTop:l.default.number,getNode:l.default.func,getBodyNode:l.default.func,getLockNode:l.default.func,lockType:l.default.oneOf(["left","right"])};var p,n=a;function h(){var e,t;(0,o.default)(this,h);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,p.call.apply(p,[this].concat(a)))).tableRef=function(e){t.tableNode=e},t.virtualScrollRef=function(e){t.virtualScrollNode=e},t.onScroll=function(e){t.context.onFixedScrollSync(e),t.context.onLockBodyScroll(e),t.context.onVirtualScroll()},(0,i.default)(t,e)}n.displayName="VirtualBody",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var f=c(n(12)),r=c(n(38)),p=c(n(2)),o=c(n(4)),i=c(n(6)),l=c(n(7)),s=(t.default=function(c){e=t=function(n){function a(e,t){(0,o.default)(this,a);var r=(0,i.default)(this,n.call(this,e,t));return r.state={},r.getTableInstance=function(e,t){e=e?e.charAt(0).toUpperCase()+e.substr(1):"",r["table"+e+"Inc"]=t},r.getNode=function(e,t,n){n=n?n.charAt(0).toUpperCase()+n.substr(1):"",r[""+e+n+"Node"]=t,"header"!==e||r.innerHeaderNode||n||(r.innerHeaderNode=r.headerNode.querySelector("div"))},r.onRowMouseEnter=function(e,t){r.isLock()&&[r.getRowNode(t),r.getRowNode(t,"left"),r.getRowNode(t,"right")].forEach(function(e){e&&g.dom.addClass(e,"hovered")})},r.onRowMouseLeave=function(e,t){r.isLock()&&[r.getRowNode(t),r.getRowNode(t,"left"),r.getRowNode(t,"right")].forEach(function(e){e&&g.dom.removeClass(e,"hovered")})},r.onLockBodyScrollTop=function(e){var t,n=e.target;e.currentTarget===n&&(t=n.scrollTop,r.isLock()&&t!==r.lastScrollTop&&(e=r.bodyRightNode,[r.bodyLeftNode,e,r.bodyNode].forEach(function(e){e&&e.scrollTop!==t&&(e.scrollTop=t)}),r.lastScrollTop=t))},r.onLockBodyScrollLeft=function(){var e,t,n,a;r.isLock()&&(e=(t=r.props.rtl)?r.getWrapperNode("left"):r.getWrapperNode("right"),t=t?r.getWrapperNode("right"):r.getWrapperNode("left"),n="shadow",0===(a=r.bodyNode.scrollLeft)?(t&&g.dom.removeClass(t,n),e&&g.dom.addClass(e,n)):a===r.bodyNode.scrollWidth-r.bodyNode.clientWidth?(t&&g.dom.addClass(t,n),e&&g.dom.removeClass(e,n)):(t&&g.dom.addClass(t,n),e&&g.dom.addClass(e,n)))},r.onLockBodyScroll=function(e){r.onLockBodyScrollTop(e),r.onLockBodyScrollLeft()},r.adjustSize=function(){r.adjustIfTableNotNeedLock()||(r.adjustHeaderSize(),r.adjustBodySize(),r.adjustRowHeight(),r.onLockBodyScrollLeft())},r.getFlatenChildrenLength=function(){return function t(e){var n=[];return e.forEach(function(e){e&&e.children?n.push.apply(n,t(e.children)):n.push(e)}),n}(0<arguments.length&&void 0!==arguments[0]?arguments[0]:[]).length},r.saveLockLeftRef=function(e){r.lockLeftEl=e},r.saveLockRightRef=function(e){r.lockRightEl=e},r.lockLeftChildren=[],r.lockRightChildren=[],r}return(0,l.default)(a,n),a.prototype.getChildContext=function(){return{getTableInstance:this.getTableInstance,getLockNode:this.getNode,onLockBodyScroll:this.onLockBodyScroll,onRowMouseEnter:this.onRowMouseEnter,onRowMouseLeave:this.onRowMouseLeave}},a.prototype.componentDidMount=function(){g.events.on(window,"resize",this.adjustSize),this.scroll(),this.adjustSize(),this.forceUpdate()},a.prototype.shouldComponentUpdate=function(e,t,n){return!e.pure||!((0,d.default)(e,this.props)&&g.obj.shallowEqual(n,this.context))},a.prototype.componentDidUpdate=function(){this.adjustSize(),this._isLock=!1},a.prototype.componentWillUnmount=function(){g.events.off(window,"resize",this.adjustSize)},a.prototype.normalizeChildrenState=function(e){e=this.normalizeChildren(e),e=this.splitFromNormalizeChildren(e);return{lockLeftChildren:e.lockLeftChildren,lockRightChildren:e.lockRightChildren,children:this.mergeFromSplitLockChildren(e)}},a.prototype.normalizeChildren=function(e){var t=e.children,e=e.columns,n=!1,a=void 0,r=function(e){-1<[!0,"left","right"].indexOf(e.lock)&&("width"in e||g.log.warning("Should config width for lock column named [ "+e.dataIndex+" ]."),n=!0)};return e&&!t?function t(e){e.forEach(function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};r(e),e.children&&t(e.children)})}(a=e):a=function n(e){var a=[];return s.Children.forEach(e,function(e){var t;e&&(t=(0,p.default)({},e.props),r(t),a.push(t),e.props.children&&(t.children=n(e.props.children)))}),a}(t),a.forEach(function(e){e.__normalized&&n&&(e.lock=e.lock||"left",delete e.__normalized)}),this._isLock=n,a},a.prototype.splitFromNormalizeChildren=function(e){function r(t,n){var a=[];return t.forEach(function(e){e.children?r(e.children,n).length||a.push(e):n(e)||a.push(e)}),a.forEach(function(e){e=t.indexOf(e);t.splice(e,1)}),t}var t=k(e),n=k(e),e=k(e);return r(n,function(e){if(!0===e.lock||"left"===e.lock)return"left"}),r(e,function(e){if("right"===e.lock)return"right"}),r(t,function(e){return!0!==e.lock&&"left"!==e.lock&&"right"!==e.lock}),{lockLeftChildren:n,lockRightChildren:e,originChildren:t}},a.prototype.mergeFromSplitLockChildren=function(e){var t=e.lockLeftChildren,n=e.lockRightChildren,e=e.originChildren;return Array.prototype.unshift.apply(e,t),e=e.concat(n)},a.prototype.scroll=function(){var e,t=this.props,n=t.scrollToCol,n=void 0===n?0:n,t=t.scrollToRow,t=void 0===t?0:t;(n||t)&&this.bodyNode&&(n=this.getCellNode(0,n),t=this.getCellNode(t,0),e=this.bodyNode.getBoundingClientRect()||{},n&&(n=n.getBoundingClientRect().left-e.left,this.bodyNode.scrollLeft=n),t&&(n=t.getBoundingClientRect().top-e.top,this.bodyNode.scrollTop=n))},a.prototype.isLock=function(){return this.lockLeftChildren.length||this.lockRightChildren.length},a.prototype.isOriginLock=function(){return this._isLock},a.prototype.removeLockTable=function(){var e=this.lockLeftChildren.length,t=this.lockRightChildren.length;if(e&&(this._notNeedAdjustLockLeft=!0),t&&(this._notNeedAdjustLockRight=!0),t||e)return this.forceUpdate(),!0},a.prototype.adjustIfTableNotNeedLock=function(){var a=this;if(this.isOriginLock()){var e=this.tableInc.flatChildren.map(function(e,t){var n=a.getCellNode(0,t)||{},t=a.getHeaderCellNode(0,t)||{};try{return{cellWidths:parseFloat(getComputedStyle(n).width)||0,headerWidths:parseFloat(getComputedStyle(t).width)||0}}catch(e){return{cellWidths:n.clientWidth||0,headerWidths:t.clientWidth||0}}}).reduce(function(e,t){return{cellWidths:e.cellWidths+t.cellWidths,headerWidths:e.headerWidths+t.headerWidths}},{cellWidths:0,headerWidths:0}),t=void 0;try{t=(0,u.findDOMNode)(this).clientWidth}catch(e){t=0}if(0===t)return!0;e=parseInt(e.cellWidths)||parseInt(e.headerWidths);if(e<=t&&0<e)this.removeLockTable();else{if(!this._notNeedAdjustLockLeft&&!this._notNeedAdjustLockRight)return this._notNeedAdjustLockLeft=this._notNeedAdjustLockRight=!1;this._notNeedAdjustLockLeft=this._notNeedAdjustLockRight=!1,this.forceUpdate()}}return!1},a.prototype.adjustBodySize=function(){var e,t,n,a,r,o=this.props,i=o.rtl,o=o.hasHeader,l=this.headerNode,s=i?"paddingLeft":"paddingRight",u=i?"marginLeft":"marginRight",d=+g.dom.scrollbar().width||0,c=((r={})[s]=d,r[u]=d,this.bodyNode),f=c&&c.scrollHeight>c.clientHeight;this.isLock()?(e=this.bodyLeftNode,t=this.bodyRightNode,n=this.getWrapperNode("right"),a=f?d:0,c=c.offsetHeight-d,f||(r[s]=0,r[u]=0),+d?(r.marginBottom=-d,r.paddingBottom=d):(r.marginBottom=-20,r.paddingBottom=20),c={"max-height":c},o||+d||(c[u]=0),+d&&(c[u]=-d),e&&g.dom.setStyle(e,c),t&&g.dom.setStyle(t,c),n&&+d&&g.dom.setStyle(n,i?"left":"right",a+"px")):(r.marginBottom=-d,r.paddingBottom=d,r[u]=0,f||(r[s]=0)),l&&g.dom.setStyle(l,r)},a.prototype.adjustHeaderSize=function(){var o=this;this.isLock()&&this.tableInc.groupChildren.forEach(function(e,t){var n=o.tableInc.groupChildren[t].length-1,n=o.getHeaderCellNode(t,n),a=o.getHeaderCellNode(t,0),r=o.getHeaderCellNode(t,0,"right"),t=o.getHeaderCellNode(t,0,"left");n&&r&&(n=n.offsetHeight,g.dom.setStyle(r,"height",n),setTimeout(function(){var e=o.tableRightInc.affixRef;return e&&e.getInstance()&&e.getInstance().updatePosition()})),a&&t&&(r=a.offsetHeight,g.dom.setStyle(t,"height",r),setTimeout(function(){var e=o.tableLeftInc.affixRef;return e&&e.getInstance()&&e.getInstance().updatePosition()}))})},a.prototype.adjustRowHeight=function(){var n=this;this.isLock()&&this.tableInc.props.dataSource.forEach(function(e,t){t=""+("object"===(void 0===e?"undefined":(0,r.default)(e))&&"__rowIndex"in e?e.__rowIndex:t)+(e.__expanded?"_expanded":"");n.setRowHeight(t,"left"),n.setRowHeight(t,"right")})},a.prototype.setRowHeight=function(e,t){var t=this.getRowNode(e,t),e=this.getRowNode(e),e=(M?e&&e.offsetHeight:e&&parseFloat(getComputedStyle(e).height))||"auto",n=(M?t&&t.offsetHeight:t&&parseFloat(getComputedStyle(t).height))||"auto";t&&e!==n&&g.dom.setStyle(t,"height",e)},a.prototype.getWrapperNode=function(e){e=e?e.charAt(0).toUpperCase()+e.substr(1):"";try{return(0,u.findDOMNode)(this["lock"+e+"El"])}catch(e){return null}},a.prototype.getRowNode=function(e,t){t=this["table"+(t=t?t.charAt(0).toUpperCase()+t.substr(1):"")+"Inc"];try{return(0,u.findDOMNode)(t.getRowRef(e))}catch(e){return null}},a.prototype.getHeaderCellNode=function(e,t,n){n=this["table"+(n=n?n.charAt(0).toUpperCase()+n.substr(1):"")+"Inc"];try{return(0,u.findDOMNode)(n.getHeaderCellRef(e,t))}catch(e){return null}},a.prototype.getCellNode=function(e,t,n){n=this["table"+(n=n?n.charAt(0).toUpperCase()+n.substr(1):"")+"Inc"];try{return(0,u.findDOMNode)(n.getCellRef(e,t))}catch(e){return null}},a.prototype.render=function(){var e,t=this.props,n=(t.children,t.columns,t.prefix),a=t.components,r=t.className,o=t.dataSource,i=t.tableWidth,t=(0,f.default)(t,["children","columns","prefix","components","className","dataSource","tableWidth"]),l=this.normalizeChildrenState(this.props),s=l.lockLeftChildren,u=l.lockRightChildren,l=l.children,d={left:this.getFlatenChildrenLength(s),right:this.getFlatenChildrenLength(u),origin:this.getFlatenChildrenLength(l)};return this._notNeedAdjustLockLeft&&(s=[]),this._notNeedAdjustLockRight&&(u=[]),this.lockLeftChildren=s,this.lockRightChildren=u,this.isOriginLock()?((a=(0,p.default)({},a)).Body=a.Body||v.default,a.Header=a.Header||_.default,a.Wrapper=a.Wrapper||b.default,a.Row=a.Row||y.default,r=(0,m.default)(((e={})[n+"table-lock"]=!0,e[n+"table-wrap-empty"]=!o.length,e[r]=r,e)),e=[h.default.createElement(c,(0,p.default)({},t,{dataSource:o,key:"lock-left",columns:s,className:n+"table-lock-left",lengths:d,prefix:n,lockType:"left",components:a,ref:this.saveLockLeftRef,loading:!1,"aria-hidden":!0})),h.default.createElement(c,(0,p.default)({},t,{dataSource:o,key:"lock-right",columns:u,className:n+"table-lock-right",lengths:d,prefix:n,lockType:"right",components:a,ref:this.saveLockRightRef,loading:!1,"aria-hidden":!0}))],h.default.createElement(c,(0,p.default)({},t,{tableWidth:i,dataSource:o,columns:l,prefix:n,lengths:d,wrapperContent:e,components:a,className:r}))):h.default.createElement(c,this.props)},a}(h.default.Component),t.LockRow=y.default,t.LockBody=v.default,t.LockHeader=_.default,t.propTypes=(0,p.default)({scrollToCol:a.default.number,scrollToRow:a.default.number},c.propTypes),t.defaultProps=(0,p.default)({},c.defaultProps),t.childContextTypes={getTableInstance:a.default.func,getLockNode:a.default.func,onLockBodyScroll:a.default.func,onRowMouseEnter:a.default.func,onRowMouseLeave:a.default.func};var e,t=e;return t.displayName="LockTable",(0,w.statics)(t,c),t},n(0)),h=c(s),u=n(23),a=c(n(3)),m=c(n(13)),d=c(n(172)),g=n(11),y=c(n(174)),v=c(n(391)),_=c(n(392)),b=c(n(131)),w=n(67);function c(e){return e&&e.__esModule?e:{default:e}}var M=g.env.ieVersion;function k(e){return function n(e){return e.map(function(e){var t=(0,p.default)({},e);return e.children&&(e.children=n(e.children)),t})}(e)}e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var s=l(n(12)),u=l(n(2)),r=l(n(4)),o=l(n(6)),i=l(n(7)),d=(t.default=function(l){e=t=function(n){function a(e,t){(0,r.default)(this,a);var d=(0,o.default)(this,n.call(this,e));return d.state={},d.updateOffsetArr=function(){var e=d.splitChildren||{},t=e.lockLeftChildren,n=e.lockRightChildren,e=e.originChildren,a=d.getFlatenChildren(t).length,r=d.getFlatenChildren(n).length,e=a+r+d.getFlatenChildren(e).length,a=0<a,r=0<r,t=d.getStickyWidth(t,"left",e),n=d.getStickyWidth(n,"right",e),e={};""+t!=""+d.state.leftOffsetArr&&(e.leftOffsetArr=t),""+n!=""+d.state.rightOffsetArr&&(e.rightOffsetArr=n),a!==d.state.hasLockLeft&&(e.hasLockLeft=a),r!==d.state.hasLockRight&&(e.hasLockRight=r),0<Object.keys(e).length&&d.setState(e)},d.onLockBodyScroll=function(e,t){var e=e.currentTarget||{},n=e.scrollLeft,a=e.scrollWidth,e=e.clientWidth,r=d.pingRight,o=d.pingLeft,i=0<n&&d.state.hasLockLeft,n=n<a-e&&d.state.hasLockRight;!t&&o===i&&r===n||(a=d.props.prefix,e=d.getTableNode(),d.pingLeft=i,d.pingRight=n,m.dom[i?"addClass":"removeClass"](e,a+"table-ping-left"),m.dom[n?"addClass":"removeClass"](e,a+"table-ping-right"))},d.getStickyWidth=function(e,o,i){var t=d.props,l=t.dataSource,s=t.scrollToRow,t=[],e=d.getFlatenChildren(e),u=e.length;return e.reduce(function(e,t,n){var a="left"===o?n:u-1-n,r="left"===o?a-1:a+1,n="left"===o?a-1:i-n;return"left"===o&&0===a?e[0]=0:"right"===o&&a===u-1?e[a]=0:(n=(n=!(l&&0<l.length)?d.getHeaderCellNode(0,n):d.getCellNode(s||l[0]&&l[0].__rowIndex||0,n))&&parseFloat(getComputedStyle(n).width)||0,e[a]=(e[r]||0)+n),e},t),t},d.getTableInstance=function(e,t){d.tableInc=t},d.getNode=function(e,t){d[e+"Node"]=t},d.getFlatenChildren=function(){return function t(e){var n=[];return e.forEach(function(e){e.children?n.push.apply(n,t(e.children)):n.push(e)}),n}(0<arguments.length&&void 0!==arguments[0]?arguments[0]:[])},d.state={hasLockLeft:!0,hasLockRight:!0},d.pingLeft=!1,d.pingRight=!1,d}return(0,i.default)(a,n),a.prototype.getChildContext=function(){return{getTableInstance:this.getTableInstance,getLockNode:this.getNode,onLockBodyScroll:this.onLockBodyScroll}},a.prototype.componentDidMount=function(){var e=this.props.dataSource,e=!(e&&0<e.length);this.updateOffsetArr(),this.onLockBodyScroll(e?{currentTarget:this.headerNode}:{currentTarget:this.bodyNode}),this.forceUpdate(),m.events.on(window,"resize",this.updateOffsetArr)},a.prototype.shouldComponentUpdate=function(e,t,n){return!e.pure||!((0,h.default)(e,this.props)&&m.obj.shallowEqual(n,this.context))},a.prototype.componentDidUpdate=function(){this.updateOffsetArr(),this.onLockBodyScroll(this.bodyNode?{currentTarget:this.bodyNode}:{currentTarget:this.headerNode},!0)},a.prototype.componentWillUnmount=function(){this.pingLeft=!1,this.pingRight=!1,m.events.off(window,"resize",this.updateOffsetArr)},a.prototype.normalizeChildrenState=function(e){var t=this.normalizeChildren(e);return this.splitChildren=this.splitFromNormalizeChildren(t),this.mergeFromSplitLockChildren(this.splitChildren,e.prefix)},a.prototype.normalizeChildren=function(e){function a(e){var n=[];return d.Children.forEach(e,function(e){var t;e&&(t=(0,u.default)({},e.props),-1<[!0,"left","right"].indexOf(t.lock)&&(r=!0,"width"in t||m.log.warning("Should config width for lock column named [ "+t.dataIndex+" ].")),n.push(t),e.props.children&&(t.children=a(e.props.children)))}),n}var t=e.children,e=e.columns,r=!1,n=void 0;return e&&!t?r=(n=e).find(function(e){return-1<[!0,"left","right"].indexOf(e.lock)}):n=a(t),n.forEach(function(e){e.__normalized&&r&&(e.lock=e.lock||"left",delete e.__normalized)}),n},a.prototype.splitFromNormalizeChildren=function(e){function r(t,n){var a=[];return t.forEach(function(e){e.children?r(e.children,n).length||a.push(e):n(e)||a.push(e)}),a.forEach(function(e){e=t.indexOf(e);t.splice(e,1)}),t}var t=w(e),n=w(e),e=w(e);return r(n,function(e){if(!0===e.lock||"left"===e.lock)return"left"}),r(e,function(e){if("right"===e.lock)return"right"}),r(t,function(e){return!0!==e.lock&&"left"!==e.lock&&"right"!==e.lock}),{lockLeftChildren:n,lockRightChildren:e,originChildren:t}},a.prototype.mergeFromSplitLockChildren=function(e,t){var n=e.lockLeftChildren,a=e.lockRightChildren,e=e.originChildren,r=this.getFlatenChildren(n),o=this.getFlatenChildren(a);return(0,b.setStickyStyle)(n,r,"left",this.state.leftOffsetArr,t),(0,b.setStickyStyle)(a,o,"right",this.state.rightOffsetArr,t),[].concat(n,e,a)},a.prototype.getCellNode=function(e,t){var n=this.tableInc;try{return(0,f.findDOMNode)(n.getCellRef(e,t))}catch(e){return null}},a.prototype.getTableNode=function(){var e=this.tableInc;try{return(0,f.findDOMNode)(e.tableEl)}catch(e){return null}},a.prototype.getHeaderCellNode=function(e,t){var n=this.tableInc;try{return(0,f.findDOMNode)(n.getHeaderCellRef(e,t))}catch(e){return null}},a.prototype.render=function(){var e,t=this.props,n=(t.children,t.columns,t.prefix),a=t.components,r=(t.scrollToRow,t.className),o=t.dataSource,t=(0,s.default)(t,["children","columns","prefix","components","scrollToRow","className","dataSource"]),i=this.normalizeChildrenState(this.props);return(a=(0,u.default)({},a)).Body=a.Body||y.default,a.Header=a.Header||v.default,a.Wrapper=a.Wrapper||_.default,a.Row=a.Row||g.default,r=(0,p.default)(((e={})[n+"table-lock"]=!0,e[n+"table-stickylock"]=!0,e[n+"table-wrap-empty"]=!o.length,e[r]=r,e)),c.default.createElement(l,(0,u.default)({},t,{dataSource:o,columns:i,prefix:n,components:a,className:r}))},a}(c.default.Component),t.LockRow=g.default,t.LockBody=y.default,t.LockHeader=v.default,t.propTypes=(0,u.default)({scrollToCol:a.default.number,scrollToRow:a.default.number},l.propTypes),t.defaultProps=(0,u.default)({},l.defaultProps),t.childContextTypes={getTableInstance:a.default.func,getLockNode:a.default.func,onLockBodyScroll:a.default.func};var e,t=e;return t.displayName="LockTable",(0,b.statics)(t,l),t},n(0)),c=l(d),f=n(23),a=l(n(3)),p=l(n(13)),h=l(n(172)),m=n(11),g=l(n(174)),y=l(n(391)),v=l(n(392)),_=l(n(131)),b=n(67);function l(e){return e&&e.__esModule?e:{default:e}}function w(e){return function n(e){return e.map(function(e){var t=(0,u.default)({},e);return e.children&&(e.children=n(e.children)),t})}(e)}e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var u=s(n(38)),d=s(n(12)),c=s(n(2)),l=s(n(4)),f=s(n(6)),a=s(n(7)),p=(t.default=function(s){e=t=function(o){function i(){var e,t;(0,l.default)(this,i);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,f.default)(this,o.call.apply(o,[this].concat(a)))).state={},(0,f.default)(t,e)}return(0,a.default)(i,o),i.prototype.getChildContext=function(){return{listHeader:this.listHeader,listFooter:this.listFooter,rowSelection:this.rowSelection}},i.prototype.normalizeDataSource=function(e){var a=[];return function t(e,n){e.forEach(function(e){e=(0,c.default)({},e);e.__level=n,a.push(e),e.children&&t(e.children,n+1)})}(e,0),this.ds=a},i.prototype.render=function(){var t=this,e=this.props,n=e.components,a=e.children,r=e.className,o=e.prefix,e=(0,d.default)(e,["components","children","className","prefix"]),i=!1,l=[];return p.Children.forEach(a,function(e){e&&(-1<["function","object"].indexOf((0,u.default)(e.type))?"listHeader"===e.type._typeMark?(t.listHeader=e.props,i=!0):"listFooter"===e.type._typeMark?t.listFooter=e.props:l.push(e):l.push(e))}),this.rowSelection=this.props.rowSelection,i&&((n=(0,c.default)({},n)).Row=n.Row||g.default,n.Body=n.Body||y.default,n.Header=n.Header||v.default,n.Wrapper=n.Wrapper||_.default,r=(0,m.default)(((a={})[o+"table-group"]=!0,a[r]=r,a))),h.default.createElement(s,(0,c.default)({},e,{components:n,children:0<l.length?l:void 0,className:r,prefix:o}))},i}(h.default.Component),t.ListHeader=o.default,t.ListFooter=i.default,t.ListRow=g.default,t.ListBody=y.default,t.propTypes=(0,c.default)({},s.propTypes),t.defaultProps=(0,c.default)({},s.defaultProps),t.childContextTypes={listHeader:r.default.any,listFooter:r.default.any,rowSelection:r.default.object};var e,t=e;return t.displayName="ListTable",(0,b.statics)(t,s),t},n(0)),h=s(p),r=s(n(3)),m=s(n(13)),o=s(n(393)),i=s(n(394)),g=s(n(654)),y=s(n(655)),v=s(n(130)),_=s(n(131)),b=n(67);function s(e){return e&&e.__esModule?e:{default:e}}e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var o=f(n(2)),i=f(n(12)),a=f(n(4)),r=f(n(6)),l=f(n(7)),s=f(n(0)),u=f(n(3)),d=f(n(13)),c=n(11),n=f(n(128));function f(e){return e&&e.__esModule?e:{default:e}}p=n.default,(0,l.default)(h,p),h.prototype.render=function(){var e,t=this.props,n=t.prefix,a=t.className,r=(t.onClick,t.onMouseEnter,t.onMouseLeave,t.columns,t.Cell,t.rowIndex,t.__rowIndex,t.record,t.children,t.primaryKey,t.colGroup),t=(t.cellRef,t.getCellProps,t.locale,t.wrapper,t.rtl,(0,i.default)(t,["prefix","className","onClick","onMouseEnter","onMouseLeave","columns","Cell","rowIndex","__rowIndex","record","children","primaryKey","colGroup","cellRef","getCellProps","locale","wrapper","rtl"])),n=(0,d.default)(((e={})[n+"table-row"]=!0,e[a]=a,e));return this.context.notRenderCellIndex=[],s.default.createElement("table",(0,o.default)({className:n,role:"row"},t,{onClick:this.onClick,onMouseEnter:this.onMouseEnter,onMouseLeave:this.onMouseLeave}),r,s.default.createElement("tbody",null,this.renderContent("header"),this.renderChildren(),this.renderContent("footer")))},h.prototype.isChildrenSelection=function(){return this.context.listHeader&&this.context.listHeader.hasChildrenSelection},h.prototype.isFirstLevelDataWhenNoChildren=function(){return this.context.listHeader&&this.context.listHeader.useFirstLevelDataWhenNoChildren},h.prototype.isSelection=function(){return this.context.listHeader&&this.context.listHeader.hasSelection},h.prototype.renderChildren=function(){var a=this,e=this.props,t=e.record,r=e.primaryKey,e=t.children,n=e;return this.isFirstLevelDataWhenNoChildren()&&(c.log.warning("useFirstLevelDataWhenNoChildren is deprecated, change your dataSource structure, make sure there is 'children' in your dataSource."),n=e||[t]),n?n.map(function(e,t){var n=a.renderCells(e,t);return a.isChildrenSelection()?(e[r]||c.log.warning("record.children/recored should contains primaryKey when childrenSelection is true."),s.default.createElement("tr",{key:e[r]},n)):(a.context.rowSelection&&(n.shift(),n[0]=n[0]&&s.default.cloneElement(n[0],(0,o.default)({colSpan:2},n[0].props))),s.default.createElement("tr",{key:t},n))}):null},h.prototype.renderContent=function(e){var t=this.props,n=t.columns,a=t.prefix,r=t.record,t=t.rowIndex,o=e.charAt(0).toUpperCase()+e.substr(1),o=this.context["list"+o],i=void 0;return o&&(s.default.isValidElement(o.cell)?i=s.default.cloneElement(o.cell,{record:r,index:t}):"function"==typeof o.cell&&(i=o.cell(r,t)),i&&(o=this.renderCells(r),i="header"===e&&this.context.rowSelection&&this.isSelection()?((o=o.slice(0,1)).push(s.default.createElement("td",{colSpan:n.length-1,key:"listNode"},s.default.createElement("div",{className:a+"table-cell-wrapper"},i))),s.default.createElement("tr",{className:a+"table-group-"+e},o)):s.default.createElement("tr",{className:a+"table-group-"+e},s.default.createElement("td",{colSpan:n.length},s.default.createElement("div",{className:a+"table-cell-wrapper"},i))))),i},(n=h).contextTypes={listHeader:u.default.any,listFooter:u.default.any,rowSelection:u.default.object,notRenderCellIndex:u.default.array,lockType:u.default.oneOf(["left","right"])};var p,l=n;function h(){return(0,a.default)(this,h),(0,r.default)(this,p.apply(this,arguments))}t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=i(n(2));t.default=function(e){return r.default.createElement(o.default,(0,a.default)({component:"div"},e))};var r=i(n(0)),o=i(n(127));function i(e){return e&&e.__esModule?e:{default:e}}e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var s=i(n(2)),u=i(n(12)),d=i(n(4)),c=i(n(6)),a=i(n(7));t.default=function(l){e=t=function(o){function i(){var e,t;(0,d.default)(this,i);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,c.default)(this,o.call.apply(o,[this].concat(a)))).state={},(0,c.default)(t,e)}return(0,a.default)(i,o),i.prototype.getChildContext=function(){return{Header:this.props.components.Header||p.default,offsetTop:this.props.offsetTop,affixProps:this.props.affixProps}},i.prototype.render=function(){var e=this.props,t=e.stickyHeader,e=(e.offsetTop,e.affixProps,(0,u.default)(e,["stickyHeader","offsetTop","affixProps"])),n=this.props,a=n.components,r=n.maxBodyHeight,n=n.fixedHeader;return t&&((a=(0,s.default)({},a)).Header=h.default,n=!0,r=Math.max(r,1e4)),f.default.createElement(l,(0,s.default)({},e,{components:a,fixedHeader:n,maxBodyHeight:r}))},i}(f.default.Component),t.StickyHeader=h.default,t.propTypes=(0,s.default)({stickyHeader:r.default.bool,offsetTop:r.default.number,affixProps:r.default.object,components:r.default.object},l.propTypes),t.defaultProps=(0,s.default)({components:{}},l.defaultProps),t.childContextTypes={Header:r.default.any,offsetTop:r.default.number,affixProps:r.default.object};var e,t=e;return t.displayName="StickyTable",(0,o.statics)(t,l),t};var f=i(n(0)),r=i(n(3)),p=i(n(130)),h=i(n(657)),o=n(67);function i(e){return e&&e.__esModule?e:{default:e}}e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var i=f(n(2)),l=f(n(12)),o=f(n(4)),s=f(n(6)),a=f(n(7)),u=f(n(0)),r=f(n(3)),d=f(n(13)),c=f(n(658));function f(e){return e&&e.__esModule?e:{default:e}}p=u.default.Component,(0,a.default)(h,p),h.prototype.render=function(){var e,t=this.props.prefix,n=this.context,a=n.Header,r=n.offsetTop,n=n.affixProps||{},o=n.className,n=(0,l.default)(n,["className"]),t=(0,d.default)(((e={})[t+"table-affix"]=!0,e.className=o,e));return u.default.createElement(c.default,(0,i.default)({ref:this.getAffixRef},n,{className:t,offsetTop:r}),u.default.createElement(a,this.props))},a=n=h,n.propTypes={prefix:r.default.string},n.contextTypes={Header:r.default.any,offsetTop:r.default.number,affixProps:r.default.object};var p,n=a;function h(){var e,t;(0,o.default)(this,h);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,s.default)(this,p.call.apply(p,[this].concat(a)))).getAffixRef=function(e){t.props.affixRef&&t.props.affixRef(e)},(0,s.default)(t,e)}n.displayName="StickHeader",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var s=m(n(2)),a=m(n(4)),r=m(n(6)),o=m(n(7)),u=m(n(0)),i=m(n(3)),d=m(n(13)),l=(n(23),n(30)),c=m(n(133)),f=n(11),p=m(n(8)),h=n(659);function m(e){return e&&e.__esModule?e:{default:e}}g=u.default.Component,(0,o.default)(y,g),y._getAffixMode=function(e){var t,n={top:!1,bottom:!1,offset:0};return e&&(t=e.offsetTop,e=e.offsetBottom,"number"!=typeof t&&"number"!=typeof e?n.top=!0:"number"==typeof t?(n.top=!0,n.bottom=!1,n.offset=t):"number"==typeof e&&(n.bottom=!0,n.top=!1,n.offset=e)),n},y.getDerivedStateFromProps=function(e,t){return"offsetTop"in e||"offsetBottom"in e?{affixMode:y._getAffixMode(e)}:null},y.prototype.componentDidMount=function(){var e=this,t=this.props.container;this.timeout=setTimeout(function(){e._updateNodePosition(),e._setEventHandlerForContainer(t)})},y.prototype.componentDidUpdate=function(e,t,n){var a=this;e.container()!==this.props.container()&&(this._clearContainerEvent(),this.timeout=setTimeout(function(){a._setEventHandlerForContainer(a.props.container)})),setTimeout(this._updateNodePosition)},y.prototype.componentWillUnmount=function(){this._clearContainerEvent()},y.prototype._setEventHandlerForContainer=function(e){e=e();e&&(f.events.on(e,"scroll",this._updateNodePosition,!1),this.resizeObserver.observe(this.affixNode))},y.prototype._removeEventHandlerForContainer=function(e){e=e();e&&(f.events.off(e,"scroll",this._updateNodePosition),this.resizeObserver.disconnect())},y.prototype._setAffixStyle=function(e){var t,n=1<arguments.length&&void 0!==arguments[1]&&arguments[1];f.obj.shallowEqual(e,this.state.style)||(this.setState({style:e}),t=this.props.onAffix,n?setTimeout(function(){return t(!0)}):e||setTimeout(function(){return t(!1)}))},y.prototype._setContainerStyle=function(e){f.obj.shallowEqual(e,this.state.containerStyle)||this.setState({containerStyle:e})},y.prototype._getOffset=function(e,t){var e=e.getBoundingClientRect(),n=(0,h.getRect)(t),a=(0,h.getScroll)(t,!0),t=(0,h.getScroll)(t,!1);return{top:e.top-n.top+a,left:e.left-n.left+t,width:e.width,height:e.height}},y.prototype.render=function(){var e,t=this.state,n=t.affixMode,t=t.positionStyle,a=this.props,r=a.prefix,o=a.className,i=a.style,a=a.children,l=this.state,r=(0,d.default)(((e={})[r+"affix"]=l.style,e[r+"affix-top"]=!l.style&&n.top,e[r+"affix-bottom"]=!l.style&&n.bottom,e[o]=o,e)),n=(0,s.default)({},i,{position:t});return u.default.createElement("div",{ref:this._affixNodeRefHandler,style:n},l.style&&u.default.createElement("div",{style:l.containerStyle,"aria-hidden":"true"}),u.default.createElement("div",{ref:this._affixChildNodeRefHandler,className:r,style:l.style},a))},o=n=y,n.propTypes={prefix:i.default.string,container:i.default.func,offsetTop:i.default.number,offsetBottom:i.default.number,onAffix:i.default.func,useAbsolute:i.default.bool,className:i.default.string,style:i.default.object,children:i.default.any},n.defaultProps={prefix:"next-",container:function(){return window},onAffix:f.func.noop};var g,i=o;function y(e,t){(0,a.default)(this,y);var d=(0,r.default)(this,g.call(this,e,t));return d._clearContainerEvent=function(){d.timeout&&(clearTimeout(d.timeout),d.timeout=null);var e=d.props.container;d._removeEventHandlerForContainer(e)},d.updatePosition=function(){d._updateNodePosition()},d._updateNodePosition=function(){var e=d.state.affixMode,t=d.props,n=t.container,t=t.useAbsolute,n=n();if(!n||!d.affixNode)return!1;var a=(0,h.getScroll)(n,!0),r=d._getOffset(d.affixNode,n),o=(0,h.getNodeHeight)(n),i=d.affixNode.offsetHeight,n=(0,h.getRect)(n),l=d.affixChildNode.offsetHeight,s={width:r.width},l={width:r.width,height:l},u=null;e.top&&a>r.top-e.offset?(t?(s.position="absolute",s.top=a-(r.top-e.offset),u="relative"):(s.position="fixed",s.top=e.offset+n.top),d._setAffixStyle(s,!0),d._setContainerStyle(l)):e.bottom&&a<r.top+i+e.offset-o?(s.height=i,t?(s.position="absolute",s.top=a-(r.top+i+e.offset-o),u="relative"):(s.position="fixed",s.bottom=e.offset),d._setAffixStyle(s,!0),d._setContainerStyle(l)):(d._setAffixStyle(null),d._setContainerStyle(null)),d.state.positionStyle!==u&&d.setState({positionStyle:u})},d._affixNodeRefHandler=function(e){d.affixNode=e},d._affixChildNodeRefHandler=function(e){d.affixChildNode=e},d.state={style:null,containerStyle:null,positionStyle:null,affixMode:y._getAffixMode(e)},d.resizeObserver=new c.default(d._updateNodePosition),d}i.displayName="Affix",t.default=p.default.config((0,l.polyfill)(i)),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.getScroll=function(e,t){if("undefined"==typeof window)return 0;var n=t?"pageYOffset":"pageXOffset",t=t?"scrollTop":"scrollLeft";return e===window?e[n]:e[t]},t.getRect=function(e){return e!==window?e.getBoundingClientRect():{top:0,left:0,bottom:0}},t.getNodeHeight=function(e){return e?e!==window?e.clientHeight:window.innerHeight:0}},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){var j,Y,l,p,I;function R(e){this.offset=null!=e?e:0,this.lines=[],this.currentLineNb=-1,this.currentLine="",this.refs={}}j=n(396),p=n(111),I=n(112),Y=n(397),l=n(398),R.prototype.PATTERN_FOLDED_SCALAR_ALL=new p("^(?:(?<type>![^\\|>]*)\\s+)?(?<separator>\\||>)(?<modifiers>\\+|\\-|\\d+|\\+\\d+|\\-\\d+|\\d+\\+|\\d+\\-)?(?<comments> +#.*)?$"),R.prototype.PATTERN_FOLDED_SCALAR_END=new p("(?<separator>\\||>)(?<modifiers>\\+|\\-|\\d+|\\+\\d+|\\-\\d+|\\d+\\+|\\d+\\-)?(?<comments> +#.*)?$"),R.prototype.PATTERN_SEQUENCE_ITEM=new p("^\\-((?<leadspaces>\\s+)(?<value>.+?))?\\s*$"),R.prototype.PATTERN_ANCHOR_VALUE=new p("^&(?<ref>[^ ]+) *(?<value>.*)"),R.prototype.PATTERN_COMPACT_NOTATION=new p("^(?<key>"+j.REGEX_QUOTED_STRING+"|[^ '\"\\{\\[].*?) *\\:(\\s+(?<value>.+?))?\\s*$"),R.prototype.PATTERN_MAPPING_ITEM=new p("^(?<key>"+j.REGEX_QUOTED_STRING+"|[^ '\"\\[\\{].*?) *\\:(\\s+(?<value>.+?))?\\s*$"),R.prototype.PATTERN_DECIMAL=new p("\\d+"),R.prototype.PATTERN_INDENT_SPACES=new p("^ +"),R.prototype.PATTERN_TRAILING_LINES=new p("(\n*)$"),R.prototype.PATTERN_YAML_HEADER=new p("^\\%YAML[: ][\\d\\.]+.*\n","m"),R.prototype.PATTERN_LEADING_COMMENTS=new p("^(\\#.*?\n)+","m"),R.prototype.PATTERN_DOCUMENT_MARKER_START=new p("^\\-\\-\\-.*?\n","m"),R.prototype.PATTERN_DOCUMENT_MARKER_END=new p("^\\.\\.\\.\\s*$","m"),R.prototype.PATTERN_FOLDED_SCALAR_BY_INDENTATION={},R.prototype.CONTEXT_NONE=0,R.prototype.CONTEXT_SEQUENCE=1,R.prototype.CONTEXT_MAPPING=2,R.prototype.parse=function(e,t,n){var a,r,o,i,l,s,u,d,c,f,p,h,m,g,y,v,_,b,w,M,k,S,E,x,C,L,T,D,O,N,P;for(null==t&&(t=!1),null==n&&(n=null),this.currentLineNb=-1,this.currentLine="",this.lines=this.cleanup(e).split("\n"),i=null,o=this.CONTEXT_NONE,r=!1;this.moveToNextLine();)if(!this.isCurrentLineEmpty()){if("\t"===this.currentLine[0])throw new Y("A YAML file cannot contain tabs as indentation.",this.getRealCurrentLineNb()+1,this.currentLine);if(d=k=!1,P=this.PATTERN_SEQUENCE_ITEM.exec(this.currentLine)){if(this.CONTEXT_MAPPING===o)throw new Y("You cannot define a sequence item when in a mapping");o=this.CONTEXT_SEQUENCE,null==i&&(i=[]),null!=P.value&&(M=this.PATTERN_ANCHOR_VALUE.exec(P.value))&&(d=M.ref,P.value=M.value),null==P.value||""===I.trim(P.value," ")||0===I.ltrim(P.value," ").indexOf("#")?this.currentLineNb<this.lines.length-1&&!this.isNextLineUnIndentedCollection()?((L=new R(this.getRealCurrentLineNb()+1)).refs=this.refs,i.push(L.parse(this.getNextEmbedBlock(null,!0),t,n))):i.push(null):null!=(T=P.leadspaces)&&T.length&&(M=this.PATTERN_COMPACT_NOTATION.exec(P.value))?((L=new R(this.getRealCurrentLineNb())).refs=this.refs,T=P.value,b=this.getCurrentLineIndentation(),this.isNextLineIndented(!1)&&(T+="\n"+this.getNextEmbedBlock(b+P.leadspaces.length+1,!0)),i.push(L.parse(T,t,n))):i.push(this.parseValue(P.value,t,n))}else{if(!(P=this.PATTERN_MAPPING_ITEM.exec(this.currentLine))||-1!==P.key.indexOf(" #")){if(1===(b=this.lines.length)||2===b&&I.isEmpty(this.lines[1])){try{e=j.parse(this.lines[0],t,n)}catch(e){throw(l=e).parsedLine=this.getRealCurrentLineNb()+1,l.snippet=this.currentLine,l}if("object"==typeof e){if(e instanceof Array)s=e[0];else for(p in e){s=e[p];break}if("string"==typeof s&&0===s.indexOf("*")){for(i=[],S=0,_=e.length;S<_;S++)a=e[S],i.push(this.refs[a.slice(1)]);e=i}}return e}if("["===(T=I.ltrim(e).charAt(0))||"{"===T)try{return j.parse(e,t,n)}catch(e){throw(l=e).parsedLine=this.getRealCurrentLineNb()+1,l.snippet=this.currentLine,l}throw new Y("Unable to parse.",this.getRealCurrentLineNb()+1,this.currentLine)}if(this.CONTEXT_SEQUENCE===o)throw new Y("You cannot define a mapping item when in a sequence");o=this.CONTEXT_MAPPING,null==i&&(i={}),j.configure(t,n);try{p=j.parseScalar(P.key)}catch(e){throw(l=e).parsedLine=this.getRealCurrentLineNb()+1,l.snippet=this.currentLine,l}if("<<"===p)if(r=k=!0,0===(null!=(D=P.value)?D.indexOf("*"):void 0)){if(D=P.value.slice(1),null==this.refs[D])throw new Y('Reference "'+D+'" does not exist.',this.getRealCurrentLineNb()+1,this.currentLine);if("object"!=typeof(O=this.refs[D]))throw new Y("YAML merge keys used with a scalar value instead of an object.",this.getRealCurrentLineNb()+1,this.currentLine);if(O instanceof Array)for(u=c=0,g=O.length;c<g;u=++c)e=O[u],null==i[E=String(u)]&&(i[E]=e);else for(p in O)e=O[p],null==i[p]&&(i[p]=e)}else{if(e=null!=P.value&&""!==P.value?P.value:this.getNextEmbedBlock(),(L=new R(this.getRealCurrentLineNb()+1)).refs=this.refs,"object"!=typeof(x=L.parse(e,t)))throw new Y("YAML merge keys used with a scalar value instead of an object.",this.getRealCurrentLineNb()+1,this.currentLine);if(x instanceof Array)for(h=0,y=x.length;h<y;h++){if("object"!=typeof(C=x[h]))throw new Y("Merge items must be objects.",this.getRealCurrentLineNb()+1,C);if(C instanceof Array)for(u=w=0,v=C.length;w<v;u=++w)e=C[u],f=String(u),i.hasOwnProperty(f)||(i[f]=e);else for(p in C)e=C[p],i.hasOwnProperty(p)||(i[p]=e)}else for(p in x)e=x[p],i.hasOwnProperty(p)||(i[p]=e)}else null!=P.value&&(M=this.PATTERN_ANCHOR_VALUE.exec(P.value))&&(d=M.ref,P.value=M.value);k||(null==P.value||""===I.trim(P.value," ")||0===I.ltrim(P.value," ").indexOf("#")?this.isNextLineIndented()||this.isNextLineUnIndentedCollection()?((L=new R(this.getRealCurrentLineNb()+1)).refs=this.refs,N=L.parse(this.getNextEmbedBlock(),t,n),!r&&void 0!==i[p]||(i[p]=N)):!r&&void 0!==i[p]||(i[p]=null):(N=this.parseValue(P.value,t,n),!r&&void 0!==i[p]||(i[p]=N)))}if(d)if(i instanceof Array)this.refs[d]=i[i.length-1];else{for(p in m=null,i)m=p;this.refs[d]=i[m]}}return I.isEmpty(i)?null:i},R.prototype.getRealCurrentLineNb=function(){return this.currentLineNb+this.offset},R.prototype.getCurrentLineIndentation=function(){return this.currentLine.length-I.ltrim(this.currentLine," ").length},R.prototype.getNextEmbedBlock=function(e,t){var n,a,r,o,i,l,s;if(null==e&&(e=null),null==t&&(t=!1),this.moveToNextLine(),null==e){if(o=this.getCurrentLineIndentation(),s=this.isStringUnIndentedCollectionItem(this.currentLine),!this.isCurrentLineEmpty()&&0===o&&!s)throw new Y("Indentation problem.",this.getRealCurrentLineNb()+1,this.currentLine)}else o=e;for(n=[this.currentLine.slice(o)],t||(r=this.isStringUnIndentedCollectionItem(this.currentLine)),i=!(l=this.PATTERN_FOLDED_SCALAR_END).test(this.currentLine);this.moveToNextLine();)if(!(i=(a=this.getCurrentLineIndentation())===o?!l.test(this.currentLine):i)||!this.isCurrentLineComment())if(this.isCurrentLineBlank())n.push(this.currentLine.slice(o));else{if(r&&!this.isStringUnIndentedCollectionItem(this.currentLine)&&a===o){this.moveToPreviousLine();break}if(o<=a)n.push(this.currentLine.slice(o));else if("#"!==I.ltrim(this.currentLine).charAt(0)){if(0!==a)throw new Y("Indentation problem.",this.getRealCurrentLineNb()+1,this.currentLine);this.moveToPreviousLine();break}}return n.join("\n")},R.prototype.moveToNextLine=function(){return!(this.currentLineNb>=this.lines.length-1)&&(this.currentLine=this.lines[++this.currentLineNb],!0)},R.prototype.moveToPreviousLine=function(){this.currentLine=this.lines[--this.currentLineNb]},R.prototype.parseValue=function(t,e,n){var a,r,o,i;if(0===t.indexOf("*")){if(t=-1!==(r=t.indexOf("#"))?t.substr(1,r-2):t.slice(1),void 0===this.refs[t])throw new Y('Reference "'+t+'" does not exist.',this.currentLine);return this.refs[t]}if(r=this.PATTERN_FOLDED_SCALAR_ALL.exec(t))return i=null!=(i=r.modifiers)?i:"",o=Math.abs(parseInt(i)),isNaN(o)&&(o=0),i=this.parseFoldedScalar(r.separator,this.PATTERN_DECIMAL.replace(i,""),o),null!=r.type?(j.configure(e,n),j.parseScalar(r.type+" "+i)):i;if("["!==(o=t.charAt(0))&&"{"!==o&&'"'!==o&&"'"!==o)return this.isNextLineIndented()&&(t+="\n"+this.getNextEmbedBlock()),j.parse(t,e,n);for(;;)try{return j.parse(t,e,n)}catch(e){if(!((a=e)instanceof l&&this.moveToNextLine()))throw a.parsedLine=this.getRealCurrentLineNb()+1,a.snippet=this.currentLine,a;t+="\n"+I.trim(this.currentLine," ")}},R.prototype.parseFoldedScalar=function(e,t,n){var a,r,o,i,l,s,u,d,c,f;if(null==t&&(t=""),null==n&&(n=0),!(u=this.moveToNextLine()))return"";for(a=this.isCurrentLineBlank(),f="";u&&a;)(u=this.moveToNextLine())&&(f+="\n",a=this.isCurrentLineBlank());if(0<(n=0===n&&(l=this.PATTERN_INDENT_SPACES.exec(this.currentLine))?l[0].length:n))for(null==(d=this.PATTERN_FOLDED_SCALAR_BY_INDENTATION[n])&&(d=new p("^ {"+n+"}(.*)$"),R.prototype.PATTERN_FOLDED_SCALAR_BY_INDENTATION[n]=d);u&&(a||(l=d.exec(this.currentLine)));)f+=a?this.currentLine.slice(n):l[1],(u=this.moveToNextLine())&&(f+="\n",a=this.isCurrentLineBlank());else u&&(f+="\n");if(u&&this.moveToPreviousLine(),">"===e){for(s="",r=0,o=(c=f.split("\n")).length;r<o;r++)0===(i=c[r]).length||" "===i.charAt(0)?s=I.rtrim(s," ")+i+"\n":s+=i+" ";f=s}return"+"!==t&&(f=I.rtrim(f)),""===t?f=this.PATTERN_TRAILING_LINES.replace(f,"\n"):"-"===t&&(f=this.PATTERN_TRAILING_LINES.replace(f,"")),f},R.prototype.isNextLineIndented=function(e){var t,n;if(null==e&&(e=!0),n=this.getCurrentLineIndentation(),t=!this.moveToNextLine(),e)for(;!t&&this.isCurrentLineEmpty();)t=!this.moveToNextLine();else for(;!t&&this.isCurrentLineBlank();)t=!this.moveToNextLine();return!t&&(e=!1,this.getCurrentLineIndentation()>n&&(e=!0),this.moveToPreviousLine(),e)},R.prototype.isCurrentLineEmpty=function(){var e=I.trim(this.currentLine," ");return 0===e.length||"#"===e.charAt(0)},R.prototype.isCurrentLineBlank=function(){return""===I.trim(this.currentLine," ")},R.prototype.isCurrentLineComment=function(){return"#"===I.ltrim(this.currentLine," ").charAt(0)},R.prototype.cleanup=function(e){var t,n,a,r,o,i,l,s,u,d,c;for(-1!==e.indexOf("\r")&&(e=e.split("\r\n").join("\n").split("\r").join("\n")),e=(u=this.PATTERN_YAML_HEADER.replaceAll(e,""))[0],u=u[1],this.offset+=u,c=(u=this.PATTERN_LEADING_COMMENTS.replaceAll(e,"",1))[0],1===u[1]&&(this.offset+=I.subStrCount(e,"\n")-I.subStrCount(c,"\n"),e=c),c=(u=this.PATTERN_DOCUMENT_MARKER_START.replaceAll(e,"",1))[0],1===u[1]&&(this.offset+=I.subStrCount(e,"\n")-I.subStrCount(c,"\n"),e=c,e=this.PATTERN_DOCUMENT_MARKER_END.replace(e,"")),d=-1,a=0,o=(s=e.split("\n")).length;a<o;a++)l=s[a],0!==I.trim(l," ").length&&(n=l.length-I.ltrim(l).length,(-1===d||n<d)&&(d=n));if(0<d){for(t=r=0,i=s.length;r<i;t=++r)l=s[t],s[t]=l.slice(d);e=s.join("\n")}return e},R.prototype.isNextLineUnIndentedCollection=function(e){var t,n;for(null==(e=null==e?null:e)&&(e=this.getCurrentLineIndentation()),t=this.moveToNextLine();t&&this.isCurrentLineEmpty();)t=this.moveToNextLine();return!1!==t&&(n=!1,this.getCurrentLineIndentation()===e&&this.isStringUnIndentedCollectionItem(this.currentLine)&&(n=!0),this.moveToPreviousLine(),n)},R.prototype.isStringUnIndentedCollectionItem=function(){return"-"===this.currentLine||"- "===this.currentLine.slice(0,2)},e.exports=R},function(e,t,n){var a;function r(){}a=n(112),n=n(111),r.PATTERN_ESCAPED_CHARACTER=new n('\\\\([0abt\tnvfre "\\/\\\\N_LP]|x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8})'),r.unescapeSingleQuotedString=function(e){return e.replace(/\'\'/g,"'")},r.unescapeDoubleQuotedString=function(e){var t;return null==this._unescapeCallback&&(this._unescapeCallback=(t=this,function(e){return t.unescapeCharacter(e)})),this.PATTERN_ESCAPED_CHARACTER.replace(e,this._unescapeCallback)},r.unescapeCharacter=function(e){var t=String.fromCharCode;switch(e.charAt(1)){case"0":return t(0);case"a":return t(7);case"b":return t(8);case"t":case"\t":return"\t";case"n":return"\n";case"v":return t(11);case"f":return t(12);case"r":return t(13);case"e":return t(27);case" ":return" ";case'"':return'"';case"/":return"/";case"\\":return"\\";case"N":return t(133);case"_":return t(160);case"L":return t(8232);case"P":return t(8233);case"x":return a.utf8chr(a.hexDec(e.substr(2,2)));case"u":return a.utf8chr(a.hexDec(e.substr(2,4)));case"U":return a.utf8chr(a.hexDec(e.substr(2,8)));default:return""}},e.exports=r},function(e,t){},function(e,t,n){var a;function r(){}n=n(111),r.LIST_ESCAPEES=["\\","\\\\",'\\"','"',"\0","","","","","","","","\b","\t","\n","\v","\f","\r","","","","","","","","","","","","","","","","","","",(a=String.fromCharCode)(133),a(160),a(8232),a(8233)],r.LIST_ESCAPED=["\\\\",'\\"','\\"','\\"',"\\0","\\x01","\\x02","\\x03","\\x04","\\x05","\\x06","\\a","\\b","\\t","\\n","\\v","\\f","\\r","\\x0e","\\x0f","\\x10","\\x11","\\x12","\\x13","\\x14","\\x15","\\x16","\\x17","\\x18","\\x19","\\x1a","\\e","\\x1c","\\x1d","\\x1e","\\x1f","\\N","\\_","\\L","\\P"],r.MAPPING_ESCAPEES_TO_ESCAPED=function(){for(var e,t={},n=e=0,a=r.LIST_ESCAPEES.length;0<=a?e<a:a<e;n=0<=a?++e:--e)t[r.LIST_ESCAPEES[n]]=r.LIST_ESCAPED[n];return t}(),r.PATTERN_CHARACTERS_TO_ESCAPE=new n("[\\x00-\\x1f]|ÃÂ
|à|â¨|â©"),r.PATTERN_MAPPING_ESCAPEES=new n(r.LIST_ESCAPEES.join("|").split("\\").join("\\\\")),r.PATTERN_SINGLE_QUOTING=new n("[\\s'\":{}[\\],&*#?]|^[-?|<>=!%@`]"),r.requiresDoubleQuoting=function(e){return this.PATTERN_CHARACTERS_TO_ESCAPE.test(e)},r.escapeWithDoubleQuotes=function(e){var t;return'"'+this.PATTERN_MAPPING_ESCAPEES.replace(e,(t=this,function(e){return t.MAPPING_ESCAPEES_TO_ESCAPED[e]}))+'"'},r.requiresSingleQuoting=function(e){return this.PATTERN_SINGLE_QUOTING.test(e)},r.escapeWithSingleQuotes=function(e){return"'"+e.replace(/'/g,"''")+"'"},e.exports=r},function(e,t){var i={}.hasOwnProperty,n=function(e){var t,n=o,a=e;for(t in a)i.call(a,t)&&(n[t]=a[t]);function r(){this.constructor=n}function o(e,t,n){this.message=e,this.parsedLine=t,this.snippet=n}return r.prototype=a.prototype,n.prototype=new r,n.__super__=a.prototype,o.prototype.toString=function(){return null!=this.parsedLine&&null!=this.snippet?"<DumpException> "+this.message+" (line "+this.parsedLine+": '"+this.snippet+"')":"<DumpException> "+this.message},o}(Error);e.exports=n},function(e,t,n){var f,p;function a(){}p=n(112),f=n(396),a.indentation=4,a.prototype.dump=function(e,t,n,a,r){var o,i,l,s,u,d,c;if(null==t&&(t=0),null==a&&(a=!1),null==r&&(r=null),s="",u=(n=null==n?0:n)?p.strRepeat(" ",n):"",t<=0||"object"!=typeof e||e instanceof Date||p.isEmpty(e))s+=u+f.dump(e,a,r);else if(e instanceof Array)for(o=0,l=e.length;o<l;o++)d=e[o],s+=u+"-"+((c=t-1<=0||"object"!=typeof d||p.isEmpty(d))?" ":"\n")+this.dump(d,t-1,c?0:n+this.indentation,a,r)+(c?"\n":"");else for(i in e)d=e[i],c=t-1<=0||"object"!=typeof d||p.isEmpty(d),s+=u+f.dump(i,a,r)+":"+(c?" ":"\n")+this.dump(d,t-1,c?0:n+this.indentation,a,r)+(c?"\n":"");return s},e.exports=a},function(e,t,n){},function(e,t,n){"use strict";t.__esModule=!0;var a,h=f(n(38)),x=f(n(2)),r=f(n(4)),o=f(n(6)),i=f(n(7)),C=f(n(0)),l=f(n(3)),L=f(n(13)),s=n(30),T=n(11),m=f(n(74)),D=f(n(10)),u=f(n(24)),d=f(n(44)),c=f(n(399)),g=n(177);function f(e){return e&&e.__esModule?e:{default:e}}var p,y=T.func.bindCtx,n=T.func.noop,O=9===T.env.ieVersion,l=(p=c.default,(0,i.default)(N,p),N.getDerivedStateFromProps=function(e,t){var n,a={};return"value"in e&&e.value!==t.value&&(0,x.default)(a,{value:e.value}),"highlightKey"in e&&e.highlightKey!==t.highlightKey?(0,x.default)(a,{highlightKey:e.highlightKey}):"value"in e&&e.value!==t.value&&"single"===e.mode&&(0,x.default)(a,{highlightKey:e.value}),"searchValue"in e&&e.searchValue!==t.searchValue&&(n=e.searchValue,(0,x.default)(a,{searchValue:null==n?"":n})),"visible"in e&&e.visible!==t.visible&&(0,x.default)(a,{visible:e.visible}),Object.keys(a).length?a:null},N.prototype.componentDidUpdate=function(e,t){var n=this.props;"searchValue"in n&&this.state.searchValue!==t.searchValue&&this.dataStore.setOptions({key:this.state.searchValue}),n.mode!==e.mode&&this.dataStore.setOptions({addonKey:"tag"===n.mode}),n.mode!==e.mode&&this.dataStore.setOptions({addonKey:"tag"===n.mode}),n.filter!==e.filter&&this.dataStore.setOptions({filter:n.filter}),n.filterLocal!==e.filterLocal&&this.dataStore.setOptions({filterLocal:n.filterLocal}),e.children===n.children&&e.dataSource===n.dataSource||(this.setState({dataSource:this.setDataSource(n)}),n.popupContent||this.setFirstHightLightKeyForMenu(this.state.searchValue)),"value"in n?(this.valueDataSource=(0,g.getValueDataSource)(n.value,this.valueDataSource.mapValueDS,this.dataStore.getMapDS()),this.updateSelectAllYet(this.valueDataSource.value)):"defaultValue"in n&&n.defaultValue===this.valueDataSource.value&&(n.children!==e.children||n.dataSource!==e.dataSource)&&(this.valueDataSource=(0,g.getValueDataSource)(n.defaultValue,this.valueDataSource.mapValueDS,this.dataStore.getMapDS())),e.label===this.props.label&&t.value===this.state.value&&n.searchValue===this.state.searchValue||this.syncWidth()},N.prototype.componentDidMount=function(){O&&this.ie9Hack(),p.prototype.componentDidMount.call(this)},N.prototype.ie9Hack=function(){try{var e=this.selectDOM.currentStyle.width;this.setState({fixWidth:"auto"!==e})}catch(e){}},N.prototype.useDetailValue=function(){var e=this.props,t=e.popupContent,n=e.useDetailValue,e=e.dataSource;return n||t&&!e},N.prototype.hasSearch=function(){var e=this.props,t=e.showSearch,e=e.mode;return t||"tag"===e},N.prototype.getTagSize=function(){var e=this.props,t=e.size;return e.adjustTagSize?t:"large"===t?"medium":"small"},N.prototype.handleMenuSelect=function(e,t){var n=this.props,a=n.mode,r=n.readOnly,n=n.disabled;return!r&&!n&&("single"===a?this.handleSingleSelect(e[0],"itemClick"):this.handleMultipleSelect(e,"itemClick",t.props&&t.props._key))},N.prototype.handleItemClick=function(e){this.props.popupAutoFocus||this.focusInput(),"single"===this.props.mode&&e===String(this.state.value)&&this.setVisible(!1,"itemClick")},N.prototype.handleSingleSelect=function(e,t){var n=this.props.cacheValue,n=(0,g.getValueDataSource)(e,n?this.valueDataSource.mapValueDS:{},this.dataStore.getMapDS());if(this.valueDataSource=n,this.setVisible(!1,t),this.setState({highlightKey:e}),this.useDetailValue())return this.handleChange(n.valueDS,t);this.handleChange(n.value,t,n.valueDS),"searchValue"in this.props||!this.state.searchValue||this.handleSearchClear(t)},N.prototype.handleMultipleSelect=function(e,t,n,a){var r=this,e=(0,g.getValueDataSource)(e,this.valueDataSource.mapValueDS,this.dataStore.getMapDS()),o=this.props,i=o.cacheValue,l=o.mode,o=o.hiddenSelected;!i&&"tag"!==l||(this.valueDataSource=e),o&&this.setVisible(!1,t),n&&this.state.visible&&this.setState({highlightKey:n}),this.useDetailValue()?this.handleChange(e.valueDS,t):this.handleChange(e.value,t,e.valueDS),this.updateSelectAllYet(e.value),"searchValue"in this.props||!this.state.searchValue||a||setTimeout(function(){r.handleSearchClear(t)})},N.prototype.updateSelectAllYet=function(t){var e,n=this;this.selectAllYet=!1,this.props.hasSelectAll&&Array.isArray(t)&&((e=this.dataStore.getEnableDS().map(function(e){return e.value})).length<=t.length&&(this.selectAllYet=!0,e.forEach(function(e){-1===t.indexOf(e)&&(n.selectAllYet=!1)})))},N.prototype.handleSearchValue=function(e){this.state.searchValue!==e&&(this.props.filterLocal?"searchValue"in this.props||(this.setState({searchValue:e,dataSource:this.dataStore.updateByKey(e)}),this.setFirstHightLightKeyForMenu(e)):"searchValue"in this.props||this.setState({searchValue:e}))},N.prototype.handleSearch=function(e,t){this.handleSearchValue(e),!this.state.visible&&e&&this.setVisible(!0),this.props.onSearch(e,t)},N.prototype.handleSearchClear=function(e){this.handleSearchValue(""),this.props.onSearchClear(e)},N.prototype.handleSearchKeyDown=function(e){var t=this.props,n=t.popupContent,a=t.onKeyDown,r=t.showSearch,o=t.mode,i=t.hasClear,l=t.onToggleHighlightItem,s=t.readOnly,u=t.disabled,d=this.hasSearch();if(n)return d&&e.keyCode===T.KEYCODE.SPACE&&e.stopPropagation(),a(e);var c;switch(e.keyCode){case T.KEYCODE.UP:e.preventDefault(),l(this.toggleHighlightItem(-1,e),"up");break;case T.KEYCODE.DOWN:e.preventDefault(),l(this.toggleHighlightItem(1,e),"down");break;case T.KEYCODE.ENTER:if(e.preventDefault(),s||u)break;this.chooseHighlightItem("search",e);break;case T.KEYCODE.ESC:e.preventDefault(),this.state.visible&&this.setVisible(!1,"keyDown");break;case T.KEYCODE.SPACE:e.stopPropagation(),d||e.preventDefault();break;case T.KEYCODE.BACKSPACE:if(s||u)break;"multiple"===o&&r||"tag"===o?(c=this.valueDataSource.valueDS)&&c.length&&!c[c.length-1].disabled&&this.handleDeleteTag(e):"single"===o&&i&&!this.state.visible&&this.handleClear(e)}a(e)},N.prototype.chooseMultipleItem=function(e){var t=(this.state.value||[]).map(function(e){return(0,g.valueToSelectKey)(e)}),n=!1,a=t.map(function(e){return""+e}).indexOf(e);-1<a?(t.splice(a,1),n=!0):t.push(e),this.handleMultipleSelect(t,"enter",null,n)},N.prototype.chooseHighlightItem=function(e,t){var n=this.props.mode;if(!this.state.visible)return"tag"===n&&this.state.searchValue&&this.chooseMultipleItem(this.state.searchValue),!1;var a=this.state.highlightKey;null!==a&&this.dataStore.getMenuDS().length&&("single"===n?this.handleSingleSelect(a,"enter"):(this.chooseMultipleItem(a),t&&t.stopPropagation()))},N.prototype.handleTagClose=function(t){var e;return this.props.readOnly||(this.useDetailValue()?(e=this.state.value.filter(function(e){return t.value!==e.value}),this.handleChange(e,"tag")):(e=this.state.value.filter(function(e){return t.value!==e}),this.handleMultipleSelect(e,"tag")),this.props.onRemove(t)),!1},N.prototype.handleDeleteTag=function(e){var t=this.state.value;if(this.state.searchValue||!t||!t.length)return!1;e.preventDefault();e=t.slice(0,t.length-1);this.useDetailValue()?this.handleChange(e,"tag"):this.handleMultipleSelect(e,"tag")},N.prototype.handleSelectAll=function(e){e&&e.preventDefault();e=void 0,e=this.selectAllYet?[]:this.dataStore.getEnableDS().map(function(e){return e.value});this.handleMultipleSelect(e,"selectAll")},N.prototype.handleVisibleChange=function(e,t){this.setVisible(e,t)},N.prototype.afterClose=function(){this.hasSearch()&&this.handleSearchClear("popupClose")},N.prototype.maxTagPlaceholder=function(e,t){var n=this.props.locale;return""+T.str.template(n.maxTagPlaceholder,{selected:e.length,total:t.length})},N.prototype.renderValues=function(){var e,t,n=this,a=this.props,r=a.prefix,o=a.mode,i=a.valueRender,l=a.fillProps,s=a.disabled,u=a.maxTagCount,d=a.maxTagPlaceholder,c=a.tagInline,f=a.tagClosable,p=this.getTagSize(),a=this.state.value;if((0,g.isNull)(a))return null;if(this.useDetailValue()||(a=(a===this.valueDataSource.value?this.valueDataSource:(0,g.getValueDataSource)(a,this.valueDataSource.mapValueDS,this.dataStore.getMapDS())).valueDS),"single"!==o)return a?(o=a,e=void 0,t=this.dataStore.getFlattenDS(),d="maxTagPlaceholder"in this.props?d:this.maxTagPlaceholder,void 0!==u&&a.length>u&&!c&&(o=o.slice(0,u),e=C.default.createElement(m.default,{key:"_count",type:"primary",size:p,animation:!1},d(a,t))),0<a.length&&c&&(e=C.default.createElement("div",{className:r+"select-tag-compact",key:"_count"},d(a,t))),a=o,u=(a=Array.isArray(a)?a:[a]).map(function(e){if(!e)return null;var t=l?e[l]:i(e);return C.default.createElement(m.default,{key:e.value,disabled:s||e.disabled,type:"primary",size:p,animation:!1,onClose:n.handleTagClose.bind(n,e),closable:f},t)}),e&&(c?u.unshift(e):u.push(e)),u):null;if(!a)return null;r=l&&"object"===(void 0===a?"undefined":(0,h.default)(a))&&l in a?a[l]:i(a);return"number"==typeof r?r.toString():r},N.prototype.hasClear=function(){var e=this.props,t=e.hasClear,n=e.readOnly,a=e.disabled,e=e.showSearch,r=this.state,o=r.value,r=r.visible;return null!=o&&(!Array.isArray(o)||0<o.length)&&t&&!n&&!a&&!(e&&r)},N.prototype.renderExtraNode=function(){var e=this.props,t=e.hasArrow,n=e.hasClear,e=e.prefix,a=[];return t&&a.push(C.default.createElement("span",{key:"arrow","aria-hidden":!0,onClick:this.handleArrowClick,className:e+"select-arrow"},C.default.createElement(u.default,{type:"arrow-down",className:e+"select-symbol-fold"}))),n&&a.push(C.default.createElement("span",{key:"clear","aria-hidden":!0,onClick:this.handleClear,className:e+"select-clear"},C.default.createElement(u.default,{type:"delete-filling"}))),a},N.prototype.renderSelect=function(){var t=this,e=this.props,n=e.prefix,a=e.showSearch,r=e.placeholder,o=e.mode,i=e.size,l=e.className,s=e.style,u=e.readOnly,d=e.disabled,c=e.hasBorder,f=e.label,p=e.locale,h=e.state,m=e.onBlur,g=e.onFocus,y=e.onMouseEnter,v=e.onMouseLeave,e=e.rtl,_=T.obj.pickOthers(N.propTypes,this.props),b=T.obj.pickAttrsWith(_,"data-"),w=this.state.visible,M="single"===o,k=this.hasSearch(),S=this.renderValues(),E=r||p.selectPlaceholder||p.selectPlaceHolder,r=(S&&S.length&&(E=null),a&&w&&M&&"string"==typeof S&&(E=S),this.renderExtraNode()),a=(0,L.default)([n+"select",n+"select-trigger",n+"select-"+o,""+n+i,l],((p={})[n+"active"]=w,p[n+"inactive"]=!w,p[n+"no-search"]=!k,p[n+"has-search"]=k,p[n+"select-in-ie"]=O,p[n+"select-in-ie-fixwidth"]=this.state.fixWidth,p[n+"has-clear"]=this.hasClear(),p)),M=this.valueDataSource.valueDS?this.valueDataSource.valueDS.label:"";return C.default.createElement("span",(0,x.default)({},b,{className:a,style:s,dir:e?"rtl":void 0,ref:this.saveSelectRef,onClick:this.handleWrapClick,onMouseEnter:y,onMouseLeave:v,onMouseDown:this.handleWrapClick}),C.default.createElement(D.default,(0,x.default)({"aria-valuetext":M},T.obj.pickOthers(b,_),{role:"combobox",tabIndex:0,"aria-expanded":this.state.visible,"aria-disabled":d,state:h,label:f,extra:r,value:this.state.searchValue,size:i,readOnly:!this.hasSearch()||u,disabled:d,placeholder:E,hasBorder:c,hasClear:!1,htmlSize:"1",inputRender:function(e){return t.renderSearchInput(S,E,e)},onChange:this.handleSearch,onKeyDown:this.handleSearchKeyDown,onFocus:g,onBlur:m,className:n+"select-inner",ref:this.saveInputRef})),C.default.createElement("span",{className:n+"sr-only","aria-live":"polite"},this.state.srReader))},N.prototype.renderSearchInput=function(e,t,n){var a=this.props,r=a.prefix,o=a.mode,a=a.tagInline,o="single"===o,i=this.state.searchValue,l=(0,L.default)(((l={})[r+"select-values"]=!0,l[r+"input-text-field"]=!0,l[r+"select-compact"]=!o&&a,l)),e=[o&&e?C.default.createElement("em",{title:"string"==typeof e?e:"",key:"select-value"},e):e],r=C.default.createElement("span",{key:"trigger-search",className:r+"select-trigger-search"},n,C.default.createElement("span",{"aria-hidden":!0},C.default.createElement("span",null,i||t),C.default.createElement("span",{style:{display:"inline-block",width:1}}," ")));return!o&&a?e.unshift(r):e.push(r),C.default.createElement("span",{className:l},e)},N.prototype.renderMenuHeader=function(){var e=this.props,t=e.prefix,n=e.hasSelectAll,a=e.mode,r=e.locale,e=e.menuProps;if(e&&"header"in e)return e.header;e=this.dataStore.getEnableDS().length;if(!n||"single"===a||!e)return null;a="boolean"==typeof n?r.selectAll:n,e=this.selectAllYet,n=(0,L.default)(((r={})[t+"select-all"]=!0,r[t+"selected"]=e,r)),r=(0,L.default)(((r={})[t+"select-all-inner"]=!0,r));return C.default.createElement("div",{key:"all",onClick:this.handleSelectAll,className:n,style:{lineHeight:"unset"}},e?C.default.createElement(u.default,{className:t+"menu-icon-selected",style:{display:"none"},type:"select"}):null,C.default.createElement("span",{className:r},a))},N.prototype.render=function(){var e=this.props.mode,t=(0,x.default)({},this.props);return this.hasSearch()&&(t.canCloseByTrigger=!1),"single"===e&&(t.cache=!0),p.prototype.render.call(this,t)},a=i=N,i.propTypes=(0,x.default)({},c.default.propTypes,{mode:l.default.oneOf(["single","multiple","tag"]),value:l.default.any,defaultValue:l.default.any,onChange:l.default.func,dataSource:l.default.arrayOf(l.default.oneOfType([l.default.shape({value:l.default.any,label:l.default.any,disabled:l.default.bool,children:l.default.array}),l.default.bool,l.default.number,l.default.string])),hasBorder:l.default.bool,hasArrow:l.default.bool,showSearch:l.default.bool,onSearch:l.default.func,onSearchClear:l.default.func,hasSelectAll:l.default.oneOfType([l.default.bool,l.default.string]),fillProps:l.default.string,useDetailValue:l.default.bool,cacheValue:l.default.bool,valueRender:l.default.func,itemRender:l.default.func,notFoundContent:l.default.node,style:l.default.object,searchValue:l.default.string,tagInline:l.default.bool,tagClosable:l.default.bool,adjustTagSize:l.default.bool,maxTagCount:l.default.number,maxTagPlaceholder:l.default.func,hiddenSelected:l.default.bool,onRemove:l.default.func,onFocus:l.default.func,onBlur:l.default.func,onMouseEnter:l.default.func,onMouseLeave:l.default.func,onKeyDown:l.default.func,locale:l.default.object,popupAutoFocus:l.default.bool,showDataSourceChildren:l.default.bool}),i.defaultProps=(0,x.default)({},c.default.defaultProps,{locale:d.default.Select,mode:"single",showSearch:!1,cacheValue:!0,tagInline:!1,adjustTagSize:!1,onSearch:n,onSearchClear:n,hasArrow:!0,onRemove:n,valueRender:function(e){return e.label||e.value},onKeyDown:n,onFocus:n,onBlur:n,onMouseEnter:n,onMouseLeave:n,popupAutoFocus:!1,tagClosable:!0}),i.displayName="Select",a);function N(e){(0,r.default)(this,N);var t=(0,o.default)(this,p.call(this,e)),n=(t.handleWrapClick=function(e){"INPUT"!==e.target.nodeName&&e.preventDefault(),t.focusInput()},t.handleArrowClick=function(e){e.preventDefault(),t.focusInput(),t.state.visible&&t.hasSearch()&&t.setVisible(!1)},t.handleClear=function(e){e.stopPropagation(),t.selectAllYet=!1,t.handleChange(void 0,"clear")},t.valueDataSource={valueDS:[],mapValueDS:{}},"searchValue"in e?e.searchValue:"");return t.dataStore.setOptions({key:n,addonKey:"tag"===e.mode}),(0,x.default)(t.state,{searchValue:n,dataSource:t.setDataSource(e)}),void 0!==t.state.value&&(t.valueDataSource=(0,g.getValueDataSource)(t.state.value,t.valueDataSource.mapValueDS,t.dataStore.getMapDS())),y(t,["handleMenuSelect","handleItemClick","handleSearch","handleSearchKeyDown","handleSelectAll","maxTagPlaceholder"]),t}t.default=(0,s.polyfill)(l),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var o=f(n(2)),i=f(n(12)),a=f(n(4)),r=f(n(6)),l=f(n(7)),s=n(0),u=f(s),d=f(n(3)),c=f(n(13));function f(e){return e&&e.__esModule?e:{default:e}}p=s.Component,(0,l.default)(h,p),h.prototype.render=function(){var e=this.props,t=e.className,n=e.prefix,a=e.children,r=e.rtl,e=(0,i.default)(e,["className","prefix","children","rtl"]),n=(0,c.default)((n||"next-")+"tag-group",t);return u.default.createElement("div",(0,o.default)({className:n,dir:r?"rtl":void 0},e),a)},s=n=h,n.propTypes={prefix:d.default.string,className:d.default.any,children:d.default.node,rtl:d.default.bool},n.defaultProps={prefix:"next-",rtl:!1};var p,l=s;function h(){return(0,a.default)(this,h),(0,r.default)(this,p.apply(this,arguments))}l.displayName="Group",t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=h(n(2)),r=h(n(4)),o=h(n(6)),i=h(n(7)),l=n(0),s=h(l),u=h(n(3)),d=h(n(13)),c=n(30),f=n(11),p=h(n(176));function h(e){return e&&e.__esModule?e:{default:e}}var m,n=f.func.noop,g=f.func.bindCtx,u=(m=l.Component,(0,i.default)(y,m),y.getDerivedStateFromProps=function(e,t){return void 0!==e.checked&&e.checked!==t.checked?{checked:e.checked}:null},y.prototype.handleClick=function(e){if(e&&e.preventDefault(),this.props.disabled)return!1;var t=this.state.checked;this.setState({checked:!t}),this.props.onChange(!t,e)},y.prototype.render=function(){var e=f.obj.pickOthers(["checked","defaultChecked","onChange","className","_shape","closable"],this.props),t=("checked"in this.props?this.props:this.state).checked,n=(0,d.default)(this.props.className,{checked:t});return s.default.createElement(p.default,(0,a.default)({},e,{role:"checkbox",_shape:"checkable","aria-checked":t,className:n,onClick:this.handleClick}))},i=l=y,l.propTypes={checked:u.default.bool,defaultChecked:u.default.bool,onChange:u.default.func,disabled:u.default.bool,className:u.default.any},l.defaultProps={onChange:n},i);function y(e){(0,r.default)(this,y);var t=(0,o.default)(this,m.call(this,e));return t.state={checked:"checked"in e?e.checked:e.defaultChecked||!1},g(t,["handleClick"]),t}u.displayName="Selectable",t.default=(0,c.polyfill)(u),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var c=s(n(2)),f=s(n(12)),a=s(n(4)),r=s(n(6)),o=s(n(7)),i=n(0),p=s(i),l=s(n(3)),h=s(n(176));function s(e){return e&&e.__esModule?e:{default:e}}u=i.Component,(0,o.default)(d,u),d.prototype.render=function(){var e=this.props,t=e.disabled,n=e.className,a=e.closeArea,r=e.onClose,o=e.afterClose,i=e.onClick,l=e.type,s=e.size,u=e.children,d=e.rtl,e=(0,f.default)(e,["disabled","className","closeArea","onClose","afterClose","onClick","type","size","children","rtl"]);return p.default.createElement(h.default,(0,c.default)({},e,{rtl:d,disabled:t,className:n,closeArea:a,onClose:r,afterClose:o,onClick:i,type:l,size:s,closable:!0}),u)},i=n=d,n.propTypes={disabled:l.default.bool,className:l.default.any,closeArea:l.default.oneOf(["tag","tail"]),onClose:l.default.func,afterClose:l.default.func,onClick:l.default.func,type:l.default.oneOf(["normal","primary"]),size:l.default.oneOf(["small","medium","large"]),children:l.default.any,rtl:l.default.bool},n.defaultProps={disabled:!1,type:"normal"};var u,o=i;function d(){return(0,a.default)(this,d),(0,r.default)(this,u.apply(this,arguments))}o.displayName="Closeable",t.default=o,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=i(n(2)),r=i(n(4)),o=n(177);function i(e){return e&&e.__esModule?e:{default:e}}function l(e){(0,r.default)(this,l),this.options=(0,a.default)({filter:o.filter,key:void 0,addonKey:!1,filterLocal:!0,showDataSourceChildren:!0},e),this.dataSource=[],this.menuDataSource=[],this.mapDataSource={},this.enabledDataSource=[],this.flattenDataSource=[]}l.prototype.setOptions=function(e){(0,a.default)(this.options,e)},l.prototype.updateByDS=function(e){return this.dataSource=1<arguments.length&&void 0!==arguments[1]&&arguments[1]?(0,o.parseDataSourceFromChildren)(e):(0,o.normalizeDataSource)(e,0,this.options.showDataSourceChildren),this.updateAll()},l.prototype.updateByKey=function(e){return e===this.options.key?this.getMenuDS():(this.options.key=e,this.updateAll())},l.prototype.getOriginDS=function(){return this.dataSource},l.prototype.getMenuDS=function(){return this.menuDataSource},l.prototype.getFlattenDS=function(){return this.flattenDataSource},l.prototype.getEnableDS=function(){return this.enabledDataSource},l.prototype.getMapDS=function(){return this.mapDataSource},l.prototype.updateAll=function(){var t=this,e=this.options,n=e.key,a=e.filter,r=e.filterLocal,e=e.showDataSourceChildren;return this.menuDataSource=(0,o.filterDataSource)(this.dataSource,r?n:"",a,this.options.addonKey),this.flattenDataSource=e?(0,o.flattingDataSource)(this.menuDataSource):this.menuDataSource,this.mapDataSource={},this.flattenDataSource.forEach(function(e){t.mapDataSource[""+e.value]=e}),this.enabledDataSource=this.flattenDataSource.filter(function(e){return!e.disabled}),this.menuDataSource},t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=p(n(4)),r=p(n(6)),o=p(n(7)),i=p(n(3)),l=n(0),s=p(l),u=p(n(13)),d=n(30),c=n(23),f=n(11);function p(e){return e&&e.__esModule?e:{default:e}}function h(){}function m(e){for(var t=e.clientLeft||0;t+=e.offsetTop||0,e=e.offsetParent;);return t}function g(e,t,n){var a=n.children,n=n.minSize;return(a=a&&a.length)<(t=Math.max(t,n))&&(t=a),{from:e=e?Math.max(Math.min(e,a-t),0):0,size:t}}y=l.Component,(0,o.default)(v,y),v.getDerivedStateFromProps=function(e,t){var n=t.from,t=t.size;return g(n,t,e)},v.prototype.componentDidMount=function(){var e=this.props.jumpIndex;this.updateFrameAndClearCache=this.updateFrameAndClearCache.bind(this),f.events.on(window,"resize",this.updateFrameAndClearCache),this.updateFrame(this.scrollTo.bind(this,e))},v.prototype.componentDidUpdate=function(e){var t=this,e=e.jumpIndex,n=this.props.jumpIndex;e!==n&&this.updateFrame(this.scrollTo.bind(this,n)),this.unstable||(40<++this.updateCounter&&(this.unstable=!0),this.updateCounterTimeoutId||(this.updateCounterTimeoutId=setTimeout(function(){t.updateCounter=0,delete t.updateCounterTimeoutId},0)),this.updateFrame())},v.prototype.componentWillUnmount=function(){f.events.off(window,"resize",this.updateFrameAndClearCache),f.events.off(this.scrollParent,"scroll",this.updateFrameAndClearCache),f.events.off(this.scrollParent,"mousewheel",h)},v.prototype.maybeSetState=function(e,t){if(function(e,t){for(var n in t)if(e[n]!==t[n])return!1;return!0}(this.state,e))return t();this.setState(e,t)},v.prototype.getEl=function(){return this.el||this.items||{}},v.prototype.getScrollParent=function(){var e=this.getEl().parentElement;switch(window.getComputedStyle(e).overflowY){case"auto":case"scroll":case"overlay":case"visible":return e}return window},v.prototype.getScroll=function(){var e=this.scrollParent,t="scrollTop",t=e===window?document.body[t]||document.documentElement[t]:e[t],n=this.getScrollSize()-this.getViewportSize(),t=Math.max(0,Math.min(t,n)),n=this.getEl();return this.cachedScroll=m(e)+t-m(n),this.cachedScroll},v.prototype.setScroll=function(e){var t=this.scrollParent;if(e+=m(this.getEl()),t===window)return window.scrollTo(0,e);e-=m(this.scrollParent),t.scrollTop=e},v.prototype.getViewportSize=function(){var e=this.scrollParent;return e===window?window.innerHeight:e.clientHeight},v.prototype.getScrollSize=function(){var e=this.scrollParent,t=document,n=t.body,t=t.documentElement,a="scrollHeight";return e===window?Math.max(n[a],t[a]):e[a]},v.prototype.getStartAndEnd=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:this.props.threshold,t=this.getScroll();return{start:Math.max(0,t-e),end:t+this.getViewportSize()+e}},v.prototype.updateFrameAndClearCache=function(e){return this.cachedScroll=null,this.updateFrame(e)},v.prototype.updateFrame=function(e){return this.updateScrollParent(),this.updateVariableFrame(e="function"!=typeof e?h:e)},v.prototype.updateScrollParent=function(){var e=this.scrollParent;this.scrollParent=this.getScrollParent(),e!==this.scrollParent&&(e&&(f.events.off(e,"scroll",this.updateFrameAndClearCache),f.events.off(e,"mousewheel",h)),f.events.on(this.scrollParent,"scroll",this.updateFrameAndClearCache),f.events.on(this.scrollParent,"mousewheel",h))},v.prototype.updateVariableFrame=function(e){this.props.itemSizeGetter||this.cacheSizes();for(var t=this.getStartAndEnd(),n=t.start,a=t.end,t=this.props,r=t.pageSize,t=t.children.length,o=0,i=0,l=0,s=t-1;i<s;){var u=this.getSizeOf(i);if(null==u||n<o+u)break;o+=u,++i}for(var d=t-i;l<d&&o<a;){var c=this.getSizeOf(i+l);if(null==c){l=Math.min(l+r,d);break}o+=c,++l}this.maybeSetState({from:i,size:l},e)},v.prototype.getSpaceBefore=function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};if(!e)return 0;if(null===t[e]||void 0===t[e]){for(var n=e;0<n&&(null===t[n]||void 0===t[n]);)n--;for(var a=t[n]||0,r=n;r<e;++r){t[r]=a;var o=this.getSizeOf(r);if(null==o)break;a+=o}t[e]=a}return t[e]||0},v.prototype.cacheSizes=function(){var e=this.cache,t=this.state.from,n=this.items,a=n.children,n=n.props,a=a||(void 0===n?{}:n).children||[];try{for(var r=0,o=a.length;r<o;++r){var i=(0,c.findDOMNode)(this.items).children[r].offsetHeight;0<i&&(e[t+r]=i)}}catch(e){}},v.prototype.getSizeOf=function(e){var t=this.cache,n=this.props,a=n.itemSizeGetter,n=n.jumpIndex;return e in t?t[e]:a?a(e):(!this.defaultItemHeight&&-1<n&&(t=Object.keys(this.cache).length,a=this.cache[t-1],this.defaultItemHeight=a),this.defaultItemHeight||void 0)},v.prototype.scrollTo=function(e){this.setScroll(this.getSpaceBefore(e,this.cacheAdd))},v.prototype.renderMenuItems=function(){for(var t=this,e=this.props,n=e.children,e=e.itemsRenderer,a=this.state,r=a.from,o=a.size,i=[],l=0;l<o;++l)i.push(n[r+l]);return e(i,function(e){return t.items=e,t.items})},v.prototype.render=function(){var t=this,e=this.props,n=e.children,a=e.prefix,e=e.className,n=(void 0===n?[]:n).length,r=this.state.from,o=this.renderMenuItems(),i={position:"relative"},n=this.getSpaceBefore(n,{});n&&(i.height=n);n="translate(0px, "+this.getSpaceBefore(r,this.cacheAdd)+"px)",r={msTransform:n,WebkitTransform:n,transform:n},a=(0,u.default)(((n={})[a+"virtual-list-wrapper"]=!0,n[e]=!!e,n));return s.default.createElement("div",{className:a,style:i,ref:function(e){return t.el=e,t.el}},s.default.createElement("div",{style:r},o))},l=n=v,n.displayName="VirtualList",n.propTypes={prefix:i.default.string,children:i.default.any,minSize:i.default.number,pageSize:i.default.number,itemsRenderer:i.default.func,threshold:i.default.number,itemSizeGetter:i.default.func,jumpIndex:i.default.number,className:i.default.string},n.defaultProps={prefix:"next-",itemsRenderer:function(e,t){return s.default.createElement("ul",{ref:t},e)},minSize:1,pageSize:10,jumpIndex:0,threshold:100};var y,o=l;function v(e){(0,a.default)(this,v);var t=(0,r.default)(this,y.call(this,e)),n=e.jumpIndex,n=g(n,0,e),e=n.from,n=n.size;return t.state={from:e,size:n},t.cache={},t.cacheAdd={},t.scrollTo=t.scrollTo.bind(t),t.cachedScroll=null,t.unstable=!1,t.updateCounter=0,t}o.displayName="VirtualList",t.default=(0,d.polyfill)(o),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a,y=u(n(2)),r=u(n(4)),o=u(n(6)),i=u(n(7)),v=u(n(0)),l=u(n(3)),_=u(n(13)),s=n(30),b=n(11),w=u(n(10)),n=u(n(399));function u(e){return e&&e.__esModule?e:{default:e}}var d,c=b.func.bindCtx,f=b.func.noop,l=(d=n.default,(0,i.default)(M,d),M.getDerivedStateFromProps=function(e,t){var n={};return"value"in e&&e.value!==t.value&&(0,y.default)(n,{value:e.value}),"visible"in e&&e.visible!==t.visible&&(0,y.default)(n,{visible:e.visible}),Object.keys(n).length?n:null},M.prototype.componentDidUpdate=function(e,t){var n=this.props;"value"in n&&this.dataStore.setOptions({key:n.value}),n.filter!==e.filter&&this.dataStore.setOptions({filter:n.filter}),n.filterLocal!==e.filterLocal&&this.dataStore.setOptions({filterLocal:n.filterLocal}),e.children===n.children&&e.dataSource===n.dataSource||(this.setState({dataSource:this.setDataSource(n)}),!n.filterLocal&&this.isInputing&&this.shouldControlPopup(n,"update"),n.filterLocal||n.popupContent||this.setFirstHightLightKeyForMenu())},M.prototype.shouldControlPopup=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:this.props,t=arguments[1];e.popupContent||this.dataStore.getMenuDS().length?this.setVisible(!0,t):this.setVisible(!1,t)},M.prototype.handleMenuSelect=function(e){var e=e[0],t=this.dataStore.getMapDS();e in t&&(t=t[e],this.handleSelectEvent(e,t,"itemClick"))},M.prototype.handleItemClick=function(){this.setVisible(!1,"itemClick")},M.prototype.handleSelectEvent=function(e,t,n){e=t&&t[this.props.fillProps]||e;"itemClick"!==n&&"enter"!==n||this.setVisible(!1,n),this.handleChange(e,n,t)},M.prototype.handleVisibleChange=function(e,t){("visible"in this.props||!e||this.props.popupContent||this.dataStore.getMenuDS().length)&&this.setVisible(e,t)},M.prototype.beforeClose=function(){this.isInputing=!1},M.prototype.handleTriggerKeyDown=function(e){var t=this.props,n=t.popupContent,a=t.onToggleHighlightItem,t=t.onKeyDown;if(n)return e.stopPropagation(),t(e);switch(e.keyCode){case b.KEYCODE.UP:e.preventDefault(),a(this.toggleHighlightItem(-1,e),"up");break;case b.KEYCODE.DOWN:e.preventDefault(),a(this.toggleHighlightItem(1,e),"down");break;case b.KEYCODE.ENTER:e.preventDefault(),this.chooseHighlightItem(e);break;case b.KEYCODE.SPACE:e.stopPropagation();break;case b.KEYCODE.ESC:e.preventDefault(),this.state.visible&&this.setVisible(!1,"esc")}t(e)},M.prototype.chooseHighlightItem=function(){if(!this.state.visible)return!1;var t=this.state.highlightKey,e=this.dataStore.getEnableDS().find(function(e){return t===""+e.value});e&&this.handleSelectEvent(t,e,"enter")},M.prototype.hasClear=function(){var e=this.props,t=e.hasClear,n=e.readOnly,e=e.disabled;return this.state.value&&t&&!n&&!e},M.prototype.renderSelect=function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:this.props,t=e.placeholder,n=e.size,a=e.prefix,r=e.className,o=e.style,i=e.label,l=e.readOnly,s=e.disabled,u=e.highlightHolder,d=e.locale,c=e.hasClear,f=e.state,p=e.rtl,e=b.obj.pickOthers(M.propTypes,e),h=b.obj.pickAttrsWith(e,"data-"),m=this.state.value,g=this.state.visible,r=(0,_.default)([a+"select",a+"select-auto-complete",a+"size-"+n,r],((r={})[a+"active"]=g,r[a+"disabled"]=s,r)),t=t||d.autoCompletePlaceholder||d.autoCompletePlaceHolder,d=(u&&g&&(t=this.state.highlightKey||t),(0,y.default)({},b.obj.pickOthers(h,e),{state:f,ref:this.saveInputRef,hasClear:c,value:m,size:n,disabled:s,readOnly:l,placeholder:t,label:i,onChange:this.handleChange,onKeyDown:this.handleTriggerKeyDown}));return v.default.createElement("span",(0,y.default)({},h,{className:r,style:o,dir:p?"rtl":void 0,ref:this.saveSelectRef,onClick:this.focusInput}),v.default.createElement(w.default,(0,y.default)({role:"combobox","aria-autocomplete":"list","aria-disabled":s,"aria-expanded":this.state.visible},d)),v.default.createElement("span",{className:a+"sr-only","aria-live":"polite"},this.state.srReader))},M.prototype.render=function(){var e,t=this;return this.hasClear()&&(e=this.props.popupProps.safeNode||[],(e=Array.isArray(e)?e:[e]).push(function(){return t.clearNode}),this.props.popupProps.safeNode=e),d.prototype.render.call(this,(0,y.default)({},this.props,{canCloseByTrigger:!1}))},a=i=M,i.propTypes=(0,y.default)({},n.default.propTypes,{value:l.default.oneOfType([l.default.string,l.default.number]),defaultValue:l.default.oneOfType([l.default.string,l.default.number]),onChange:l.default.func,dataSource:l.default.arrayOf(l.default.oneOfType([l.default.shape({value:l.default.string,label:l.default.any,disabled:l.default.bool,children:l.default.array}),l.default.string])),fillProps:l.default.string,itemRender:l.default.func,onKeyDown:l.default.func,highlightHolder:l.default.bool,style:l.default.object}),i.defaultProps=(0,y.default)({},n.default.defaultProps,{onKeyDown:f,fillProps:"value"}),a);function M(e){(0,r.default)(this,M);var i=(0,o.default)(this,d.call(this,e));return i.handleChange=function(e,t,n){var a=i.props,r=a.disabled,o=a.readOnly,a=a.filterLocal;if(r||o)return!1;r="string"==typeof t?t:"change";i.isInputing="change"===r,a&&(i.setState({dataSource:i.dataStore.updateByKey(e)}),i.shouldControlPopup(i.props,r),i.setFirstHightLightKeyForMenu(e)),"value"in i.props||i.setState({value:e}),i.props.autoHighlightFirstItem||i.setState({highlightKey:e}),i.props.onChange(e,r,n),"itemClick"!==r&&"enter"!==r||i.setVisible(!1,r)},i.isAutoComplete=!0,i.isInputing=!1,i.dataStore.setOptions({key:i.state.value}),(0,y.default)(i.state,{dataSource:i.setDataSource(e)}),c(i,["handleTriggerKeyDown","handleMenuSelect","handleItemClick"]),i}t.default=(0,s.polyfill)(l),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=l(n(4)),r=l(n(6)),o=l(n(7)),i=l(n(0)),n=l(n(3));function l(e){return e&&e.__esModule?e:{default:e}}s=i.default.Component,(0,o.default)(u,s),u.prototype.render=function(){return this.props.children},o=i=u,i.propTypes={value:n.default.any.isRequired,disabled:n.default.bool,children:n.default.any},i._typeMark="next_select_option";var s,n=o;function u(){return(0,a.default)(this,u),(0,r.default)(this,s.apply(this,arguments))}n.displayName="Option",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=l(n(4)),r=l(n(6)),o=l(n(7)),i=l(n(0)),n=l(n(3));function l(e){return e&&e.__esModule?e:{default:e}}s=i.default.Component,(0,o.default)(u,s),u.prototype.render=function(){return this.props.children},o=i=u,i.propTypes={label:n.default.node,children:n.default.any},i._typeMark="next_select_option_group";var s,n=o;function u(){return(0,a.default)(this,u),(0,r.default)(this,s.apply(this,arguments))}n.displayName="OptionGroup",t.default=n,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var Y=u(n(2)),I=u(n(12)),a=u(n(4)),r=u(n(6)),o=u(n(7)),R=u(n(0)),i=u(n(3)),l=n(30),s=u(n(62)),A=n(11),H=u(n(178)),F=n(179),z=n(401);function u(e){return e&&e.__esModule?e:{default:e}}var d,n=A.func.noop,W=s.default.Popup,c=["t","r","b","l","tl","tr","bl","br","lt","lb","rt","rb"],V=F.normalMap,i=(d=R.default.Component,(0,o.default)(B,d),B.getDerivedStateFromProps=function(e,t){var n={};return"visible"in e&&(n.visible=e.visible),!t.innerAlign&&"align"in e&&c.includes(e.align)&&e.align!==t.align&&(n.align=e.align,n.innerAlign=!1),n},B.prototype._onVisibleChange=function(e,t){"visible"in this.props||this.setState({visible:e}),this.props.onVisibleChange(e,t),e||this.props.onClose()},B.prototype._onClose=function(e){this._onVisibleChange(!1,"closeClick"),e.preventDefault()},B.prototype._onPosition=function(e){var t,n=this.props.rtl,a=(V=this.props.alignEdge?F.edgeMap:F.normalMap,e.align.join(" ")),r=void 0,o=n?"rtlAlign":"align";for(t in V)if(V[t][o]===a){r=t;break}(r=r||this.state.align)!==this.state.align&&this.setState({align:r,innerAlign:!0})},B.prototype.render=function(){var e=this.props,t=e.id,n=e.type,a=e.prefix,r=e.className,o=e.title,i=e.alignEdge,l=e.trigger,s=e.triggerType,u=e.children,d=e.closable,c=e.shouldUpdatePosition,f=e.delay,p=e.needAdjust,h=e.autoAdjust,m=e.safeId,g=e.autoFocus,y=e.safeNode,v=e.onClick,_=e.onHover,b=e.animation,w=e.offset,M=e.style,k=e.container,S=e.popupContainer,E=e.cache,x=e.popupStyle,C=e.popupClassName,L=e.popupProps,T=e.followTrigger,D=e.rtl,O=e.v2,N=(e.arrowPointToCenter,e.placementOffset),N=void 0===N?0:N,e=(0,I.default)(e,["id","type","prefix","className","title","alignEdge","trigger","triggerType","children","closable","shouldUpdatePosition","delay","needAdjust","autoAdjust","safeId","autoFocus","safeNode","onClick","onHover","animation","offset","style","container","popupContainer","cache","popupStyle","popupClassName","popupProps","followTrigger","rtl","v2","arrowPointToCenter","placementOffset"]),P=(k&&A.log.deprecated("container","popupContainer","Balloon"),this.state.align),a=(V=i||O?F.edgeMap:F.normalMap,this.context.prefix||a),j="trOrigin",w=[V[P].offset[0]+w[0],V[P].offset[1]+w[1]],j=V[P][j=D?"rtlTrOrigin":j],j=(0,Y.default)({transformOrigin:j},M),M=R.default.createElement(H.default,(0,Y.default)({},A.obj.pickOthers(Object.keys(B.propTypes),e),{id:t,title:o,prefix:a,closable:d,onClose:this._onClose,className:r,style:j,align:P,type:n,rtl:D,alignEdge:i,v2:O}),u),e={},o=(e["aria-describedby"]=t,e.tabIndex="0",t?R.default.cloneElement(l,e):l),a=(0,z.getDisabledCompatibleTrigger)(R.default.isValidElement(o)?o:R.default.createElement("span",null,o)),d={delay:f,shouldUpdatePosition:c,needAdjust:p,align:V[P].align,offset:w,safeId:m,onHover:_,onPosition:this._onPosition};return O&&(delete d.align,delete d.shouldUpdatePosition,delete d.needAdjust,delete d.offset,delete d.safeId,delete d.onHover,delete d.onPosition,(0,Y.default)(d,{placement:P,placementOffset:N+12,v2:!0,beforePosition:this.beforePosition,autoAdjust:h})),R.default.createElement(W,(0,Y.default)({},L,{followTrigger:T,trigger:a,cache:E,triggerType:s,visible:this.state.visible,onClick:v,afterClose:this.props.afterClose,onVisibleChange:this._onVisibleChange,animation:b,autoFocus:"focus"!==s&&g,safeNode:y,container:S||k,className:C,style:x,rtl:D},d),M)},o=s=B,s.contextTypes={prefix:i.default.string},s.propTypes={prefix:i.default.string,pure:i.default.bool,rtl:i.default.bool,className:i.default.string,style:i.default.object,children:i.default.any,size:i.default.string,type:i.default.oneOf(["normal","primary"]),title:i.default.node,visible:i.default.bool,defaultVisible:i.default.bool,onVisibleChange:i.default.func,alignEdge:i.default.bool,v2:i.default.bool,arrowPointToCenter:i.default.bool,placementOffset:i.default.number,closable:i.default.bool,align:i.default.oneOf(c),offset:i.default.array,trigger:i.default.any,triggerType:i.default.oneOfType([i.default.string,i.default.array]),onClick:i.default.func,onClose:i.default.func,onHover:i.default.func,autoAdjust:i.default.bool,needAdjust:i.default.bool,delay:i.default.number,afterClose:i.default.func,shouldUpdatePosition:i.default.bool,autoFocus:i.default.bool,safeNode:i.default.string,safeId:i.default.string,animation:i.default.oneOfType([i.default.object,i.default.bool]),cache:i.default.bool,popupContainer:i.default.any,container:i.default.any,popupStyle:i.default.object,popupClassName:i.default.string,popupProps:i.default.object,followTrigger:i.default.bool,id:i.default.string},s.defaultProps={prefix:"next-",pure:!1,type:"normal",closable:!0,defaultVisible:!1,size:"medium",alignEdge:!1,arrowPointToCenter:!1,align:"b",offset:[0,0],trigger:R.default.createElement("span",null),onClose:n,afterClose:n,onVisibleChange:n,needAdjust:!1,triggerType:"hover",safeNode:void 0,safeId:null,autoFocus:!0,animation:{in:"zoomIn zoomInBig",out:"zoomOut zoomOutBig"},cache:!1,popupStyle:{},popupClassName:"",popupProps:{}},o);function B(e,t){(0,a.default)(this,B);var l=(0,r.default)(this,d.call(this,e,t));return l.beforePosition=function(e,t){var n=e.config.placement;if(n!==l.state.align&&l.setState({align:n,innerAlign:!0}),l.props.arrowPointToCenter){var t=t.target,a=t.width,r=t.height;if(2===n.length){var o=F.normalMap[n].offset;switch(n[0]){case"b":case"t":var i=0<o[0]?1:-1;e.style.left=e.style.left+i*a/2-o[0];break;case"l":case"r":i=0<o[0]?1:-1;e.style.top=e.style.top+i*r/2-o[1]}}}return e},l.state={align:c.includes(e.align)?e.align:"b",visible:"visible"in e?e.visible:e.defaultVisible},l._onClose=l._onClose.bind(l),l._onPosition=l._onPosition.bind(l),l._onVisibleChange=l._onVisibleChange.bind(l),l}i.displayName="Balloon",t.default=(0,l.polyfill)(i),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var M=s(n(2)),k=s(n(12)),a=s(n(4)),r=s(n(6)),o=s(n(7)),S=s(n(0)),i=s(n(3)),l=s(n(62)),E=s(n(178)),x=n(179),C=n(401);function s(e){return e&&e.__esModule?e:{default:e}}var L,u,T=l.default.Popup,o=(x.normalMap,u=S.default.Component,(0,o.default)(d,u),d.getDerivedStateFromProps=function(e,t){return e.v2&&!t.innerAlign&&"align"in e&&e.align!==t.align?{align:e.align,innerAlign:!1}:null},d.prototype.render=function(){var e=this.props,t=e.id,n=e.className,a=e.align,r=e.style,o=e.prefix,i=e.trigger,l=e.children,s=e.popupContainer,u=e.popupProps,d=e.popupClassName,c=e.popupStyle,f=e.followTrigger,p=e.triggerType,h=e.autoFocus,m=e.alignEdge,g=e.autoAdjust,y=e.rtl,v=e.delay,_=e.v2,e=(e.arrowPointToCenter,(0,k.default)(e,["id","className","align","style","prefix","trigger","children","popupContainer","popupProps","popupClassName","popupStyle","followTrigger","triggerType","autoFocus","alignEdge","autoAdjust","rtl","delay","v2","arrowPointToCenter"])),b="trOrigin",a=(y&&(e.rtl=!0,b="rtlTrOrigin"),L=m||_?x.edgeMap:x.normalMap,_?this.state.align:a),b=L[a][b],w=L[a].offset,b=(0,M.default)({transformOrigin:b},r),r=S.default.createElement(E.default,(0,M.default)({},e,{id:t,prefix:o,closable:!1,isTooltip:!0,className:n,style:b,align:a,rtl:y,alignEdge:m,v2:_}),l),e={},o=(e["aria-describedby"]=t,e.tabIndex="0",p),n=("hover"===p&&t&&(o=["focus","hover"]),t?S.default.cloneElement(i,e):i),b=(0,C.getDisabledCompatibleTrigger)(S.default.isValidElement(n)?n:S.default.createElement("span",null,n)),m={delay:v,shouldUpdatePosition:!0,needAdjust:!1,align:L[a].align,offset:w};return _&&(delete m.align,delete m.shouldUpdatePosition,delete m.needAdjust,delete m.offset,(0,M.default)(m,{placement:a,placementOffset:12,v2:!0,beforePosition:this.beforePosition,autoAdjust:g})),S.default.createElement(T,(0,M.default)({role:"tooltip",animation:{in:"zoomIn",out:"zoomOut"},className:d,container:s,followTrigger:f,trigger:b,triggerType:o,style:c,rtl:y,autoFocus:"focus"!==p&&h},m,u),r)},l=n=d,n.propTypes={prefix:i.default.string,className:i.default.string,style:i.default.object,children:i.default.any,align:i.default.oneOf(["t","r","b","l","tl","tr","bl","br","lt","lb","rt","rb"]),trigger:i.default.any,triggerType:i.default.oneOfType([i.default.string,i.default.array]),popupStyle:i.default.object,popupClassName:i.default.string,popupProps:i.default.object,pure:i.default.bool,popupContainer:i.default.any,followTrigger:i.default.bool,id:i.default.string,delay:i.default.number,v2:i.default.bool,arrowPointToCenter:i.default.bool},n.defaultProps={triggerType:"hover",prefix:"next-",align:"b",delay:50,trigger:S.default.createElement("span",null),arrowPointToCenter:!1},l);function d(e){(0,a.default)(this,d);var l=(0,r.default)(this,u.call(this,e));return l.beforePosition=function(e,t){var n=e.config.placement;if(n!==l.state.align&&l.setState({align:n,innerAlign:!0}),l.props.arrowPointToCenter){var t=t.target,a=t.width,r=t.height;if(2===n.length){var o=x.normalMap[n].offset;switch(n[0]){case"b":case"t":var i=0<o[0]?1:-1;e.style.left=e.style.left+i*a/2-o[0];break;case"l":case"r":i=0<o[0]?1:-1;e.style.top=e.style.top+i*r/2-o[1]}}}return e},l.state={align:e.placement||e.align,innerAlign:!1},l}o.displayName="Tooltip",t.default=o,e.exports=t.default},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";t.__esModule=!0;var x=u(n(2)),C=u(n(12)),a=u(n(4)),r=u(n(6)),o=u(n(7)),i=n(0),L=u(i),l=u(n(3)),T=u(n(13)),s=n(30),D=n(11),O=u(n(687)),N=u(n(688)),P=n(402),n=u(n(44));function u(e){return e&&e.__esModule?e:{default:e}}function d(){}c=i.Component,(0,o.default)(j,c),j.getDerivedStateFromProps=function(e,t){return void 0!==e.activeKey&&t.activeKey!==""+e.activeKey?{activeKey:""+e.activeKey}:{}},j.prototype.componentDidUpdate=function(e){var e=e.children&&e.children.length||0,t=this.props.children&&this.props.children.length||0;0!==e&&0!==t&&!("activeKey"in this.props)&!this.isActiveKeyExist(this.state.activeKey)&&((e=this.getDefaultActiveKey(this.props))&&this.setState({activeKey:e}))},j.prototype.getDefaultActiveKey=function(e){var n=void 0===e.activeKey?e.defaultActiveKey:e.activeKey;return void 0===n&&L.default.Children.forEach(e.children,function(e,t){void 0===n&&L.default.isValidElement(e)&&!e.props.disabled&&(n=e.key||t)}),void 0!==n?""+n:void 0},j.prototype.getNextActiveKey=function(t){var n=this,a=[],r=(L.default.Children.forEach(this.props.children,function(e){!L.default.isValidElement(e)||e.props.disabled||(t?a.push(e):a.unshift(e))}),a.length),o=r&&a[0].key;return a.forEach(function(e,t){e.key===n.state.activeKey&&(o=(t===r-1?a[0]:a[t+1]).key)}),o},j.prototype.isActiveKeyExist=function(n){var a=!1;return L.default.Children.forEach(this.props.children,function(e,t){a||L.default.isValidElement(e)&&!e.props.disabled&&(e=e.key||t,n===""+e&&(a=!0))}),a},j.prototype.setActiveKey=function(e){e===this.state.activeKey||"activeKey"in this.props||this.setState({activeKey:e})},j.prototype.render=function(){var e=this.props,t=e.prefix,n=e.animation,a=e.shape,r=e.size,o=e.extra,i=e.excessMode,l=e.tabPosition,s=e.tabRender,u=e.triggerType,d=e.lazyLoad,c=e.unmountInactiveTabs,f=e.popupProps,p=e.navStyle,h=e.navClassName,m=e.contentStyle,g=e.contentClassName,y=e.className,v=e.onClose,_=e.children,b=e.rtl,w=(e.device,e.locale),M=e.icons,e=(0,C.default)(e,["prefix","animation","shape","size","extra","excessMode","tabPosition","tabRender","triggerType","lazyLoad","unmountInactiveTabs","popupProps","navStyle","navClassName","contentStyle","contentClassName","className","onClose","children","rtl","device","locale","icons"]),k=this.state.activeKey,_=(0,P.toArray)(_),S=l,S=(b&&0<=["left","right"].indexOf(l)&&(S="left"===l?"right":"left"),(0,T.default)(((E={})[t+"tabs"]=!0,E[t+"tabs-"+a]=a,E[t+"tabs-vertical"]="wrapped"===a&&0<=["left","right"].indexOf(l),E[t+"tabs-scrollable"]=!0,E[t+"tabs-"+S]="wrapped"===a,E[""+(t+r)]=r,E),y)),a={prefix:t,rtl:b,animation:n,activeKey:k,excessMode:i,extra:o,tabs:_,tabPosition:l,tabRender:s,triggerType:u,popupProps:f,onClose:v,onTriggerEvent:this.handleTriggerEvent,onKeyDown:this.onNavKeyDown,style:p,className:h,locale:w,icons:M},r={prefix:t,activeKey:k,lazyLoad:d,unmountInactiveTabs:c,style:m,className:g},E=[L.default.createElement(O.default,(0,x.default)({key:"tab-nav"},a)),L.default.createElement(N.default,(0,x.default)({key:"tab-content"},r),_)];return"bottom"===l&&E.reverse(),L.default.createElement("div",(0,x.default)({dir:b?"rtl":void 0,className:S},D.obj.pickOthers(j.propTypes,e)),E)},o=i=j,i.propTypes={prefix:l.default.string,rtl:l.default.bool,device:l.default.oneOf(["tablet","desktop","phone"]),activeKey:l.default.oneOfType([l.default.number,l.default.string]),defaultActiveKey:l.default.oneOfType([l.default.number,l.default.string]),shape:l.default.oneOf(["pure","wrapped","text","capsule"]),animation:l.default.bool,excessMode:l.default.oneOf(["slide","dropdown"]),tabPosition:l.default.oneOf(["top","bottom","left","right"]),size:l.default.oneOf(["small","medium"]),triggerType:l.default.oneOf(["hover","click"]),lazyLoad:l.default.bool,unmountInactiveTabs:l.default.bool,navStyle:l.default.object,navClassName:l.default.string,contentStyle:l.default.object,contentClassName:l.default.string,extra:l.default.node,disableKeyboard:l.default.bool,onClick:l.default.func,onChange:l.default.func,onClose:l.default.func,tabRender:l.default.func,popupProps:l.default.object,children:l.default.any,className:l.default.string,locale:l.default.object,icons:l.default.shape({prev:l.default.oneOfType([l.default.node,l.default.string]),next:l.default.oneOfType([l.default.node,l.default.string]),dropdown:l.default.oneOfType([l.default.node,l.default.string])})},i.defaultProps={prefix:"next-",shape:"pure",size:"medium",animation:!0,tabPosition:"top",excessMode:"slide",triggerType:"click",lazyLoad:!0,unmountInactiveTabs:!1,disableKeyboard:!1,onClick:d,onChange:d,onClose:d,locale:n.default.Tab,icons:{}};var c,l=o;function j(e,t){(0,a.default)(this,j);var o=(0,r.default)(this,c.call(this,e,t));return o.handleTriggerEvent=function(e,t){var n=o.props,a=n.triggerType,r=n.onClick,n=n.onChange;a===e&&(r(t),o.setActiveKey(t),o.state.activeKey!==t&&n(t))},o.onNavKeyDown=function(e){var t=e.keyCode;o.props.disableKeyboard||(t>=D.KEYCODE.LEFT&&t<=D.KEYCODE.DOWN&&e.preventDefault(),e=void 0,t===D.KEYCODE.RIGHT||t===D.KEYCODE.DOWN?(e=o.getNextActiveKey(!0),o.handleTriggerEvent(o.props.triggerType,e)):t!==D.KEYCODE.LEFT&&t!==D.KEYCODE.UP||(e=o.getNextActiveKey(!1),o.handleTriggerEvent(o.props.triggerType,e)))},o.state={activeKey:o.getDefaultActiveKey(e)},o}l.displayName="Tab",t.default=(0,s.polyfill)(l),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var h=f(n(2)),a=f(n(4)),r=f(n(6)),o=f(n(7)),m=f(n(0)),i=n(23),l=f(n(3)),g=f(n(13)),s=f(n(24)),u=f(n(62)),d=f(n(50)),y=f(n(79)),v=n(11),c=n(402);function f(e){return e&&e.__esModule?e:{default:e}}var p,_={float:"right",zIndex:1},b={float:"left",zIndex:1},w={dropdown:"arrow-down",prev:"arrow-left",next:"arrow-right"},M=u.default.Popup,u=(p=m.default.Component,(0,o.default)(k,p),k.prototype.componentDidMount=function(){this.props.animation||this.initialSettings(),v.events.on(window,"resize",this.onWindowResized)},k.prototype.componentDidUpdate=function(e){var t=this;clearTimeout(this.scrollTimer),this.scrollTimer=setTimeout(function(){t.scrollToActiveTab()},410),clearTimeout(this.slideTimer),this.slideTimer=setTimeout(function(){t.setSlideBtn()},410),"dropdown"!==this.props.excessMode||(0,c.tabsArrayShallowEqual)(this.props.tabs,e.tabs)||this.getDropdownItems(this.props)},k.prototype.componentWillUnmount=function(){v.events.off(window,"resize",this.onWindowResized)},k.prototype.initialSettings=function(){this.setSlideBtn(),this.getDropdownItems(this.props)},k.prototype.setOffset=function(e){var t=!(1<arguments.length&&void 0!==arguments[1])||arguments[1],n=!(2<arguments.length&&void 0!==arguments[2])||arguments[2],a=this.props,r=a.tabPosition,a=a.rtl,o=(0,c.getOffsetWH)(this.nav,r),i=(0,c.getOffsetWH)(this.wrapper),o=(e=(e=0<=e?0:e)<=i-o&&i-o<0?i-o:e)-this.offset,l=(this.activeTab&&"slide"===this.props.excessMode&&n&&(n=(0,c.getOffsetWH)(this.activeTab),o=(0,c.getOffsetLT)(this.activeTab)+o,l=(0,c.getOffsetLT)(this.wrapper),e=this._adjustTarget({wrapperOffset:l,wrapperWH:i,activeTabWH:n,activeTabOffset:o,rtl:a,target:e})),1),i=e/(l=this.nav&&this.nav.offsetWidth?(0,c.getOffsetWH)(this.nav)/this.nav.offsetWidth:l),n=isNaN(i)?e:i;this.offset!==e&&this.nav&&(this.offset=e,o=this.nav.parentElement,"left"===r||"right"===r?o.scrollTo({top:-n,left:0,behavior:"smooth"}):this.props.rtl?o.scrollTo({top:0,left:n,behavior:"smooth"}):o.scrollTo({top:0,left:-n,behavior:"smooth"}),t&&this.setSlideBtn())},k.prototype._adjustTarget=function(e){var t=e.wrapperOffset,n=e.wrapperWH,a=e.activeTabWH,r=e.activeTabOffset,o=e.rtl,e=e.target;return t+n<r+a&&r<t+n?o?e+=r+a-(t+n):e-=r+a-(t+n)+1:t<r+a&&r<t&&(o?e-=t-r+1:e+=t-r),e},k.prototype._setBtnStyle=function(e,t){var n;this.prevBtn&&this.nextBtn&&(n="disabled",this.prevBtn.disabled=!e,this.nextBtn.disabled=!t,e?v.dom.removeClass(this.prevBtn,n):v.dom.addClass(this.prevBtn,n),t?v.dom.removeClass(this.nextBtn,n):v.dom.addClass(this.nextBtn,n))},k.prototype.setSlideBtn=function(){var e=this.props.tabPosition,t=(0,c.getOffsetWH)(this.nav,e),e=(0,c.getOffsetWH)(this.wrapper,e),n=e-t,a=void 0,r=void 0;0<=n||t<=e?this.setOffset(0,r=a=!1):a=this.offset<0&&this.offset<=n?!(r=!0):0<=this.offset?!(r=!1):r=!0,(r||a)!==this.state.showBtn?this.setState({showBtn:r||a}):this._setBtnStyle(r,a)},k.prototype.getDropdownItems=function(e){var t=e.excessMode,n=e.tabs;if("dropdown"===t){for(var a=this.wrapper.offsetWidth,r=this.nav.childNodes,o=void 0,i=0,o=0;o<n.length&&!(a<(i+=r[o].offsetWidth));o++);o===n.length?this.setState({dropdownTabs:[]}):this.setState({dropdownTabs:n})}},k.prototype.renderTabList=function(e){var u=this,d=e.prefix,t=e.tabs,c=e.activeKey,f=e.tabRender||this.defaultTabTemplateRender,p=[];return m.default.Children.forEach(t,function(e){var t=e.props,n=t.disabled,a=t.className,r=t.onClick,o=t.onMouseEnter,i=t.onMouseLeave,t=t.style,l=c===e.key,s=(0,g.default)(((s={})[d+"tabs-tab"]=!0,s.disabled=n,s.active=l,s),a),a={},r=(n||(a={onClick:u.onNavItemClick.bind(u,e.key,r),onMouseEnter:u.onNavItemMouseEnter.bind(u,e.key,o),onMouseLeave:u.onNavItemMouseLeave.bind(u,e.key,i)}),v.obj.pickAttrsWith(e.props,"data-"));p.push(m.default.createElement("li",(0,h.default)({},r,{role:"tab",key:e.key,ref:l?u.activeTabRefHandler:null,"aria-hidden":n?"true":"false","aria-selected":l?"true":"false",tabIndex:l?0:-1,className:s,style:t},a),f(e.key,e.props)))}),p},k.prototype.onNavItemClick=function(e,t,n){if(this.props.onTriggerEvent(c.triggerEvents.CLICK,e),t)return t(e,n)},k.prototype.onNavItemMouseEnter=function(e,t,n){if(this.props.onTriggerEvent(c.triggerEvents.HOVER,e),t)return t(e,n)},k.prototype.onNavItemMouseLeave=function(e,t,n){if(t)return t(e,n)},k.prototype.getIcon=function(e){var t=this.props,n=t.prefix,a=t.icons,t=t.rtl,n=m.default.createElement(s.default,{type:w[e],rtl:t,className:n+"tab-icon-"+e});return n=a[e]?"string"==typeof a[e]?m.default.createElement(s.default,{rtl:t,type:a[e]}):a[e]:n},k.prototype.renderDropdownTabs=function(){var i=this,e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:[];if(!e.length)return null;var t=this.props,n=t.prefix,a=t.activeKey,r=t.triggerType,o=t.popupProps,t=t.rtl,l=this.getIcon("dropdown"),l=m.default.createElement("button",{className:n+"tabs-btn-down"},l);return m.default.createElement(M,(0,h.default)({rtl:t,triggerType:r,trigger:l,container:function(e){return e.parentNode},className:n+"tabs-bar-popup"},o),m.default.createElement(d.default,{rtl:t,selectedKeys:[a],onSelect:this.onSelectMenuItem,selectMode:"single"},e.map(function(e){var t=e.props,n=t.disabled,a=t.onClick,r=t.onMouseEnter,t=t.onMouseLeave,o={};return n||(o={onClick:i.onNavItemClick.bind(i,e.key,a),onMouseEnter:i.onNavItemMouseEnter.bind(i,e.key,r),onMouseLeave:i.onNavItemMouseLeave.bind(i,e.key,t)}),m.default.createElement(d.default.Item,(0,h.default)({key:e.key},o),e.props.title)})))},k.prototype.render=function(){var e=this.props,t=e.prefix,n=e.tabPosition,a=e.excessMode,r=e.extra,o=e.onKeyDown,i=e.animation,l=e.style,s=e.className,e=e.rtl,u=this.state,d=void 0,c=void 0,f=void 0,p=u.showBtn,u=("dropdown"===a&&p&&u.dropdownTabs.length?(f=this.renderDropdownTabs(u.dropdownTabs),d=c=null):f=p?(a=this.getIcon("prev"),c=m.default.createElement("button",{onClick:this.onPrevClick,className:t+"tabs-btn-prev",ref:this.prevBtnHandler,type:"button"},a),u=this.getIcon("next"),d=m.default.createElement("button",{onClick:this.onNextClick,className:t+"tabs-btn-next",ref:this.nextBtnHandler,type:"button"},u),null):c=d=null,(0,g.default)(((a={})[t+"tabs-nav-container"]=!0,a[t+"tabs-nav-container-scrolling"]=p,a))),p=t+"tabs-nav",a=this.renderTabList(this.props),u=[m.default.createElement("div",{className:u,onKeyDown:o,key:"nav-container"},m.default.createElement("div",{className:t+"tabs-nav-wrap",ref:this.wrapperRefHandler},m.default.createElement("div",{className:t+"tabs-nav-scroll"},i?m.default.createElement(y.default,{role:"tablist","aria-multiselectable":!1,component:"ul",className:p,animation:p,singleMode:!1,ref:this.navRefHandler,afterAppear:this.initialSettings.bind(this)},a):m.default.createElement("ul",{role:"tablist",className:p+" "+t+"disable-animation",ref:this.navRefHandler},a))),c,d,f)],i=(r&&(o={className:t+"tabs-nav-extra",key:"nav-extra"},"top"===n||"bottom"===n?u.unshift(m.default.createElement("div",(0,h.default)({},o,{style:e?b:_}),r)):u.push(m.default.createElement("div",o,r))),(0,g.default)(t+"tabs-bar",s));return m.default.createElement("div",{className:i,style:l,ref:this.navbarRefHandler},u)},(n=k).propTypes={prefix:l.default.string,rtl:l.default.bool,animation:l.default.bool,activeKey:l.default.oneOfType([l.default.string,l.default.number]),excessMode:l.default.string,extra:l.default.any,tabs:l.default.oneOfType([l.default.array,l.default.object]),tabPosition:l.default.string,tabRender:l.default.func,triggerType:l.default.string,popupProps:l.default.object,onTriggerEvent:l.default.func,onKeyDown:l.default.func,onClose:l.default.func,style:l.default.object,className:l.default.string,locale:l.default.object,icons:l.default.object},n);function k(e,t){(0,a.default)(this,k);var o=(0,r.default)(this,p.call(this,e,t));return o.removeTab=function(e,t){t&&t.stopPropagation(),o.props.onClose(e)},o.onCloseKeyDown=function(e,t){t.keyCode===v.KEYCODE.ENTER&&(t.stopPropagation(),t.preventDefault(),o.props.onClose(e))},o.defaultTabTemplateRender=function(t,e){var n=e.title,e=e.closeable,a=o.props,r=a.locale,a=a.prefix,e=e?m.default.createElement(s.default,{"aria-label":r.closeAriaLabel,type:"close",tabIndex:"0",onKeyDown:function(e){return o.onCloseKeyDown(t,e)},onClick:function(e){return o.removeTab(t,e)},className:a+"tabs-tab-close"}):null;return m.default.createElement("div",{className:a+"tabs-tab-inner"},n,e)},o.scrollToActiveTab=function(){var e,t,n,a,r;o.activeTab&&["slide","dropdown"].includes(o.props.excessMode)&&(e=(0,c.getOffsetWH)(o.activeTab),t=(0,c.getOffsetWH)(o.wrapper),n=(0,c.getOffsetLT)(o.activeTab),a=(0,c.getOffsetLT)(o.wrapper),r=o.offset,a+t<=n+e||n<a?o.setOffset(o.offset+a-n,!0,!0):o.setOffset(r,!0,!0))},o.onPrevClick=function(){var e=(0,c.getOffsetWH)(o.wrapper);o.setOffset(o.offset+e,!0,!1)},o.onNextClick=function(){var e=(0,c.getOffsetWH)(o.wrapper);o.setOffset(o.offset-e,!0,!1)},o.onSelectMenuItem=function(e){var t=o.props;(0,t.onTriggerEvent)(t.triggerType,e[0])},o.onWindowResized=function(){o.updateTimer&&clearTimeout(o.updateTimer),o.updateTimer=setTimeout(function(){o.setSlideBtn(),o.getDropdownItems(o.props)},100)},o.navRefHandler=function(e){o.nav=(0,i.findDOMNode)(e)},o.wrapperRefHandler=function(e){o.wrapper=e},o.navbarRefHandler=function(e){o.navbar=e},o.activeTabRefHandler=function(e){o.activeTab=e},o.prevBtnHandler=function(e){o.prevBtn=(0,i.findDOMNode)(e)},o.nextBtnHandler=function(e){o.nextBtn=(0,i.findDOMNode)(e)},o.state={showBtn:!1,dropdownTabs:[]},o.offset=0,o}u.displayName="Nav",t.default=u,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var s=f(n(2)),u=f(n(12)),a=f(n(4)),r=f(n(6)),o=f(n(7)),i=n(0),d=f(i),l=f(n(3)),c=f(n(13));function f(e){return e&&e.__esModule?e:{default:e}}p=i.PureComponent,(0,o.default)(h,p),h.prototype.render=function(){var e=this.props,n=e.prefix,a=e.activeKey,r=e.lazyLoad,o=e.unmountInactiveTabs,t=e.children,i=e.className,e=(0,u.default)(e,["prefix","activeKey","lazyLoad","unmountInactiveTabs","children","className"]),l=[],t=(d.default.Children.forEach(t,function(e){var t=a==e.key;l.push(d.default.cloneElement(e,{prefix:n,active:t,lazyLoad:r,unmountInactiveTabs:o}))}),(0,c.default)(((t={})[n+"tabs-content"]=!0,t),i));return d.default.createElement("div",(0,s.default)({},e,{className:t}),l)},(n=h).propTypes={prefix:l.default.string,activeKey:l.default.oneOfType([l.default.string,l.default.number]),lazyLoad:l.default.bool,children:l.default.any};var p,i=n;function h(){return(0,a.default)(this,h),(0,r.default)(this,p.apply(this,arguments))}t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a,r=d(n(4)),o=d(n(6)),i=d(n(7)),l=d(n(0)),s=d(n(3)),u=d(n(13)),n=n(30);function d(e){return e&&e.__esModule?e:{default:e}}c=l.default.Component,(0,i.default)(f,c),f.prototype.render=function(){var e=this.props,t=e.prefix,n=e.active,a=e.lazyLoad,r=e.unmountInactiveTabs,e=e.children;if(this._actived=this._actived||n,a&&!this._actived)return null;if(r&&!n)return null;r=(0,u.default)(((a={})[t+"tabs-tabpane"]=!0,a[n?"active":"hidden"]=!0,a));return l.default.createElement("div",{role:"tabpanel","aria-hidden":n?"false":"true",className:r},e)},a=i=f,i.propTypes={prefix:s.default.string,title:s.default.node,closeable:s.default.bool,disabled:s.default.bool,active:s.default.bool,lazyLoad:s.default.bool,unmountInactiveTabs:s.default.bool,children:s.default.any},i.defaultProps={prefix:"next-",closeable:!1};var c,s=a;function f(){return(0,r.default)(this,f),(0,o.default)(this,c.apply(this,arguments))}s.displayName="TabItem",t.default=(0,n.polyfill)(s),e.exports=t.default},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";t.__esModule=!0;var D=h(n(12)),O=h(n(2)),a=h(n(4)),r=h(n(6)),o=h(n(7)),i=n(0),N=h(i),l=h(n(3)),s=n(30),P=h(n(13)),u=h(n(8)),d=h(n(24)),c=h(n(18)),f=h(n(10)),p=h(n(29)),j=n(11),n=h(n(44));function h(e){return e&&e.__esModule?e:{default:e}}function m(){}var g=p.default.Option;function Y(e,t){e=Math.ceil(e/t);return e<=0?1:e}y=i.Component,(0,o.default)(I,y),I.getDerivedStateFromProps=function(e,t){var n=e.current,a=e.total,e=e.pageSize,r={},a=(n=n||t.current,(a=Y(a=a,e))<n?a:n);return t.current!==a&&(r.current=a),t.currentPageSize!==e&&(r.currentPageSize=e),r},I.prototype.onPageItemClick=function(e,t){"current"in this.props||this.setState({current:e}),this.props.onChange(e,t)},I.prototype.onInputChange=function(e){this.setState({inputValue:e})},I.prototype.onSelectSize=function(e){var t={currentPageSize:e},n=Y(this.props.total,e);this.state.current>n&&(t.current=n),this.setState(t),this.props.onPageSizeChange(e)},I.prototype.renderPageTotal=function(){var e=this.props,t=e.prefix,n=e.total,e=e.totalRender,a=this.state,r=a.currentPageSize,a=a.current;return N.default.createElement("div",{className:t+"pagination-total"},e(n,[(a-1)*r+1,a*r]))},I.prototype.renderPageItem=function(e){var t=this.props,n=t.prefix,a=t.size,r=t.link,o=t.pageNumberRender,i=t.total,l=t.pageSize,t=t.locale,s=this.state.current,i=Y(i,l),l=parseInt(e,10)===s,a={size:a,className:(0,P.default)(((s={})[n+"pagination-item"]=!0,s[n+"current"]=l,s)),onClick:l?m:this.onPageItemClick.bind(this,e)};return r&&(a.component="a",a.href=r.replace("{page}",e)),N.default.createElement(c.default,(0,O.default)({"aria-label":j.str.template(t.total,{current:e,total:i})},a,{key:e}),o(e))},I.prototype.renderPageFirst=function(e){var t=this.props,n=t.prefix,a=t.size,r=t.shape,t=t.locale,a={disabled:e<=1,size:a,className:(0,P.default)(((a={})[n+"pagination-item"]=!0,a[n+"prev"]=!0,a)),onClick:this.onPageItemClick.bind(this,e-1)},n=N.default.createElement(d.default,{type:"arrow-left",className:n+"pagination-icon-prev"});return N.default.createElement(c.default,(0,O.default)({},a,{"aria-label":j.str.template(t.labelPrev,{current:e})}),n,"arrow-only"===r||"arrow-prev-only"===r||"no-border"===r?"":t.prev)},I.prototype.renderPageLast=function(e,t){var n=this.props,a=n.prefix,r=n.size,o=n.shape,n=n.locale,r={disabled:t<=e,size:r,className:(0,P.default)(((t={})[a+"pagination-item"]=!0,t[a+"next"]=!0,t)),onClick:this.onPageItemClick.bind(this,e+1)},t=N.default.createElement(d.default,{type:"arrow-right",className:a+"pagination-icon-next"});return N.default.createElement(c.default,(0,O.default)({},r,{"aria-label":j.str.template(n.labelNext,{current:e})}),"arrow-only"===o||"no-border"===o?"":n.next,t)},I.prototype.renderPageEllipsis=function(e){var t=this.props.prefix;return N.default.createElement(d.default,{className:t+"pagination-ellipsis "+t+"pagination-icon-ellipsis",type:"ellipsis",key:"ellipsis-"+e})},I.prototype.renderPageJump=function(){var t=this,e=this.props,n=e.prefix,a=e.size,e=e.locale,r=this.state.inputValue;return[N.default.createElement("span",{className:n+"pagination-jump-text"},e.goTo),N.default.createElement(f.default,{className:n+"pagination-jump-input",type:"text","aria-label":e.inputAriaLabel,size:a,value:r,onChange:this.onInputChange.bind(this),onKeyDown:function(e){e.keyCode===j.KEYCODE.ENTER&&t.handleJump(e)}}),N.default.createElement("span",{className:n+"pagination-jump-text"},e.page),N.default.createElement(c.default,{className:n+"pagination-jump-go",size:a,onClick:this.handleJump},e.go)]},I.prototype.renderPageDisplay=function(e,t){var n=this.props,a=n.prefix,n=n.pageNumberRender;return N.default.createElement("span",{className:a+"pagination-display"},N.default.createElement("em",null,n(e)),"/",n(t))},I.prototype.renderPageList=function(e,t){var n=this.props,a=n.prefix,n=n.pageShowCount,r=[];if(t<=n)for(var o=1;o<=t;o++)r.push(this.renderPageItem(o));else{var n=n-3,i=parseInt(n/2,10),l=void 0,s=void 0;r.push(this.renderPageItem(1)),s=e+i,(l=e-i)<=1&&(s=(l=2)+n),2<l&&r.push(this.renderPageEllipsis(1));for(var u=l=t-1<=s?(s=t-1)-n:l;u<=s;u++)r.push(this.renderPageItem(u));s<t-1&&r.push(this.renderPageEllipsis(2)),r.push(this.renderPageItem(t))}return N.default.createElement("div",{className:a+"pagination-list"},r)},I.prototype.renderPageSizeSelector=function(){var e=this.props,t=e.prefix,n=e.pageSizeSelector,e=e.locale,a=N.default.createElement("span",{className:t+"pagination-size-selector-title"},e.pageSize);switch(n){case"filter":return N.default.createElement("div",{className:t+"pagination-size-selector"},a,this.renderPageSizeFilter());case"dropdown":return N.default.createElement("div",{className:t+"pagination-size-selector"},a,this.renderPageSizeDropdown());default:return null}},I.prototype.renderPageSizeFilter=function(){var r=this,e=this.props,o=e.prefix,i=e.size,e=e.pageSizeList,l=this.state.currentPageSize;return N.default.createElement("div",{className:o+"pagination-size-selector-filter"},e.map(function(e,t){var n=void 0,a=void 0,e=(e.value?(n=e.label,a=e.value):n=a=e,(0,P.default)(((e={})[o+"pagination-size-selector-btn"]=!0,e[o+"current"]=a===l,e)));return N.default.createElement(c.default,{key:t,text:!0,size:i,className:e,onClick:a!==l?r.onSelectSize.bind(r,a):null},n)}))},I.prototype.renderPageSizeDropdown=function(){var e=this.props,t=e.prefix,n=e.size,a=e.pageSizeList,r=e.locale,o=e.popupProps,e=e.selectProps,i=this.state.currentPageSize;return N.default.createElement(p.default,(0,O.default)({className:t+"pagination-size-selector-dropdown",popupClassName:t+"pagination-size-selector-popup",popupProps:o,"aria-label":r.selectAriaLabel,autoWidth:!1,size:n,value:i,onChange:this.onSelectSize.bind(this)},e),a.map(function(e,t){var n=void 0,a=void 0;return e.value?(n=e.label,a=e.value):n=a=e,N.default.createElement(g,{key:t,value:a},n)}))},I.prototype.render=function(){function e(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return N.default.createElement("div",(0,O.default)({className:x},j.obj.pickOthers(Object.keys(I.propTypes),_)),E&&S,c?a.renderPageTotal():null,N.default.createElement("div",{className:r+"pagination-pages"},t.map(function(e,t){return e&&N.default.cloneElement(e,{key:t})})),!E&&S)}var a=this,t=this.props,r=t.prefix,n=(t.pure,t.rtl),o=t.device,i=t.type,l=t.size,s=t.shape,u=t.className,d=t.total,c=t.totalRender,f=t.pageSize,p=t.pageSizeSelector,h=(t.pageSizeList,t.pageSizePosition),m=t.useFloatLayout,g=(t.onPageSizeChange,t.hideOnlyOnePage),y=t.showJump,v=(t.locale,t.current,t.defaultCurrent,t.pageShowCount),_=(t.pageNumberRender,t.link,t.onChange,t.popupProps,t.selectProps,(0,D.default)(t,["prefix","pure","rtl","device","type","size","shape","className","total","totalRender","pageSize","pageSizeSelector","pageSizeList","pageSizePosition","useFloatLayout","onPageSizeChange","hideOnlyOnePage","showJump","locale","current","defaultCurrent","pageShowCount","pageNumberRender","link","onChange","popupProps","selectProps"])),t=this.state,b=t.current,w=Y(d,t.currentPageSize),M=this.renderPageFirst(b),k=this.renderPageLast(b,w),S=this.renderPageSizeSelector(),E="start"===h,t=i,x=("phone"===o&&"normal"===t&&(t="simple"),(0,P.default)(((h={})[r+"pagination"]=!0,h[""+r+l]=l,h[""+r+t]=t,h[""+r+s]=s,h[r+"start"]=!!p&&E&&m,h[r+"end"]=!!p&&!E&&m,h[r+"hide"]=w<=1&&g,h[u]=!!u,h)));n&&(_.dir="rtl");switch(t){case"mini":return e(M,k);case"simple":return e(M,this.renderPageDisplay(b,w),k);case"normal":var C=this.renderPageList(b,w),L=y&&f*v<d?this.renderPageDisplay(b,w):null,T=y&&f*v<d?this.renderPageJump(b,w):null;return e.apply(void 0,[M,C,k,L].concat(T));default:return null}},o=i=I,i.propTypes=(0,O.default)({},u.default.propTypes,{prefix:l.default.string,pure:l.default.bool,rtl:l.default.bool,device:l.default.oneOf(["desktop","tablet","phone"]),className:l.default.string,locale:l.default.object,type:l.default.oneOf(["normal","simple","mini"]),shape:l.default.oneOf(["normal","arrow-only","arrow-prev-only","no-border"]),size:l.default.oneOf(["small","medium","large"]),current:l.default.number,defaultCurrent:l.default.number,onChange:l.default.func,total:l.default.number,totalRender:l.default.func,pageShowCount:l.default.number,pageSize:l.default.number,pageSizeSelector:l.default.oneOf([!1,"filter","dropdown"]),pageSizeList:l.default.oneOfType([l.default.arrayOf(l.default.number),l.default.arrayOf(l.default.shape({label:l.default.string,value:l.default.number}))]),pageNumberRender:l.default.func,pageSizePosition:l.default.oneOf(["start","end"]),useFloatLayout:l.default.bool,onPageSizeChange:l.default.func,hideOnlyOnePage:l.default.bool,showJump:l.default.bool,link:l.default.string,popupProps:l.default.object,selectProps:l.default.object}),i.defaultProps={prefix:"next-",pure:!1,rtl:!1,locale:n.default.Pagination,type:"normal",shape:"normal",size:"medium",defaultCurrent:1,onChange:m,pageSize:10,pageSizeSelector:!1,pageSizeList:[5,10,20],pageSizePosition:"start",onPageSizeChange:m,useFloatLayout:!1,total:100,pageShowCount:5,hideOnlyOnePage:!1,showJump:!0,pageNumberRender:function(e){return e}};var y,l=o;function I(e,t){(0,a.default)(this,I);var o=(0,r.default)(this,y.call(this,e,t));return o.handleJump=function(e){var t=o.props.total,n=o.state,a=n.current,r=n.currentPageSize,n=n.inputValue,t=Y(t,r),r=parseInt(n,10);isNaN(r)?r="":r<1?r=1:t<r&&(r=t),r&&r!==a&&o.onPageItemClick(r,e),o.setState({inputValue:""})},o.state={current:e.defaultCurrent||1,currentPageSize:0,inputValue:""},o}l.displayName="Pagination",t.default=u.default.config((0,s.polyfill)(l)),e.exports=t.default},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";n(43),n(32),n(700),n(702)},function(e,t,n){"use strict";n(701)},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";n(43),n(32),n(80),n(75),n(705)},function(e,t,n){},function(e,t,n){"use strict";n(32),n(80),n(707),n(709)},function(e,t,n){"use strict";n(36),n(59),n(32),n(43),n(708)},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){"use strict";t.__esModule=!0;var T=h(n(2)),u=h(n(4)),d=h(n(6)),a=h(n(7)),r=n(0),D=h(r),O=h(n(13)),o=h(n(3)),i=n(30),c=h(n(24)),f=h(n(18)),l=h(n(44)),s=n(11),p=h(n(8)),N=h(n(712));function h(e){return e&&e.__esModule?e:{default:e}}function m(e,t){return e.map(function(e){return e.value}).filter(function(e){return-1===t.indexOf(e)})}function g(t,n,e){var a={left:[],right:[]};return(t.length||n.length)&&e.map(function(e){return e.value}).forEach(function(e){-1<t.indexOf(e)?a.left.push(e):-1<n.indexOf(e)&&a.right.push(e)}),a}var y,n=p.default.config,v=s.func.bindCtx,P=s.obj.pickOthers,a=(y=r.Component,(0,a.default)(j,y),j.normalizeValue=function(e){return e?Array.isArray(e)?e:[e]:[]},j.getDerivedStateFromProps=function(e,t){var n=t.innerUpdate,a=t.value,r=t.leftValue;if(n)return{innerUpdate:!1,value:a,leftValue:r};n={},a=void 0,a="value"in e?(r=j.normalizeValue(e.value),n.value=r):t.value,n.leftValue=m(e.dataSource,a),r=g(t.leftCheckedValue,t.rightCheckedValue,e.dataSource),a=r.left,t=r.right;return n.leftCheckedValue=a,n.rightCheckedValue=t,n},j.prototype.groupDatasource=function(e,n,a){return e.reduce(function(e,t){t=n.indexOf(t);return-1<t&&e.push(a[t]),e},[])},j.prototype.handlePanelChange=function(e,t){var n,a=this.state,r=a.leftCheckedValue,a=a.rightCheckedValue,o=this.props.onSelect;this.setState(((n={innerUpdate:!0})["left"===e?"leftCheckedValue":"rightCheckedValue"]=t,n)),o&&o("left"===e?t:r,"left"===e?a:t,"left"===e?"source":"target")},j.prototype.handlePanelSort=function(e,t,n,a){var r=this,o=this.state,i=o.value,o=o.leftValue,l="right"===e?i:o,s=l.indexOf(t),n=l.indexOf(n),a="before"===a?n:n+1;s!==a&&(l.splice(s,1),s<a&&(a-=1),l.splice(a,0,t),this.setState({innerUpdate:!0,value:i,leftValue:o},function(){r.props.onSort(l,e)}))},j.prototype.handleMoveItem=function(e){var t=void 0,n=void 0,a=void 0,r=this.state,o=r.value,i=r.leftValue,l=r.leftCheckedValue,s=r.rightCheckedValue;(r={})["right"===e?(t=l.concat(o),n=i.filter(function(e){return-1===l.indexOf(e)}),a=l,"leftCheckedValue"):(t=o.filter(function(e){return-1===s.indexOf(e)}),n=s.concat(i),a=s,"rightCheckedValue")]=[],this.setValueState(r,t,n,a,e)},j.prototype.handleSimpleMove=function(e,t){var n=void 0,a=void 0,r=this.state,o=r.value,r=r.leftValue,a="right"===e?(n=[t].concat(o),r.filter(function(e){return e!==t})):(n=o.filter(function(e){return e!==t}),[t].concat(r));this.setValueState({},n,a,[t],e)},j.prototype.handleSimpleMoveAll=function(e){var t=void 0,n=void 0,a=void 0,r=this.props.dataSource,o=this.state,i=o.value,o=o.leftValue,l=r.reduce(function(e,t){return t.disabled&&e.push(t.value),e},[]),n="right"===e?(t=(a=o.filter(function(e){return-1===l.indexOf(e)})).concat(i),o.filter(function(e){return-1<l.indexOf(e)})):(a=i.filter(function(e){return-1===l.indexOf(e)}),t=i.filter(function(e){return-1<l.indexOf(e)}),a.concat(o));this.setValueState({},t,n,a,e)},j.prototype.setValueState=function(e,a,r,o,i){function t(){var e,t,n;"onChange"in l.props&&(n=s.map(function(e){return e.value}),e=l.groupDatasource(a,n,s),t=l.groupDatasource(r,n,s),n=l.groupDatasource(o,n,s),l.props.onChange(a,e,{leftValue:r,leftData:t,movedValue:o,movedData:n,direction:i}))}var l=this,s=this.props.dataSource;"value"in this.props||(e.value=a,e.leftValue=r),Object.keys(e).length?this.setState(e,t):t()},j.prototype.renderCenter=function(){var e=this.props,t=e.prefix,n=e.mode,a=e.operations,r=e.disabled,o=e.leftDisabled,i=e.rightDisabled,e=e.locale,l=this.state,s=l.leftCheckedValue,l=l.rightCheckedValue;return D.default.createElement("div",{className:t+"transfer-operations"},"simple"===n?D.default.createElement(c.default,{className:t+"transfer-move",size:"large",type:"switch"}):[D.default.createElement(f.default,{"aria-label":e.moveToRight,key:"l2r",className:t+"transfer-operation",type:s.length?"primary":"normal",disabled:o||r||!s.length,onClick:this.handleMoveItem.bind(this,"right")},a[0]),D.default.createElement(f.default,{"aria-label":e.moveToLeft,key:"r2l",className:t+"transfer-operation",type:l.length?"primary":"normal",disabled:i||r||!l.length,onClick:this.handleMoveItem.bind(this,"left")},a[1])])},j.prototype.render=function(){var e=this.props,t=e.prefix,n=e.mode,a=e.disabled,r=e.className,o=e.dataSource,i=e.locale,l=e.showSearch,l=void 0!==l&&l,s=e.searchProps,s=void 0===s?{}:s,u=e.filter,d=e.onSearch,c=e.leftDisabled,f=e.rightDisabled,p=e.searchPlaceholder,h=e.notFoundContent,m=e.titles,g=e.listClassName,y=e.listStyle,v=e.itemRender,_=e.sortable,b=e.useVirtual,w=e.rtl,M=e.id,k=e.children,e=e.showCheckAll,S=this.state,E=S.value,x=S.leftValue,C=S.leftCheckedValue,S=S.rightCheckedValue,L=o.map(function(e){return e.value}),x=this.groupDatasource(x,L,o),E=this.groupDatasource(E,L,o),L={prefix:t,mode:n,locale:i,filter:u,onSearch:d,searchPlaceholder:p,listClassName:g,listStyle:y,itemRender:v,onMove:this.handleSimpleMove,onMoveAll:this.handleSimpleMoveAll,onChange:this.handlePanelChange,sortable:_,useVirtual:b,onSort:this.handlePanelSort,baseId:M,customerList:k,showCheckAll:e},o=P(Object.keys(j.propTypes),this.props),n=(w&&(o.dir="rtl"),Array.isArray(l)?l:[l,l]),i=Array.isArray(s)?s:[s,s],u=Array.isArray(h)?h:[h,h];return D.default.createElement("div",(0,T.default)({className:(0,O.default)(t+"transfer",r),id:M},o),D.default.createElement(N.default,(0,T.default)({},L,{position:"left",dataSource:x,disabled:c||a,value:C,showSearch:n[0],searchProps:i[0],notFoundContent:u[0],title:m[0]})),this.renderCenter(),D.default.createElement(N.default,(0,T.default)({},L,{position:"right",dataSource:E,disabled:f||a,value:S,showSearch:n[1],searchProps:i[1],notFoundContent:u[1],title:m[1]})))},r=s=j,s.contextTypes={prefix:o.default.string},s.propTypes=(0,T.default)({},p.default.propTypes,{prefix:o.default.string,pure:o.default.bool,rtl:o.default.bool,className:o.default.string,mode:o.default.oneOf(["normal","simple"]),dataSource:o.default.arrayOf(o.default.object),value:o.default.arrayOf(o.default.string),defaultValue:o.default.arrayOf(o.default.string),onChange:o.default.func,onSelect:o.default.func,disabled:o.default.bool,leftDisabled:o.default.bool,rightDisabled:o.default.bool,itemRender:o.default.func,filter:o.default.func,onSearch:o.default.func,searchPlaceholder:o.default.string,showSearch:o.default.oneOfType([o.default.bool,o.default.arrayOf(o.default.bool)]),searchProps:o.default.oneOfType([o.default.object,o.default.arrayOf(o.default.object)]),notFoundContent:o.default.oneOfType([o.default.node,o.default.arrayOf(o.default.node)]),titles:o.default.arrayOf(o.default.node),operations:o.default.arrayOf(o.default.node),defaultLeftChecked:o.default.arrayOf(o.default.string),defaultRightChecked:o.default.arrayOf(o.default.string),listClassName:o.default.string,listStyle:o.default.object,sortable:o.default.bool,onSort:o.default.func,locale:o.default.object,id:o.default.string,children:o.default.func,useVirtual:o.default.bool,showCheckAll:o.default.bool}),s.defaultProps={prefix:"next-",pure:!1,mode:"normal",dataSource:[],defaultValue:[],disabled:!1,leftDisabled:!1,rightDisabled:!1,showCheckAll:!0,itemRender:function(e){return e.label},showSearch:!1,filter:function(e,t){var n="";return function e(t){D.default.isValidElement(t)&&t.props.children?D.default.Children.forEach(t.props.children,e):"string"==typeof t&&(n+=t)}(t.label),n.length>=e.length&&-1<n.indexOf(e)},onSearch:function(){},notFoundContent:"Not Found",titles:[],operations:[],defaultLeftChecked:[],defaultRightChecked:[],sortable:!1,onSort:function(){},locale:l.default.Transfer},r);function j(e,t){(0,u.default)(this,j);var t=(0,d.default)(this,y.call(this,e,t)),n=e.value,a=e.defaultValue,r=e.defaultLeftChecked,o=e.defaultRightChecked,i=e.dataSource,l=e.rtl,s=e.operations,s=(0===s.length&&(s.push(D.default.createElement(c.default,{rtl:l,type:"arrow-right"})),s.push(D.default.createElement(c.default,{rtl:l,type:"arrow-left"}))),g(j.normalizeValue(r),j.normalizeValue(o),i)),l=s.left,r=s.right,o=j.normalizeValue("value"in e?n:a);return t.state={value:o,leftCheckedValue:l,rightCheckedValue:r,leftValue:m(i,o)},v(t,["handlePanelChange","handlePanelSort","handleMoveItem","handleSimpleMove","handleSimpleMoveAll"]),t}a.displayName="Transfer",t.default=n((0,i.polyfill)(a)),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var m=f(n(2)),a=f(n(4)),r=f(n(6)),o=f(n(7)),i=n(0),g=f(i),l=f(n(3)),p=f(n(13)),h=f(n(71)),s=f(n(713)),u=f(n(50)),d=n(11),y=f(n(715)),c=f(n(400));function f(e){return e&&e.__esModule?e:{default:e}}var v,_=d.func.bindCtx,i=(v=i.Component,(0,o.default)(b,v),b.prototype.componentDidMount=function(){this.firstRender=!1},b.prototype.componentDidUpdate=function(e){e.dataSource.length!==this.props.dataSource.length&&this.list&&0<this.list.scrollTop&&(this.list.scrollTop=0),this.searched=!1},b.prototype.getListDOM=function(e){this.list=e},b.prototype.getListData=function(e,n){var a=this,t=this.props,r=t.prefix,o=t.position,i=t.mode,l=t.value,s=t.onMove,u=t.disabled,d=t.itemRender,c=t.sortable,t=this.state,f=t.dragPosition,p=t.dragValue,h=t.dragOverValue;return e.map(function(e){var t="title"in e?{title:e.title}:{};return g.default.createElement(y.default,(0,m.default)({key:e.value,prefix:r,mode:i,checked:-1<l.indexOf(e.value),disabled:u||e.disabled,item:e,onCheck:a.handleCheck,onClick:s,needHighlight:!a.firstRender&&!a.searched&&!n,itemRender:d,draggable:c,onDragStart:a.handleItemDragStart,onDragOver:a.handleItemDragOver,onDragEnd:a.handleItemDragEnd,onDrop:a.handleItemDrop,dragPosition:f,dragValue:p,dragOverValue:h,panelPosition:o},t))})},b.prototype.handleAllCheck=function(e){var t=this.props,n=t.position,a=t.onChange,r=t.filter,o=this.state.searchedValue,t=void 0,t=e?o?this.enabledDatasource.filter(function(e){return r(o,e)}).map(function(e){return e.value}):this.enabledDatasource.map(function(e){return e.value}):[];a&&a(n,t)},b.prototype.handleCheck=function(e,t){var n=this.props,a=n.position,r=n.value,n=n.onChange,o=[].concat(r),r=r.indexOf(e);t&&-1===r?o.push(e):!t&&-1<r&&o.splice(r,1),n&&n(a,o)},b.prototype.handleSearch=function(e){this.setState({searchedValue:e}),this.searched=!0;var t=this.props;(0,t.onSearch)(e,t.position)},b.prototype.handleItemDragStart=function(e,t){this.setState({dragPosition:e,dragValue:t})},b.prototype.handleItemDragOver=function(e){this.setState({dragOverValue:e})},b.prototype.handleItemDragEnd=function(){this.setState({dragOverValue:null})},b.prototype.handleItemDrop=function(){var e;this.setState({dragOverValue:null}),(e=this.props).onSort.apply(e,arguments)},b.prototype.renderHeader=function(){var e=this.props,t=e.title,e=e.prefix;return g.default.createElement("div",{id:this.headerId,className:e+"transfer-panel-header"},t)},b.prototype.renderSearch=function(){var e=this.props,t=e.prefix,n=e.searchPlaceholder,a=e.locale,e=e.searchProps;return g.default.createElement(s.default,(0,m.default)({"aria-labelledby":this.headerId,shape:"simple"},void 0===e?{}:e,{className:t+"transfer-panel-search",placeholder:n||a.searchPlaceholder,onChange:this.handleSearch}))},b.prototype.renderList=function(e){var t,n=this.props,a=n.prefix,r=n.listClassName,o=n.listStyle,i=n.customerList,n=n.useVirtual,a=(0,p.default)(((t={})[a+"transfer-panel-list"]=!0,t[r]=!!r,t)),r=i&&i(this.props);return r?g.default.createElement("div",{className:a,style:o,ref:this.getListDOM},r):e.length?n?g.default.createElement("div",{className:a,style:(0,m.default)({position:"relative"},o)},g.default.createElement(c.default,{itemsRenderer:function(e,t){return g.default.createElement(u.default,{style:{border:"none"},ref:t},e)}},this.getListData(e,!0))):g.default.createElement(u.default,{className:a,style:o,ref:this.getListDOM},this.getListData(e)):g.default.createElement("div",{className:a,style:o},this.renderNotFoundContent())},b.prototype.renderNotFoundContent=function(){var e=this.props,t=e.prefix,e=e.notFoundContent;return g.default.createElement("div",{className:t+"transfer-panel-not-found-container"},g.default.createElement("div",{className:t+"transfer-panel-not-found"},e))},b.prototype.renderFooter=function(){var e=this.props,t=e.prefix,n=e.position,a=e.mode,r=e.disabled,o=e.locale,e=e.showCheckAll;if("simple"===a)return a=this.props.onMoveAll,i=(0,p.default)(((i={})[t+"transfer-panel-move-all"]=!0,i[t+"disabled"]=r,i)),g.default.createElement("div",{className:t+"transfer-panel-footer"},g.default.createElement("a",{className:i,onClick:a.bind(this,"left"===n?"right":"left")},o.moveAll));var i=this.props,l=i.value,a=i.showSearch,s=i.filter,n=i.dataSource,u=this.state.searchedValue,i=n.length,d=n,c=l.length,f=c,a=(a&&u&&(i=(d=n.filter(function(e){return s(u,e)})).length,f=d.filter(function(e){return l.includes(e.value)}).length),Math.min(i,this.enabledDatasource.length)),n=1<i?o.items:o.item,d=0===c?i+" "+n:c+"/"+i+" "+n;return g.default.createElement("div",{className:t+"transfer-panel-footer"},e&&g.default.createElement(h.default,{disabled:r,checked:0<c&&a<=c,indeterminate:0<c&&0<=f&&f<a,onChange:this.handleAllCheck,"aria-labelledby":this.footerId}),g.default.createElement("span",{className:t+"transfer-panel-count",id:this.footerId},d))},b.prototype.render=function(){var e=this.props,t=e.prefix,n=e.title,a=e.showSearch,r=e.filter,e=e.dataSource,o=this.state.searchedValue,i=this.props.dataSource;return this.enabledDatasource=e.filter(function(e){return!e.disabled}),a&&o&&(i=e.filter(function(e){return r(o,e)})),g.default.createElement("div",{className:t+"transfer-panel"},n?this.renderHeader():null,a?this.renderSearch():null,this.renderList(i),this.renderFooter())},(n=b).propTypes={prefix:l.default.string,position:l.default.oneOf(["left","right"]),mode:l.default.oneOf(["normal","simple"]),dataSource:l.default.array,value:l.default.array,onChange:l.default.func,onMove:l.default.func,onMoveAll:l.default.func,disabled:l.default.bool,locale:l.default.object,title:l.default.node,showSearch:l.default.bool,searchProps:l.default.object,filter:l.default.func,onSearch:l.default.func,searchPlaceholder:l.default.string,notFoundContent:l.default.node,listClassName:l.default.string,listStyle:l.default.object,itemRender:l.default.func,sortable:l.default.bool,onSort:l.default.func,baseId:l.default.string,customerList:l.default.func,useVirtual:l.default.bool,showCheckAll:l.default.bool},n);function b(e,t){(0,a.default)(this,b);t=(0,r.default)(this,v.call(this,e,t));return t.state={searchedValue:"",dragValue:null,dragOverValue:null},t.footerId=e.baseId?d.htmlId.escapeForId(e.baseId+"-panel-footer-"+e.position):"",t.headerId=e.baseId?d.htmlId.escapeForId(e.baseId+"-panel-header-"+e.position):"",_(t,["handleCheck","handleAllCheck","handleSearch","handleItemDragStart","handleItemDragOver","handleItemDragEnd","handleItemDrop","getListDOM"]),t.firstRender=!0,t}i.displayName="TransferPanel",t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var i=r(n(12)),a=r(n(8)),n=r(n(714));function r(e){return e&&e.__esModule?e:{default:e}}t.default=a.default.config(n.default,{transfrom:function(e,t){var n=e.onInputFocus,a=e.overlayVisible,r=e.combox,o=(0,i.default)(e,["onInputFocus","overlayVisible","combox"]);return n&&(t("onInputFocus","onFocus","Search"),o.onFocus=n),"overlayVisible"in e&&(t("overlayVisible","visible","Search"),o.visible=a),r&&(t("combox","popupContent","Search"),o.popupContent=r),o}}),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a,r,C=c(n(2)),L=c(n(12)),o=c(n(4)),i=c(n(6)),l=c(n(7)),T=n(0),D=c(T),s=c(n(3)),O=c(n(13)),u=n(30),d=c(n(10)),N=c(n(29)),P=c(n(18)),j=c(n(24)),Y=n(11),n=c(n(44));function c(e){return e&&e.__esModule?e:{default:e}}var f,I=d.default.Group,R=N.default.AutoComplete,d=Y.func.noop,s=(f=D.default.Component,(0,l.default)(A,f),A.getDerivedStateFromProps=function(e,t){var n,a={};return"value"in e&&e.value!==t.value&&(n=e.value,a.value=null==n?"":e.value),"filterValue"in e&&e.filterValue!==t.filterValue&&(n=e.filterValue,a.filterValue=void 0===n?"":n),0<Object.keys(a).length?a:null},A.prototype.focus=function(){var e;(e=this.inputRef).focus.apply(e,arguments)},A.prototype.render=function(){var e=this.props,t=e.shape,n=e.filter,a=e.hasIcon,r=e.disabled,o=e.placeholder,i=e.type,l=e.className,s=e.style,u=e.size,d=e.prefix,c=e.searchText,f=e.dataSource,p=e.filterProps,h=e.buttonProps,m=e.fillProps,g=e.popupContent,y=e.followTrigger,v=e.hasClear,_=e.visible,b=e.locale,w=e.rtl,M=e.icons,k=e.autoHighlightFirstItem,e=(0,L.default)(e,["shape","filter","hasIcon","disabled","placeholder","type","className","style","size","prefix","searchText","dataSource","filterProps","buttonProps","fillProps","popupContent","followTrigger","hasClear","visible","locale","rtl","icons","autoHighlightFirstItem"]),i=(0,O.default)(((S={})[d+"search"]=!0,S[d+"search-"+t]=!0,S[""+d+i]=i,S[""+d+u]=u,S[d+"disabled"]=!!r,S[l]=!!l,S)),l=null,S=null,E=null,x=M.search,M=(!(0,T.isValidElement)(M.search)&&M.search&&(x=D.default.createElement("span",null,M.search)),"simple"===t?(t=(0,O.default)(((M={})[d+"search-icon"]=!0,M[h.className]=!!h.className,M[d+"search-symbol-icon"]=!x,M)),a&&(l=D.default.cloneElement(x||D.default.createElement(j.default,{type:"search"}),(0,C.default)({role:"button","aria-disabled":r,"aria-label":b.buttonText},h,{className:t,onClick:this.onSearch,onKeyDown:this.onKeyDown})))):(t=(0,O.default)(((M={})[d+"search-btn"]=!0,M[h.className]=!!h.className,M)),E=D.default.createElement(P.default,(0,C.default)({tabIndex:"0","aria-disabled":r,"aria-label":b.buttonText,className:t,disabled:r},h,{onClick:this.onSearch,onKeyDown:this.onKeyDown}),a?x||D.default.createElement(j.default,{type:"search",className:d+"search-symbol-icon"}):null,c?D.default.createElement("span",{className:d+"search-btn-text"},c):null)),0<n.length&&(S=D.default.createElement(N.default,(0,C.default)({},p,{followTrigger:y,hasBorder:!1,dataSource:n,size:u,disabled:r,value:this.state.filterValue,onChange:this.onFilterChange}))),Y.obj.pickOthers(A.propTypes,e)),t=(void 0!==_&&(M.visible=Boolean(_)),Y.obj.pickAttrsWith(e,"data-")),h=D.default.createElement(I,{addonBefore:S,className:d+"search-left",addonBeforeClassName:d+"search-left-addon"},D.default.createElement(R,(0,C.default)({"aria-label":b.buttonText},M,{followTrigger:y,role:"searchbox",hasClear:v,className:d+"search-input",size:u,fillProps:m,placeholder:o,dataSource:f,innerAfter:l,onPressEnter:this.onPressEnter,value:this.state.value,onChange:this.onChange,onToggleHighlightItem:this.onToggleHighlightItem,autoHighlightFirstItem:k,popupContent:g,disabled:r,ref:this.saveInputRef})));return D.default.createElement("span",(0,C.default)({className:i,style:s},t,{dir:w?"rtl":void 0}),E?D.default.createElement(I,{addonAfter:E},h):h)},a=l=A,l.propTypes={prefix:s.default.string,shape:s.default.oneOf(["normal","simple"]),type:s.default.oneOf(["primary","secondary","normal","dark"]),size:s.default.oneOf(["large","medium"]),defaultValue:s.default.string,value:s.default.oneOfType([s.default.string,s.default.number]),onChange:s.default.func,onSearch:s.default.func,defaultFilterValue:s.default.string,fillProps:s.default.string,filter:s.default.array,filterValue:s.default.string,onFilterChange:s.default.func,dataSource:s.default.array,placeholder:s.default.string,searchText:s.default.node,style:s.default.object,className:s.default.string,filterProps:s.default.object,buttonProps:s.default.object,popupContent:s.default.node,followTrigger:s.default.bool,visible:s.default.bool,hasClear:s.default.bool,hasIcon:s.default.bool,disabled:s.default.bool,locale:s.default.object,rtl:s.default.bool,icons:s.default.object,autoHighlightFirstItem:s.default.bool,onToggleHighlightItem:s.default.func},l.defaultProps={prefix:"next-",shape:"normal",type:"normal",size:"medium",hasIcon:!0,filter:[],locale:n.default.Search,buttonProps:{},onChange:d,onSearch:d,onFilterChange:d,onToggleHighlightItem:d,hasClear:!1,disabled:!1,icons:{},autoHighlightFirstItem:!0},r=function(){var i=this;this.onChange=function(e,t){for(var n,a=arguments.length,r=Array(2<a?a-2:0),o=2;o<a;o++)r[o-2]=arguments[o];i.props.disabled||("value"in i.props||i.setState({value:e}),(n=i.props).onChange.apply(n,[e,t].concat(r)),"enter"===t&&(i.highlightKey="",i.props.onSearch(e,i.state.filterValue)))},this.onPressEnter=function(){i.highlightKey||i.onSearch()},this.onSearch=function(){i.props.disabled||i.props.onSearch(i.state.value,i.state.filterValue)},this.onFilterChange=function(e){"filterValue"in i.props||i.setState({filterValue:e}),i.props.onFilterChange(e)},this.onToggleHighlightItem=function(e){for(var t,n=arguments.length,a=Array(1<n?n-1:0),r=1;r<n;r++)a[r-1]=arguments[r];i.highlightKey=e,(t=i.props).onToggleHighlightItem.apply(t,[e].concat(a))},this.onKeyDown=function(e){i.props.disabled||e.keyCode===Y.KEYCODE.ENTER&&i.onSearch()},this.saveInputRef=function(e){e&&e.getInstance()&&(i.inputRef=e.getInstance())}},a);function A(e){(0,o.default)(this,A);var t=(0,i.default)(this,f.call(this,e)),n=(r.call(t),"value"in e?e.value:e.defaultValue),e="filterValue"in e?e.filterValue:e.defaultFilterValue;return t.state={value:void 0===n?"":n,filterValue:e},t.highlightKey=null,t}s.displayName="Search",t.default=(0,u.polyfill)(s),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var h=u(n(2)),a=u(n(4)),r=u(n(6)),o=u(n(7)),i=n(0),m=u(i),l=u(n(3)),g=u(n(13)),s=u(n(50)),n=n(11);function u(e){return e&&e.__esModule?e:{default:e}}var d,y=s.default.Item,v=s.default.CheckboxItem,c=n.func.bindCtx,_=n.obj.pickOthers,f=n.dom.getOffset,i=(d=i.Component,(0,o.default)(b,d),b.prototype.componentDidMount=function(){var e=this;this.props.needHighlight&&(this.addHighlightTimer=setTimeout(function(){e.setState({highlight:!0})},1),this.removeHighlightTimer=setTimeout(function(){e.setState({highlight:!1})},201))},b.prototype.componentWillUnmount=function(){clearTimeout(this.addHighlightTimer),clearTimeout(this.removeHighlightTimer)},b.prototype.getItemDOM=function(e){this.item=e},b.prototype.handleClick=function(){var e=this.props;(0,e.onClick)("left"===e.panelPosition?"right":"left",e.item.value)},b.prototype.handleDragStart=function(e){e&&e.dataTransfer&&"function"==typeof e.dataTransfer.setData&&e.dataTransfer.setData("text/plain",e.target.id);e=this.props;(0,e.onDragStart)(e.panelPosition,e.item.value)},b.prototype.getDragGap=function(e){var t=f(e.currentTarget).top,n=e.currentTarget.offsetHeight;return e.pageY<=t+n/2?"before":"after"},b.prototype.handleDragOver=function(e){var t=this.props,n=t.panelPosition,a=t.dragPosition,r=t.onDragOver,t=t.item;n===a&&(e.preventDefault(),n=this.getDragGap(e),this.dragGap!==n&&(this.dragGap=n,r(t.value)))},b.prototype.handleDragEnd=function(){(0,this.props.onDragEnd)()},b.prototype.handleDrop=function(e){e.preventDefault();var e=this.props,t=e.onDrop,n=e.item;t(e.panelPosition,e.dragValue,n.value,this.dragGap)},b.prototype.render=function(){var e,t=this.props,n=t.prefix,a=t.mode,r=t.checked,o=t.disabled,i=t.item,l=t.onCheck,s=t.itemRender,u=t.draggable,d=t.dragOverValue,c=t.panelPosition,t=t.dragPosition,f=_(Object.keys(b.propTypes),this.props),p=this.state.highlight,a="simple"===a,d=(0,g.default)(((e={})[n+"transfer-panel-item"]=!0,e[n+"insert-"+this.dragGap]=d===i.value&&c===t,e[n+"focused"]=p,e[n+"simple"]=a,e)),c=s(i),t=(0,h.default)({ref:this.getItemDOM,className:d,children:c,disabled:o,draggable:u&&!o,onDragStart:this.handleDragStart,onDragOver:this.handleDragOver,onDragEnd:this.handleDragEnd,onDrop:this.handleDrop},f),p="string"==typeof c?c:void 0;return a?(t.disabled||(t.onClick=this.handleClick),m.default.createElement(y,(0,h.default)({title:p},t))):m.default.createElement(v,(0,h.default)({checked:r,onChange:l.bind(this,i.value),title:p},t))},n=s=b,s.menuChildType=v.menuChildType,s.propTypes={prefix:l.default.string,mode:l.default.oneOf(["normal","simple"]),value:l.default.array,disabled:l.default.bool,item:l.default.object,onCheck:l.default.func,onClick:l.default.func,needHighlight:l.default.bool,itemRender:l.default.func,draggable:l.default.bool,onDragStart:l.default.func,onDragOver:l.default.func,onDragEnd:l.default.func,onDrop:l.default.func,dragPosition:l.default.oneOf(["left","right"]),dragValue:l.default.string,dragOverValue:l.default.string,panelPosition:l.default.oneOf(["left","right"])},n);function b(e){(0,a.default)(this,b);e=(0,r.default)(this,d.call(this,e));return e.state={highlight:!1},c(e,["getItemDOM","handleClick","handleDragStart","handleDragOver","handleDragEnd","handleDrop"]),e}i.displayName="TransferItem",t.default=i,e.exports=t.default},function(e,t,n){},function(e,t,n){"use strict";n(43),n(70),n(718)},function(e,t,n){},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var u=s(n(2)),o=s(n(4)),i=s(n(6)),a=s(n(7)),r=n(0),d=s(r),c=s(n(13)),l=s(n(3)),f=n(11),p=s(n(720)),h=s(n(8));function s(e){return e&&e.__esModule?e:{default:e}}m=r.Component,(0,a.default)(g,m),g.prototype.render=function(){var t=this,e=this.props,n=e.prefix,a=e.arrowPosition,r=e.slideDirection,o=e.style,i=e.className,e=e.children,l={},s=(Object.keys(h.default.propTypes).forEach(function(e){l[e]=t.props[e]}),f.obj.pickOthers(["className","style","slideDirection"],this.props)),e=d.default.Children.count(e);if(0===e)return null;1===e&&(s.arrows=!1,s.autoplay=!1,s.draggable=!1);e=(0,c.default)([n+"slick",n+"slick-"+a,n+"slick-"+r],i);return"ver"===r&&(s.vertical=!0,s.verticalSwiping=!0),d.default.createElement(h.default,(0,u.default)({},l,{rtl:!1}),d.default.createElement("div",(0,u.default)({dir:"ltr",className:e,style:o},f.obj.pickOthers((0,u.default)({},g.propTypes,p.default.propTypes),s)),d.default.createElement(p.default,(0,u.default)({ref:function(e){return t.innerSlider=e}},s))))},r=n=g,n.propTypes={prefix:l.default.string,rtl:l.default.bool,className:l.default.any,adaptiveHeight:l.default.bool,animation:l.default.oneOfType([l.default.string,l.default.bool]),arrows:l.default.bool,arrowSize:l.default.oneOf(["medium","large"]),arrowPosition:l.default.oneOf(["inner","outer"]),arrowDirection:l.default.oneOf(["hoz","ver"]),autoplay:l.default.bool,autoplaySpeed:l.default.number,nextArrow:l.default.element,prevArrow:l.default.element,centerMode:l.default.bool,dots:l.default.bool,dotsDirection:l.default.oneOf(["hoz","ver"]),dotsClass:l.default.string,dotsRender:l.default.func,draggable:l.default.bool,infinite:l.default.bool,defaultActiveIndex:l.default.number,lazyLoad:l.default.bool,slide:l.default.string,slideDirection:l.default.oneOf(["hoz","ver"]),slidesToShow:l.default.number,slidesToScroll:l.default.number,speed:l.default.number,activeIndex:l.default.number,triggerType:l.default.oneOf(["click","hover"]),onChange:l.default.func,onBeforeChange:l.default.func,children:l.default.any,style:l.default.object,centerPadding:l.default.string,cssEase:l.default.string,edgeFriction:l.default.number,focusOnSelect:l.default.bool,pauseOnHover:l.default.bool,swipe:l.default.bool,swipeToSlide:l.default.bool,touchMove:l.default.bool,touchThreshold:l.default.number,useCSS:l.default.bool,variableWidth:l.default.bool,waitForAnimate:l.default.bool,edgeEvent:l.default.any,swipeEvent:l.default.any},n.defaultProps={prefix:"next-",animation:"slide",arrowSize:"medium",arrowPosition:"inner",vertical:!1,verticalSwiping:!1,dots:!0,dotsDirection:"hoz",arrows:!0,arrowDirection:"hoz",infinite:!0,autoplay:!1,autoplaySpeed:3e3,speed:600,adaptiveHeight:!1,centerMode:!1,centerPadding:"50px",cssEase:"ease",draggable:!0,edgeFriction:.35,focusOnSelect:!1,defaultActiveIndex:0,lazyLoad:!1,pauseOnHover:!1,rtl:!1,slide:"div",slideDirection:"hoz",slidesToShow:1,slidesToScroll:1,swipe:!0,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,variableWidth:!1,waitForAnimate:!0,onChange:function(){},onBeforeChange:function(){},edgeEvent:null,swipeEvent:null,nextArrow:null,prevArrow:null,style:null,dotsRender:null,triggerType:"click"};var m,a=r;function g(){var e,t;(0,o.default)(this,g);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,m.call.apply(m,[this].concat(a)))).resize=function(){t.innerSlider.onWindowResized()},(0,i.default)(t,e)}a.displayName="Slider",t.default=a,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var P=c(n(2)),a=c(n(4)),r=c(n(6)),o=c(n(7)),j=c(n(0)),i=c(n(3)),l=n(30),s=n(11),u=c(n(721)),d=c(n(722)),Y=c(n(723)),I=c(n(724)),R=c(n(725));function c(e){return e&&e.__esModule?e:{default:e}}var f,A=s.func.noop,i=(f=j.default.Component,(0,o.default)(p,f),p.getDerivedStateFromProps=function(e,t){var n={},a=e.lazyLoad,r=e.children,o=e.slidesToShow,i=(e.activeIndex,t.currentSlide),l=[];if(r!==t.children&&(n.children=r),a){for(var s,u=0,d=j.default.Children.count(r);u<d;u++)i<=u&&u<i+o&&(l.push(u),s=d<=u+1?0:u+1,l.push(u-1<0?d-1:u-1),l.push(s));0===t.lazyLoadedList.length&&(n.lazyLoadedList=l)}return n},p.prototype.componentDidMount=function(){this.hasMounted=!0,this.initialize(this.props),this.adaptHeight(),this.props.activeIndex&&this.slickGoTo(this.props.activeIndex),window&&s.events.on(window,"resize",this.onWindowResized)},p.prototype.componentDidUpdate=function(e,t){e.activeIndex!==this.props.activeIndex?this.slickGoTo(this.props.activeIndex):t.currentSlide>=this.props.children.length?(this.update(this.props),this.changeSlide({message:"index",index:this.props.children.length-this.props.slidesToShow,currentSlide:this.state.currentSlide})):s.obj.shallowEqual(e,this.props)||this.update(this.props),this.adaptHeight()},p.prototype.componentWillUnmount=function(){this.animationEndCallback&&clearTimeout(this.animationEndCallback),s.events.off(window,"resize",this.onWindowResized),this.state.autoPlayTimer&&clearInterval(this.state.autoPlayTimer)},p.prototype.onWindowResized=function(){this.update(this.props),this.setState({animating:!1}),clearTimeout(this.animationEndCallback),delete this.animationEndCallback},p.prototype.slickGoTo=function(e){"number"==typeof e&&this.changeSlide({message:"index",index:e,currentSlide:this.state.currentSlide})},p.prototype.onEnterArrow=function(e){this.arrowHoverHandler(e)},p.prototype.onLeaveArrow=function(){this.arrowHoverHandler()},p.prototype._instanceRefHandler=function(e,t){this[e]=t},p.prototype.render=function(){var e=this.props,t=e.prefix,n=e.animation,a=e.arrows,r=e.arrowSize,o=e.arrowPosition,i=e.arrowDirection,l=e.dots,s=e.dotsClass,u=e.cssEase,d=e.speed,c=e.infinite,f=e.centerMode,p=e.centerPadding,h=e.lazyLoad,m=e.dotsDirection,g=e.rtl,y=e.slidesToShow,v=e.slidesToScroll,_=e.variableWidth,b=e.vertical,w=e.verticalSwiping,M=e.focusOnSelect,k=e.children,S=e.dotsRender,e=e.triggerType,E=this.state,x=E.currentSlide,C=E.lazyLoadedList,L=E.slideCount,T=E.slideWidth,D=E.slideHeight,O=E.trackStyle,N=E.listHeight,E=E.dragging,u={prefix:t,animation:n,cssEase:u,speed:d,infinite:c,centerMode:f,focusOnSelect:M?this.selectHandler:null,currentSlide:x,lazyLoad:h,lazyLoadedList:C,rtl:g,slideWidth:T,slideHeight:D,slidesToShow:y,slidesToScroll:v,slideCount:L,trackStyle:O,variableWidth:_,vertical:b,verticalSwiping:w,triggerType:e},d=void 0,h=(!0===l&&y<L&&(M={prefix:t,rtl:g,dotsClass:s,slideCount:L,slidesToShow:y,currentSlide:x,slidesToScroll:v,dotsDirection:m,changeSlide:this.changeSlide,dotsRender:S,triggerType:e},d=j.default.createElement(R.default,M)),void 0),C=void 0,T={prefix:t,rtl:g,arrowSize:r,arrowPosition:o,arrowDirection:i,infinite:c,centerMode:f,currentSlide:x,slideCount:L,slidesToShow:y,clickHandler:this.changeSlide},D=(a&&(h=j.default.createElement(Y.default,(0,P.default)({},T,{type:"prev","aria-label":"Previous",ref:this._instanceRefHandler.bind(this,"pArrow"),onMouseEnter:n?this.onEnterArrow.bind(this,"prev"):A,onMouseLeave:n?this.onLeaveArrow.bind(this,"prev"):A}),this.props.prevArrow),C=j.default.createElement(Y.default,(0,P.default)({},T,{type:"next","aria-label":"Next",ref:this._instanceRefHandler.bind(this,"nArrow"),onMouseEnter:n?this.onEnterArrow.bind(this,"next"):A,onMouseLeave:n?this.onLeaveArrow.bind(this,"next"):A}),this.props.nextArrow)),b?{height:N}:null),O=f?b?{padding:p+" 0px"}:{padding:"0px "+p}:void 0;return j.default.createElement("div",{className:t+"slick-container "+t+"slick-initialized",onMouseEnter:this.onInnerSliderEnter,onMouseLeave:this.onInnerSliderLeave},j.default.createElement("div",{ref:this._instanceRefHandler.bind(this,"list"),className:t+"slick-list",style:(0,P.default)({},D,O),onMouseDown:this.swipeStart,onMouseUp:this.swipeEnd,onTouchStart:this.swipeStart,onTouchEnd:this.swipeEnd,onMouseMove:E?this.swipeMove:null,onMouseLeave:E?this.swipeEnd:null,onTouchMove:E?this.swipeMove:null,onTouchCancel:E?this.swipeEnd:null},j.default.createElement(I.default,(0,P.default)({ref:this._instanceRefHandler.bind(this,"track")},u),k)),h,C,d)},o=n=p,n.propTypes={prefix:i.default.string,animation:i.default.oneOfType([i.default.string,i.default.bool]),arrows:i.default.bool,arrowSize:i.default.oneOf(["medium","large"]),arrowPosition:i.default.oneOf(["inner","outer"]),arrowDirection:i.default.oneOf(["hoz","ver"]),centerPadding:i.default.any,children:i.default.any,centerMode:i.default.bool,dots:i.default.bool,dotsDirection:i.default.oneOf(["hoz","ver"]),dotsClass:i.default.string,focusOnSelect:i.default.bool,cssEase:i.default.string,speed:i.default.number,infinite:i.default.bool,defaultActiveIndex:i.default.number,rtl:i.default.bool,slidesToShow:i.default.number,lazyLoad:i.default.bool,activeIndex:i.default.number,slidesToScroll:i.default.number,variableWidth:i.default.bool,vertical:i.default.bool,verticalSwiping:i.default.bool,prevArrow:i.default.element,nextArrow:i.default.element,dotsRender:i.default.func,triggerType:i.default.string},n.defaultProps={prefix:"next-",arrowDirection:"hoz",triggerType:"click"},o);function p(e){(0,a.default)(this,p);var t=(0,r.default)(this,f.call(this,e));return t.state={animating:!1,dragging:!1,autoPlayTimer:null,currentDirection:0,currentLeft:null,currentSlide:"activeIndex"in e?e.activeIndex:e.defaultActiveIndex,direction:1,listWidth:null,listHeight:null,slideCount:null,slideWidth:null,slideHeight:null,swipeLeft:null,touchObject:{startX:0,startY:0,curX:0,curY:0},lazyLoadedList:[],initialized:!1,edgeDragged:!1,swiped:!1,trackStyle:{},trackWidth:0},s.func.bindCtx(t,["onWindowResized","selectHandler","changeSlide","onInnerSliderEnter","onInnerSliderLeave","swipeStart","swipeMove","swipeEnd"]),t}i.displayName="InnerSlider",(0,P.default)(i.prototype,d.default),(0,P.default)(i.prototype,u.default),t.default=(0,l.polyfill)(i),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a=n(2),s=(a=a)&&a.__esModule?a:{default:a},r=n(23),u=n(405);t.default={changeSlide:function(e){var t=void 0,n=void 0,a=this.state.slideCount%this.props.slidesToScroll!=0?0:(this.state.slideCount-this.state.currentSlide)%this.props.slidesToScroll;if("previous"===e.message)t=0==a?this.props.slidesToScroll:this.props.slidesToShow-a,n=this.state.currentSlide-t;else if("next"===e.message)t=0==a?this.props.slidesToScroll:a,n=this.state.currentSlide+t;else if("dots"===e.message||"children"===e.message){if((n=e.index*e.slidesToScroll)===e.currentSlide)return}else if("index"===e.message&&(n=e.index)===e.currentSlide)return;this.slideHandler(n)},keyHandler:function(e){e.target.tagName.match("TEXTAREA|INPUT|SELECT")||(37===e.keyCode&&!0===this.props.accessibility?this.changeSlide({message:!0===this.props.rtl?"next":"previous"}):39===e.keyCode&&!0===this.props.accessibility&&this.changeSlide({message:!0===this.props.rtl?"previous":"next"}))},selectHandler:function(e){this.changeSlide(e)},swipeStart:function(e){var t;!1===this.props.swipe||"ontouchend"in document&&!1===this.props.swipe||!1===this.props.draggable&&-1!==e.type.indexOf("mouse")||(t=void 0!==e.touches?e.touches[0].pageX:e.clientX,e=void 0!==e.touches?e.touches[0].pageY:e.clientY,this.setState({dragging:!0,touchObject:{startX:t,startY:e,curX:t,curY:e}}))},swipeMove:function(e){var t,n,a,r,o,i,l;this.state.dragging&&!this.state.animating&&(t=this.state.touchObject,n=(0,u.getTrackLeft)((0,s.default)({slideIndex:this.state.currentSlide,trackRef:this.refs.track},this.props,this.state)),t.curX=e.touches?e.touches[0].pageX:e.clientX,t.curY=e.touches?e.touches[0].pageY:e.clientY,t.swipeLength=Math.round(Math.sqrt(Math.pow(t.curX-t.startX,2))),a=(!1===this.props.rtl?1:-1)*(t.curX>t.startX?1:-1),!0===this.props.verticalSwiping&&(t.swipeLength=Math.round(Math.sqrt(Math.pow(t.curY-t.startY,2))),a=t.curY>t.startY?1:-1),r=this.state.currentSlide,l=Math.ceil(this.state.slideCount/this.props.slidesToScroll),o=this.swipeDirection(this.state.touchObject),i=t.swipeLength,!1===this.props.infinite&&(0===r&&"right"===o||l<=r+1&&"left"===o)&&(i=t.swipeLength*this.props.edgeFriction,!1===this.state.edgeDragged&&this.props.edgeEvent&&(this.props.edgeEvent(o),this.setState({edgeDragged:!0}))),!1===this.state.swiped&&this.props.swipeEvent&&(this.props.swipeEvent(o),this.setState({swiped:!0})),this.setState({touchObject:t,swipeLeft:l=n+i*a,trackStyle:(0,u.getTrackCSS)((0,s.default)({left:l},this.props,this.state))}),Math.abs(t.curX-t.startX)<.8*Math.abs(t.curY-t.startY)||4<t.swipeLength&&e.preventDefault())},getNavigableIndexes:function(){for(var e=void 0,t=0,n=0,a=[],e=this.props.infinite?(t=-1*this.props.slidesToShow,n=-1*this.props.slidesToShow,2*this.state.slideCount):this.state.slideCount;t<e;)a.push(t),t=n+this.props.slidesToScroll,n+=this.props.slidesToScroll<=this.props.slidesToShow?this.props.slidesToScroll:this.props.slidesToShow;return a},checkNavigable:function(e){var t=this.getNavigableIndexes(),n=0;if(e>t[t.length-1])e=t[t.length-1];else for(var a in t){if(e<t[a]){e=n;break}n=t[a]}return e},getSlideCount:function(){var t,e,n=this,a=this.props.centerMode?this.state.slideWidth*Math.floor(this.props.slidesToShow/2):0;return this.props.swipeToSlide?(e=(t=void 0,r.findDOMNode)(this.list).querySelectorAll(this.props.prefix+"slick-slide"),Array.from(e).every(function(e){if(n.props.vertical){if(e.offsetTop+(n.getHeight(e)||0)/2>-1*n.state.swipeLeft)return t=e,!1}else if(e.offsetLeft-a+(n.getWidth(e)||0)/2>-1*n.state.swipeLeft)return t=e,!1;return!0}),Math.abs(t.dataset.index-this.state.currentSlide)||1):this.props.slidesToScroll},swipeEnd:function(e){if(this.state.dragging){var t=this.state.touchObject,n=this.state.listWidth/this.props.touchThreshold,a=this.swipeDirection(t);if(this.props.verticalSwiping&&(n=this.state.listHeight/this.props.touchThreshold),this.setState({dragging:!1,edgeDragged:!1,swiped:!1,swipeLeft:null,touchObject:{}}),t.swipeLength)if(t.swipeLength>n){e.preventDefault();var r=void 0,o=void 0;switch(a){case"left":case"down":o=this.state.currentSlide+this.getSlideCount(),r=this.props.swipeToSlide?this.checkNavigable(o):o,this.setState({currentDirection:0});break;case"right":case"up":o=this.state.currentSlide-this.getSlideCount(),r=this.props.swipeToSlide?this.checkNavigable(o):o,this.setState({currentDirection:1});break;default:r=this.state.currentSlide}this.slideHandler(r)}else{t=(0,u.getTrackLeft)((0,s.default)({slideIndex:this.state.currentSlide,trackRef:this.track},this.props,this.state));this.setState({trackStyle:(0,u.getTrackAnimateCSS)((0,s.default)({left:t},this.props,this.state))})}}else this.props.swipe&&e.preventDefault()},onInnerSliderEnter:function(){this.props.autoplay&&this.props.pauseOnHover&&this.pause()},onInnerSliderLeave:function(){this.props.autoplay&&this.props.pauseOnHover&&this.autoPlay()}},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var g=a(n(2)),d=a(n(0)),c=a(n(23)),y=n(405);function a(e){return e&&e.__esModule?e:{default:e}}t.default={initialize:function(t){var n=this,e=c.default.findDOMNode(this.list),a=d.default.Children.count(t.children),r=this.getWidth(e)||0,o=this.getWidth(c.default.findDOMNode(this.track))||0,i=void 0,e=(i=t.vertical?r:(r-(t.centerMode&&2*parseInt(t.centerPadding)))/t.slidesToShow,this.getHeight(e.querySelector('[data-index="0"]'))||0),l=e*t.slidesToShow,s=t.slidesToShow||1,u="activeIndex"in t?t.activeIndex:t.defaultActiveIndex,s=t.rtl?a-1-(s-1)-u:u;this.setState({slideCount:a,slideWidth:i,listWidth:r,trackWidth:o,currentSlide:s,slideHeight:e,listHeight:l},function(){var e=(0,y.getTrackLeft)((0,g.default)({slideIndex:n.state.currentSlide,trackRef:n.track},t,n.state)),e=(0,y.getTrackCSS)((0,g.default)({left:e},t,n.state));n.setState({trackStyle:e}),n.autoPlay()})},update:function(e){this.initialize(e)},getWidth:function(e){return"clientWidth"in e?e.clientWidth:e&&e.getBoundingClientRect().width},getHeight:function(e){return"clientHeight"in e?e.clientHeight:e&&e.getBoundingClientRect().height},adaptHeight:function(){var e,t;this.props.adaptiveHeight&&(t='[data-index="'+this.state.currentSlide+'"]',this.list&&(t=(e=c.default.findDOMNode(this.list)).querySelector(t).offsetHeight,e.style.height=t+"px"))},canGoNext:function(e){var t=!0;return e.infinite||(e.centerMode?e.currentSlide>=e.slideCount-1&&(t=!1):(e.slideCount<=e.slidesToShow||e.currentSlide>=e.slideCount-e.slidesToShow)&&(t=!1)),t},slideHandler:function(e){var t=this,n=this.props.rtl,a=void 0,r=void 0,o=void 0;if(!this.props.waitForAnimate||!this.state.animating){if("fade"===this.props.animation)return r=this.state.currentSlide,!1===this.props.infinite&&(e<0||e>=this.state.slideCount)?void 0:(a=e<0?e+this.state.slideCount:e>=this.state.slideCount?e-this.state.slideCount:e,this.props.lazyLoad&&this.state.lazyLoadedList.indexOf(a)<0&&this.setState({lazyLoadedList:this.state.lazyLoadedList.concat(a)}),o=function(){t.setState({animating:!1}),t.props.onChange(a),delete t.animationEndCallback},this.props.onBeforeChange(this.state.currentSlide,a),this.setState({animating:!0,currentSlide:a},function(){this.animationEndCallback=setTimeout(o,this.props.speed+20)}),void this.autoPlay());a=e,n?a<0?!1===this.props.infinite?r=0:this.state.slideCount%this.props.slidesToScroll!=0?a+this.props.slidesToScroll<=0?(r=this.state.slideCount+a,a=this.state.slideCount-this.props.slidesToScroll):r=a=0:r=this.state.slideCount+a:r=a>=this.state.slideCount?!1===this.props.infinite?this.state.slideCount-this.props.slidesToShow:this.state.slideCount%this.props.slidesToScroll!=0?0:a-this.state.slideCount:a:r=a<0?!1===this.props.infinite?0:this.state.slideCount%this.props.slidesToScroll!=0?this.state.slideCount-this.state.slideCount%this.props.slidesToScroll:this.state.slideCount+a:a>=this.state.slideCount?!1===this.props.infinite?this.state.slideCount-this.props.slidesToShow:this.state.slideCount%this.props.slidesToScroll!=0?0:a-this.state.slideCount:a;var i,e=(0,y.getTrackLeft)((0,g.default)({slideIndex:a,trackRef:this.track},this.props,this.state)),l=(0,y.getTrackLeft)((0,g.default)({slideIndex:r,trackRef:this.track},this.props,this.state));if(!1===this.props.infinite&&(e=l),this.props.lazyLoad){for(var s=!0,u=[],d=this.state.slideCount,c=a<0?d+a:r,f=c;f<c+this.props.slidesToShow;f++){var p=f,h=(p=n?d<=f?2*d-f-1:d-f-1:p)-1<0?d-1:p-1,m=d<=p+1?0:p+1;this.state.lazyLoadedList.indexOf(p)<0&&u.push(p),this.state.lazyLoadedList.indexOf(h)<0&&u.push(h),this.state.lazyLoadedList.indexOf(m)<0&&u.push(m)}u.forEach(function(e){t.state.lazyLoadedList.indexOf(e)<0&&(s=!1)}),s||this.setState({lazyLoadedList:this.state.lazyLoadedList.concat(u)})}this.props.onBeforeChange(this.state.currentSlide,r),!1===this.props.useCSS?this.setState({currentSlide:r,trackStyle:(0,y.getTrackCSS)((0,g.default)({left:l},this.props,this.state))},function(){t.props.onChange(r)}):(i={animating:!1,currentSlide:r,trackStyle:(0,y.getTrackCSS)((0,g.default)({left:l},this.props,this.state)),swipeLeft:null},o=function(){t.setState(i),t.props.onChange(r),delete t.animationEndCallback},this.setState({animating:!0,currentSlide:r,trackStyle:(0,y.getTrackAnimateCSS)((0,g.default)({left:e},this.props,this.state))},function(){this.animationEndCallback=setTimeout(o,this.props.speed+20)})),this.autoPlay()}},arrowHoverHandler:function(e){var t=(0,y.getTrackLeft)((0,g.default)({slideIndex:this.state.currentSlide,trackRef:this.track},this.props,this.state)),n=void 0,n="next"===e?t-30:"prev"===e?t+30:t;this.setState({trackStyle:(0,y.getTrackAnimateCSS)((0,g.default)({left:n},this.props,this.state))})},swipeDirection:function(e){var t=void 0,n=e.startX-e.curX,e=e.startY-e.curY,e=Math.atan2(e,n);return(t=(t=Math.round(180*e/Math.PI))<0?360-Math.abs(t):t)<=45&&0<=t||t<=360&&315<=t?!1===this.props.rtl?"left":"right":135<=t&&t<=225?!1===this.props.rtl?"right":"left":!0===this.props.verticalSwiping?35<=t&&t<=135?"down":"up":"vertical"},play:function(){var e=void 0;if(!this.hasMounted)return!1;if(this.props.rtl)e=this.state.currentSlide-this.props.slidesToScroll;else{if(!this.canGoNext((0,g.default)({},this.props,this.state)))return!1;e=this.state.currentSlide+this.props.slidesToScroll}this.slideHandler(e)},autoPlay:function(){this.state.autoPlayTimer&&clearTimeout(this.state.autoPlayTimer),this.props.autoplay&&this.setState({autoPlayTimer:setTimeout(this.play.bind(this),this.props.autoplaySpeed)})},pause:function(){this.state.autoPlayTimer&&(clearTimeout(this.state.autoPlayTimer),this.setState({autoPlayTimer:null}))}},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var c=s(n(2)),a=s(n(4)),r=s(n(6)),o=s(n(7)),i=n(0),f=s(i),l=s(n(3)),p=s(n(13)),h=s(n(24)),m=n(11);function s(e){return e&&e.__esModule?e:{default:e}}var u,n=m.func.noop,l=(u=i.Component,(0,o.default)(g,u),g.isDisabled=function(e){var t=e.infinite,n=e.type,a=e.centerMode,r=e.currentSlide,o=e.slideCount,e=e.slidesToShow;return!t&&("prev"===n?r<=0:!!(a&&o-1<=r)||o-e<=r)},g.prototype.handleClick=function(e,t){t&&t.preventDefault(),"prev"===e.message&&(e.message="previous"),this.props.clickHandler(e,t)},g.prototype.render=function(){var e=this.props,t=e.prefix,n=e.type,a=e.arrowSize,r=e.arrowPosition,o=e.arrowDirection,i=e.onMouseEnter,l=e.onMouseLeave,e=e.children,s=m.obj.pickOthers(g.propTypes,this.props),u=g.ARROW_ICON_TYPES[o][n],d=g.isDisabled(this.props),t=(0,p.default)([t+"slick-arrow",t+"slick-"+n,r,a,o],{disabled:d}),r=(0,c.default)({},s,{key:n,"data-role":"none",className:t,style:{display:"block"},onClick:d?null:this.handleClick.bind(this,{message:n}),onMouseEnter:d?null:i,onMouseLeave:d?null:l});return e?f.default.cloneElement(f.default.Children.only(e),r):f.default.createElement("button",(0,c.default)({type:"button",role:"button"},r),f.default.createElement(h.default,{type:u}))},o=i=g,i.propTypes={prefix:l.default.string,rtl:l.default.bool,type:l.default.oneOf(["prev","next"]).isRequired,centerMode:l.default.bool,currentSlide:l.default.number,infinite:l.default.bool,clickHandler:l.default.func,slideCount:l.default.number,slidesToShow:l.default.number,arrow:l.default.element,arrowSize:l.default.string,arrowPosition:l.default.string,arrowDirection:l.default.oneOf(["hoz","ver"]),onMouseEnter:l.default.func,onMouseLeave:l.default.func,children:l.default.node},i.defaultProps={onMouseEnter:n,onMouseLeave:n},i.ARROW_ICON_TYPES={hoz:{prev:"arrow-left",next:"arrow-right"},ver:{prev:"arrow-up",next:"arrow-down"}},o);function g(){return(0,a.default)(this,g),(0,r.default)(this,u.apply(this,arguments))}l.displayName="Arrow",t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=s(n(4)),r=s(n(6)),o=s(n(7)),v=s(n(2)),i=n(0),_=s(i),l=s(n(3)),b=s(n(13)),w=n(11);function s(e){return e&&e.__esModule?e:{default:e}}function M(e,t){return null===e.key||void 0===e.key?t:e.key}function u(c){var f=void 0,p=[],h=[],m=[],g=_.default.Children.count(c.children),y=void 0;return _.default.Children.forEach(c.children,function(t,e){var n,a,r,o,i,l={message:"children",index:e,slidesToScroll:c.slidesToScroll,currentSlide:c.currentSlide},s=(y=!c.lazyLoad|(c.lazyLoad&&0<=c.lazyLoadedList.indexOf(e))?t:t.key?_.default.createElement("div",{key:t.key}):_.default.createElement("div",null),s=(0,v.default)({},c,{activeIndex:e}),d={},void 0!==s.variableWidth&&!1!==s.variableWidth||(d.width=s.slideWidth),"fade"===s.animation&&(d.position="relative",d.opacity=s.currentSlide===s.activeIndex?1:0,d.visibility=s.currentSlide>=s.activeIndex?"visible":"hidden",d.transition="opacity "+s.speed+"ms "+s.cssEase,d.WebkitTransition="opacity "+s.speed+"ms "+s.cssEase,s.vertical?d.top=-s.activeIndex*s.slideHeight:d.left=-s.activeIndex*s.slideWidth),s.vertical&&(d.width="100%"),d),u=(d=(0,v.default)({activeIndex:e},c),a=d.prefix,u=r=i=void 0,o=(u=d.rtl?d.slideCount-1-d.activeIndex:d.activeIndex)<0||u>=d.slideCount,d.centerMode?(n=Math.floor(d.slidesToShow/2),r=(u-d.currentSlide)%d.slideCount==0,u>d.currentSlide-n-1&&u<=d.currentSlide+n&&(i=!0)):i=d.currentSlide<=u&&u<d.currentSlide+d.slidesToShow,(0,b.default)(a+"slick-slide",((n={})[a+"slick-active"]=i,n[a+"slick-center"]=r,n[a+"slick-cloned"]=o,n))),d=void 0,d=y.props.className?(0,b.default)(u,y.props.className):u;p.push(_.default.cloneElement(y,{key:"original"+M(y,e),"data-index":e,className:d,tabIndex:"-1","aria-posinset":e,"aria-setsize":g,role:"listitem",dir:c.rtl?"rtl":"ltr",style:w.dom.hasDOM?(0,v.default)({outline:"none"},y.props.style,s):(0,v.default)({outline:"none"},s,y.props.style),onClick:function(e){y.props&&y.props.onClick&&t.props.onClick(e),c.focusOnSelect&&c.focusOnSelect(l)}})),c.infinite&&"fade"!==c.animation&&(i=c.variableWidth?c.slidesToShow+1:c.slidesToShow,g-i<=e&&(f=-(g-e),h.push(_.default.cloneElement(y,{key:"precloned"+M(y,f),"data-index":f,className:d,style:(0,v.default)({},y.props.style,s)}))),e<i&&(f=g+e,m.push(_.default.cloneElement(y,{key:"postcloned"+M(y,f),"data-index":f,className:d,style:(0,v.default)({},y.props.style,s)}))))}),w.dom.hasDOM?c.rtl?h.concat(p,m).reverse():h.concat(p,m):p.slice(c.currentSlide,c.currentSlide+c.slidesToShow)}d=i.Component,(0,o.default)(c,d),c.prototype.render=function(){var e=u(this.props);return _.default.createElement("div",{role:"list",className:this.props.prefix+"slick-track",style:this.props.trackStyle},e)},i=n=c,n.propTypes={prefix:l.default.string,trackStyle:l.default.object},n.defaultProps={prefix:"next-"};var d,o=i;function c(){return(0,a.default)(this,c),(0,r.default)(this,d.apply(this,arguments))}o.displayName="Track",t.default=o,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a,y=s(n(2)),r=s(n(4)),o=s(n(6)),i=s(n(7)),v=s(n(0)),l=s(n(3)),_=s(n(13));function s(e){return e&&e.__esModule?e:{default:e}}var u,n=n(11).func.noop,l=(u=v.default.Component,(0,i.default)(d,u),d.prototype.handleChangeSlide=function(e,t){t.preventDefault(),this.props.changeSlide(e)},d.prototype.render=function(){for(var e=this.props,t=e.prefix,n=e.slideCount,a=e.slidesToScroll,r=e.currentSlide,o=e.dotsClass,i=e.dotsDirection,l=e.dotsRender,s=e.triggerType,u=e.rtl,e=(0,_.default)(t+"slick-dots",i,o),d=Math.ceil(n/a),c=[],f=0;f<d;f++){var p,h=f*a,h=(0,_.default)(t+"slick-dots-item",{active:h<=r&&r<=h+a-1}),m={message:"dots",index:f,slidesToScroll:a,currentSlide:r};(p={})["hover"===s.toLowerCase()?"onMouseEnter":"onClick"]=this.handleChangeSlide.bind(this,m);var m=f,g=r;u&&(m=d-1-f,g=d-1-r),c.push(v.default.createElement("li",(0,y.default)({key:f,className:h},p),l instanceof Function?v.default.createElement("span",null,l(m,g)):v.default.createElement("button",{tabIndex:"-1"})))}return v.default.createElement("ul",{className:e,"aria-hidden":"true"},c)},a=i=d,i.propTypes={prefix:l.default.string,currentSlide:l.default.number,changeSlide:l.default.func,dotsClass:l.default.string,slideCount:l.default.number,slidesToScroll:l.default.number,dotsDirection:l.default.oneOf(["hoz","ver"]),dotsRender:l.default.func,triggerType:l.default.string},i.defaultProps={changeSlide:n},a);function d(){return(0,r.default)(this,d),(0,o.default)(this,u.apply(this,arguments))}l.displayName="Dots",t.default=l,e.exports=t.default},function(e,t,n){},function(e,t,n){"use strict";t.__esModule=!0;var s=h(n(2)),a=h(n(4)),r=h(n(6)),o=h(n(7)),u=h(n(0)),i=h(n(3)),d=h(n(13)),l=n(30),c=h(n(8)),f=n(11),p=h(n(406));function h(e){return e&&e.__esModule?e:{default:e}}m=u.default.Component,(0,o.default)(g,m),g.getDerivedStateFromProps=function(e){return"expandedKeys"in e?{expandedKeys:void 0===e.expandedKeys?[]:e.expandedKeys}:null},g.prototype.onItemClick=function(e){var t,n,a=this.state.expandedKeys;this.props.accordion?a=String(a[0])===String(e)?[]:[e]:(a=[].concat(a),t=String(e),-1<(n=a.findIndex(function(e){return String(e)===t}))?a.splice(n,1):a.push(e)),this.setExpandedKey(a)},g.prototype.genratePanelId=function(e,t){var n=this.props.id,a=void 0;return e?a=e:n&&(a=n+"-panel-"+t),a},g.prototype.getProps=function(e,t,n){var a=this,r=this.state.expandedKeys,o=e.title,i=(i=this.props.disabled)||e.disabled,l=!1,l=this.props.accordion?String(r[0])===String(n):r.some(function(e){return null!=e&&null!=n&&(e===n||e.toString()===n.toString())}),r=this.genratePanelId(e.id,t);return{key:n,title:o,isExpanded:l,disabled:i,id:r,onClick:i?null:function(){a.onItemClick(n),"onClick"in e&&e.onClick(n)}}},g.prototype.getItemsByDataSource=function(){var a=this,e=this.props.dataSource,r=e.some(function(e){return"key"in e});return e.map(function(e,t){var n=r?e.key:""+t;return u.default.createElement(p.default,(0,s.default)({},a.getProps(e,t,n),{key:n}),e.content)})},g.prototype.getItemsByChildren=function(){var a=this,e=u.default.Children.map(this.props.children,function(e){return e&&e.key}),r=Boolean(e&&e.length);return u.default.Children.map(this.props.children,function(e,t){var n;return e&&"function"==typeof e.type&&e.type.isNextPanel?(n=r?e.key:""+t,u.default.cloneElement(e,a.getProps(e.props,t,n))):e})},g.prototype.setExpandedKey=function(e){"expandedKeys"in this.props||this.setState({expandedKeys:e}),this.props.onExpand(this.props.accordion?e[0]:e)},g.prototype.render=function(){var e,t=this.props,n=t.prefix,a=t.className,r=t.style,o=t.disabled,i=t.dataSource,l=t.id,t=t.rtl,n=(0,d.default)(((e={})[n+"collapse"]=!0,e[n+"collapse-disabled"]=o,e[a]=Boolean(a),e)),o=f.obj.pickOthers(g.propTypes,this.props);return u.default.createElement("div",(0,s.default)({id:l,className:n,style:r},o,{role:"presentation",dir:t?"rtl":void 0}),i?this.getItemsByDataSource():this.getItemsByChildren())},o=n=g,n.propTypes={prefix:i.default.string,style:i.default.object,dataSource:i.default.array,defaultExpandedKeys:i.default.array,expandedKeys:i.default.array,onExpand:i.default.func,disabled:i.default.bool,className:i.default.string,accordion:i.default.bool,children:i.default.node,id:i.default.string,rtl:i.default.bool},n.defaultProps={accordion:!1,prefix:"next-",onExpand:f.func.noop},n.contextTypes={prefix:i.default.string};var m,n=o;function g(e){(0,a.default)(this,g);var t=(0,r.default)(this,m.call(this,e)),n=void 0,n="expandedKeys"in e?e.expandedKeys:e.defaultExpandedKeys;return t.state={expandedKeys:void 0===n?[]:n},t}n.displayName="Collapse",t.default=(0,l.polyfill)(c.default.config(n)),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=d(n(2)),o=d(n(4)),i=d(n(6)),r=d(n(7)),l=d(n(0)),s=d(n(409)),u=d(n(730));function d(e){return e&&e.__esModule?e:{default:e}}c=l.default.Component,(0,r.default)(f,c),f.prototype.componentDidMount=function(){"undefined"==typeof File&&this.setState({Component:u.default})},f.prototype.abort=function(e){this.uploaderRef.abort(e)},f.prototype.startUpload=function(e){this.uploaderRef.startUpload(e)},f.prototype.render=function(){var e=this.state.Component;return l.default.createElement(e,(0,a.default)({},this.props,{ref:this.saveUploaderRef}))};var c,n=f;function f(){var e,t;(0,o.default)(this,f);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,c.call.apply(c,[this].concat(a)))).state={Component:s.default},t.saveUploaderRef=function(e){t.uploaderRef=e},(0,i.default)(t,e)}n.displayName="Uploader",t.default=n,e.exports=t.default},function(e,t,n){"use strict";function i(e,t,n){n=n||"cannot post "+e.action+" "+t.status+"'";n=new Error(n);return n.status=t.status,n.method=e.method,n.url=e.action,n}function l(t){t=t.responseText||t.response;if(!t)return t;try{return JSON.parse(t)}catch(e){return t}}t.__esModule=!0,t.default=function(t){var e=new XMLHttpRequest;t.onProgress&&e.upload&&(e.upload.onprogress=function(e){0<e.total&&(e.percent=e.loaded/e.total*100),t.onProgress(e)});var n=new FormData;t.data&&Object.keys(t.data).forEach(function(e){n.append(e,t.data[e])});t.file instanceof Blob?n.append(t.filename,t.file,t.file.name):n.append(t.filename,t.file);e.onerror=function(e){t.onError(e)},e.onload=function(){if(e.status<200||300<=e.status)return t.onError(i(t,e),l(e));t.onSuccess(l(e),e)},t.method=t.method||"POST",e.open(t.method,t.action,!0);var a=t.timeout;"number"==typeof a&&0<a&&(e.timeout=a,e.ontimeout=function(){t.onError(i(t,e,"Upload abort for exceeding time (timeout: "+a+"ms)"),l(e))});t.withCredentials&&"withCredentials"in e&&(e.withCredentials=!0);var r,o=t.headers||{};null!==o["X-Requested-With"]&&e.setRequestHeader("X-Requested-With","XMLHttpRequest");for(r in o)o.hasOwnProperty(r)&&null!==o[r]&&e.setRequestHeader(r,o[r]);return e.send(n),{abort:function(){e.abort()}}},e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a,l=p(n(2)),r=p(n(4)),o=p(n(6)),i=p(n(7)),s=p(n(0)),u=p(n(3)),d=p(n(23)),c=n(11),f=n(99);function p(e){return e&&e.__esModule?e:{default:e}}var h,m={position:"absolute",top:0,right:0,fontSize:9999,zIndex:9999,opacity:0,outline:"none",cursor:"pointer"},u=(h=s.default.Component,(0,i.default)(g,h),g.prototype.componentDidMount=function(){this.updateInputWH()},g.prototype.componentDidUpdate=function(){this.updateInputWH()},g.prototype.startUpload=function(){this.upload(this.file)},g.prototype.upload=function(t){var n=this,e=(this.state.uploading||(this.state.uploading=!0,this.setState({uploading:!0})),this.props),a=e.beforeUpload,r=e.action,o=e.name,e=e.data;if(!a)return this.post(t);a=a(t,{action:r,name:o,data:e});a&&a.then?a.then(function(e){n.post(t,e)},function(){n.endUpload()}):!1!==a?this.post(t,c.obj.isPlainObject(a)?a:void 0):this.endUpload()},g.prototype.endUpload=function(){this.file={},this.state.uploading&&(this.state.uploading=!1,this.setState({uploading:!1}))},g.prototype.updateInputWH=function(){var e=d.default.findDOMNode(this),t=this.inputEl;t.style.height=e.offsetHeight+"px",t.style.width=e.offsetWidth+"px"},g.prototype.abort=function(e){e&&(e&&e.uid?e.uid:e)!==this.file.uid||this.endUpload()},g.prototype.post=function(e){var t,n,a=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},r=this.formEl,o=this.dataEl,i=this.inputEl,l=this.props.data,s=("function"==typeof l&&(l=l(e)),a.action),u=a.name,d=a.data,c=(u&&i.setAttribute("name",u),s&&r.setAttribute("action",s),d&&(l=d),document.createDocumentFragment());for(t in l)d.hasOwnProperty(t)&&((n=document.createElement("input")).setAttribute("name",t),n.value=l[t],c.appendChild(n));o.appendChild(c),r.submit(),o.innerHTML="",this.props.onStart(e)},g.prototype.render=function(){var e=this.props,t=e.disabled,n=e.className,a=e.children,r=e.accept,o=e.name,e=e.style,i=o+"-"+this.uid+"-iframe";return s.default.createElement("span",{className:n,style:(0,l.default)({position:"relative",zIndex:0,display:"inline-block"},e)},t?null:s.default.createElement("iframe",{ref:this.saveIFrameRef,name:i,onLoad:this.onLoad,style:{display:"none"}}),s.default.createElement("form",{ref:this.saveFormRef,method:"post",action:this.props.action,encType:"multipart/form-data",target:i},s.default.createElement("input",{name:"_documentDomain",value:this.domain,type:"hidden"}),s.default.createElement("span",{ref:this.saveDataRef}),s.default.createElement("input",{ref:this.saveInputRef,type:"file",accept:r,name:o,onChange:this.onSelect,style:m})),a)},i=n=g,n.propTypes={style:u.default.object,action:u.default.string.isRequired,name:u.default.string.isRequired,data:u.default.oneOfType([u.default.object,u.default.func]),disabled:u.default.bool,className:u.default.string,children:u.default.node,headers:u.default.object,autoUpload:u.default.bool,onSelect:u.default.func,beforeUpload:u.default.func,onStart:u.default.func,onSuccess:u.default.func,onError:u.default.func,accept:u.default.string},n.defaultProps={name:"file",onSelect:c.func.noop,beforeUpload:c.func.noop,onStart:c.func.noop,onSuccess:c.func.noop,onError:c.func.noop,onAbort:c.func.noop},a=function(){var o=this;this.state={uploading:!1},this.file={},this.uid="",this.onLoad=function(){if(o.state.uploading){var t=o.props,n=o.file,a=void 0;try{var e=o.iFrameEl.contentDocument,r=e.getElementsByTagName("script")[0];r&&r.parentNode===e.body&&e.body.removeChild(r),a=e.body.innerHTML,t.onSuccess(a,n)}catch(e){c.log.warning("cross domain error for Upload. Maybe server should return document.domain script."),a="cross-domain",t.onError(e,null,n)}o.endUpload()}},this.onSelect=function(e){o.file={uid:(0,f.uid)(),name:e.target.value},o.props.onSelect([o.file])},this.saveIFrameRef=function(e){o.iFrameEl=e},this.saveFormRef=function(e){o.formEl=e},this.saveDataRef=function(e){o.dataEl=e},this.saveInputRef=function(e){o.inputEl=e}},i);function g(e){(0,r.default)(this,g);e=(0,o.default)(this,h.call(this,e));return a.call(e),e.domain="undefined"!=typeof document&&document.domain?document.domain:"",e.uid=(0,f.uid)(),e}u.displayName="IframeUploader",t.default=u,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var o=r(n(2)),i=r(n(12)),a=r(n(8)),n=r(n(732));function r(e){return e&&e.__esModule?e:{default:e}}t.default=a.default.config(n.default,{transform:function(e,t){var n,a,r;return"type"in e&&(t("type","progressive","Progress"),r=(n=e).type,n=(0,i.default)(n,["type"]),e=(0,o.default)({progressive:"progressive"===r},n)),"showInfo"in e&&(t("showInfo","textRender","Progress"),n=(r=e).showInfo,r=(0,i.default)(r,["showInfo"]),e=n?r:(0,o.default)({textRender:function(){return!1}},r)),"suffix"in e&&(t("suffix","textRender","Progress"),a=(n=e).suffix,r=(0,i.default)(n,["suffix"]),e=(0,o.default)({textRender:function(){return a}},r)),e}}),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var a=p(n(2)),r=p(n(12)),o=p(n(4)),i=p(n(6)),l=p(n(7)),s=n(0),u=p(s),d=p(n(3)),c=p(n(733)),f=p(n(734));function p(e){return e&&e.__esModule?e:{default:e}}h=s.Component,(0,l.default)(m,h),m.prototype.render=function(){var e=this.props,t=e.shape,n=e.hasBorder,e=(0,r.default)(e,["shape","hasBorder"]);return"circle"===t?u.default.createElement(f.default,e):u.default.createElement(c.default,(0,a.default)({},e,{hasBorder:n}))},s=n=m,n.propTypes={prefix:d.default.string,shape:d.default.oneOf(["circle","line"]),size:d.default.oneOf(["small","medium","large"]),percent:d.default.number,state:d.default.oneOf(["normal","success","error"]),progressive:d.default.bool,hasBorder:d.default.bool,textRender:d.default.func,color:d.default.string,backgroundColor:d.default.string,rtl:d.default.bool},n.defaultProps={prefix:"next-",shape:"line",state:"normal",size:"medium",percent:0,progressive:!1,hasBorder:!1,textRender:function(e){return Math.floor(e)+"%"}},n.contextTypes={prefix:d.default.string};var h,l=s;function m(){return(0,o.default)(this,m),(0,i.default)(this,h.apply(this,arguments))}l.displayName="Progress",t.default=l,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var p=l(n(2)),h=l(n(12)),a=l(n(4)),r=l(n(6)),o=l(n(7)),m=l(n(0)),i=l(n(3)),g=l(n(13));function l(e){return e&&e.__esModule?e:{default:e}}s=m.default.PureComponent,(0,o.default)(u,s),u.prototype.render=function(){var e=this.props,t=e.prefix,n=e.size,a=e.state,r=e.color,o=e.percent,i=e.progressive,l=e.hasBorder,s=e.textRender,u=e.className,d=e.rtl,c=e.backgroundColor,e=(0,h.default)(e,["prefix","size","state","color","percent","progressive","hasBorder","textRender","className","rtl","backgroundColor"]),s=s(o,{rtl:d}),l=(0,g.default)(((f={})[t+"progress-line"]=!0,f[t+"progress-line-show-info"]=s,f[t+"progress-line-show-border"]=l,f[""+(t+n)]=n,f[u]=u,f)),u=(0,g.default)(((n={})[t+"progress-line-overlay"]=!0,n[t+"progress-line-overlay-"+a]=!r&&!i&&a,n[t+"progress-line-overlay-started"]=!r&&i&&o<=30,n[t+"progress-line-overlay-middle"]=!r&&i&&30<o&&o<80,n[t+"progress-line-overlay-finishing"]=!r&&i&&80<=o,n)),f={width:(100<o?100:o<0?0:o)+"%",backgroundColor:r},a={backgroundColor:c};return m.default.createElement("div",(0,p.default)({dir:d?"rtl":void 0,role:"progressbar","aria-valuenow":o,"aria-valuemin":"0","aria-valuemax":"100",className:l},e),m.default.createElement("div",{className:t+"progress-line-container"},m.default.createElement("div",{className:t+"progress-line-underlay",style:a},m.default.createElement("div",{className:u,style:f}))),s?m.default.createElement("div",{className:t+"progress-line-text"},s):null)},(n=u).propTypes={size:i.default.oneOf(["small","medium","large"]),percent:i.default.number,state:i.default.oneOf(["normal","success","error"]),progressive:i.default.bool,hasBorder:i.default.bool,textRender:i.default.func,color:i.default.string,backgroundColor:i.default.string,rtl:i.default.bool,prefix:i.default.string,className:i.default.oneOfType([i.default.string,i.default.object])};var s,o=n;function u(){return(0,a.default)(this,u),(0,r.default)(this,s.apply(this,arguments))}t.default=o,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0,t.default=void 0;var g=s(n(2)),y=s(n(12)),a=s(n(4)),r=s(n(6)),o=s(n(7)),i=n(0),v=s(i),l=s(n(3)),_=s(n(13));function s(e){return e&&e.__esModule?e:{default:e}}u=i.Component,(0,o.default)(d,u),d.prototype.componentDidMount=function(){this.underlay&&this.overlay&&this.setState({underlayStrokeWidth:this._getCssValue(this.underlay,"stroke-width")||8,overlayStrokeWidth:this._getCssValue(this.overlay,"stroke-width")||8})},d.prototype._getCssValue=function(e,t){e=window.getComputedStyle(e).getPropertyValue(t),t=/(\d*)px/g.exec(e);return Array.isArray(t)?Number(t[1]):0},d.prototype._computeOverlayStrokeDashOffset=function(){var e=this.state,t=e.underlayStrokeWidth,e=e.overlayStrokeWidth,t=2*Math.PI*(50-e/2-(t-e)/2);return(100-this.props.percent)/100*t},d.prototype._getPath=function(e){return"M 50,50 m 0,-"+e+" a "+e+","+e+" 0 1 1 0,"+2*e+" a "+e+","+e+" 0 1 1 0,-"+2*e},d.prototype.render=function(){var e=this.props,t=e.prefix,n=e.size,a=e.state,r=e.percent,o=e.className,i=e.textRender,l=e.progressive,s=e.color,u=e.backgroundColor,d=e.rtl,e=(0,y.default)(e,["prefix","size","state","percent","className","textRender","progressive","color","backgroundColor","rtl"]),c=this.state,f=c.underlayStrokeWidth,c=c.overlayStrokeWidth,p=this._getPath(50-f/2),f=50-c/2-(f-c)/2,c=this._getPath(f),f=2*Math.PI*f,f=f+"px "+f+"px",h=this._computeOverlayStrokeDashOffset()+"px",i=i(r,{rtl:d}),n=(0,_.default)(((m={})[t+"progress-circle"]=!0,m[t+"progress-circle-show-info"]=i,m[""+(t+n)]=n,m[o]=o,m)),m=(0,_.default)(((o={})[t+"progress-circle-overlay"]=!0,o[t+"progress-circle-overlay-"+a]=!s&&!l&&a,o[t+"progress-circle-overlay-started"]=!s&&l&&r<=30,o[t+"progress-circle-overlay-middle"]=!s&&l&&30<r&&r<80,o[t+"progress-circle-overlay-finishing"]=!s&&l&&80<=r,o)),a={stroke:u};return v.default.createElement("div",(0,g.default)({className:n,dir:d?"rtl":void 0,role:"progressbar","aria-valuenow":r,"aria-valuemin":"0","aria-valuemax":"100"},e),v.default.createElement("svg",{className:t+"progress-circle-container",viewBox:"0 0 100 100"},v.default.createElement("path",{className:t+"progress-circle-underlay",d:p,fillOpacity:"0",ref:this._underlayRefHandler,style:a}),v.default.createElement("path",{className:m,d:c,fillOpacity:"0",strokeDasharray:f,strokeDashoffset:h,ref:this._overlayRefHandler,stroke:s})),i?v.default.createElement("div",{className:t+"progress-circle-text"},i):null)},(n=d).propTypes={size:l.default.oneOf(["small","medium","large"]),percent:l.default.number,state:l.default.oneOf(["normal","success","error"]),progressive:l.default.bool,textRender:l.default.func,prefix:l.default.string,className:l.default.string,color:l.default.string,backgroundColor:l.default.string,rtl:l.default.bool};var u,i=n;function d(e){(0,a.default)(this,d);var t=(0,r.default)(this,u.call(this,e));return t._underlayRefHandler=function(e){t.underlay=e},t._overlayRefHandler=function(e){t.overlay=e},t.state={underlayStrokeWidth:8,overlayStrokeWidth:8},t}i.displayName="Circle",t.default=i,e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var a,w=c(n(2)),r=c(n(4)),o=c(n(6)),i=c(n(7)),M=c(n(0)),l=c(n(3)),k=c(n(13)),s=n(30),u=c(n(44)),S=n(11),d=c(n(408)),E=c(n(182)),x=c(n(180));function c(e){return e&&e.__esModule?e:{default:e}}f=d.default,(0,i.default)(C,f),C.prototype.componentDidMount=function(){this.updateUploaderRef(this.uploaderRef)},C.prototype.componentDidUpdate=function(){!this.state.uploaderRef&&this.uploaderRef&&this.updateUploaderRef(this.uploaderRef)},C.getDerivedStateFromProps=function(e,t){var n=t.uploaderRef&&t.uploaderRef.isUploading();return"value"in e&&e.value!==t.value&&!n?{value:Array.isArray(e.value)?[].concat(e.value):[]}:null},C.prototype.isUploading=function(){return this.uploaderRef.isUploading()},C.prototype.saveRef=function(e){this.saveUploaderRef(e)},C.prototype.updateUploaderRef=function(e){this.setState({uploaderRef:e})},C.prototype.render=function(){var e,t=this,n=this.props,a=n.action,r=n.disabled,o=n.prefix,i=n.locale,l=n.className,s=n.style,u=n.limit,d=n.onPreview,c=n.onRemove,f=n.onCancel,p=n.timeout,h=n.isPreview,m=n.renderPreview,g=n.itemRender,y=n.reUpload,n=n.showDownload,u=this.state.value.length>=u,u=(0,k.default)(((v={})[o+"upload-list-item"]=!0,v[o+"hidden"]=u,v)),v=this.props.children||i.card.addPhoto,c=r?S.func.prevent:c,_=S.obj.pickOthers(C.propTypes,this.props),b=S.obj.pickOthers(E.default.propTypes,_);if(h&&"function"==typeof m)return e=(0,k.default)(((e={})[o+"form-preview"]=!0,e[l]=!!l,e)),M.default.createElement("div",{style:s,className:e},m(this.state.value,this.props));return M.default.createElement(E.default,(0,w.default)({className:l,style:s,listType:"card",closable:!0,locale:i,value:this.state.value,onRemove:c,onCancel:f,onPreview:d,itemRender:g,isPreview:h,uploader:this.uploaderRef,reUpload:y,showDownload:n},_),M.default.createElement(x.default,(0,w.default)({},b,{shape:"card",prefix:o,disabled:r,action:a,timeout:p,isPreview:h,value:this.state.value,onProgress:this.onProgress,onChange:this.onChange,ref:function(e){return t.saveRef(e)},className:u}),v))},d=n=C,n.displayName="Card",n.propTypes={prefix:l.default.string,locale:l.default.object,children:l.default.object,value:l.default.oneOfType([l.default.array,l.default.object]),defaultValue:l.default.oneOfType([l.default.array,l.default.object]),onPreview:l.default.func,onChange:l.default.func,onRemove:l.default.func,onCancel:l.default.func,itemRender:l.default.func,reUpload:l.default.bool,showDownload:l.default.bool,onProgress:l.default.func,isPreview:l.default.bool,renderPreview:l.default.func},n.defaultProps={prefix:"next-",locale:u.default.Upload,showDownload:!0,onChange:S.func.noop,onPreview:S.func.noop,onProgress:S.func.noop},a=function(){var n=this;this.onProgress=function(e,t){n.setState({value:e}),n.props.onProgress(e,t)},this.onChange=function(e,t){"value"in n.props||n.setState({value:e}),n.props.onChange(e,t)}};var f,i=d;function C(e){(0,r.default)(this,C);var t=(0,o.default)(this,f.call(this,e)),n=(a.call(t),void 0),n="value"in e?e.value:e.defaultValue;return t.state={value:Array.isArray(n)?n:[],uploaderRef:t.uploaderRef},t}t.default=(0,s.polyfill)(i),e.exports=t.default},function(e,t,n){"use strict";t.__esModule=!0;var u=m(n(2)),d=m(n(12)),o=m(n(4)),i=m(n(6)),a=m(n(7)),c=m(n(0)),r=m(n(3)),f=m(n(13)),p=m(n(24)),l=n(11),s=m(n(44)),h=m(n(180));function m(e){return e&&e.__esModule?e:{default:e}}g=c.default.Component,(0,a.default)(y,g),y.prototype.abort=function(e){this.uploaderRef.abort(e)},y.prototype.startUpload=function(){this.uploaderRef.startUpload()},y.prototype.render=function(){var e=this.props,t=e.className,n=e.style,a=e.shape,r=e.locale,o=e.prefix,i=e.listType,e=(0,d.default)(e,["className","style","shape","locale","prefix","listType"]),l=o+"upload-drag",t=(0,f.default)(((s={})[l]=!0,s[l+"-over"]=this.state.dragOver,s[t]=!!t,s)),s=this.props.children||c.default.createElement("div",{className:t},c.default.createElement("p",{className:l+"-icon"},c.default.createElement(p.default,{size:"large",className:l+"-upload-icon"})),c.default.createElement("p",{className:l+"-text"},r.drag.text),c.default.createElement("p",{className:l+"-hint"},r.drag.hint));return c.default.createElement(h.default,(0,u.default)({},e,{prefix:o,shape:a,listType:i,dragable:!0,style:n,onDragOver:this.onDragOver,onDragLeave:this.onDragLeave,onDrop:this.onDrop,ref:this.saveUploaderRef}),s)},a=n=y,n.propTypes={prefix:r.default.string,locale:r.default.object,shape:r.default.string,onDragOver:r.default.func,onDragLeave:r.default.func,onDrop:r.default.func,limit:r.default.number,className:r.default.string,style:r.default.object,defaultValue:r.default.array,children:r.default.node,listType:r.default.string,timeout:r.default.number},n.defaultProps={prefix:"next-",onDragOver:l.func.noop,onDragLeave:l.func.noop,onDrop:l.func.noop,locale:s.default.Upload};var g,r=a;function y(){var e,t;(0,o.default)(this,y);for(var n=arguments.length,a=Array(n),r=0;r<n;r++)a[r]=arguments[r];return(e=t=(0,i.default)(this,g.call.apply(g,[this].concat(a)))).state={dragOver:!1},t.onDragOver=function(e){t.state.dragOver||t.setState({dragOver:!0}),t.props.onDragOver(e)},t.onDragLeave=function(e){t.setState({dragOver:!1}),t.props.onDragLeave(e)},t.onDrop=function(e){t.setState({dragOver:!1}),t.props.onDrop(e)},t.saveUploaderRef=function(e){e&&"function"==typeof e.getInstance?t.uploaderRef=e.getInstance():t.uploaderRef=e},(0,i.default)(t,e)}r.displayName="Dragger",t.default=r,e.exports=t.default},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){}]); |
New file |
| | |
| | | <!-- |
| | | ~ Copyright 1999-2018 Alibaba Group Holding Ltd. |
| | | ~ |
| | | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| | | ~ you may not use this file except in compliance with the License. |
| | | ~ You may obtain a copy of the License at |
| | | ~ |
| | | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| | | ~ |
| | | ~ Unless required by applicable law or agreed to in writing, software |
| | | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| | | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | ~ See the License for the specific language governing permissions and |
| | | ~ limitations under the License. |
| | | --> |
| | | |
| | | <!DOCTYPE html> |
| | | <html> |
| | | <head> |
| | | <meta charset="UTF-8"> |
| | | <title>ç»å½</title> |
| | | </head> |
| | | <body> |
| | | <h3>ç»å½</h3> |
| | | <form action="/nacos/login" method="post"> |
| | | <table> |
| | | <tr> |
| | | <td>ç¨æ·å:</td> |
| | | <td><input type="text" name="username"></td> |
| | | </tr> |
| | | <tr> |
| | | <td>å¯ç :</td> |
| | | <td><input type="password" name="password"></td> |
| | | </tr> |
| | | <tr> |
| | | <td colspan="2"> |
| | | <button type="submit">ç»å½</button> |
| | | </td> |
| | | </tr> |
| | | </table> |
| | | </form> |
| | | </body> |
| | | </html> |
New file |
| | |
| | | #FROM findepi/graalvm:java17-native |
| | | FROM openjdk:17.0.2-oraclelinux8 |
| | | |
| | | MAINTAINER Lion Li |
| | | |
| | | RUN mkdir -p /ruoyi/powerjob/logs |
| | | |
| | | WORKDIR /ruoyi/powerjob |
| | | |
| | | ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 JAVA_OPTS="-Xms512m -Xmx1024m" |
| | | |
| | | EXPOSE 7700 |
| | | |
| | | ADD ./target/ruoyi-powerjob-server.jar ./app.jar |
| | | |
| | | ENTRYPOINT java -Djava.security.egd=file:/dev/./urandom -jar app.jar \ |
| | | -XX:+HeapDumpOnOutOfMemoryError -Xlog:gc*,:time,tags,level -XX:+UseZGC ${JAVA_OPTS} |
New file |
| | |
| | | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| | | <parent> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-visual</artifactId> |
| | | <version>${revision}</version> |
| | | </parent> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | <packaging>jar</packaging> |
| | | <artifactId>ruoyi-powerjob-server</artifactId> |
| | | |
| | | <properties> |
| | | <spring-boot.version>2.7.18</spring-boot.version> |
| | | <spring-cloud.version>2021.0.7</spring-cloud.version> |
| | | <spring-cloud-alibaba.version>2021.0.4.0</spring-cloud-alibaba.version> |
| | | </properties> |
| | | <dependencyManagement> |
| | | <dependencies> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-dependencies</artifactId> |
| | | <version>${spring-boot.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework.cloud</groupId> |
| | | <artifactId>spring-cloud-dependencies</artifactId> |
| | | <version>${spring-cloud.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba.cloud</groupId> |
| | | <artifactId>spring-cloud-alibaba-dependencies</artifactId> |
| | | <version>${spring-cloud-alibaba.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | </dependencies> |
| | | </dependencyManagement> |
| | | |
| | | <dependencies> |
| | | |
| | | <!-- PowerJob server--> |
| | | <dependency> |
| | | <groupId>tech.powerjob</groupId> |
| | | <artifactId>powerjob-server-starter</artifactId> |
| | | <version>${powerjob.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- SpringCloud Alibaba Nacos --> |
| | | <dependency> |
| | | <groupId>com.alibaba.cloud</groupId> |
| | | <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
| | | </dependency> |
| | | |
| | | <!-- SpringCloud Alibaba Nacos Config --> |
| | | <dependency> |
| | | <groupId>com.alibaba.cloud</groupId> |
| | | <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.projectlombok</groupId> |
| | | <artifactId>lombok</artifactId> |
| | | </dependency> |
| | | |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <finalName>${project.artifactId}</finalName> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <version>${spring-boot.version}</version> |
| | | <executions> |
| | | <execution> |
| | | <goals> |
| | | <goal>repackage</goal> |
| | | </goals> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |
| | | </project> |
New file |
| | |
| | | package org.dromara.powerjob; |
| | | |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.scheduling.annotation.EnableScheduling; |
| | | import tech.powerjob.server.common.utils.PropertyUtils; |
| | | |
| | | /** |
| | | * powerjob å¯å¨ç¨åº |
| | | * |
| | | * @author yhan219 |
| | | */ |
| | | @Slf4j |
| | | @EnableScheduling |
| | | @SpringBootApplication(scanBasePackages = "tech.powerjob.server") |
| | | public class PowerJobServerApplication { |
| | | |
| | | public static void main(String[] args) { |
| | | PropertyUtils.init(); |
| | | SpringApplication.run(tech.powerjob.server.PowerJobServerApplication.class, args); |
| | | log.info("ææ¡£å°å: https://www.yuque.com/powerjob/guidence/problem"); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | # Http server port |
| | | server.port=7700 |
| | | |
| | | spring.profiles.active=@profiles.active@ |
| | | spring.main.banner-mode=log |
| | | spring.jpa.open-in-view=false |
| | | spring.data.mongodb.repositories.type=none |
| | | logging.level.org.mongodb=warn |
| | | logging.level.tech.powerjob.server=warn |
| | | logging.level.MONITOR_LOGGER_DB_OPERATION=warn |
| | | logging.level.MONITOR_LOGGER_WORKER_HEART_BEAT=warn |
| | | logging.config=classpath:logback-plus.xml |
| | | |
| | | # Configuration for uploading files. |
| | | spring.servlet.multipart.enabled=true |
| | | spring.servlet.multipart.file-size-threshold=0 |
| | | spring.servlet.multipart.max-file-size=209715200 |
| | | spring.servlet.multipart.max-request-size=209715200 |
| | | |
| | | ###### PowerJob transporter configuration ###### |
| | | oms.transporter.active.protocols=AKKA,HTTP |
| | | oms.transporter.main.protocol=HTTP |
| | | oms.akka.port=10086 |
| | | oms.http.port=10010 |
| | | # Prefix for all tables. Default empty string. Config if you have needs, i.e. pj_ |
| | | oms.table-prefix=pj_ |
| | | |
| | | spring.application.name=ruoyi-powerjob-server |
| | | management.endpoints.web.exposure.include=* |
| | | management.endpoint.health.show-details=ALWAYS |
| | | management.endpoint.logfile.external-file=./logs/ruoyi-powerjob-server.log |
| | | management.health.mongo.enabled=${oms.mongodb.enable} |
| | | |
| | | # nacos é
ç½® |
| | | spring.cloud.nacos.server-addr=@nacos.server@ |
| | | spring.cloud.nacos.discovery.group=@nacos.discovery.group@ |
| | | spring.cloud.nacos.discovery.namespace=${spring.profiles.active} |
| | | spring.cloud.nacos.config.group=@nacos.config.group@ |
| | | spring.cloud.nacos.config.namespace=${spring.profiles.active} |
| | | spring.config.import[0]=optional:nacos:datasource.yml |
| | | spring.config.import[1]=optional:nacos:${spring.application.name}.properties |
New file |
| | |
| | | Application Version: ${revision} |
| | | Spring Boot Version: ${spring-boot.version} |
| | | _ _ |
| | | (_) | | |
| | | _ __ _____ _____ _ __ _ ___ | |__ ______ ___ ___ _ ____ _____ _ __ |
| | | | '_ \ / _ \ \ /\ / / _ \ '__| |/ _ \| '_ \______/ __|/ _ \ '__\ \ / / _ \ '__| |
| | | | |_) | (_) \ V V / __/ | | | (_) | |_) | \__ \ __/ | \ V / __/ | |
| | | | .__/ \___/ \_/\_/ \___|_| | |\___/|_.__/ |___/\___|_| \_/ \___|_| |
| | | | | _/ | |
| | | |_| |__/ |
| | | |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | |
| | | <included> |
| | | |
| | | <property name="log.pattern" value="%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n"/> |
| | | |
| | | <!-- æ§å¶å°è¾åº --> |
| | | <appender name="file_console" class="ch.qos.logback.core.rolling.RollingFileAppender"> |
| | | <file>${log.path}/console.log</file> |
| | | <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> |
| | | <!-- æ¥å¿æä»¶åæ ¼å¼ --> |
| | | <fileNamePattern>${log.path}/console.%d{yyyy-MM-dd}.log</fileNamePattern> |
| | | <!-- æ¥å¿æå¤§ 1天 --> |
| | | <maxHistory>1</maxHistory> |
| | | </rollingPolicy> |
| | | <encoder> |
| | | <pattern>${log.pattern}</pattern> |
| | | <charset>utf-8</charset> |
| | | </encoder> |
| | | <filter class="ch.qos.logback.classic.filter.ThresholdFilter"> |
| | | <!-- è¿æ»¤ççº§å« --> |
| | | <level>INFO</level> |
| | | </filter> |
| | | </appender> |
| | | |
| | | <!-- ç³»ç»æ¥å¿è¾åº --> |
| | | <appender name="file_info" class="ch.qos.logback.core.rolling.RollingFileAppender"> |
| | | <file>${log.path}/info.log</file> |
| | | <!-- å¾ªç¯æ¿çï¼åºäºæ¶é´å建æ¥å¿æä»¶ --> |
| | | <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> |
| | | <!-- æ¥å¿æä»¶åæ ¼å¼ --> |
| | | <fileNamePattern>${log.path}/info.%d{yyyy-MM-dd}.log</fileNamePattern> |
| | | <!-- æ¥å¿æå¤§çåå² 60天 --> |
| | | <maxHistory>60</maxHistory> |
| | | </rollingPolicy> |
| | | <encoder> |
| | | <pattern>${log.pattern}</pattern> |
| | | </encoder> |
| | | <filter class="ch.qos.logback.classic.filter.LevelFilter"> |
| | | <!-- è¿æ»¤ççº§å« --> |
| | | <level>INFO</level> |
| | | <!-- å¹é
æ¶çæä½ï¼æ¥æ¶ï¼è®°å½ï¼ --> |
| | | <onMatch>ACCEPT</onMatch> |
| | | <!-- ä¸å¹é
æ¶çæä½ï¼æç»ï¼ä¸è®°å½ï¼ --> |
| | | <onMismatch>DENY</onMismatch> |
| | | </filter> |
| | | </appender> |
| | | |
| | | <appender name="file_error" class="ch.qos.logback.core.rolling.RollingFileAppender"> |
| | | <file>${log.path}/error.log</file> |
| | | <!-- å¾ªç¯æ¿çï¼åºäºæ¶é´å建æ¥å¿æä»¶ --> |
| | | <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> |
| | | <!-- æ¥å¿æä»¶åæ ¼å¼ --> |
| | | <fileNamePattern>${log.path}/error.%d{yyyy-MM-dd}.log</fileNamePattern> |
| | | <!-- æ¥å¿æå¤§çåå² 60天 --> |
| | | <maxHistory>60</maxHistory> |
| | | </rollingPolicy> |
| | | <encoder> |
| | | <pattern>${log.pattern}</pattern> |
| | | </encoder> |
| | | <filter class="ch.qos.logback.classic.filter.LevelFilter"> |
| | | <!-- è¿æ»¤ççº§å« --> |
| | | <level>ERROR</level> |
| | | <!-- å¹é
æ¶çæä½ï¼æ¥æ¶ï¼è®°å½ï¼ --> |
| | | <onMatch>ACCEPT</onMatch> |
| | | <!-- ä¸å¹é
æ¶çæä½ï¼æç»ï¼ä¸è®°å½ï¼ --> |
| | | <onMismatch>DENY</onMismatch> |
| | | </filter> |
| | | </appender> |
| | | |
| | | <!-- info弿¥è¾åº --> |
| | | <appender name="async_info" class="ch.qos.logback.classic.AsyncAppender"> |
| | | <!-- ä¸ä¸¢å¤±æ¥å¿.é»è®¤ç,妿éåç80%已满,åä¼ä¸¢å¼TRACTãDEBUGãINFO级å«çæ¥å¿ --> |
| | | <discardingThreshold>0</discardingThreshold> |
| | | <!-- æ´æ¹é»è®¤çéåçæ·±åº¦,该å¼ä¼å½±åæ§è½.é»è®¤å¼ä¸º256 --> |
| | | <queueSize>512</queueSize> |
| | | <!-- æ·»å éå çappender,æå¤åªè½æ·»å ä¸ä¸ª --> |
| | | <appender-ref ref="file_info"/> |
| | | </appender> |
| | | |
| | | <!-- error弿¥è¾åº --> |
| | | <appender name="async_error" class="ch.qos.logback.classic.AsyncAppender"> |
| | | <!-- ä¸ä¸¢å¤±æ¥å¿.é»è®¤ç,妿éåç80%已满,åä¼ä¸¢å¼TRACTãDEBUGãINFO级å«çæ¥å¿ --> |
| | | <discardingThreshold>0</discardingThreshold> |
| | | <!-- æ´æ¹é»è®¤çéåçæ·±åº¦,该å¼ä¼å½±åæ§è½.é»è®¤å¼ä¸º256 --> |
| | | <queueSize>512</queueSize> |
| | | <!-- æ·»å éå çappender,æå¤åªè½æ·»å ä¸ä¸ª --> |
| | | <appender-ref ref="file_error"/> |
| | | </appender> |
| | | |
| | | <!--ç³»ç»æä½æ¥å¿--> |
| | | <root level="info"> |
| | | <appender-ref ref="async_info"/> |
| | | <appender-ref ref="async_error"/> |
| | | <appender-ref ref="file_console"/> |
| | | </root> |
| | | </included> |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <configuration scan="true" scanPeriod="60 seconds" debug="false"> |
| | | |
| | | <!-- æ¥å¿åæ¾è·¯å¾ --> |
| | | <property name="log.path" value="logs/${project.artifactId}"/> |
| | | <!-- æ¥å¿è¾åºæ ¼å¼ --> |
| | | <property name="console.log.pattern" |
| | | value="%red(%d{yyyy-MM-dd HH:mm:ss}) %green([%thread]) %highlight(%-5level) %boldMagenta(%logger{36}%n) - %msg%n"/> |
| | | |
| | | <!-- æ§å¶å°è¾åº --> |
| | | <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> |
| | | <encoder> |
| | | <pattern>${console.log.pattern}</pattern> |
| | | <charset>utf-8</charset> |
| | | </encoder> |
| | | </appender> |
| | | |
| | | <include resource="logback-common.xml" /> |
| | | |
| | | <include resource="logback-logstash.xml" /> |
| | | |
| | | <!-- å¼å¯ skywalking æ¥å¿æ¶é --> |
| | | <include resource="logback-skylog.xml" /> |
| | | |
| | | <!--ç³»ç»æä½æ¥å¿--> |
| | | <root level="info"> |
| | | <appender-ref ref="console"/> |
| | | </root> |
| | | |
| | | </configuration> |
New file |
| | |
| | | #FROM findepi/graalvm:java17-native |
| | | FROM openjdk:17.0.2-oraclelinux8 |
| | | |
| | | MAINTAINER Lion Li |
| | | |
| | | RUN mkdir -p /ruoyi/seata-server/logs \ |
| | | /ruoyi/skywalking/agent |
| | | |
| | | WORKDIR /ruoyi/seata-server |
| | | |
| | | ENV TZ=PRC LANG=C.UTF-8 LC_ALL=C.UTF-8 JAVA_OPTS="" |
| | | RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone |
| | | |
| | | EXPOSE 7091 |
| | | EXPOSE 8091 |
| | | |
| | | ADD ./target/ruoyi-seata-server.jar ./app.jar |
| | | |
| | | ENTRYPOINT java -Djava.security.egd=file:/dev/./urandom \ |
| | | #-Dskywalking.agent.service_name=ruoyi-seata-server", \ |
| | | #-Dskywalking.plugin.seata.server=true", \ |
| | | #-javaagent:/ruoyi/skywalking/agent/skywalking-agent.jar", \ |
| | | -jar app.jar ${JAVA_OPTS} |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ~ Copyright 1999-2019 Seata.io Group. |
| | | ~ |
| | | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| | | ~ you may not use this file except in compliance with the License. |
| | | ~ You may obtain a copy of the License at |
| | | ~ |
| | | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| | | ~ |
| | | ~ Unless required by applicable law or agreed to in writing, software |
| | | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| | | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | ~ See the License for the specific language governing permissions and |
| | | ~ limitations under the License. |
| | | --> |
| | | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| | | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | <parent> |
| | | <groupId>org.dromara</groupId> |
| | | <artifactId>ruoyi-visual</artifactId> |
| | | <version>${revision}</version> |
| | | </parent> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | <artifactId>ruoyi-seata-server</artifactId> |
| | | <packaging>jar</packaging> |
| | | |
| | | <properties> |
| | | <seata.version>1.7.1</seata.version> |
| | | <jcommander.version>1.82</jcommander.version> |
| | | <druid.version>1.2.12</druid.version> |
| | | <spring-boot.version>2.7.18</spring-boot.version> |
| | | <native-build-tools-plugin.version>0.9.20</native-build-tools-plugin.version> |
| | | <logstash-logback-encoder.version>7.2</logstash-logback-encoder.version> |
| | | </properties> |
| | | |
| | | <dependencyManagement> |
| | | <dependencies> |
| | | <!-- SpringBoot ä¾èµé
ç½® --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-dependencies</artifactId> |
| | | <version>${spring-boot.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.seata</groupId> |
| | | <artifactId>seata-bom</artifactId> |
| | | <version>${seata.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.seata</groupId> |
| | | <artifactId>seata-dependencies</artifactId> |
| | | <version>${seata.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | </dependencies> |
| | | </dependencyManagement> |
| | | |
| | | <dependencies> |
| | | <!-- SpringBoot Webå®¹å¨ --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-web</artifactId> |
| | | <exclusions> |
| | | <exclusion> |
| | | <artifactId>spring-boot-starter-tomcat</artifactId> |
| | | <groupId>org.springframework.boot</groupId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <artifactId>*</artifactId> |
| | | <groupId>org.apache.logging.log4j</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <!-- web 容å¨ä½¿ç¨ undertow æ§è½æ´å¼º --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-undertow</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.seata</groupId> |
| | | <artifactId>seata-spring-autoconfigure-server</artifactId> |
| | | <version>${seata.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>io.seata</groupId> |
| | | <artifactId>seata-core</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.seata</groupId> |
| | | <artifactId>seata-config-all</artifactId> |
| | | <exclusions> |
| | | <exclusion> |
| | | <artifactId>log4j</artifactId> |
| | | <groupId>log4j</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.seata</groupId> |
| | | <artifactId>seata-discovery-all</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.seata</groupId> |
| | | <artifactId>seata-serializer-all</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.seata</groupId> |
| | | <artifactId>seata-compressor-all</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>io.seata</groupId> |
| | | <artifactId>seata-metrics-all</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>io.seata</groupId> |
| | | <artifactId>seata-console</artifactId> |
| | | <version>${seata.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- for database --> |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>druid</artifactId> |
| | | <version>${druid.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.apache.commons</groupId> |
| | | <artifactId>commons-dbcp2</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.zaxxer</groupId> |
| | | <artifactId>HikariCP</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.h2database</groupId> |
| | | <artifactId>h2</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.mysql</groupId> |
| | | <artifactId>mysql-connector-j</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.postgresql</groupId> |
| | | <artifactId>postgresql</artifactId> |
| | | </dependency> |
| | | <!-- Copyright restrictions, do not reference this dependency. |
| | | You can add this dependency to the '/seata/lib' directory of the seata-server when necessary. |
| | | <dependency> |
| | | <groupId>com.oracle.ojdbc</groupId> |
| | | <artifactId>ojdbc8</artifactId> |
| | | <version>${ojdbc.version}</version> |
| | | </dependency>--> |
| | | |
| | | <dependency> |
| | | <groupId>com.beust</groupId> |
| | | <artifactId>jcommander</artifactId> |
| | | <version>${jcommander.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- only for event bus --> |
| | | <dependency> |
| | | <groupId>com.google.guava</groupId> |
| | | <artifactId>guava</artifactId> |
| | | </dependency> |
| | | |
| | | <!-- jedis --> |
| | | <dependency> |
| | | <groupId>redis.clients</groupId> |
| | | <artifactId>jedis</artifactId> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>fastjson</artifactId> |
| | | </dependency> |
| | | |
| | | <!-- logback --> |
| | | <dependency> |
| | | <groupId>ch.qos.logback</groupId> |
| | | <artifactId>logback-classic</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>ch.qos.logback</groupId> |
| | | <artifactId>logback-core</artifactId> |
| | | </dependency> |
| | | <!-- logback appenders --> |
| | | <dependency> |
| | | <groupId>net.logstash.logback</groupId> |
| | | <artifactId>logstash-logback-encoder</artifactId> |
| | | <version>${logstash-logback-encoder.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.codehaus.janino</groupId> |
| | | <artifactId>janino</artifactId> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <finalName>${project.artifactId}</finalName> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <version>${spring-boot.version}</version> |
| | | <executions> |
| | | <execution> |
| | | <goals> |
| | | <goal>repackage</goal> |
| | | </goals> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |
| | | </project> |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server; |
| | | |
| | | import io.seata.common.exception.StoreException; |
| | | import io.seata.core.exception.AbstractExceptionHandler; |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.exception.TransactionExceptionCode; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.core.protocol.transaction.*; |
| | | import io.seata.core.rpc.RpcContext; |
| | | import io.seata.server.session.GlobalSession; |
| | | import io.seata.server.session.SessionHolder; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | |
| | | /** |
| | | * The type Abstract tc inbound handler. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public abstract class AbstractTCInboundHandler extends AbstractExceptionHandler implements TCInboundHandler { |
| | | |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(AbstractTCInboundHandler.class); |
| | | |
| | | @Override |
| | | public GlobalBeginResponse handle(GlobalBeginRequest request, final RpcContext rpcContext) { |
| | | GlobalBeginResponse response = new GlobalBeginResponse(); |
| | | exceptionHandleTemplate(new AbstractCallback<GlobalBeginRequest, GlobalBeginResponse>() { |
| | | @Override |
| | | public void execute(GlobalBeginRequest request, GlobalBeginResponse response) throws TransactionException { |
| | | try { |
| | | doGlobalBegin(request, response, rpcContext); |
| | | } catch (StoreException e) { |
| | | throw new TransactionException(TransactionExceptionCode.FailedStore, |
| | | String.format("begin global request failed. xid=%s, msg=%s", response.getXid(), e.getMessage()), |
| | | e); |
| | | } |
| | | } |
| | | }, request, response); |
| | | return response; |
| | | } |
| | | |
| | | /** |
| | | * Do global begin. |
| | | * |
| | | * @param request the request |
| | | * @param response the response |
| | | * @param rpcContext the rpc context |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | protected abstract void doGlobalBegin(GlobalBeginRequest request, GlobalBeginResponse response, |
| | | RpcContext rpcContext) throws TransactionException; |
| | | |
| | | @Override |
| | | public GlobalCommitResponse handle(GlobalCommitRequest request, final RpcContext rpcContext) { |
| | | GlobalCommitResponse response = new GlobalCommitResponse(); |
| | | response.setGlobalStatus(GlobalStatus.Committing); |
| | | exceptionHandleTemplate(new AbstractCallback<GlobalCommitRequest, GlobalCommitResponse>() { |
| | | @Override |
| | | public void execute(GlobalCommitRequest request, GlobalCommitResponse response) |
| | | throws TransactionException { |
| | | try { |
| | | doGlobalCommit(request, response, rpcContext); |
| | | } catch (StoreException e) { |
| | | throw new TransactionException(TransactionExceptionCode.FailedStore, |
| | | String.format("global commit request failed. xid=%s, msg=%s", request.getXid(), e.getMessage()), |
| | | e); |
| | | } |
| | | } |
| | | @Override |
| | | public void onTransactionException(GlobalCommitRequest request, GlobalCommitResponse response, |
| | | TransactionException tex) { |
| | | super.onTransactionException(request, response, tex); |
| | | checkTransactionStatus(request, response); |
| | | } |
| | | |
| | | @Override |
| | | public void onException(GlobalCommitRequest request, GlobalCommitResponse response, Exception rex) { |
| | | super.onException(request, response, rex); |
| | | checkTransactionStatus(request, response); |
| | | } |
| | | |
| | | |
| | | }, request, response); |
| | | return response; |
| | | } |
| | | |
| | | /** |
| | | * Do global commit. |
| | | * |
| | | * @param request the request |
| | | * @param response the response |
| | | * @param rpcContext the rpc context |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | protected abstract void doGlobalCommit(GlobalCommitRequest request, GlobalCommitResponse response, |
| | | RpcContext rpcContext) throws TransactionException; |
| | | |
| | | @Override |
| | | public GlobalRollbackResponse handle(GlobalRollbackRequest request, final RpcContext rpcContext) { |
| | | GlobalRollbackResponse response = new GlobalRollbackResponse(); |
| | | response.setGlobalStatus(GlobalStatus.Rollbacking); |
| | | exceptionHandleTemplate(new AbstractCallback<GlobalRollbackRequest, GlobalRollbackResponse>() { |
| | | @Override |
| | | public void execute(GlobalRollbackRequest request, GlobalRollbackResponse response) |
| | | throws TransactionException { |
| | | try { |
| | | doGlobalRollback(request, response, rpcContext); |
| | | } catch (StoreException e) { |
| | | throw new TransactionException(TransactionExceptionCode.FailedStore, String |
| | | .format("global rollback request failed. xid=%s, msg=%s", request.getXid(), e.getMessage()), e); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void onTransactionException(GlobalRollbackRequest request, GlobalRollbackResponse response, |
| | | TransactionException tex) { |
| | | super.onTransactionException(request, response, tex); |
| | | // may be appears StoreException outer layer method catch |
| | | checkTransactionStatus(request, response); |
| | | } |
| | | |
| | | @Override |
| | | public void onException(GlobalRollbackRequest request, GlobalRollbackResponse response, Exception rex) { |
| | | super.onException(request, response, rex); |
| | | // may be appears StoreException outer layer method catch |
| | | checkTransactionStatus(request, response); |
| | | } |
| | | }, request, response); |
| | | return response; |
| | | } |
| | | |
| | | /** |
| | | * Do global rollback. |
| | | * |
| | | * @param request the request |
| | | * @param response the response |
| | | * @param rpcContext the rpc context |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | protected abstract void doGlobalRollback(GlobalRollbackRequest request, GlobalRollbackResponse response, |
| | | RpcContext rpcContext) throws TransactionException; |
| | | |
| | | @Override |
| | | public BranchRegisterResponse handle(BranchRegisterRequest request, final RpcContext rpcContext) { |
| | | BranchRegisterResponse response = new BranchRegisterResponse(); |
| | | exceptionHandleTemplate(new AbstractCallback<BranchRegisterRequest, BranchRegisterResponse>() { |
| | | @Override |
| | | public void execute(BranchRegisterRequest request, BranchRegisterResponse response) |
| | | throws TransactionException { |
| | | try { |
| | | doBranchRegister(request, response, rpcContext); |
| | | } catch (StoreException e) { |
| | | throw new TransactionException(TransactionExceptionCode.FailedStore, String |
| | | .format("branch register request failed. xid=%s, msg=%s", request.getXid(), e.getMessage()), e); |
| | | } |
| | | } |
| | | }, request, response); |
| | | return response; |
| | | } |
| | | |
| | | /** |
| | | * Do branch register. |
| | | * |
| | | * @param request the request |
| | | * @param response the response |
| | | * @param rpcContext the rpc context |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | protected abstract void doBranchRegister(BranchRegisterRequest request, BranchRegisterResponse response, |
| | | RpcContext rpcContext) throws TransactionException; |
| | | |
| | | @Override |
| | | public BranchReportResponse handle(BranchReportRequest request, final RpcContext rpcContext) { |
| | | BranchReportResponse response = new BranchReportResponse(); |
| | | exceptionHandleTemplate(new AbstractCallback<BranchReportRequest, BranchReportResponse>() { |
| | | @Override |
| | | public void execute(BranchReportRequest request, BranchReportResponse response) |
| | | throws TransactionException { |
| | | try { |
| | | doBranchReport(request, response, rpcContext); |
| | | } catch (StoreException e) { |
| | | throw new TransactionException(TransactionExceptionCode.FailedStore, String |
| | | .format("branch report request failed. xid=%s, branchId=%s, msg=%s", request.getXid(), |
| | | request.getBranchId(), e.getMessage()), e); |
| | | } |
| | | } |
| | | }, request, response); |
| | | return response; |
| | | } |
| | | |
| | | /** |
| | | * Do branch report. |
| | | * |
| | | * @param request the request |
| | | * @param rpcContext the rpc context |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | protected abstract void doBranchReport(BranchReportRequest request, BranchReportResponse response, |
| | | RpcContext rpcContext) throws TransactionException; |
| | | |
| | | @Override |
| | | public GlobalLockQueryResponse handle(GlobalLockQueryRequest request, final RpcContext rpcContext) { |
| | | GlobalLockQueryResponse response = new GlobalLockQueryResponse(); |
| | | exceptionHandleTemplate(new AbstractCallback<GlobalLockQueryRequest, GlobalLockQueryResponse>() { |
| | | @Override |
| | | public void execute(GlobalLockQueryRequest request, GlobalLockQueryResponse response) |
| | | throws TransactionException { |
| | | try { |
| | | doLockCheck(request, response, rpcContext); |
| | | } catch (StoreException e) { |
| | | throw new TransactionException(TransactionExceptionCode.FailedStore, String |
| | | .format("global lock query request failed. xid=%s, msg=%s", request.getXid(), e.getMessage()), |
| | | e); |
| | | } |
| | | } |
| | | }, request, response); |
| | | return response; |
| | | } |
| | | |
| | | /** |
| | | * Do lock check. |
| | | * |
| | | * @param request the request |
| | | * @param response the response |
| | | * @param rpcContext the rpc context |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | protected abstract void doLockCheck(GlobalLockQueryRequest request, GlobalLockQueryResponse response, |
| | | RpcContext rpcContext) throws TransactionException; |
| | | |
| | | @Override |
| | | public GlobalStatusResponse handle(GlobalStatusRequest request, final RpcContext rpcContext) { |
| | | GlobalStatusResponse response = new GlobalStatusResponse(); |
| | | response.setGlobalStatus(GlobalStatus.UnKnown); |
| | | exceptionHandleTemplate(new AbstractCallback<GlobalStatusRequest, GlobalStatusResponse>() { |
| | | @Override |
| | | public void execute(GlobalStatusRequest request, GlobalStatusResponse response) |
| | | throws TransactionException { |
| | | try { |
| | | doGlobalStatus(request, response, rpcContext); |
| | | } catch (StoreException e) { |
| | | throw new TransactionException(TransactionExceptionCode.FailedStore, |
| | | String.format("global status request failed. xid=%s, msg=%s", request.getXid(), e.getMessage()), |
| | | e); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void onTransactionException(GlobalStatusRequest request, GlobalStatusResponse response, |
| | | TransactionException tex) { |
| | | super.onTransactionException(request, response, tex); |
| | | checkTransactionStatus(request, response); |
| | | } |
| | | |
| | | @Override |
| | | public void onException(GlobalStatusRequest request, GlobalStatusResponse response, Exception rex) { |
| | | super.onException(request, response, rex); |
| | | checkTransactionStatus(request, response); |
| | | } |
| | | }, request, response); |
| | | return response; |
| | | } |
| | | |
| | | /** |
| | | * Do global status. |
| | | * |
| | | * @param request the request |
| | | * @param response the response |
| | | * @param rpcContext the rpc context |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | protected abstract void doGlobalStatus(GlobalStatusRequest request, GlobalStatusResponse response, |
| | | RpcContext rpcContext) throws TransactionException; |
| | | |
| | | @Override |
| | | public GlobalReportResponse handle(GlobalReportRequest request, final RpcContext rpcContext) { |
| | | GlobalReportResponse response = new GlobalReportResponse(); |
| | | response.setGlobalStatus(request.getGlobalStatus()); |
| | | exceptionHandleTemplate(new AbstractCallback<GlobalReportRequest, GlobalReportResponse>() { |
| | | @Override |
| | | public void execute(GlobalReportRequest request, GlobalReportResponse response) |
| | | throws TransactionException { |
| | | doGlobalReport(request, response, rpcContext); |
| | | } |
| | | }, request, response); |
| | | return response; |
| | | } |
| | | |
| | | /** |
| | | * Do global report. |
| | | * |
| | | * @param request the request |
| | | * @param response the response |
| | | * @param rpcContext the rpc context |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | protected abstract void doGlobalReport(GlobalReportRequest request, GlobalReportResponse response, |
| | | RpcContext rpcContext) throws TransactionException; |
| | | |
| | | private void checkTransactionStatus(AbstractGlobalEndRequest request, AbstractGlobalEndResponse response) { |
| | | try { |
| | | GlobalSession globalSession = SessionHolder.findGlobalSession(request.getXid(), false); |
| | | if (globalSession != null) { |
| | | response.setGlobalStatus(globalSession.getStatus()); |
| | | } else { |
| | | response.setGlobalStatus(GlobalStatus.Finished); |
| | | } |
| | | } catch (Exception exx) { |
| | | LOGGER.error("check transaction status error,{}]", exx.getMessage()); |
| | | } |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server; |
| | | |
| | | import com.beust.jcommander.JCommander; |
| | | import com.beust.jcommander.Parameter; |
| | | import com.beust.jcommander.ParameterException; |
| | | import io.seata.common.util.StringUtils; |
| | | import io.seata.config.Configuration; |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.server.env.ContainerHelper; |
| | | import io.seata.server.store.StoreConfig; |
| | | |
| | | import static io.seata.config.ConfigurationFactory.ENV_PROPERTY_KEY; |
| | | |
| | | /** |
| | | * The type Parameter parser. |
| | | * |
| | | * @author xingfudeshi @gmail.com |
| | | */ |
| | | public class ParameterParser { |
| | | |
| | | private static final String PROGRAM_NAME |
| | | = "sh seata-server.sh(for linux and mac) or cmd seata-server.bat(for windows)"; |
| | | |
| | | private static final Configuration CONFIG = ConfigurationFactory.getInstance(); |
| | | |
| | | @Parameter(names = "--help", help = true) |
| | | private boolean help; |
| | | @Parameter(names = {"--host", "-h"}, description = "The ip to register to registry center.", order = 1) |
| | | private String host; |
| | | @Parameter(names = {"--port", "-p"}, description = "The port to listen.", order = 2) |
| | | private int port; |
| | | @Parameter(names = {"--storeMode", "-m"}, description = "log store mode : file, db, redis", order = 3) |
| | | private String storeMode; |
| | | @Parameter(names = {"--serverNode", "-n"}, description = "server node id, such as 1, 2, 3.it will be generated according to the snowflake by default", order = 4) |
| | | private Long serverNode; |
| | | @Parameter(names = {"--seataEnv", "-e"}, description = "The name used for multi-configuration isolation.", |
| | | order = 5) |
| | | private String seataEnv; |
| | | @Parameter(names = {"--sessionStoreMode", "-ssm"}, description = "session log store mode : file, db, redis", |
| | | order = 6) |
| | | private String sessionStoreMode; |
| | | @Parameter(names = {"--lockStoreMode", "-lsm"}, description = "lock log store mode : file, db, redis", order = 7) |
| | | private String lockStoreMode; |
| | | |
| | | /** |
| | | * Instantiates a new Parameter parser. |
| | | * |
| | | * @param args the args |
| | | */ |
| | | public ParameterParser(String... args) { |
| | | this.init(args); |
| | | } |
| | | |
| | | /** |
| | | * startup args > docker env |
| | | * @param args |
| | | */ |
| | | private void init(String[] args) { |
| | | try { |
| | | getCommandParameters(args); |
| | | getEnvParameters(); |
| | | if (StringUtils.isNotBlank(seataEnv)) { |
| | | System.setProperty(ENV_PROPERTY_KEY, seataEnv); |
| | | } |
| | | StoreConfig.setStartupParameter(storeMode, sessionStoreMode, lockStoreMode); |
| | | } catch (ParameterException e) { |
| | | printError(e); |
| | | } |
| | | |
| | | } |
| | | |
| | | private void getCommandParameters(String[] args) { |
| | | JCommander jCommander = JCommander.newBuilder().addObject(this).build(); |
| | | jCommander.parse(args); |
| | | if (help) { |
| | | jCommander.setProgramName(PROGRAM_NAME); |
| | | jCommander.usage(); |
| | | System.exit(0); |
| | | } |
| | | } |
| | | |
| | | private void getEnvParameters() { |
| | | if (StringUtils.isBlank(seataEnv)) { |
| | | seataEnv = ContainerHelper.getEnv(); |
| | | } |
| | | if (StringUtils.isBlank(host)) { |
| | | host = ContainerHelper.getHost(); |
| | | } |
| | | if (port == 0) { |
| | | port = ContainerHelper.getPort(); |
| | | } |
| | | if (serverNode == null) { |
| | | serverNode = ContainerHelper.getServerNode(); |
| | | } |
| | | } |
| | | |
| | | private void printError(ParameterException e) { |
| | | System.err.println("Option error " + e.getMessage()); |
| | | e.getJCommander().setProgramName(PROGRAM_NAME); |
| | | e.usage(); |
| | | System.exit(0); |
| | | } |
| | | |
| | | /** |
| | | * Gets host. |
| | | * |
| | | * @return the host |
| | | */ |
| | | public String getHost() { |
| | | return host; |
| | | } |
| | | |
| | | /** |
| | | * Gets port. |
| | | * |
| | | * @return the port |
| | | */ |
| | | public int getPort() { |
| | | return port; |
| | | } |
| | | |
| | | /** |
| | | * Gets store mode. |
| | | * |
| | | * @return the store mode |
| | | */ |
| | | public String getStoreMode() { |
| | | return storeMode; |
| | | } |
| | | |
| | | /** |
| | | * Gets lock store mode. |
| | | * |
| | | * @return the store mode |
| | | */ |
| | | public String getLockStoreMode() { |
| | | return lockStoreMode; |
| | | } |
| | | |
| | | /** |
| | | * Gets session store mode. |
| | | * |
| | | * @return the store mode |
| | | */ |
| | | public String getSessionStoreMode() { |
| | | return sessionStoreMode; |
| | | } |
| | | |
| | | /** |
| | | * Is help boolean. |
| | | * |
| | | * @return the boolean |
| | | */ |
| | | public boolean isHelp() { |
| | | return help; |
| | | } |
| | | |
| | | /** |
| | | * Gets server node. |
| | | * |
| | | * @return the server node |
| | | */ |
| | | public Long getServerNode() { |
| | | return serverNode; |
| | | } |
| | | |
| | | /** |
| | | * Gets seata env |
| | | * |
| | | * @return the name used for multi-configuration isolation. |
| | | */ |
| | | public String getSeataEnv() { |
| | | return seataEnv; |
| | | } |
| | | |
| | | /** |
| | | * Clean up. |
| | | */ |
| | | public void cleanUp() { |
| | | if (null != System.getProperty(ENV_PROPERTY_KEY)) { |
| | | System.clearProperty(ENV_PROPERTY_KEY); |
| | | } |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server; |
| | | |
| | | import io.seata.common.aot.NativeUtils; |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | |
| | | /** |
| | | * @author spilledyear@outlook.com |
| | | */ |
| | | @SpringBootApplication(scanBasePackages = {"io.seata"}) |
| | | public class SeataServerApplication { |
| | | |
| | | public static void main(String[] args) throws Throwable { |
| | | try { |
| | | // run the spring-boot application |
| | | SpringApplication.run(SeataServerApplication.class, args); |
| | | } catch (Throwable t) { |
| | | // This exception is used to end `spring-boot-maven-plugin:process-aot`, so ignore it. |
| | | if ("org.springframework.boot.SpringApplication$AbandonedRunException".equals(t.getClass().getName())) { |
| | | throw t; |
| | | } |
| | | |
| | | // In the `native-image`, if an exception occurs prematurely during the startup process, the exception log will not be recorded, |
| | | // so here we sleep for 20 seconds to observe the exception information. |
| | | if (NativeUtils.inNativeImage()) { |
| | | t.printStackTrace(); |
| | | Thread.sleep(20000); |
| | | } |
| | | |
| | | throw t; |
| | | } |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server; |
| | | |
| | | import io.seata.common.XID; |
| | | import io.seata.common.thread.NamedThreadFactory; |
| | | import io.seata.common.util.NetUtil; |
| | | import io.seata.common.util.StringUtils; |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.core.rpc.netty.NettyRemotingServer; |
| | | import io.seata.core.rpc.netty.NettyServerConfig; |
| | | import io.seata.server.coordinator.DefaultCoordinator; |
| | | import io.seata.server.lock.LockerManagerFactory; |
| | | import io.seata.server.metrics.MetricsManager; |
| | | import io.seata.server.session.SessionHolder; |
| | | |
| | | import java.util.concurrent.LinkedBlockingQueue; |
| | | import java.util.concurrent.ThreadPoolExecutor; |
| | | import java.util.concurrent.TimeUnit; |
| | | |
| | | import static io.seata.spring.boot.autoconfigure.StarterConstants.REGEX_SPLIT_CHAR; |
| | | import static io.seata.spring.boot.autoconfigure.StarterConstants.REGISTRY_PREFERED_NETWORKS; |
| | | |
| | | /** |
| | | * The type Server. |
| | | * |
| | | * @author slievrly |
| | | */ |
| | | public class Server { |
| | | /** |
| | | * The entry point of application. |
| | | * |
| | | * @param args the input arguments |
| | | */ |
| | | public static void start(String[] args) { |
| | | //initialize the parameter parser |
| | | //Note that the parameter parser should always be the first line to execute. |
| | | //Because, here we need to parse the parameters needed for startup. |
| | | ParameterParser parameterParser = new ParameterParser(args); |
| | | |
| | | //initialize the metrics |
| | | MetricsManager.get().init(); |
| | | |
| | | ThreadPoolExecutor workingThreads = new ThreadPoolExecutor(NettyServerConfig.getMinServerPoolSize(), |
| | | NettyServerConfig.getMaxServerPoolSize(), NettyServerConfig.getKeepAliveTime(), TimeUnit.SECONDS, |
| | | new LinkedBlockingQueue<>(NettyServerConfig.getMaxTaskQueueSize()), |
| | | new NamedThreadFactory("ServerHandlerThread", NettyServerConfig.getMaxServerPoolSize()), new ThreadPoolExecutor.CallerRunsPolicy()); |
| | | |
| | | //127.0.0.1 and 0.0.0.0 are not valid here. |
| | | if (NetUtil.isValidIp(parameterParser.getHost(), false)) { |
| | | XID.setIpAddress(parameterParser.getHost()); |
| | | } else { |
| | | String preferredNetworks = ConfigurationFactory.getInstance().getConfig(REGISTRY_PREFERED_NETWORKS); |
| | | if (StringUtils.isNotBlank(preferredNetworks)) { |
| | | XID.setIpAddress(NetUtil.getLocalIp(preferredNetworks.split(REGEX_SPLIT_CHAR))); |
| | | } else { |
| | | XID.setIpAddress(NetUtil.getLocalIp()); |
| | | } |
| | | } |
| | | |
| | | NettyRemotingServer nettyRemotingServer = new NettyRemotingServer(workingThreads); |
| | | XID.setPort(nettyRemotingServer.getListenPort()); |
| | | UUIDGenerator.init(parameterParser.getServerNode()); |
| | | //log store mode : file, db, redis |
| | | SessionHolder.init(); |
| | | LockerManagerFactory.init(); |
| | | DefaultCoordinator coordinator = DefaultCoordinator.getInstance(nettyRemotingServer); |
| | | coordinator.init(); |
| | | nettyRemotingServer.setHandler(coordinator); |
| | | |
| | | // let ServerRunner do destroy instead ShutdownHook, see https://github.com/seata/seata/issues/4028 |
| | | ServerRunner.addDisposable(coordinator); |
| | | |
| | | nettyRemotingServer.init(); |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server; |
| | | |
| | | import io.seata.core.rpc.Disposable; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.DisposableBean; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.boot.CommandLineRunner; |
| | | import org.springframework.boot.web.context.WebServerInitializedEvent; |
| | | import org.springframework.context.ApplicationEvent; |
| | | import org.springframework.context.ApplicationListener; |
| | | import org.springframework.core.Ordered; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.List; |
| | | import java.util.concurrent.CopyOnWriteArrayList; |
| | | |
| | | |
| | | /** |
| | | * @author spilledyear@outlook.com |
| | | */ |
| | | @Component |
| | | public class ServerRunner implements CommandLineRunner, DisposableBean, |
| | | ApplicationListener<ApplicationEvent>, Ordered { |
| | | |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(ServerRunner.class); |
| | | |
| | | private boolean started = Boolean.FALSE; |
| | | |
| | | private int port; |
| | | |
| | | @Value("${logging.file.path}") |
| | | private String logPath; |
| | | |
| | | private static final List<Disposable> DISPOSABLE_LIST = new CopyOnWriteArrayList<>(); |
| | | |
| | | public static void addDisposable(Disposable disposable) { |
| | | DISPOSABLE_LIST.add(disposable); |
| | | } |
| | | |
| | | @Override |
| | | public void run(String... args) { |
| | | try { |
| | | long start = System.currentTimeMillis(); |
| | | Server.start(args); |
| | | started = true; |
| | | |
| | | long cost = System.currentTimeMillis() - start; |
| | | LOGGER.info("\r\n you can visit seata console UI on http://127.0.0.1:{}. \r\n log path: {}.", this.port, this.logPath); |
| | | LOGGER.info("seata server started in {} millSeconds", cost); |
| | | } catch (Throwable e) { |
| | | started = Boolean.FALSE; |
| | | LOGGER.error("seata server start error: {} ", e.getMessage(), e); |
| | | System.exit(-1); |
| | | } |
| | | } |
| | | |
| | | |
| | | public boolean started() { |
| | | return started; |
| | | } |
| | | |
| | | @Override |
| | | public void destroy() throws Exception { |
| | | |
| | | if (LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("destoryAll starting"); |
| | | } |
| | | |
| | | for (Disposable disposable : DISPOSABLE_LIST) { |
| | | disposable.destroy(); |
| | | } |
| | | |
| | | if (LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("destoryAll finish"); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void onApplicationEvent(ApplicationEvent event) { |
| | | if (event instanceof WebServerInitializedEvent) { |
| | | this.port = ((WebServerInitializedEvent)event).getWebServer().getPort(); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public int getOrder() { |
| | | return Ordered.LOWEST_PRECEDENCE; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server; |
| | | |
| | | import io.seata.common.util.IdWorker; |
| | | |
| | | /** |
| | | * The type Uuid generator. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public class UUIDGenerator { |
| | | |
| | | private static volatile IdWorker idWorker; |
| | | |
| | | /** |
| | | * generate UUID using snowflake algorithm |
| | | * @return UUID |
| | | */ |
| | | public static long generateUUID() { |
| | | if (idWorker == null) { |
| | | synchronized (UUIDGenerator.class) { |
| | | if (idWorker == null) { |
| | | init(null); |
| | | } |
| | | } |
| | | } |
| | | return idWorker.nextId(); |
| | | } |
| | | |
| | | /** |
| | | * init IdWorker |
| | | * @param serverNode the server node id, consider as machine id in snowflake |
| | | */ |
| | | public static void init(Long serverNode) { |
| | | idWorker = new IdWorker(serverNode); |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.auth; |
| | | |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.core.constants.ConfigurationKeys; |
| | | import io.seata.core.protocol.RegisterRMRequest; |
| | | import io.seata.core.protocol.RegisterTMRequest; |
| | | import io.seata.core.rpc.RegisterCheckAuthHandler; |
| | | |
| | | import static io.seata.common.DefaultValues.DEFAULT_SERVER_ENABLE_CHECK_AUTH; |
| | | |
| | | /** |
| | | * @author slievrly |
| | | */ |
| | | public abstract class AbstractCheckAuthHandler implements RegisterCheckAuthHandler { |
| | | |
| | | private static final Boolean ENABLE_CHECK_AUTH = ConfigurationFactory.getInstance().getBoolean( |
| | | ConfigurationKeys.SERVER_ENABLE_CHECK_AUTH, DEFAULT_SERVER_ENABLE_CHECK_AUTH); |
| | | |
| | | @Override |
| | | public boolean regTransactionManagerCheckAuth(RegisterTMRequest request) { |
| | | if (!ENABLE_CHECK_AUTH) { |
| | | return true; |
| | | } |
| | | return doRegTransactionManagerCheck(request); |
| | | } |
| | | |
| | | public abstract boolean doRegTransactionManagerCheck(RegisterTMRequest request); |
| | | |
| | | @Override |
| | | public boolean regResourceManagerCheckAuth(RegisterRMRequest request) { |
| | | if (!ENABLE_CHECK_AUTH) { |
| | | return true; |
| | | } |
| | | return doRegResourceManagerCheck(request); |
| | | } |
| | | |
| | | public abstract boolean doRegResourceManagerCheck(RegisterRMRequest request); |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.auth; |
| | | |
| | | import io.seata.common.loader.LoadLevel; |
| | | import io.seata.core.protocol.RegisterRMRequest; |
| | | import io.seata.core.protocol.RegisterTMRequest; |
| | | |
| | | /** |
| | | * @author slievrly |
| | | */ |
| | | @LoadLevel(name = "defaultCheckAuthHandler", order = 100) |
| | | public class DefaultCheckAuthHandler extends AbstractCheckAuthHandler { |
| | | |
| | | @Override |
| | | public boolean doRegTransactionManagerCheck(RegisterTMRequest request) { |
| | | return true; |
| | | } |
| | | |
| | | @Override |
| | | public boolean doRegResourceManagerCheck(RegisterRMRequest request) { |
| | | return true; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.controller; |
| | | |
| | | import io.seata.server.console.service.BranchSessionService; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * Branch Session Controller |
| | | * |
| | | * @author zhongxiang.wang |
| | | */ |
| | | @RestController |
| | | @RequestMapping("console/branchSession") |
| | | public class BranchSessionController { |
| | | |
| | | @Resource(type = BranchSessionService.class) |
| | | private BranchSessionService branchSessionService; |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.controller; |
| | | |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.server.console.param.GlobalLockParam; |
| | | import io.seata.server.console.service.GlobalLockService; |
| | | import io.seata.server.console.vo.GlobalLockVO; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.ModelAttribute; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * Global Lock Controller |
| | | * |
| | | * @author zhongxiang.wang |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/api/v1/console/globalLock") |
| | | public class GlobalLockController { |
| | | |
| | | @Resource(type = GlobalLockService.class) |
| | | private GlobalLockService globalLockService; |
| | | |
| | | /** |
| | | * Query locks by param |
| | | * |
| | | * @param param the param |
| | | * @return the list of GlobalLockVO |
| | | */ |
| | | @GetMapping("query") |
| | | public PageResult<GlobalLockVO> query(@ModelAttribute GlobalLockParam param) { |
| | | return globalLockService.query(param); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.controller; |
| | | |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.server.console.param.GlobalSessionParam; |
| | | import io.seata.server.console.service.GlobalSessionService; |
| | | import io.seata.server.console.vo.GlobalSessionVO; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.ModelAttribute; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * Global Session Controller |
| | | * |
| | | * @author zhongxiang.wang |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/api/v1/console/globalSession") |
| | | public class GlobalSessionController { |
| | | |
| | | @Resource(type = GlobalSessionService.class) |
| | | private GlobalSessionService globalSessionService; |
| | | |
| | | /** |
| | | * Query all globalSession |
| | | * |
| | | * @param param param for query globalSession |
| | | * @return the list of GlobalSessionVO |
| | | */ |
| | | @GetMapping("query") |
| | | public PageResult<GlobalSessionVO> query(@ModelAttribute GlobalSessionParam param) { |
| | | return globalSessionService.query(param); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.impl.db; |
| | | |
| | | import io.seata.common.ConfigurationKeys; |
| | | import io.seata.common.exception.StoreException; |
| | | import io.seata.common.loader.EnhancedServiceLoader; |
| | | import io.seata.common.util.IOUtil; |
| | | import io.seata.common.util.StringUtils; |
| | | import io.seata.config.Configuration; |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.core.store.db.DataSourceProvider; |
| | | import io.seata.core.store.db.sql.log.LogStoreSqlsFactory; |
| | | import io.seata.server.console.service.BranchSessionService; |
| | | import io.seata.server.console.vo.BranchSessionVO; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import javax.sql.DataSource; |
| | | import java.sql.Connection; |
| | | import java.sql.PreparedStatement; |
| | | import java.sql.ResultSet; |
| | | import java.sql.SQLException; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | import static io.seata.common.DefaultValues.DEFAULT_STORE_DB_BRANCH_TABLE; |
| | | |
| | | /** |
| | | * Branch Session DataBase ServiceImpl |
| | | * |
| | | * @author zhongxiang.wang |
| | | * @author lvekee 734843455@qq.com |
| | | */ |
| | | @Component |
| | | @org.springframework.context.annotation.Configuration |
| | | @ConditionalOnExpression("#{'db'.equals('${sessionMode}')}") |
| | | public class BranchSessionDBServiceImpl implements BranchSessionService { |
| | | |
| | | private String branchTable; |
| | | |
| | | private String dbType; |
| | | |
| | | private DataSource dataSource; |
| | | |
| | | public BranchSessionDBServiceImpl() { |
| | | Configuration configuration = ConfigurationFactory.getInstance(); |
| | | branchTable = configuration.getConfig(ConfigurationKeys.STORE_DB_BRANCH_TABLE, DEFAULT_STORE_DB_BRANCH_TABLE); |
| | | dbType = configuration.getConfig(ConfigurationKeys.STORE_DB_TYPE); |
| | | if (StringUtils.isBlank(dbType)) { |
| | | throw new IllegalArgumentException(ConfigurationKeys.STORE_DB_TYPE + " should not be blank"); |
| | | } |
| | | String dbDataSource = configuration.getConfig(ConfigurationKeys.STORE_DB_DATASOURCE_TYPE); |
| | | if (StringUtils.isBlank(dbDataSource)) { |
| | | throw new IllegalArgumentException(ConfigurationKeys.STORE_DB_DATASOURCE_TYPE + " should not be blank"); |
| | | } |
| | | dataSource = EnhancedServiceLoader.load(DataSourceProvider.class, dbDataSource).provide(); |
| | | } |
| | | |
| | | @Override |
| | | public PageResult<BranchSessionVO> queryByXid(String xid) { |
| | | if (StringUtils.isBlank(xid)) { |
| | | throw new IllegalArgumentException("xid should not be blank"); |
| | | } |
| | | |
| | | String whereCondition = " where xid = ? "; |
| | | String branchSessionSQL = LogStoreSqlsFactory.getLogStoreSqls(dbType).getAllBranchSessionSQL(branchTable, whereCondition); |
| | | |
| | | List<BranchSessionVO> list = new ArrayList<>(); |
| | | ResultSet rs = null; |
| | | |
| | | try (Connection conn = dataSource.getConnection(); |
| | | PreparedStatement ps = conn.prepareStatement(branchSessionSQL)) { |
| | | ps.setObject(1, xid); |
| | | rs = ps.executeQuery(); |
| | | while (rs.next()) { |
| | | list.add(BranchSessionVO.convert(rs)); |
| | | } |
| | | } catch (SQLException e) { |
| | | throw new StoreException(e); |
| | | } finally { |
| | | IOUtil.close(rs); |
| | | } |
| | | return PageResult.success(list, list.size(), 0, 0, 0); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.impl.db; |
| | | |
| | | import io.seata.common.ConfigurationKeys; |
| | | import io.seata.common.exception.StoreException; |
| | | import io.seata.common.loader.EnhancedServiceLoader; |
| | | import io.seata.common.util.IOUtil; |
| | | import io.seata.common.util.PageUtil; |
| | | import io.seata.common.util.StringUtils; |
| | | import io.seata.config.Configuration; |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.core.store.db.DataSourceProvider; |
| | | import io.seata.core.store.db.sql.lock.LockStoreSqlFactory; |
| | | import io.seata.server.console.param.GlobalLockParam; |
| | | import io.seata.server.console.service.GlobalLockService; |
| | | import io.seata.server.console.vo.GlobalLockVO; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import javax.sql.DataSource; |
| | | import java.sql.Connection; |
| | | import java.sql.PreparedStatement; |
| | | import java.sql.ResultSet; |
| | | import java.sql.SQLException; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | import static io.seata.common.DefaultValues.DEFAULT_LOCK_DB_TABLE; |
| | | |
| | | |
| | | /** |
| | | * Global Lock DB ServiceImpl |
| | | * |
| | | * @author zhongxiang.wang |
| | | * @author lvekee 734843455@qq.com |
| | | */ |
| | | @Component |
| | | @org.springframework.context.annotation.Configuration |
| | | @ConditionalOnExpression("#{'db'.equals('${lockMode}')}") |
| | | public class GlobalLockDBServiceImpl implements GlobalLockService { |
| | | |
| | | private String lockTable; |
| | | |
| | | private String dbType; |
| | | |
| | | private DataSource dataSource; |
| | | |
| | | public GlobalLockDBServiceImpl() { |
| | | Configuration configuration = ConfigurationFactory.getInstance(); |
| | | lockTable = configuration.getConfig(ConfigurationKeys.LOCK_DB_TABLE, DEFAULT_LOCK_DB_TABLE); |
| | | dbType = configuration.getConfig(ConfigurationKeys.STORE_DB_TYPE); |
| | | if (StringUtils.isBlank(dbType)) { |
| | | throw new IllegalArgumentException(ConfigurationKeys.STORE_DB_TYPE + " should not be blank"); |
| | | } |
| | | String dbDataSource = configuration.getConfig(ConfigurationKeys.STORE_DB_DATASOURCE_TYPE); |
| | | if (StringUtils.isBlank(dbDataSource)) { |
| | | throw new IllegalArgumentException(ConfigurationKeys.STORE_DB_DATASOURCE_TYPE + " should not be blank"); |
| | | } |
| | | dataSource = EnhancedServiceLoader.load(DataSourceProvider.class, dbDataSource).provide(); |
| | | } |
| | | |
| | | @Override |
| | | public PageResult<GlobalLockVO> query(GlobalLockParam param) { |
| | | PageUtil.checkParam(param.getPageNum(), param.getPageSize()); |
| | | |
| | | List<Object> sqlParamList = new ArrayList<>(); |
| | | String whereCondition = this.getWhereConditionByParam(param, sqlParamList); |
| | | |
| | | String sourceSql = LockStoreSqlFactory.getLogStoreSql(dbType).getAllLockSql(lockTable, whereCondition); |
| | | String queryLockSql = PageUtil.pageSql(sourceSql, dbType, param.getPageNum(), param.getPageSize()); |
| | | String lockCountSql = PageUtil.countSql(sourceSql, dbType); |
| | | |
| | | List<GlobalLockVO> list = new ArrayList<>(); |
| | | int count = 0; |
| | | |
| | | ResultSet rs = null; |
| | | ResultSet countRs = null; |
| | | |
| | | try (Connection conn = dataSource.getConnection(); |
| | | PreparedStatement ps = conn.prepareStatement(queryLockSql); |
| | | PreparedStatement countPs = conn.prepareStatement(lockCountSql)) { |
| | | PageUtil.setObject(ps, sqlParamList); |
| | | rs = ps.executeQuery(); |
| | | while (rs.next()) { |
| | | list.add(GlobalLockVO.convert(rs)); |
| | | } |
| | | PageUtil.setObject(countPs, sqlParamList); |
| | | countRs = countPs.executeQuery(); |
| | | if (countRs.next()) { |
| | | count = countRs.getInt(1); |
| | | } |
| | | } catch (SQLException e) { |
| | | throw new StoreException(e); |
| | | } finally { |
| | | IOUtil.close(rs, countRs); |
| | | } |
| | | return PageResult.success(list, count, param.getPageNum(), param.getPageSize()); |
| | | } |
| | | |
| | | private String getWhereConditionByParam(GlobalLockParam param, List<Object> sqlParamList) { |
| | | StringBuilder whereConditionBuilder = new StringBuilder(); |
| | | if (StringUtils.isNotBlank(param.getXid())) { |
| | | whereConditionBuilder.append(" and xid = ? "); |
| | | sqlParamList.add(param.getXid()); |
| | | } |
| | | if (StringUtils.isNotBlank(param.getTableName())) { |
| | | whereConditionBuilder.append(" and table_name = ? "); |
| | | sqlParamList.add(param.getTableName()); |
| | | } |
| | | if (StringUtils.isNotBlank(param.getTransactionId())) { |
| | | whereConditionBuilder.append(" and transaction_id = ? "); |
| | | sqlParamList.add(param.getTransactionId()); |
| | | } |
| | | if (StringUtils.isNotBlank(param.getBranchId())) { |
| | | whereConditionBuilder.append(" and branch_id = ? "); |
| | | sqlParamList.add(param.getBranchId()); |
| | | } |
| | | if (param.getTimeStart() != null) { |
| | | whereConditionBuilder.append(" and gmt_create >= ? "); |
| | | sqlParamList.add(param.getTimeStart()); |
| | | } |
| | | if (param.getTimeEnd() != null) { |
| | | whereConditionBuilder.append(" and gmt_create <= ? "); |
| | | sqlParamList.add(param.getTimeEnd()); |
| | | } |
| | | String whereCondition = whereConditionBuilder.toString(); |
| | | return whereCondition.replaceFirst("and", "where"); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.impl.db; |
| | | |
| | | import io.seata.common.ConfigurationKeys; |
| | | import io.seata.common.exception.StoreException; |
| | | import io.seata.common.loader.EnhancedServiceLoader; |
| | | import io.seata.common.util.IOUtil; |
| | | import io.seata.common.util.PageUtil; |
| | | import io.seata.common.util.StringUtils; |
| | | import io.seata.config.Configuration; |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.core.store.db.DataSourceProvider; |
| | | import io.seata.core.store.db.sql.log.LogStoreSqlsFactory; |
| | | import io.seata.server.console.param.GlobalSessionParam; |
| | | import io.seata.server.console.service.BranchSessionService; |
| | | import io.seata.server.console.service.GlobalSessionService; |
| | | import io.seata.server.console.vo.BranchSessionVO; |
| | | import io.seata.server.console.vo.GlobalSessionVO; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.sql.DataSource; |
| | | import java.sql.Connection; |
| | | import java.sql.PreparedStatement; |
| | | import java.sql.ResultSet; |
| | | import java.sql.SQLException; |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.HashSet; |
| | | import java.util.List; |
| | | |
| | | import static io.seata.common.DefaultValues.DEFAULT_STORE_DB_GLOBAL_TABLE; |
| | | |
| | | /** |
| | | * Global Session DataBase ServiceImpl |
| | | * |
| | | * @author zhongxiang.wang |
| | | * @author lvekee 734843455@qq.com |
| | | */ |
| | | @Component |
| | | @org.springframework.context.annotation.Configuration |
| | | @ConditionalOnExpression("#{'db'.equals('${sessionMode}')}") |
| | | public class GlobalSessionDBServiceImpl implements GlobalSessionService { |
| | | |
| | | private String globalTable; |
| | | |
| | | private String dbType; |
| | | |
| | | private DataSource dataSource; |
| | | |
| | | @Resource(type = BranchSessionService.class) |
| | | private BranchSessionService branchSessionService; |
| | | |
| | | public GlobalSessionDBServiceImpl() { |
| | | Configuration configuration = ConfigurationFactory.getInstance(); |
| | | globalTable = configuration.getConfig(ConfigurationKeys.STORE_DB_GLOBAL_TABLE, DEFAULT_STORE_DB_GLOBAL_TABLE); |
| | | dbType = configuration.getConfig(ConfigurationKeys.STORE_DB_TYPE); |
| | | if (StringUtils.isBlank(dbType)) { |
| | | throw new IllegalArgumentException(ConfigurationKeys.STORE_DB_TYPE + " should not be blank"); |
| | | } |
| | | String dbDataSource = configuration.getConfig(ConfigurationKeys.STORE_DB_DATASOURCE_TYPE); |
| | | if (StringUtils.isBlank(dbDataSource)) { |
| | | throw new IllegalArgumentException(ConfigurationKeys.STORE_DB_DATASOURCE_TYPE + " should not be blank"); |
| | | } |
| | | dataSource = EnhancedServiceLoader.load(DataSourceProvider.class, dbDataSource).provide(); |
| | | } |
| | | |
| | | @Override |
| | | public PageResult<GlobalSessionVO> query(GlobalSessionParam param) { |
| | | PageUtil.checkParam(param.getPageNum(), param.getPageSize()); |
| | | |
| | | List<Object> sqlParamList = new ArrayList<>(); |
| | | String whereCondition = getWhereConditionByParam(param, sqlParamList); |
| | | |
| | | String sourceSql = LogStoreSqlsFactory.getLogStoreSqls(dbType).getAllGlobalSessionSql(globalTable, whereCondition); |
| | | String querySessionSql = PageUtil.pageSql(sourceSql, dbType, param.getPageNum(), param.getPageSize()); |
| | | String sessionCountSql = PageUtil.countSql(sourceSql, dbType); |
| | | |
| | | List<GlobalSessionVO> list = new ArrayList<>(); |
| | | int count = 0; |
| | | |
| | | |
| | | ResultSet rs = null; |
| | | ResultSet countRs = null; |
| | | |
| | | try (Connection conn = dataSource.getConnection(); |
| | | PreparedStatement ps = conn.prepareStatement(querySessionSql); |
| | | PreparedStatement countPs = conn.prepareStatement(sessionCountSql)) { |
| | | PageUtil.setObject(ps, sqlParamList); |
| | | rs = ps.executeQuery(); |
| | | while (rs.next()) { |
| | | list.add(GlobalSessionVO.convert(rs)); |
| | | } |
| | | |
| | | PageUtil.setObject(countPs, sqlParamList); |
| | | countRs = countPs.executeQuery(); |
| | | if (countRs.next()) { |
| | | count = countRs.getInt(1); |
| | | } |
| | | if (param.isWithBranch()) { |
| | | for (GlobalSessionVO globalSessionVO : list) { |
| | | PageResult<BranchSessionVO> pageResp = branchSessionService.queryByXid(globalSessionVO.getXid()); |
| | | globalSessionVO.setBranchSessionVOs(new HashSet<>(pageResp.getData())); |
| | | } |
| | | } |
| | | } catch (SQLException e) { |
| | | throw new StoreException(e); |
| | | } finally { |
| | | IOUtil.close(rs, countRs); |
| | | } |
| | | return PageResult.success(list, count, param.getPageNum(), param.getPageSize()); |
| | | } |
| | | |
| | | private String getWhereConditionByParam(GlobalSessionParam param, List<Object> sqlParamList) { |
| | | StringBuilder whereConditionBuilder = new StringBuilder(); |
| | | if (StringUtils.isNotBlank(param.getXid())) { |
| | | whereConditionBuilder.append(" and xid = ? "); |
| | | sqlParamList.add(param.getXid()); |
| | | } |
| | | if (StringUtils.isNotBlank(param.getApplicationId())) { |
| | | whereConditionBuilder.append(" and application_id = ? "); |
| | | sqlParamList.add(param.getApplicationId()); |
| | | } |
| | | if (param.getStatus() != null) { |
| | | whereConditionBuilder.append(" and status = ? "); |
| | | sqlParamList.add(param.getStatus()); |
| | | } |
| | | if (StringUtils.isNotBlank(param.getTransactionName())) { |
| | | whereConditionBuilder.append(" and transaction_name = ? "); |
| | | sqlParamList.add(param.getTransactionName()); |
| | | } |
| | | if (param.getTimeStart() != null) { |
| | | whereConditionBuilder.append(" and gmt_create >= ? "); |
| | | sqlParamList.add(new Date(param.getTimeStart())); |
| | | } |
| | | if (param.getTimeEnd() != null) { |
| | | whereConditionBuilder.append(" and gmt_create <= ? "); |
| | | sqlParamList.add(new Date(param.getTimeEnd())); |
| | | } |
| | | String whereCondition = whereConditionBuilder.toString(); |
| | | return whereCondition.replaceFirst("and", "where"); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.impl.file; |
| | | |
| | | import io.seata.common.exception.NotSupportYetException; |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.server.console.service.BranchSessionService; |
| | | import io.seata.server.console.vo.BranchSessionVO; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | /** |
| | | * Branch Session File ServiceImpl |
| | | * |
| | | * @author zhongxiang.wang |
| | | */ |
| | | @Component |
| | | @org.springframework.context.annotation.Configuration |
| | | @ConditionalOnExpression("#{'file'.equals('${sessionMode}')}") |
| | | public class BranchSessionFileServiceImpl implements BranchSessionService { |
| | | |
| | | @Override |
| | | public PageResult<BranchSessionVO> queryByXid(String xid) { |
| | | throw new NotSupportYetException(); |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.impl.file; |
| | | |
| | | import io.seata.common.util.CollectionUtils; |
| | | import io.seata.common.util.StringUtils; |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.core.lock.RowLock; |
| | | import io.seata.server.console.param.GlobalLockParam; |
| | | import io.seata.server.console.service.GlobalLockService; |
| | | import io.seata.server.console.vo.GlobalLockVO; |
| | | import io.seata.server.lock.LockerManagerFactory; |
| | | import io.seata.server.session.BranchSession; |
| | | import io.seata.server.session.GlobalSession; |
| | | import io.seata.server.session.SessionHolder; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | import java.util.concurrent.atomic.AtomicInteger; |
| | | import java.util.function.Predicate; |
| | | import java.util.stream.Collectors; |
| | | import java.util.stream.Stream; |
| | | |
| | | import static io.seata.common.util.StringUtils.isBlank; |
| | | import static io.seata.server.console.vo.GlobalLockVO.convert; |
| | | import static java.util.Objects.isNull; |
| | | |
| | | /** |
| | | * Global Lock File ServiceImpl |
| | | * |
| | | * @author zhongxiang.wang |
| | | * @author miaoxueyu |
| | | */ |
| | | @Component |
| | | @org.springframework.context.annotation.Configuration |
| | | @ConditionalOnExpression("#{'file'.equals('${lockMode}')}") |
| | | public class GlobalLockFileServiceImpl implements GlobalLockService { |
| | | |
| | | @Override |
| | | public PageResult<GlobalLockVO> query(GlobalLockParam param) { |
| | | checkParam(param); |
| | | |
| | | final Collection<GlobalSession> allSessions = SessionHolder.getRootSessionManager().allSessions(); |
| | | |
| | | final AtomicInteger total = new AtomicInteger(); |
| | | List<RowLock> result = allSessions |
| | | .parallelStream() |
| | | .filter(obtainGlobalSessionPredicate(param)) |
| | | .flatMap(globalSession -> globalSession.getBranchSessions().stream()) |
| | | .filter(obtainBranchSessionPredicate(param)) |
| | | .flatMap(branchSession -> filterAndMap(param, branchSession)) |
| | | .peek(globalSession -> total.incrementAndGet()) |
| | | .collect(Collectors.toList()); |
| | | |
| | | return PageResult.build(convert(result), param.getPageNum(), param.getPageSize()); |
| | | |
| | | } |
| | | |
| | | /** |
| | | * filter with tableName and generate RowLock |
| | | * |
| | | * @param param the query param |
| | | * @param branchSession the branch session |
| | | * @return the RowLock list |
| | | */ |
| | | private Stream<RowLock> filterAndMap(GlobalLockParam param, BranchSession branchSession) { |
| | | if (CollectionUtils.isEmpty(branchSession.getLockHolder())) { |
| | | return Stream.empty(); |
| | | } |
| | | |
| | | final String tableName = param.getTableName(); |
| | | |
| | | // get rowLock from branchSession |
| | | final List<RowLock> rowLocks = LockerManagerFactory.getLockManager().collectRowLocks(branchSession); |
| | | |
| | | if (StringUtils.isNotBlank(tableName)) { |
| | | return rowLocks.parallelStream().filter(rowLock -> rowLock.getTableName().contains(param.getTableName())); |
| | | } |
| | | |
| | | return rowLocks.stream(); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * check the param |
| | | * |
| | | * @param param the param |
| | | */ |
| | | private void checkParam(GlobalLockParam param) { |
| | | if (param.getPageSize() <= 0 || param.getPageNum() <= 0) { |
| | | throw new IllegalArgumentException("wrong pageSize or pageNum"); |
| | | } |
| | | |
| | | // verification data type |
| | | try { |
| | | Long.parseLong(param.getTransactionId()); |
| | | } catch (NumberFormatException e) { |
| | | param.setTransactionId(null); |
| | | } |
| | | try { |
| | | Long.parseLong(param.getBranchId()); |
| | | } catch (NumberFormatException e) { |
| | | param.setBranchId(null); |
| | | } |
| | | |
| | | |
| | | } |
| | | |
| | | /** |
| | | * obtain the branch session condition |
| | | * |
| | | * @param param condition for query branch session |
| | | * @return the filter condition |
| | | */ |
| | | private Predicate<? super BranchSession> obtainBranchSessionPredicate(GlobalLockParam param) { |
| | | return branchSession -> { |
| | | // transactionId |
| | | return (isBlank(param.getTransactionId()) || |
| | | String.valueOf(branchSession.getTransactionId()).contains(param.getTransactionId())) |
| | | |
| | | && |
| | | // branch id |
| | | (isBlank(param.getBranchId()) || |
| | | String.valueOf(branchSession.getBranchId()).contains(param.getBranchId())) |
| | | ; |
| | | }; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * obtain the global session condition |
| | | * |
| | | * @param param condition for query global session |
| | | * @return the filter condition |
| | | */ |
| | | private Predicate<? super GlobalSession> obtainGlobalSessionPredicate(GlobalLockParam param) { |
| | | |
| | | return globalSession -> { |
| | | // first, there must be withBranchSession |
| | | return CollectionUtils.isNotEmpty(globalSession.getBranchSessions()) |
| | | |
| | | && |
| | | // The second is other conditions |
| | | // xid |
| | | (isBlank(param.getXid()) || globalSession.getXid().contains(param.getXid())) |
| | | |
| | | && |
| | | // timeStart |
| | | (isNull(param.getTimeStart()) || param.getTimeStart() <= globalSession.getBeginTime()) |
| | | |
| | | && |
| | | // timeEnd |
| | | (isNull(param.getTimeEnd()) || param.getTimeEnd() >= globalSession.getBeginTime()); |
| | | }; |
| | | } |
| | | |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.impl.file; |
| | | |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.server.console.param.GlobalSessionParam; |
| | | import io.seata.server.console.service.GlobalSessionService; |
| | | import io.seata.server.console.vo.GlobalSessionVO; |
| | | import io.seata.server.session.GlobalSession; |
| | | import io.seata.server.session.SessionHolder; |
| | | import io.seata.server.storage.SessionConverter; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | import java.util.Objects; |
| | | import java.util.function.Predicate; |
| | | import java.util.stream.Collectors; |
| | | |
| | | import static io.seata.common.util.StringUtils.isBlank; |
| | | import static java.util.Objects.isNull; |
| | | |
| | | /** |
| | | * Global Session File ServiceImpl |
| | | * |
| | | * @author zhongxiang.wang |
| | | * @author miaoxueyu |
| | | */ |
| | | @Component |
| | | @org.springframework.context.annotation.Configuration |
| | | @ConditionalOnExpression("#{'file'.equals('${sessionMode}')}") |
| | | public class GlobalSessionFileServiceImpl implements GlobalSessionService { |
| | | |
| | | @Override |
| | | public PageResult<GlobalSessionVO> query(GlobalSessionParam param) { |
| | | if (param.getPageSize() <= 0 || param.getPageNum() <= 0) { |
| | | throw new IllegalArgumentException("wrong pageSize or pageNum"); |
| | | } |
| | | |
| | | final Collection<GlobalSession> allSessions = SessionHolder.getRootSessionManager().allSessions(); |
| | | |
| | | final List<GlobalSession> filteredSessions = allSessions |
| | | .parallelStream() |
| | | .filter(obtainPredicate(param)) |
| | | .collect(Collectors.toList()); |
| | | |
| | | return PageResult.build(SessionConverter.convertGlobalSession(filteredSessions), param.getPageNum(), param.getPageSize()); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * obtain the condition |
| | | * |
| | | * @param param condition for query global session |
| | | * @return the filter condition |
| | | */ |
| | | private Predicate<? super GlobalSession> obtainPredicate(GlobalSessionParam param) { |
| | | |
| | | return session -> { |
| | | return |
| | | // xid |
| | | (isBlank(param.getXid()) || session.getXid().contains(param.getXid())) |
| | | |
| | | && |
| | | // applicationId |
| | | (isBlank(param.getApplicationId()) || session.getApplicationId().contains(param.getApplicationId())) |
| | | |
| | | && |
| | | // status |
| | | (isNull(param.getStatus()) || Objects.equals(session.getStatus().getCode(), param.getStatus())) |
| | | |
| | | && |
| | | // transactionName |
| | | (isBlank(param.getTransactionName()) || session.getTransactionName().contains(param.getTransactionName())) |
| | | |
| | | && |
| | | // timeStart |
| | | (isNull(param.getTimeStart()) || param.getTimeStart() <= session.getBeginTime()) |
| | | |
| | | && |
| | | // timeEnd |
| | | (isNull(param.getTimeEnd()) || param.getTimeEnd() >= session.getBeginTime()); |
| | | |
| | | }; |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.impl.redis; |
| | | |
| | | import io.seata.common.util.CollectionUtils; |
| | | import io.seata.common.util.StringUtils; |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.core.store.BranchTransactionDO; |
| | | import io.seata.server.console.service.BranchSessionService; |
| | | import io.seata.server.console.vo.BranchSessionVO; |
| | | import io.seata.server.storage.redis.store.RedisTransactionStoreManager; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * Branch Session Redis ServiceImpl |
| | | * |
| | | * @author zhongxiang.wang |
| | | * @author doubleDimple |
| | | */ |
| | | @Component |
| | | @org.springframework.context.annotation.Configuration |
| | | @ConditionalOnExpression("#{'redis'.equals('${sessionMode}')}") |
| | | public class BranchSessionRedisServiceImpl implements BranchSessionService { |
| | | |
| | | @Override |
| | | public PageResult<BranchSessionVO> queryByXid(String xid) { |
| | | if (StringUtils.isBlank(xid)) { |
| | | return PageResult.success(); |
| | | } |
| | | |
| | | List<BranchSessionVO> branchSessionVos = new ArrayList<>(); |
| | | |
| | | RedisTransactionStoreManager instance = RedisTransactionStoreManager.getInstance(); |
| | | |
| | | List<BranchTransactionDO> branchSessionDos = instance.findBranchSessionByXid(xid); |
| | | |
| | | if (CollectionUtils.isNotEmpty(branchSessionDos)) { |
| | | for (BranchTransactionDO branchSessionDo : branchSessionDos) { |
| | | BranchSessionVO branchSessionVO = new BranchSessionVO(); |
| | | BeanUtils.copyProperties(branchSessionDo, branchSessionVO); |
| | | branchSessionVos.add(branchSessionVO); |
| | | } |
| | | } |
| | | |
| | | return PageResult.success(branchSessionVos, branchSessionVos.size(), 0, branchSessionVos.size()); |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.impl.redis; |
| | | |
| | | import io.seata.common.util.BeanUtils; |
| | | import io.seata.common.util.CollectionUtils; |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.server.console.param.GlobalLockParam; |
| | | import io.seata.server.console.service.GlobalLockService; |
| | | import io.seata.server.console.vo.GlobalLockVO; |
| | | import io.seata.server.storage.redis.JedisPooledFactory; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; |
| | | import org.springframework.stereotype.Component; |
| | | import redis.clients.jedis.Jedis; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import static io.seata.common.Constants.ROW_LOCK_KEY_SPLIT_CHAR; |
| | | import static io.seata.common.exception.FrameworkErrorCode.ParameterRequired; |
| | | import static io.seata.common.util.StringUtils.isNotBlank; |
| | | import static io.seata.console.result.PageResult.checkPage; |
| | | import static io.seata.core.constants.RedisKeyConstants.*; |
| | | |
| | | /** |
| | | * Global Lock Redis Service Impl |
| | | * @author zhongxiang.wang |
| | | * @author doubleDimple |
| | | */ |
| | | @Component |
| | | @org.springframework.context.annotation.Configuration |
| | | @ConditionalOnExpression("#{'redis'.equals('${lockMode}')}") |
| | | public class GlobalLockRedisServiceImpl implements GlobalLockService { |
| | | |
| | | @Override |
| | | public PageResult<GlobalLockVO> query(GlobalLockParam param) { |
| | | |
| | | int total = 0; |
| | | List<GlobalLockVO> globalLockVos; |
| | | checkPage(param); |
| | | if (isNotBlank(param.getXid())) { |
| | | globalLockVos = queryGlobalByXid(param.getXid()); |
| | | total = globalLockVos.size(); |
| | | return PageResult.success(globalLockVos,total,param.getPageNum(),param.getPageSize()); |
| | | } else if (isNotBlank(param.getTableName()) && isNotBlank(param.getPk()) && isNotBlank(param.getResourceId())) { |
| | | //SEATA_ROW_LOCK_jdbc:mysql://116.62.62.26/seata-order^^^order^^^2188 |
| | | String tableName = param.getTableName(); |
| | | String pk = param.getPk(); |
| | | String resourceId = param.getResourceId(); |
| | | globalLockVos = queryGlobalLockByRowKey(buildRowKey(tableName,pk,resourceId)); |
| | | total = globalLockVos.size(); |
| | | return PageResult.success(globalLockVos,total,param.getPageNum(),param.getPageSize()); |
| | | } else { |
| | | return PageResult.failure(ParameterRequired.getErrCode(),"only three parameters of tableName,pk,resourceId or Xid are supported"); |
| | | } |
| | | } |
| | | |
| | | private List<GlobalLockVO> queryGlobalLockByRowKey(String buildRowKey) { |
| | | return readGlobalLockByRowKey(buildRowKey); |
| | | } |
| | | |
| | | private String buildRowKey(String tableName, String pk,String resourceId) { |
| | | return DEFAULT_REDIS_SEATA_ROW_LOCK_PREFIX + resourceId + SPLIT + tableName + SPLIT + pk; |
| | | } |
| | | |
| | | |
| | | private List<GlobalLockVO> queryGlobalByXid(String xid) { |
| | | return readGlobalLockByXid(DEFAULT_REDIS_SEATA_GLOBAL_LOCK_PREFIX + xid); |
| | | } |
| | | |
| | | private List<GlobalLockVO> readGlobalLockByXid(String key) { |
| | | List<GlobalLockVO> vos = new ArrayList<>(); |
| | | try (Jedis jedis = JedisPooledFactory.getJedisInstance()) { |
| | | Map<String, String> mapGlobalKeys = jedis.hgetAll(key); |
| | | if (CollectionUtils.isNotEmpty(mapGlobalKeys)) { |
| | | List<String> rowLockKeys = new ArrayList<>(); |
| | | mapGlobalKeys.forEach((k,v) -> rowLockKeys.addAll(Arrays.asList(v.split(ROW_LOCK_KEY_SPLIT_CHAR)))); |
| | | for (String rowLoclKey : rowLockKeys) { |
| | | Map<String, String> mapRowLockKey = jedis.hgetAll(rowLoclKey); |
| | | GlobalLockVO vo = (GlobalLockVO)BeanUtils.mapToObject(mapRowLockKey, GlobalLockVO.class); |
| | | if (vo != null) { |
| | | vos.add(vo); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | return vos; |
| | | } |
| | | |
| | | |
| | | private List<GlobalLockVO> readGlobalLockByRowKey(String key) { |
| | | List<GlobalLockVO> vos = new ArrayList<>(); |
| | | try (Jedis jedis = JedisPooledFactory.getJedisInstance()) { |
| | | Map<String, String> map = jedis.hgetAll(key); |
| | | GlobalLockVO vo = (GlobalLockVO)BeanUtils.mapToObject(map, GlobalLockVO.class); |
| | | if (vo != null) { |
| | | vos.add(vo); |
| | | } |
| | | } |
| | | return vos; |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.impl.redis; |
| | | |
| | | import io.seata.common.util.CollectionUtils; |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.server.console.param.GlobalSessionParam; |
| | | import io.seata.server.console.service.GlobalSessionService; |
| | | import io.seata.server.console.vo.GlobalSessionVO; |
| | | import io.seata.server.session.GlobalSession; |
| | | import io.seata.server.session.SessionCondition; |
| | | import io.seata.server.storage.redis.store.RedisTransactionStoreManager; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.stream.Collectors; |
| | | |
| | | import static io.seata.common.exception.FrameworkErrorCode.ParameterRequired; |
| | | import static io.seata.common.util.StringUtils.isBlank; |
| | | import static io.seata.common.util.StringUtils.isNotBlank; |
| | | import static io.seata.console.result.PageResult.checkPage; |
| | | import static io.seata.server.storage.SessionConverter.convertToGlobalSessionVo; |
| | | |
| | | /** |
| | | * Global Session Redis ServiceImpl |
| | | * @author zhongxiang.wang |
| | | * @author doubleDimple |
| | | */ |
| | | @Component |
| | | @org.springframework.context.annotation.Configuration |
| | | @ConditionalOnExpression("#{'redis'.equals('${sessionMode}')}") |
| | | public class GlobalSessionRedisServiceImpl implements GlobalSessionService { |
| | | |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(GlobalSessionRedisServiceImpl.class); |
| | | |
| | | @Override |
| | | public PageResult<GlobalSessionVO> query(GlobalSessionParam param) { |
| | | List<GlobalSessionVO> result = new ArrayList<>(); |
| | | Long total = 0L; |
| | | if (param.getTimeStart() != null || param.getTimeEnd() != null) { |
| | | //not support time range query |
| | | LOGGER.debug("not supported according to time range query"); |
| | | return PageResult.failure(ParameterRequired.getErrCode(),"not supported according to time range query"); |
| | | } |
| | | List<GlobalSession> globalSessions = new ArrayList<>(); |
| | | |
| | | RedisTransactionStoreManager instance = RedisTransactionStoreManager.getInstance(); |
| | | |
| | | checkPage(param); |
| | | |
| | | if (isBlank(param.getXid()) && param.getStatus() == null) { |
| | | total = instance.countByGlobalSessions(GlobalStatus.values()); |
| | | globalSessions = instance.findGlobalSessionByPage(param.getPageNum(), param.getPageSize(),param.isWithBranch()); |
| | | } else { |
| | | List<GlobalSession> globalSessionsNew = new ArrayList<>(); |
| | | if (isNotBlank(param.getXid())) { |
| | | SessionCondition sessionCondition = new SessionCondition(); |
| | | sessionCondition.setXid(param.getXid()); |
| | | sessionCondition.setLazyLoadBranch(!param.isWithBranch()); |
| | | globalSessions = instance.readSession(sessionCondition); |
| | | total = (long)globalSessions.size(); |
| | | } |
| | | |
| | | if (param.getStatus() != null && GlobalStatus.get(param.getStatus()) != null) { |
| | | if (CollectionUtils.isNotEmpty(globalSessions)) { |
| | | globalSessionsNew = globalSessions.stream().filter(globalSession -> globalSession.getStatus().getCode() == (param.getStatus())).collect(Collectors.toList()); |
| | | total = (long)globalSessionsNew.size(); |
| | | } else { |
| | | total = instance.countByGlobalSessions(new GlobalStatus[] {GlobalStatus.get(param.getStatus())}); |
| | | globalSessionsNew = instance.readSessionStatusByPage(param); |
| | | } |
| | | } |
| | | |
| | | if (LOGGER.isDebugEnabled()) { |
| | | if (isNotBlank(param.getApplicationId())) { |
| | | //not support |
| | | LOGGER.debug("not supported according to applicationId query"); |
| | | } |
| | | if (isNotBlank(param.getTransactionName())) { |
| | | //not support |
| | | LOGGER.debug("not supported according to transactionName query"); |
| | | } |
| | | } |
| | | globalSessions = globalSessionsNew.size() > 0 ? globalSessionsNew : globalSessions; |
| | | } |
| | | |
| | | convertToGlobalSessionVo(result,globalSessions); |
| | | |
| | | return PageResult.success(result,total.intValue(),param.getPageNum(),param.getPageSize()); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.param; |
| | | |
| | | import io.seata.console.param.BaseParam; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * Global lock param |
| | | * @author zhongxiang.wang |
| | | */ |
| | | public class GlobalLockParam extends BaseParam implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 615412528070131284L; |
| | | |
| | | /** |
| | | * the xid |
| | | */ |
| | | private String xid; |
| | | /** |
| | | * the table name |
| | | */ |
| | | private String tableName; |
| | | /** |
| | | * the transaction id |
| | | */ |
| | | private String transactionId; |
| | | /** |
| | | * the branch id |
| | | */ |
| | | private String branchId; |
| | | /** |
| | | * the primary Key |
| | | */ |
| | | private String pk; |
| | | /** |
| | | * the resourceId |
| | | */ |
| | | private String resourceId; |
| | | |
| | | public String getTransactionId() { |
| | | return transactionId; |
| | | } |
| | | |
| | | public void setTransactionId(String transactionId) { |
| | | this.transactionId = transactionId; |
| | | } |
| | | |
| | | public String getBranchId() { |
| | | return branchId; |
| | | } |
| | | |
| | | public void setBranchId(String branchId) { |
| | | this.branchId = branchId; |
| | | } |
| | | |
| | | public String getXid() { |
| | | return xid; |
| | | } |
| | | |
| | | public void setXid(String xid) { |
| | | this.xid = xid; |
| | | } |
| | | |
| | | public String getTableName() { |
| | | return tableName; |
| | | } |
| | | |
| | | public void setTableName(String tableName) { |
| | | this.tableName = tableName; |
| | | } |
| | | |
| | | public String getPk() { |
| | | return pk; |
| | | } |
| | | |
| | | public void setPk(String pk) { |
| | | this.pk = pk; |
| | | } |
| | | |
| | | public String getResourceId() { |
| | | return resourceId; |
| | | } |
| | | |
| | | public void setResourceId(String resourceId) { |
| | | this.resourceId = resourceId; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "GlobalLockParam{" + |
| | | "xid='" + xid + '\'' + |
| | | ", tableName='" + tableName + '\'' + |
| | | ", transactionId='" + transactionId + '\'' + |
| | | ", branchId='" + branchId + '\'' + |
| | | ", pk='" + pk + '\'' + |
| | | ", resourceId='" + resourceId + '\'' + |
| | | '}'; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.param; |
| | | |
| | | import io.seata.console.param.BaseParam; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * Global session param |
| | | * @author zhongxiang.wang |
| | | */ |
| | | public class GlobalSessionParam extends BaseParam implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 115488252809011284L; |
| | | /** |
| | | * the xid |
| | | */ |
| | | private String xid; |
| | | /** |
| | | * the application id |
| | | */ |
| | | private String applicationId; |
| | | /** |
| | | * the global session status |
| | | */ |
| | | private Integer status; |
| | | /** |
| | | * the transaction name |
| | | */ |
| | | private String transactionName; |
| | | /** |
| | | * if with branch |
| | | * true: with branch session |
| | | * false: no branch session |
| | | */ |
| | | private boolean withBranch; |
| | | |
| | | public String getXid() { |
| | | return xid; |
| | | } |
| | | |
| | | public void setXid(String xid) { |
| | | this.xid = xid; |
| | | } |
| | | |
| | | public String getTransactionName() { |
| | | return transactionName; |
| | | } |
| | | |
| | | public void setTransactionName(String transactionName) { |
| | | this.transactionName = transactionName; |
| | | } |
| | | |
| | | public String getApplicationId() { |
| | | return applicationId; |
| | | } |
| | | |
| | | public void setApplicationId(String applicationId) { |
| | | this.applicationId = applicationId; |
| | | } |
| | | |
| | | public Integer getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(Integer status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | public boolean isWithBranch() { |
| | | return withBranch; |
| | | } |
| | | |
| | | public void setWithBranch(boolean withBranch) { |
| | | this.withBranch = withBranch; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "GlobalSessionParam{" + |
| | | "xid='" + xid + '\'' + |
| | | ", applicationId='" + applicationId + '\'' + |
| | | ", status=" + status + |
| | | ", transactionName='" + transactionName + '\'' + |
| | | ", withBranch=" + withBranch + |
| | | '}'; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.service; |
| | | |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.server.console.vo.BranchSessionVO; |
| | | |
| | | /** |
| | | * Branch session service |
| | | * @author wangzhongxiang |
| | | */ |
| | | public interface BranchSessionService { |
| | | |
| | | /** |
| | | * Query branch session by xid |
| | | * @param xid the xid |
| | | * @return the BranchSessionVO list |
| | | */ |
| | | PageResult<BranchSessionVO> queryByXid(String xid); |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.service; |
| | | |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.server.console.param.GlobalLockParam; |
| | | import io.seata.server.console.vo.GlobalLockVO; |
| | | |
| | | |
| | | /** |
| | | * Global lock service |
| | | * @author wangzhongxiang |
| | | */ |
| | | public interface GlobalLockService { |
| | | |
| | | /** |
| | | * Query locks by param |
| | | * @param param the param |
| | | * @return the list of GlobalLockVO |
| | | */ |
| | | PageResult<GlobalLockVO> query(GlobalLockParam param); |
| | | |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.service; |
| | | |
| | | import io.seata.console.result.PageResult; |
| | | import io.seata.server.console.param.GlobalSessionParam; |
| | | import io.seata.server.console.vo.GlobalSessionVO; |
| | | |
| | | /** |
| | | * Global session service |
| | | * @author wangzhongxiang |
| | | */ |
| | | public interface GlobalSessionService { |
| | | |
| | | /** |
| | | * Query global session |
| | | * @param param the param |
| | | * @return the GlobalSessionVO list |
| | | */ |
| | | PageResult<GlobalSessionVO> query(GlobalSessionParam param); |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.vo; |
| | | |
| | | import io.seata.core.constants.ServerTableColumnsName; |
| | | |
| | | import java.sql.Date; |
| | | import java.sql.ResultSet; |
| | | import java.sql.SQLException; |
| | | import java.util.Objects; |
| | | |
| | | /** |
| | | * BranchSessionVO |
| | | * @author zhongxiang.wang |
| | | */ |
| | | public class BranchSessionVO { |
| | | |
| | | private String xid; |
| | | |
| | | private String transactionId; |
| | | |
| | | private String branchId; |
| | | |
| | | private String resourceGroupId; |
| | | |
| | | private String resourceId; |
| | | |
| | | private String branchType; |
| | | |
| | | private Integer status; |
| | | |
| | | private String clientId; |
| | | |
| | | private String applicationData; |
| | | |
| | | private Long gmtCreate; |
| | | |
| | | private Long gmtModified; |
| | | |
| | | |
| | | public BranchSessionVO(){ |
| | | |
| | | } |
| | | |
| | | public BranchSessionVO(String xid, |
| | | Long transactionId, |
| | | Long branchId, |
| | | String resourceGroupId, |
| | | String resourceId, |
| | | String branchType, |
| | | Integer status, |
| | | String clientId, |
| | | String applicationData) { |
| | | this.xid = xid; |
| | | this.transactionId = String.valueOf(transactionId); |
| | | this.branchId = String.valueOf(branchId); |
| | | this.resourceGroupId = resourceGroupId; |
| | | this.resourceId = resourceId; |
| | | this.branchType = branchType; |
| | | this.status = status; |
| | | this.clientId = clientId; |
| | | this.applicationData = applicationData; |
| | | } |
| | | |
| | | public String getXid() { |
| | | return xid; |
| | | } |
| | | |
| | | public void setXid(String xid) { |
| | | this.xid = xid; |
| | | } |
| | | |
| | | public String getTransactionId() { |
| | | return transactionId; |
| | | } |
| | | |
| | | public void setTransactionId(Long transactionId) { |
| | | this.transactionId = String.valueOf(transactionId); |
| | | } |
| | | |
| | | public String getBranchId() { |
| | | return branchId; |
| | | } |
| | | |
| | | public void setBranchId(Long branchId) { |
| | | this.branchId = String.valueOf(branchId); |
| | | } |
| | | |
| | | public String getResourceGroupId() { |
| | | return resourceGroupId; |
| | | } |
| | | |
| | | public void setResourceGroupId(String resourceGroupId) { |
| | | this.resourceGroupId = resourceGroupId; |
| | | } |
| | | |
| | | public String getResourceId() { |
| | | return resourceId; |
| | | } |
| | | |
| | | public void setResourceId(String resourceId) { |
| | | this.resourceId = resourceId; |
| | | } |
| | | |
| | | public String getBranchType() { |
| | | return branchType; |
| | | } |
| | | |
| | | public void setBranchType(String branchType) { |
| | | this.branchType = branchType; |
| | | } |
| | | |
| | | public Integer getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(Integer status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | public String getClientId() { |
| | | return clientId; |
| | | } |
| | | |
| | | public void setClientId(String clientId) { |
| | | this.clientId = clientId; |
| | | } |
| | | |
| | | public String getApplicationData() { |
| | | return applicationData; |
| | | } |
| | | |
| | | public void setApplicationData(String applicationData) { |
| | | this.applicationData = applicationData; |
| | | } |
| | | |
| | | public Long getGmtCreate() { |
| | | return gmtCreate; |
| | | } |
| | | |
| | | public void setGmtCreate(Long gmtCreate) { |
| | | this.gmtCreate = gmtCreate; |
| | | } |
| | | |
| | | public Long getGmtModified() { |
| | | return gmtModified; |
| | | } |
| | | |
| | | public void setGmtModified(Long gmtModified) { |
| | | this.gmtModified = gmtModified; |
| | | } |
| | | |
| | | public static BranchSessionVO convert(ResultSet rs) throws SQLException { |
| | | BranchSessionVO branchSessionVO = new BranchSessionVO(); |
| | | branchSessionVO.setXid(rs.getString(ServerTableColumnsName.BRANCH_TABLE_XID)); |
| | | branchSessionVO.setTransactionId(rs.getLong(ServerTableColumnsName.BRANCH_TABLE_TRANSACTION_ID)); |
| | | branchSessionVO.setBranchId(rs.getLong(ServerTableColumnsName.BRANCH_TABLE_BRANCH_ID)); |
| | | branchSessionVO.setResourceGroupId(rs.getString(ServerTableColumnsName.BRANCH_TABLE_RESOURCE_GROUP_ID)); |
| | | branchSessionVO.setResourceId(rs.getString(ServerTableColumnsName.BRANCH_TABLE_RESOURCE_ID)); |
| | | branchSessionVO.setBranchType(rs.getString(ServerTableColumnsName.BRANCH_TABLE_BRANCH_TYPE)); |
| | | branchSessionVO.setStatus(rs.getInt(ServerTableColumnsName.BRANCH_TABLE_STATUS)); |
| | | branchSessionVO.setClientId(rs.getString(ServerTableColumnsName.BRANCH_TABLE_CLIENT_ID)); |
| | | branchSessionVO.setApplicationData(rs.getString(ServerTableColumnsName.BRANCH_TABLE_APPLICATION_DATA)); |
| | | Date gmtCreateTimestamp = rs.getDate(ServerTableColumnsName.BRANCH_TABLE_GMT_CREATE); |
| | | if (gmtCreateTimestamp != null) { |
| | | branchSessionVO.setGmtCreate(gmtCreateTimestamp.getTime()); |
| | | } |
| | | Date gmtModifiedTimestamp = rs.getDate(ServerTableColumnsName.BRANCH_TABLE_GMT_MODIFIED); |
| | | if (gmtModifiedTimestamp != null) { |
| | | branchSessionVO.setGmtModified(gmtModifiedTimestamp.getTime()); |
| | | } |
| | | return branchSessionVO; |
| | | } |
| | | |
| | | @Override |
| | | public boolean equals(Object o) { |
| | | if (this == o) { |
| | | return true; |
| | | } |
| | | if (o == null || getClass() != o.getClass()) { |
| | | return false; |
| | | } |
| | | BranchSessionVO that = (BranchSessionVO) o; |
| | | return Objects.equals(xid, that.xid) |
| | | && Objects.equals(transactionId, that.transactionId) |
| | | && Objects.equals(branchId, that.branchId) |
| | | && Objects.equals(resourceGroupId, that.resourceGroupId) |
| | | && Objects.equals(resourceId, that.resourceId) |
| | | && Objects.equals(branchType, that.branchType) |
| | | && Objects.equals(status, that.status) |
| | | && Objects.equals(clientId, that.clientId) |
| | | && Objects.equals(applicationData, that.applicationData) |
| | | && Objects.equals(gmtCreate, that.gmtCreate) |
| | | && Objects.equals(gmtModified, that.gmtModified); |
| | | } |
| | | |
| | | @Override |
| | | public int hashCode() { |
| | | return Objects.hash(xid, |
| | | transactionId, |
| | | branchId, |
| | | resourceGroupId, |
| | | resourceId, |
| | | branchType, |
| | | status, |
| | | clientId, |
| | | applicationData, |
| | | gmtCreate, |
| | | gmtModified); |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "BranchSessionVO{" + |
| | | "xid='" + xid + '\'' + |
| | | ", transactionId=" + transactionId + |
| | | ", branchId=" + branchId + |
| | | ", resourceGroupId='" + resourceGroupId + '\'' + |
| | | ", resourceId='" + resourceId + '\'' + |
| | | ", branchType='" + branchType + '\'' + |
| | | ", status=" + status + |
| | | ", clientId='" + clientId + '\'' + |
| | | ", applicationData='" + applicationData + '\'' + |
| | | ", gmtCreate=" + gmtCreate + |
| | | ", gmtModified=" + gmtModified + |
| | | '}'; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.vo; |
| | | |
| | | import io.seata.common.util.CollectionUtils; |
| | | import io.seata.core.constants.ServerTableColumnsName; |
| | | import io.seata.core.lock.RowLock; |
| | | |
| | | import java.sql.ResultSet; |
| | | import java.sql.SQLException; |
| | | import java.sql.Timestamp; |
| | | import java.util.ArrayList; |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * GlobalLockVO |
| | | * @author zhongxiang.wang |
| | | * @author miaoxueyu |
| | | */ |
| | | public class GlobalLockVO { |
| | | |
| | | private String xid; |
| | | |
| | | private String transactionId; |
| | | |
| | | private String branchId; |
| | | |
| | | private String resourceId; |
| | | |
| | | private String tableName; |
| | | |
| | | private String pk; |
| | | |
| | | private String rowKey; |
| | | |
| | | private Long gmtCreate; |
| | | |
| | | private Long gmtModified; |
| | | |
| | | /** |
| | | * convert RowLock list to GlobalLockVO list |
| | | * @param rowLocks the RowLock list |
| | | * @return the GlobalLockVO list |
| | | */ |
| | | public static List<GlobalLockVO> convert(List<RowLock> rowLocks) { |
| | | if (CollectionUtils.isEmpty(rowLocks)) { |
| | | return Collections.emptyList(); |
| | | } |
| | | final List<GlobalLockVO> result = new ArrayList<>(rowLocks.size()); |
| | | for (RowLock rowLock : rowLocks) { |
| | | result.add(convert(rowLock)); |
| | | } |
| | | |
| | | return result; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * convert RowLock to GlobalLockVO |
| | | * @param rowLock the RowLock |
| | | * @return the GlobalLockVO |
| | | */ |
| | | public static GlobalLockVO convert(RowLock rowLock) { |
| | | final GlobalLockVO globalLockVO = new GlobalLockVO(); |
| | | globalLockVO.setXid(rowLock.getXid()); |
| | | globalLockVO.setTransactionId(rowLock.getTransactionId()); |
| | | globalLockVO.setBranchId(rowLock.getBranchId()); |
| | | globalLockVO.setResourceId(rowLock.getResourceId()); |
| | | globalLockVO.setTableName(rowLock.getTableName()); |
| | | globalLockVO.setPk(rowLock.getPk()); |
| | | globalLockVO.setRowKey(rowLock.getRowKey()); |
| | | return globalLockVO; |
| | | } |
| | | |
| | | |
| | | public String getXid() { |
| | | return xid; |
| | | } |
| | | |
| | | public void setXid(String xid) { |
| | | this.xid = xid; |
| | | } |
| | | |
| | | public String getTransactionId() { |
| | | return transactionId; |
| | | } |
| | | |
| | | public void setTransactionId(Long transactionId) { |
| | | this.transactionId = String.valueOf(transactionId); |
| | | } |
| | | |
| | | public String getBranchId() { |
| | | return branchId; |
| | | } |
| | | |
| | | public void setBranchId(Long branchId) { |
| | | this.branchId = String.valueOf(branchId); |
| | | } |
| | | |
| | | public String getResourceId() { |
| | | return resourceId; |
| | | } |
| | | |
| | | public void setResourceId(String resourceId) { |
| | | this.resourceId = resourceId; |
| | | } |
| | | |
| | | public String getTableName() { |
| | | return tableName; |
| | | } |
| | | |
| | | public void setTableName(String tableName) { |
| | | this.tableName = tableName; |
| | | } |
| | | |
| | | public String getPk() { |
| | | return pk; |
| | | } |
| | | |
| | | public void setPk(String pk) { |
| | | this.pk = pk; |
| | | } |
| | | |
| | | public String getRowKey() { |
| | | return rowKey; |
| | | } |
| | | |
| | | public void setRowKey(String rowKey) { |
| | | this.rowKey = rowKey; |
| | | } |
| | | |
| | | public Long getGmtCreate() { |
| | | return gmtCreate; |
| | | } |
| | | |
| | | public void setGmtCreate(Long gmtCreate) { |
| | | this.gmtCreate = gmtCreate; |
| | | } |
| | | |
| | | public Long getGmtModified() { |
| | | return gmtModified; |
| | | } |
| | | |
| | | public void setGmtModified(Long gmtModified) { |
| | | this.gmtModified = gmtModified; |
| | | } |
| | | |
| | | public static GlobalLockVO convert(ResultSet rs) throws SQLException { |
| | | GlobalLockVO globalLockVO = new GlobalLockVO(); |
| | | globalLockVO.setRowKey(rs.getString(ServerTableColumnsName.LOCK_TABLE_ROW_KEY)); |
| | | globalLockVO.setXid(rs.getString(ServerTableColumnsName.LOCK_TABLE_XID)); |
| | | globalLockVO.setTransactionId(rs.getLong(ServerTableColumnsName.LOCK_TABLE_TRANSACTION_ID)); |
| | | globalLockVO.setBranchId(rs.getLong(ServerTableColumnsName.LOCK_TABLE_BRANCH_ID)); |
| | | globalLockVO.setResourceId(rs.getString(ServerTableColumnsName.LOCK_TABLE_RESOURCE_ID)); |
| | | globalLockVO.setTableName(rs.getString(ServerTableColumnsName.LOCK_TABLE_TABLE_NAME)); |
| | | globalLockVO.setPk(rs.getString(ServerTableColumnsName.LOCK_TABLE_PK)); |
| | | Timestamp gmtCreateTimestamp = rs.getTimestamp(ServerTableColumnsName.LOCK_TABLE_GMT_CREATE); |
| | | if (gmtCreateTimestamp != null) { |
| | | globalLockVO.setGmtCreate(gmtCreateTimestamp.getTime()); |
| | | } |
| | | Timestamp gmtModifiedTimestamp = rs.getTimestamp(ServerTableColumnsName.LOCK_TABLE_GMT_MODIFIED); |
| | | if (gmtModifiedTimestamp != null) { |
| | | globalLockVO.setGmtModified(gmtModifiedTimestamp.getTime()); |
| | | } |
| | | return globalLockVO; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "GlobalLockVO{" + |
| | | "xid='" + xid + '\'' + |
| | | ", transactionId=" + transactionId + |
| | | ", branchId=" + branchId + |
| | | ", resourceId='" + resourceId + '\'' + |
| | | ", tableName='" + tableName + '\'' + |
| | | ", pk='" + pk + '\'' + |
| | | ", rowKey='" + rowKey + '\'' + |
| | | ", gmtCreate=" + gmtCreate + |
| | | ", gmtModified=" + gmtModified + |
| | | '}'; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.console.vo; |
| | | |
| | | import io.seata.core.constants.ServerTableColumnsName; |
| | | |
| | | import java.sql.ResultSet; |
| | | import java.sql.SQLException; |
| | | import java.sql.Timestamp; |
| | | import java.util.Set; |
| | | |
| | | /** |
| | | * GlobalSessionVO |
| | | * @author zhongxiang.wang |
| | | */ |
| | | public class GlobalSessionVO { |
| | | |
| | | private String xid; |
| | | |
| | | private String transactionId; |
| | | |
| | | private Integer status; |
| | | |
| | | private String applicationId; |
| | | |
| | | private String transactionServiceGroup; |
| | | |
| | | private String transactionName; |
| | | |
| | | private Long timeout; |
| | | |
| | | private Long beginTime; |
| | | |
| | | private String applicationData; |
| | | |
| | | private Long gmtCreate; |
| | | |
| | | private Long gmtModified; |
| | | |
| | | private Set<BranchSessionVO> branchSessionVOs; |
| | | |
| | | |
| | | public GlobalSessionVO() { |
| | | |
| | | } |
| | | |
| | | public GlobalSessionVO(String xid, |
| | | Long transactionId, |
| | | Integer status, |
| | | String applicationId, |
| | | String transactionServiceGroup, |
| | | String transactionName, |
| | | Long timeout, |
| | | Long beginTime, |
| | | String applicationData, |
| | | Set<BranchSessionVO> branchSessionVOs) { |
| | | this.xid = xid; |
| | | this.transactionId = String.valueOf(transactionId); |
| | | this.status = status; |
| | | this.applicationId = applicationId; |
| | | this.transactionServiceGroup = transactionServiceGroup; |
| | | this.transactionName = transactionName; |
| | | this.timeout = timeout; |
| | | this.beginTime = beginTime; |
| | | this.applicationData = applicationData; |
| | | this.branchSessionVOs = branchSessionVOs; |
| | | } |
| | | |
| | | public String getXid() { |
| | | return xid; |
| | | } |
| | | |
| | | public void setXid(String xid) { |
| | | this.xid = xid; |
| | | } |
| | | |
| | | public String getTransactionId() { |
| | | return transactionId; |
| | | } |
| | | |
| | | public void setTransactionId(Long transactionId) { |
| | | this.transactionId = String.valueOf(transactionId); |
| | | } |
| | | |
| | | public Integer getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(Integer status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | public String getApplicationId() { |
| | | return applicationId; |
| | | } |
| | | |
| | | public void setApplicationId(String applicationId) { |
| | | this.applicationId = applicationId; |
| | | } |
| | | |
| | | public String getTransactionServiceGroup() { |
| | | return transactionServiceGroup; |
| | | } |
| | | |
| | | public void setTransactionServiceGroup(String transactionServiceGroup) { |
| | | this.transactionServiceGroup = transactionServiceGroup; |
| | | } |
| | | |
| | | public String getTransactionName() { |
| | | return transactionName; |
| | | } |
| | | |
| | | public void setTransactionName(String transactionName) { |
| | | this.transactionName = transactionName; |
| | | } |
| | | |
| | | public Long getTimeout() { |
| | | return timeout; |
| | | } |
| | | |
| | | public void setTimeout(Long timeout) { |
| | | this.timeout = timeout; |
| | | } |
| | | |
| | | public Long getBeginTime() { |
| | | return beginTime; |
| | | } |
| | | |
| | | public void setBeginTime(Long beginTime) { |
| | | this.beginTime = beginTime; |
| | | } |
| | | |
| | | public String getApplicationData() { |
| | | return applicationData; |
| | | } |
| | | |
| | | public void setApplicationData(String applicationData) { |
| | | this.applicationData = applicationData; |
| | | } |
| | | |
| | | public Long getGmtCreate() { |
| | | return gmtCreate; |
| | | } |
| | | |
| | | public void setGmtCreate(Long gmtCreate) { |
| | | this.gmtCreate = gmtCreate; |
| | | } |
| | | |
| | | public Long getGmtModified() { |
| | | return gmtModified; |
| | | } |
| | | |
| | | public void setGmtModified(Long gmtModified) { |
| | | this.gmtModified = gmtModified; |
| | | } |
| | | |
| | | public Set<BranchSessionVO> getBranchSessionVOs() { |
| | | return branchSessionVOs; |
| | | } |
| | | |
| | | public void setBranchSessionVOs(Set<BranchSessionVO> branchSessionVOs) { |
| | | this.branchSessionVOs = branchSessionVOs; |
| | | } |
| | | |
| | | public static GlobalSessionVO convert(ResultSet rs) throws SQLException { |
| | | GlobalSessionVO globalSessionVO = new GlobalSessionVO(); |
| | | globalSessionVO.setXid(rs.getString(ServerTableColumnsName.GLOBAL_TABLE_XID)); |
| | | globalSessionVO.setTransactionId(rs.getLong(ServerTableColumnsName.GLOBAL_TABLE_TRANSACTION_ID)); |
| | | globalSessionVO.setStatus(rs.getInt(ServerTableColumnsName.GLOBAL_TABLE_STATUS)); |
| | | globalSessionVO.setApplicationId(rs.getString(ServerTableColumnsName.GLOBAL_TABLE_APPLICATION_ID)); |
| | | globalSessionVO.setTransactionServiceGroup(rs.getString(ServerTableColumnsName.GLOBAL_TABLE_TRANSACTION_SERVICE_GROUP)); |
| | | globalSessionVO.setTransactionName(rs.getString(ServerTableColumnsName.GLOBAL_TABLE_TRANSACTION_NAME)); |
| | | globalSessionVO.setTimeout(rs.getLong(ServerTableColumnsName.GLOBAL_TABLE_TIMEOUT)); |
| | | globalSessionVO.setBeginTime(rs.getLong(ServerTableColumnsName.GLOBAL_TABLE_BEGIN_TIME)); |
| | | globalSessionVO.setApplicationData(rs.getString(ServerTableColumnsName.GLOBAL_TABLE_APPLICATION_DATA)); |
| | | Timestamp gmtCreateTimestamp = rs.getTimestamp(ServerTableColumnsName.GLOBAL_TABLE_GMT_CREATE); |
| | | if (gmtCreateTimestamp != null) { |
| | | globalSessionVO.setGmtCreate(gmtCreateTimestamp.getTime()); |
| | | } |
| | | Timestamp gmtModifiedTimestamp = rs.getTimestamp(ServerTableColumnsName.GLOBAL_TABLE_GMT_MODIFIED); |
| | | if (gmtModifiedTimestamp != null) { |
| | | globalSessionVO.setGmtModified(gmtModifiedTimestamp.getTime()); |
| | | } |
| | | return globalSessionVO; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "GlobalSessionVO{" + |
| | | "xid='" + xid + '\'' + |
| | | ", transactionId=" + transactionId + |
| | | ", status=" + status + |
| | | ", applicationId='" + applicationId + '\'' + |
| | | ", transactionServiceGroup='" + transactionServiceGroup + '\'' + |
| | | ", transactionName='" + transactionName + '\'' + |
| | | ", timeout=" + timeout + |
| | | ", beginTime=" + beginTime + |
| | | ", applicationData='" + applicationData + '\'' + |
| | | ", gmtCreate=" + gmtCreate + |
| | | ", gmtModified=" + gmtModified + |
| | | ", branchSessionVOs=" + branchSessionVOs + |
| | | '}'; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.controller; |
| | | |
| | | import io.seata.server.ServerRunner; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Controller; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | /** |
| | | * @author spilledyear@outlook.com |
| | | */ |
| | | @Controller |
| | | @RequestMapping |
| | | public class HealthController { |
| | | |
| | | private static final String OK = "ok"; |
| | | private static final String NOT_OK = "not_ok"; |
| | | |
| | | @Autowired |
| | | private ServerRunner serverRunner; |
| | | |
| | | |
| | | @RequestMapping("/health") |
| | | @ResponseBody |
| | | String healthCheck() { |
| | | return serverRunner.started() ? OK : NOT_OK; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.coordinator; |
| | | |
| | | import io.seata.core.context.RootContext; |
| | | import io.seata.core.exception.BranchTransactionException; |
| | | import io.seata.core.exception.GlobalTransactionException; |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.exception.TransactionExceptionCode; |
| | | import io.seata.core.model.BranchStatus; |
| | | import io.seata.core.model.BranchType; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.core.protocol.transaction.BranchCommitRequest; |
| | | import io.seata.core.protocol.transaction.BranchCommitResponse; |
| | | import io.seata.core.protocol.transaction.BranchRollbackRequest; |
| | | import io.seata.core.protocol.transaction.BranchRollbackResponse; |
| | | import io.seata.core.rpc.RemotingServer; |
| | | import io.seata.server.lock.LockManager; |
| | | import io.seata.server.lock.LockerManagerFactory; |
| | | import io.seata.server.session.BranchSession; |
| | | import io.seata.server.session.GlobalSession; |
| | | import io.seata.server.session.SessionHelper; |
| | | import io.seata.server.session.SessionHolder; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.slf4j.MDC; |
| | | |
| | | import java.io.IOException; |
| | | import java.util.concurrent.TimeoutException; |
| | | |
| | | import static io.seata.core.exception.TransactionExceptionCode.*; |
| | | |
| | | /** |
| | | * The type abstract core. |
| | | * |
| | | * @author ph3636 |
| | | */ |
| | | public abstract class AbstractCore implements Core { |
| | | |
| | | protected static final Logger LOGGER = LoggerFactory.getLogger(AbstractCore.class); |
| | | |
| | | protected LockManager lockManager = LockerManagerFactory.getLockManager(); |
| | | |
| | | protected RemotingServer remotingServer; |
| | | |
| | | public AbstractCore(RemotingServer remotingServer) { |
| | | if (remotingServer == null) { |
| | | throw new IllegalArgumentException("remotingServer must be not null"); |
| | | } |
| | | this.remotingServer = remotingServer; |
| | | } |
| | | |
| | | public abstract BranchType getHandleBranchType(); |
| | | |
| | | @Override |
| | | public Long branchRegister(BranchType branchType, String resourceId, String clientId, String xid, |
| | | String applicationData, String lockKeys) throws TransactionException { |
| | | GlobalSession globalSession = assertGlobalSessionNotNull(xid, false); |
| | | return SessionHolder.lockAndExecute(globalSession, () -> { |
| | | globalSessionStatusCheck(globalSession); |
| | | globalSession.addSessionLifecycleListener(SessionHolder.getRootSessionManager()); |
| | | BranchSession branchSession = SessionHelper.newBranchByGlobal(globalSession, branchType, resourceId, |
| | | applicationData, lockKeys, clientId); |
| | | MDC.put(RootContext.MDC_KEY_BRANCH_ID, String.valueOf(branchSession.getBranchId())); |
| | | branchSessionLock(globalSession, branchSession); |
| | | try { |
| | | globalSession.addBranch(branchSession); |
| | | } catch (RuntimeException ex) { |
| | | branchSessionUnlock(branchSession); |
| | | throw new BranchTransactionException(FailedToAddBranch, String |
| | | .format("Failed to store branch xid = %s branchId = %s", globalSession.getXid(), |
| | | branchSession.getBranchId()), ex); |
| | | } |
| | | if (LOGGER.isInfoEnabled()) { |
| | | LOGGER.info("Register branch successfully, xid = {}, branchId = {}, resourceId = {} ,lockKeys = {}", |
| | | globalSession.getXid(), branchSession.getBranchId(), resourceId, lockKeys); |
| | | } |
| | | return branchSession.getBranchId(); |
| | | }); |
| | | } |
| | | |
| | | protected void globalSessionStatusCheck(GlobalSession globalSession) throws GlobalTransactionException { |
| | | if (!globalSession.isActive()) { |
| | | throw new GlobalTransactionException(GlobalTransactionNotActive, String.format( |
| | | "Could not register branch into global session xid = %s status = %s, cause by globalSession not active", |
| | | globalSession.getXid(), globalSession.getStatus())); |
| | | } |
| | | if (globalSession.getStatus() != GlobalStatus.Begin) { |
| | | throw new GlobalTransactionException(GlobalTransactionStatusInvalid, String |
| | | .format("Could not register branch into global session xid = %s status = %s while expecting %s", |
| | | globalSession.getXid(), globalSession.getStatus(), GlobalStatus.Begin)); |
| | | } |
| | | } |
| | | |
| | | protected void branchSessionLock(GlobalSession globalSession, BranchSession branchSession) throws TransactionException { |
| | | |
| | | } |
| | | |
| | | protected void branchSessionUnlock(BranchSession branchSession) throws TransactionException { |
| | | |
| | | } |
| | | |
| | | private GlobalSession assertGlobalSessionNotNull(String xid, boolean withBranchSessions) |
| | | throws TransactionException { |
| | | GlobalSession globalSession = SessionHolder.findGlobalSession(xid, withBranchSessions); |
| | | if (globalSession == null) { |
| | | throw new GlobalTransactionException(TransactionExceptionCode.GlobalTransactionNotExist, |
| | | String.format("Could not found global transaction xid = %s, may be has finished.", xid)); |
| | | } |
| | | return globalSession; |
| | | } |
| | | |
| | | @Override |
| | | public void branchReport(BranchType branchType, String xid, long branchId, BranchStatus status, |
| | | String applicationData) throws TransactionException { |
| | | GlobalSession globalSession = assertGlobalSessionNotNull(xid, true); |
| | | BranchSession branchSession = globalSession.getBranch(branchId); |
| | | if (branchSession == null) { |
| | | throw new BranchTransactionException(BranchTransactionNotExist, |
| | | String.format("Could not found branch session xid = %s branchId = %s", xid, branchId)); |
| | | } |
| | | branchSession.setApplicationData(applicationData); |
| | | globalSession.addSessionLifecycleListener(SessionHolder.getRootSessionManager()); |
| | | globalSession.changeBranchStatus(branchSession, status); |
| | | |
| | | if (LOGGER.isInfoEnabled()) { |
| | | LOGGER.info("Report branch status successfully, xid = {}, branchId = {}", globalSession.getXid(), |
| | | branchSession.getBranchId()); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public boolean lockQuery(BranchType branchType, String resourceId, String xid, String lockKeys) |
| | | throws TransactionException { |
| | | return true; |
| | | } |
| | | |
| | | @Override |
| | | public BranchStatus branchCommit(GlobalSession globalSession, BranchSession branchSession) throws TransactionException { |
| | | try { |
| | | BranchCommitRequest request = new BranchCommitRequest(); |
| | | request.setXid(branchSession.getXid()); |
| | | request.setBranchId(branchSession.getBranchId()); |
| | | request.setResourceId(branchSession.getResourceId()); |
| | | request.setApplicationData(branchSession.getApplicationData()); |
| | | request.setBranchType(branchSession.getBranchType()); |
| | | return branchCommitSend(request, globalSession, branchSession); |
| | | } catch (IOException | TimeoutException e) { |
| | | throw new BranchTransactionException(FailedToSendBranchCommitRequest, |
| | | String.format("Send branch commit failed, xid = %s branchId = %s", branchSession.getXid(), |
| | | branchSession.getBranchId()), e); |
| | | } |
| | | } |
| | | |
| | | protected BranchStatus branchCommitSend(BranchCommitRequest request, GlobalSession globalSession, |
| | | BranchSession branchSession) throws IOException, TimeoutException { |
| | | |
| | | BranchCommitResponse response = (BranchCommitResponse) remotingServer.sendSyncRequest( |
| | | branchSession.getResourceId(), branchSession.getClientId(), request, branchSession.isAT()); |
| | | return response.getBranchStatus(); |
| | | } |
| | | |
| | | @Override |
| | | public BranchStatus branchRollback(GlobalSession globalSession, BranchSession branchSession) throws TransactionException { |
| | | try { |
| | | BranchRollbackRequest request = new BranchRollbackRequest(); |
| | | request.setXid(branchSession.getXid()); |
| | | request.setBranchId(branchSession.getBranchId()); |
| | | request.setResourceId(branchSession.getResourceId()); |
| | | request.setApplicationData(branchSession.getApplicationData()); |
| | | request.setBranchType(branchSession.getBranchType()); |
| | | return branchRollbackSend(request, globalSession, branchSession); |
| | | } catch (IOException | TimeoutException e) { |
| | | throw new BranchTransactionException(FailedToSendBranchRollbackRequest, |
| | | String.format("Send branch rollback failed, xid = %s branchId = %s", |
| | | branchSession.getXid(), branchSession.getBranchId()), e); |
| | | } |
| | | } |
| | | |
| | | protected BranchStatus branchRollbackSend(BranchRollbackRequest request, GlobalSession globalSession, |
| | | BranchSession branchSession) throws IOException, TimeoutException { |
| | | |
| | | BranchRollbackResponse response = (BranchRollbackResponse) remotingServer.sendSyncRequest( |
| | | branchSession.getResourceId(), branchSession.getClientId(), request, branchSession.isAT()); |
| | | return response.getBranchStatus(); |
| | | } |
| | | |
| | | @Override |
| | | public String begin(String applicationId, String transactionServiceGroup, String name, int timeout) |
| | | throws TransactionException { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public GlobalStatus commit(String xid) throws TransactionException { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public boolean doGlobalCommit(GlobalSession globalSession, boolean retrying) throws TransactionException { |
| | | return true; |
| | | } |
| | | |
| | | @Override |
| | | public GlobalStatus globalReport(String xid, GlobalStatus globalStatus) throws TransactionException { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public GlobalStatus rollback(String xid) throws TransactionException { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public boolean doGlobalRollback(GlobalSession globalSession, boolean retrying) throws TransactionException { |
| | | return true; |
| | | } |
| | | |
| | | @Override |
| | | public GlobalStatus getStatus(String xid) throws TransactionException { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public void doGlobalReport(GlobalSession globalSession, String xid, GlobalStatus globalStatus) throws TransactionException { |
| | | |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.coordinator; |
| | | |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.server.session.GlobalSession; |
| | | |
| | | /** |
| | | * The interface Core. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public interface Core extends TransactionCoordinatorInbound, TransactionCoordinatorOutbound { |
| | | |
| | | /** |
| | | * Do global commit. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param retrying the retrying |
| | | * @return is global commit. |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | boolean doGlobalCommit(GlobalSession globalSession, boolean retrying) throws TransactionException; |
| | | |
| | | /** |
| | | * Do global rollback. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param retrying the retrying |
| | | * @return is global rollback. |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | boolean doGlobalRollback(GlobalSession globalSession, boolean retrying) throws TransactionException; |
| | | |
| | | /** |
| | | * Do global report. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param xid Transaction id. |
| | | * @param param the global status |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | void doGlobalReport(GlobalSession globalSession, String xid, GlobalStatus param) throws TransactionException; |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.coordinator; |
| | | |
| | | import io.netty.channel.Channel; |
| | | import io.seata.common.thread.NamedThreadFactory; |
| | | import io.seata.common.util.CollectionUtils; |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.core.constants.ConfigurationKeys; |
| | | import io.seata.core.context.RootContext; |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.core.protocol.AbstractMessage; |
| | | import io.seata.core.protocol.AbstractResultMessage; |
| | | import io.seata.core.protocol.transaction.*; |
| | | import io.seata.core.rpc.Disposable; |
| | | import io.seata.core.rpc.RemotingServer; |
| | | import io.seata.core.rpc.RpcContext; |
| | | import io.seata.core.rpc.TransactionMessageHandler; |
| | | import io.seata.core.rpc.netty.ChannelManager; |
| | | import io.seata.core.rpc.netty.NettyRemotingServer; |
| | | import io.seata.server.AbstractTCInboundHandler; |
| | | import io.seata.server.metrics.MetricsPublisher; |
| | | import io.seata.server.session.*; |
| | | import io.seata.server.store.StoreConfig; |
| | | import org.apache.commons.lang.time.DateFormatUtils; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.slf4j.MDC; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.Map; |
| | | import java.util.concurrent.ArrayBlockingQueue; |
| | | import java.util.concurrent.ScheduledThreadPoolExecutor; |
| | | import java.util.concurrent.ThreadPoolExecutor; |
| | | import java.util.concurrent.TimeUnit; |
| | | |
| | | import static io.seata.common.Constants.*; |
| | | import static io.seata.common.DefaultValues.*; |
| | | |
| | | /** |
| | | * The type Default coordinator. |
| | | */ |
| | | public class DefaultCoordinator extends AbstractTCInboundHandler implements TransactionMessageHandler, Disposable { |
| | | |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(DefaultCoordinator.class); |
| | | |
| | | private static final int TIMED_TASK_SHUTDOWN_MAX_WAIT_MILLS = 5000; |
| | | |
| | | /** |
| | | * The constant COMMITTING_RETRY_PERIOD. |
| | | */ |
| | | protected static final long COMMITTING_RETRY_PERIOD = CONFIG.getLong(ConfigurationKeys.COMMITING_RETRY_PERIOD, |
| | | DEFAULT_COMMITING_RETRY_PERIOD); |
| | | |
| | | /** |
| | | * The constant ASYNC_COMMITTING_RETRY_PERIOD. |
| | | */ |
| | | protected static final long ASYNC_COMMITTING_RETRY_PERIOD = CONFIG.getLong( |
| | | ConfigurationKeys.ASYNC_COMMITING_RETRY_PERIOD, DEFAULT_ASYNC_COMMITTING_RETRY_PERIOD); |
| | | |
| | | /** |
| | | * The constant ROLLBACKING_RETRY_PERIOD. |
| | | */ |
| | | protected static final long ROLLBACKING_RETRY_PERIOD = CONFIG.getLong(ConfigurationKeys.ROLLBACKING_RETRY_PERIOD, |
| | | DEFAULT_ROLLBACKING_RETRY_PERIOD); |
| | | |
| | | /** |
| | | * The constant TIMEOUT_RETRY_PERIOD. |
| | | */ |
| | | protected static final long TIMEOUT_RETRY_PERIOD = CONFIG.getLong(ConfigurationKeys.TIMEOUT_RETRY_PERIOD, |
| | | DEFAULT_TIMEOUT_RETRY_PERIOD); |
| | | |
| | | /** |
| | | * The Transaction undo log delete period. |
| | | */ |
| | | protected static final long UNDO_LOG_DELETE_PERIOD = CONFIG.getLong( |
| | | ConfigurationKeys.TRANSACTION_UNDO_LOG_DELETE_PERIOD, DEFAULT_UNDO_LOG_DELETE_PERIOD); |
| | | |
| | | /** |
| | | * The Transaction undo log delay delete period |
| | | */ |
| | | protected static final long UNDO_LOG_DELAY_DELETE_PERIOD = 3 * 60 * 1000; |
| | | |
| | | private static final int ALWAYS_RETRY_BOUNDARY = 0; |
| | | |
| | | /** |
| | | * default branch async queue size |
| | | */ |
| | | private static final int DEFAULT_BRANCH_ASYNC_QUEUE_SIZE = 5000; |
| | | |
| | | /** |
| | | * the pool size of branch asynchronous remove thread pool |
| | | */ |
| | | private static final int BRANCH_ASYNC_POOL_SIZE = Runtime.getRuntime().availableProcessors() * 2; |
| | | |
| | | private static final long MAX_COMMIT_RETRY_TIMEOUT = ConfigurationFactory.getInstance().getLong( |
| | | ConfigurationKeys.MAX_COMMIT_RETRY_TIMEOUT, DEFAULT_MAX_COMMIT_RETRY_TIMEOUT); |
| | | |
| | | private static final long MAX_ROLLBACK_RETRY_TIMEOUT = ConfigurationFactory.getInstance().getLong( |
| | | ConfigurationKeys.MAX_ROLLBACK_RETRY_TIMEOUT, DEFAULT_MAX_ROLLBACK_RETRY_TIMEOUT); |
| | | |
| | | private static final boolean ROLLBACK_RETRY_TIMEOUT_UNLOCK_ENABLE = ConfigurationFactory.getInstance().getBoolean( |
| | | ConfigurationKeys.ROLLBACK_RETRY_TIMEOUT_UNLOCK_ENABLE, DEFAULT_ROLLBACK_RETRY_TIMEOUT_UNLOCK_ENABLE); |
| | | |
| | | private final ScheduledThreadPoolExecutor retryRollbacking = |
| | | new ScheduledThreadPoolExecutor(1, new NamedThreadFactory(RETRY_ROLLBACKING, 1)); |
| | | |
| | | private final ScheduledThreadPoolExecutor retryCommitting = |
| | | new ScheduledThreadPoolExecutor(1, new NamedThreadFactory(RETRY_COMMITTING, 1)); |
| | | |
| | | private final ScheduledThreadPoolExecutor asyncCommitting = |
| | | new ScheduledThreadPoolExecutor(1, new NamedThreadFactory(ASYNC_COMMITTING, 1)); |
| | | |
| | | private final ScheduledThreadPoolExecutor timeoutCheck = |
| | | new ScheduledThreadPoolExecutor(1, new NamedThreadFactory(TX_TIMEOUT_CHECK, 1)); |
| | | |
| | | private final ScheduledThreadPoolExecutor undoLogDelete = |
| | | new ScheduledThreadPoolExecutor(1, new NamedThreadFactory(UNDOLOG_DELETE, 1)); |
| | | |
| | | private final GlobalStatus[] rollbackingStatuses = new GlobalStatus[] {GlobalStatus.TimeoutRollbacking, |
| | | GlobalStatus.TimeoutRollbackRetrying, GlobalStatus.RollbackRetrying, GlobalStatus.Rollbacking}; |
| | | |
| | | private final GlobalStatus[] retryCommittingStatuses = new GlobalStatus[] {GlobalStatus.Committing, GlobalStatus.CommitRetrying, GlobalStatus.Committed}; |
| | | |
| | | private final ThreadPoolExecutor branchRemoveExecutor; |
| | | |
| | | private RemotingServer remotingServer; |
| | | |
| | | private final DefaultCore core; |
| | | |
| | | private static volatile DefaultCoordinator instance; |
| | | |
| | | /** |
| | | * Instantiates a new Default coordinator. |
| | | * |
| | | * @param remotingServer the remoting server |
| | | */ |
| | | private DefaultCoordinator(RemotingServer remotingServer) { |
| | | if (remotingServer == null) { |
| | | throw new IllegalArgumentException("RemotingServer not allowed be null."); |
| | | } |
| | | this.remotingServer = remotingServer; |
| | | this.core = new DefaultCore(remotingServer); |
| | | boolean enableBranchAsyncRemove = CONFIG.getBoolean( |
| | | ConfigurationKeys.ENABLE_BRANCH_ASYNC_REMOVE, DEFAULT_ENABLE_BRANCH_ASYNC_REMOVE); |
| | | // create branchRemoveExecutor |
| | | if (enableBranchAsyncRemove && StoreConfig.getSessionMode() != StoreConfig.SessionMode.FILE) { |
| | | branchRemoveExecutor = new ThreadPoolExecutor(BRANCH_ASYNC_POOL_SIZE, BRANCH_ASYNC_POOL_SIZE, |
| | | Integer.MAX_VALUE, TimeUnit.MILLISECONDS, |
| | | new ArrayBlockingQueue<>( |
| | | CONFIG.getInt(ConfigurationKeys.SESSION_BRANCH_ASYNC_QUEUE_SIZE, DEFAULT_BRANCH_ASYNC_QUEUE_SIZE) |
| | | ), new NamedThreadFactory("branchSessionRemove", BRANCH_ASYNC_POOL_SIZE), |
| | | new ThreadPoolExecutor.CallerRunsPolicy()); |
| | | } else { |
| | | branchRemoveExecutor = null; |
| | | } |
| | | } |
| | | |
| | | public static DefaultCoordinator getInstance(RemotingServer remotingServer) { |
| | | if (null == instance) { |
| | | synchronized (DefaultCoordinator.class) { |
| | | if (null == instance) { |
| | | instance = new DefaultCoordinator(remotingServer); |
| | | } |
| | | } |
| | | } |
| | | return instance; |
| | | } |
| | | |
| | | public static DefaultCoordinator getInstance() { |
| | | if (null == instance) { |
| | | throw new IllegalArgumentException("The instance has not been created."); |
| | | } |
| | | return instance; |
| | | } |
| | | |
| | | /** |
| | | * Asynchronous remove branch |
| | | * |
| | | * @param globalSession the globalSession |
| | | * @param branchSession the branchSession |
| | | */ |
| | | public void doBranchRemoveAsync(GlobalSession globalSession, BranchSession branchSession) { |
| | | if (globalSession == null) { |
| | | return; |
| | | } |
| | | branchRemoveExecutor.execute(new BranchRemoveTask(globalSession, branchSession)); |
| | | } |
| | | |
| | | /** |
| | | * Asynchronous remove all branch |
| | | * |
| | | * @param globalSession the globalSession |
| | | */ |
| | | public void doBranchRemoveAllAsync(GlobalSession globalSession) { |
| | | if (globalSession == null) { |
| | | return; |
| | | } |
| | | branchRemoveExecutor.execute(new BranchRemoveTask(globalSession)); |
| | | } |
| | | |
| | | @Override |
| | | protected void doGlobalBegin(GlobalBeginRequest request, GlobalBeginResponse response, RpcContext rpcContext) |
| | | throws TransactionException { |
| | | response.setXid(core.begin(rpcContext.getApplicationId(), rpcContext.getTransactionServiceGroup(), |
| | | request.getTransactionName(), request.getTimeout())); |
| | | if (LOGGER.isInfoEnabled()) { |
| | | LOGGER.info("Begin new global transaction applicationId: {},transactionServiceGroup: {}, transactionName: {},timeout:{},xid:{}", |
| | | rpcContext.getApplicationId(), rpcContext.getTransactionServiceGroup(), request.getTransactionName(), request.getTimeout(), response.getXid()); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | protected void doGlobalCommit(GlobalCommitRequest request, GlobalCommitResponse response, RpcContext rpcContext) |
| | | throws TransactionException { |
| | | MDC.put(RootContext.MDC_KEY_XID, request.getXid()); |
| | | response.setGlobalStatus(core.commit(request.getXid())); |
| | | } |
| | | |
| | | @Override |
| | | protected void doGlobalRollback(GlobalRollbackRequest request, GlobalRollbackResponse response, |
| | | RpcContext rpcContext) throws TransactionException { |
| | | MDC.put(RootContext.MDC_KEY_XID, request.getXid()); |
| | | response.setGlobalStatus(core.rollback(request.getXid())); |
| | | } |
| | | |
| | | @Override |
| | | protected void doGlobalStatus(GlobalStatusRequest request, GlobalStatusResponse response, RpcContext rpcContext) |
| | | throws TransactionException { |
| | | MDC.put(RootContext.MDC_KEY_XID, request.getXid()); |
| | | response.setGlobalStatus(core.getStatus(request.getXid())); |
| | | } |
| | | |
| | | @Override |
| | | protected void doGlobalReport(GlobalReportRequest request, GlobalReportResponse response, RpcContext rpcContext) |
| | | throws TransactionException { |
| | | MDC.put(RootContext.MDC_KEY_XID, request.getXid()); |
| | | response.setGlobalStatus(core.globalReport(request.getXid(), request.getGlobalStatus())); |
| | | } |
| | | |
| | | @Override |
| | | protected void doBranchRegister(BranchRegisterRequest request, BranchRegisterResponse response, |
| | | RpcContext rpcContext) throws TransactionException { |
| | | MDC.put(RootContext.MDC_KEY_XID, request.getXid()); |
| | | response.setBranchId( |
| | | core.branchRegister(request.getBranchType(), request.getResourceId(), rpcContext.getClientId(), |
| | | request.getXid(), request.getApplicationData(), request.getLockKey())); |
| | | } |
| | | |
| | | @Override |
| | | protected void doBranchReport(BranchReportRequest request, BranchReportResponse response, RpcContext rpcContext) |
| | | throws TransactionException { |
| | | MDC.put(RootContext.MDC_KEY_XID, request.getXid()); |
| | | MDC.put(RootContext.MDC_KEY_BRANCH_ID, String.valueOf(request.getBranchId())); |
| | | core.branchReport(request.getBranchType(), request.getXid(), request.getBranchId(), request.getStatus(), |
| | | request.getApplicationData()); |
| | | } |
| | | |
| | | @Override |
| | | protected void doLockCheck(GlobalLockQueryRequest request, GlobalLockQueryResponse response, RpcContext rpcContext) |
| | | throws TransactionException { |
| | | MDC.put(RootContext.MDC_KEY_XID, request.getXid()); |
| | | response.setLockable( |
| | | core.lockQuery(request.getBranchType(), request.getResourceId(), request.getXid(), request.getLockKey())); |
| | | } |
| | | |
| | | /** |
| | | * Timeout check. |
| | | */ |
| | | protected void timeoutCheck() { |
| | | SessionCondition sessionCondition = new SessionCondition(GlobalStatus.Begin); |
| | | sessionCondition.setLazyLoadBranch(true); |
| | | Collection<GlobalSession> beginGlobalsessions = |
| | | SessionHolder.getRootSessionManager().findGlobalSessions(sessionCondition); |
| | | if (CollectionUtils.isEmpty(beginGlobalsessions)) { |
| | | return; |
| | | } |
| | | if (!beginGlobalsessions.isEmpty() && LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("Global transaction timeout check begin, size: {}", beginGlobalsessions.size()); |
| | | } |
| | | SessionHelper.forEach(beginGlobalsessions, globalSession -> { |
| | | if (LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug( |
| | | globalSession.getXid() + " " + globalSession.getStatus() + " " + globalSession.getBeginTime() + " " |
| | | + globalSession.getTimeout()); |
| | | } |
| | | SessionHolder.lockAndExecute(globalSession, () -> { |
| | | if (globalSession.getStatus() != GlobalStatus.Begin || !globalSession.isTimeout()) { |
| | | return false; |
| | | } |
| | | |
| | | LOGGER.warn("Global transaction[{}] is timeout and will be rollback,transaction begin time:{} and now:{}", globalSession.getXid(), |
| | | DateFormatUtils.ISO_DATE_FORMAT.format(globalSession.getBeginTime()), DateFormatUtils.ISO_DATE_FORMAT.format(System.currentTimeMillis())); |
| | | |
| | | globalSession.addSessionLifecycleListener(SessionHolder.getRootSessionManager()); |
| | | globalSession.close(); |
| | | globalSession.setStatus(GlobalStatus.TimeoutRollbacking); |
| | | |
| | | globalSession.addSessionLifecycleListener(SessionHolder.getRetryRollbackingSessionManager()); |
| | | SessionHolder.getRetryRollbackingSessionManager().addGlobalSession(globalSession); |
| | | |
| | | // transaction timeout and start rollbacking event |
| | | MetricsPublisher.postSessionDoingEvent(globalSession, GlobalStatus.TimeoutRollbacking.name(), false, false); |
| | | |
| | | return true; |
| | | }); |
| | | }); |
| | | if (!beginGlobalsessions.isEmpty() && LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("Global transaction timeout check end. "); |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Handle retry rollbacking. |
| | | */ |
| | | protected void handleRetryRollbacking() { |
| | | SessionCondition sessionCondition = new SessionCondition(rollbackingStatuses); |
| | | sessionCondition.setLazyLoadBranch(true); |
| | | Collection<GlobalSession> rollbackingSessions = |
| | | SessionHolder.getRetryRollbackingSessionManager().findGlobalSessions(sessionCondition); |
| | | if (CollectionUtils.isEmpty(rollbackingSessions)) { |
| | | return; |
| | | } |
| | | long now = System.currentTimeMillis(); |
| | | SessionHelper.forEach(rollbackingSessions, rollbackingSession -> { |
| | | try { |
| | | // prevent repeated rollback |
| | | if (rollbackingSession.getStatus() == GlobalStatus.Rollbacking |
| | | && !rollbackingSession.isDeadSession()) { |
| | | // The function of this 'return' is 'continue'. |
| | | return; |
| | | } |
| | | if (isRetryTimeout(now, MAX_ROLLBACK_RETRY_TIMEOUT, rollbackingSession.getBeginTime())) { |
| | | if (ROLLBACK_RETRY_TIMEOUT_UNLOCK_ENABLE) { |
| | | rollbackingSession.clean(); |
| | | } |
| | | |
| | | SessionHelper.endRollbackFailed(rollbackingSession, true, true); |
| | | |
| | | //The function of this 'return' is 'continue'. |
| | | return; |
| | | } |
| | | rollbackingSession.addSessionLifecycleListener(SessionHolder.getRootSessionManager()); |
| | | core.doGlobalRollback(rollbackingSession, true); |
| | | } catch (TransactionException ex) { |
| | | LOGGER.error("Failed to retry rollbacking [{}] {} {}", rollbackingSession.getXid(), ex.getCode(), ex.getMessage()); |
| | | } |
| | | }); |
| | | } |
| | | |
| | | /** |
| | | * Handle retry committing. |
| | | */ |
| | | protected void handleRetryCommitting() { |
| | | SessionCondition retryCommittingSessionCondition = new SessionCondition(retryCommittingStatuses); |
| | | retryCommittingSessionCondition.setLazyLoadBranch(true); |
| | | Collection<GlobalSession> committingSessions = |
| | | SessionHolder.getRetryCommittingSessionManager().findGlobalSessions(retryCommittingSessionCondition); |
| | | if (CollectionUtils.isEmpty(committingSessions)) { |
| | | return; |
| | | } |
| | | long now = System.currentTimeMillis(); |
| | | SessionHelper.forEach(committingSessions, committingSession -> { |
| | | try { |
| | | // prevent repeated commit |
| | | if (GlobalStatus.Committing.equals(committingSession.getStatus()) && !committingSession.isDeadSession()) { |
| | | // The function of this 'return' is 'continue'. |
| | | return; |
| | | } |
| | | if (isRetryTimeout(now, MAX_COMMIT_RETRY_TIMEOUT, committingSession.getBeginTime())) { |
| | | |
| | | // commit retry timeout event |
| | | SessionHelper.endCommitFailed(committingSession, true, true); |
| | | |
| | | //The function of this 'return' is 'continue'. |
| | | return; |
| | | } |
| | | if (GlobalStatus.Committed.equals(committingSession.getStatus()) |
| | | && committingSession.getBranchSessions().isEmpty()) { |
| | | SessionHelper.endCommitted(committingSession,true); |
| | | } |
| | | committingSession.addSessionLifecycleListener(SessionHolder.getRootSessionManager()); |
| | | core.doGlobalCommit(committingSession, true); |
| | | } catch (TransactionException ex) { |
| | | LOGGER.error("Failed to retry committing [{}] {} {}", committingSession.getXid(), ex.getCode(), ex.getMessage()); |
| | | } |
| | | }); |
| | | } |
| | | |
| | | /** |
| | | * Handle async committing. |
| | | */ |
| | | protected void handleAsyncCommitting() { |
| | | SessionCondition sessionCondition = new SessionCondition(GlobalStatus.AsyncCommitting); |
| | | Collection<GlobalSession> asyncCommittingSessions = |
| | | SessionHolder.getAsyncCommittingSessionManager().findGlobalSessions(sessionCondition); |
| | | if (CollectionUtils.isEmpty(asyncCommittingSessions)) { |
| | | return; |
| | | } |
| | | SessionHelper.forEach(asyncCommittingSessions, asyncCommittingSession -> { |
| | | try { |
| | | asyncCommittingSession.addSessionLifecycleListener(SessionHolder.getRootSessionManager()); |
| | | core.doGlobalCommit(asyncCommittingSession, true); |
| | | } catch (TransactionException ex) { |
| | | LOGGER.error("Failed to async committing [{}] {} {}", asyncCommittingSession.getXid(), ex.getCode(), ex.getMessage(), ex); |
| | | } |
| | | }); |
| | | } |
| | | |
| | | /** |
| | | * Undo log delete. |
| | | */ |
| | | protected void undoLogDelete() { |
| | | Map<String, Channel> rmChannels = ChannelManager.getRmChannels(); |
| | | if (rmChannels == null || rmChannels.isEmpty()) { |
| | | if (LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("no active rm channels to delete undo log"); |
| | | } |
| | | return; |
| | | } |
| | | short saveDays = CONFIG.getShort(ConfigurationKeys.TRANSACTION_UNDO_LOG_SAVE_DAYS, |
| | | UndoLogDeleteRequest.DEFAULT_SAVE_DAYS); |
| | | for (Map.Entry<String, Channel> channelEntry : rmChannels.entrySet()) { |
| | | String resourceId = channelEntry.getKey(); |
| | | UndoLogDeleteRequest deleteRequest = new UndoLogDeleteRequest(); |
| | | deleteRequest.setResourceId(resourceId); |
| | | deleteRequest.setSaveDays(saveDays > 0 ? saveDays : UndoLogDeleteRequest.DEFAULT_SAVE_DAYS); |
| | | try { |
| | | remotingServer.sendAsyncRequest(channelEntry.getValue(), deleteRequest); |
| | | } catch (Exception e) { |
| | | LOGGER.error("Failed to async delete undo log resourceId = {}, exception: {}", resourceId, e.getMessage()); |
| | | } |
| | | } |
| | | } |
| | | |
| | | private boolean isRetryTimeout(long now, long timeout, long beginTime) { |
| | | return timeout >= ALWAYS_RETRY_BOUNDARY && now - beginTime > timeout; |
| | | } |
| | | |
| | | /** |
| | | * Init. |
| | | */ |
| | | public void init() { |
| | | retryRollbacking.scheduleAtFixedRate( |
| | | () -> SessionHolder.distributedLockAndExecute(RETRY_ROLLBACKING, this::handleRetryRollbacking), 0, |
| | | ROLLBACKING_RETRY_PERIOD, TimeUnit.MILLISECONDS); |
| | | |
| | | retryCommitting.scheduleAtFixedRate( |
| | | () -> SessionHolder.distributedLockAndExecute(RETRY_COMMITTING, this::handleRetryCommitting), 0, |
| | | COMMITTING_RETRY_PERIOD, TimeUnit.MILLISECONDS); |
| | | |
| | | asyncCommitting.scheduleAtFixedRate( |
| | | () -> SessionHolder.distributedLockAndExecute(ASYNC_COMMITTING, this::handleAsyncCommitting), 0, |
| | | ASYNC_COMMITTING_RETRY_PERIOD, TimeUnit.MILLISECONDS); |
| | | |
| | | timeoutCheck.scheduleAtFixedRate( |
| | | () -> SessionHolder.distributedLockAndExecute(TX_TIMEOUT_CHECK, this::timeoutCheck), 0, |
| | | TIMEOUT_RETRY_PERIOD, TimeUnit.MILLISECONDS); |
| | | |
| | | undoLogDelete.scheduleAtFixedRate( |
| | | () -> SessionHolder.distributedLockAndExecute(UNDOLOG_DELETE, this::undoLogDelete), |
| | | UNDO_LOG_DELAY_DELETE_PERIOD, UNDO_LOG_DELETE_PERIOD, TimeUnit.MILLISECONDS); |
| | | } |
| | | |
| | | @Override |
| | | public AbstractResultMessage onRequest(AbstractMessage request, RpcContext context) { |
| | | if (!(request instanceof AbstractTransactionRequestToTC)) { |
| | | throw new IllegalArgumentException(); |
| | | } |
| | | AbstractTransactionRequestToTC transactionRequest = (AbstractTransactionRequestToTC) request; |
| | | transactionRequest.setTCInboundHandler(this); |
| | | |
| | | return transactionRequest.handle(context); |
| | | } |
| | | |
| | | @Override |
| | | public void onResponse(AbstractResultMessage response, RpcContext context) { |
| | | if (!(response instanceof AbstractTransactionResponse)) { |
| | | throw new IllegalArgumentException(); |
| | | } |
| | | |
| | | } |
| | | |
| | | @Override |
| | | public void destroy() { |
| | | // 1. first shutdown timed task |
| | | retryRollbacking.shutdown(); |
| | | retryCommitting.shutdown(); |
| | | asyncCommitting.shutdown(); |
| | | timeoutCheck.shutdown(); |
| | | undoLogDelete.shutdown(); |
| | | if (branchRemoveExecutor != null) { |
| | | branchRemoveExecutor.shutdown(); |
| | | } |
| | | try { |
| | | retryRollbacking.awaitTermination(TIMED_TASK_SHUTDOWN_MAX_WAIT_MILLS, TimeUnit.MILLISECONDS); |
| | | retryCommitting.awaitTermination(TIMED_TASK_SHUTDOWN_MAX_WAIT_MILLS, TimeUnit.MILLISECONDS); |
| | | asyncCommitting.awaitTermination(TIMED_TASK_SHUTDOWN_MAX_WAIT_MILLS, TimeUnit.MILLISECONDS); |
| | | timeoutCheck.awaitTermination(TIMED_TASK_SHUTDOWN_MAX_WAIT_MILLS, TimeUnit.MILLISECONDS); |
| | | undoLogDelete.awaitTermination(TIMED_TASK_SHUTDOWN_MAX_WAIT_MILLS, TimeUnit.MILLISECONDS); |
| | | if (branchRemoveExecutor != null) { |
| | | branchRemoveExecutor.awaitTermination(TIMED_TASK_SHUTDOWN_MAX_WAIT_MILLS, TimeUnit.MILLISECONDS); |
| | | } |
| | | } catch (InterruptedException ignore) { |
| | | |
| | | } |
| | | // 2. second close netty flow |
| | | if (remotingServer instanceof NettyRemotingServer) { |
| | | ((NettyRemotingServer) remotingServer).destroy(); |
| | | } |
| | | // 3. third destroy SessionHolder |
| | | SessionHolder.destroy(); |
| | | instance = null; |
| | | } |
| | | |
| | | /** |
| | | * only used for mock test |
| | | * @param remotingServer |
| | | */ |
| | | public void setRemotingServer(RemotingServer remotingServer) { |
| | | this.remotingServer = remotingServer; |
| | | } |
| | | |
| | | /** |
| | | * the task to remove branchSession |
| | | */ |
| | | static class BranchRemoveTask implements Runnable { |
| | | |
| | | /** |
| | | * the globalSession |
| | | */ |
| | | private final GlobalSession globalSession; |
| | | |
| | | /** |
| | | * the branchSession |
| | | */ |
| | | private final BranchSession branchSession; |
| | | |
| | | /** |
| | | * If you use this construct, the task will remove the branchSession provided by the parameter |
| | | * @param globalSession the globalSession |
| | | */ |
| | | public BranchRemoveTask(GlobalSession globalSession, BranchSession branchSession) { |
| | | this.globalSession = globalSession; |
| | | if (branchSession == null) { |
| | | throw new IllegalArgumentException("BranchSession can`t be null!"); |
| | | } |
| | | this.branchSession = branchSession; |
| | | } |
| | | |
| | | /** |
| | | * If you use this construct, the task will remove all branchSession |
| | | * @param globalSession the globalSession |
| | | */ |
| | | public BranchRemoveTask(GlobalSession globalSession) { |
| | | this.globalSession = globalSession; |
| | | this.branchSession = null; |
| | | } |
| | | |
| | | @Override |
| | | public void run() { |
| | | if (globalSession == null) { |
| | | return; |
| | | } |
| | | try { |
| | | MDC.put(RootContext.MDC_KEY_XID, globalSession.getXid()); |
| | | if (branchSession != null) { |
| | | doRemove(branchSession); |
| | | } else { |
| | | globalSession.getSortedBranches().forEach(this::doRemove); |
| | | } |
| | | } catch (Exception unKnowException) { |
| | | LOGGER.error("Asynchronous delete branchSession error, xid = {}", globalSession.getXid(), unKnowException); |
| | | } finally { |
| | | MDC.remove(RootContext.MDC_KEY_XID); |
| | | } |
| | | } |
| | | |
| | | private void doRemove(BranchSession bt) { |
| | | try { |
| | | MDC.put(RootContext.MDC_KEY_BRANCH_ID, String.valueOf(bt.getBranchId())); |
| | | globalSession.removeBranch(bt); |
| | | LOGGER.info("Asynchronous delete branchSession successfully, xid = {}, branchId = {}", |
| | | globalSession.getXid(), bt.getBranchId()); |
| | | } catch (TransactionException transactionException) { |
| | | LOGGER.error("Asynchronous delete branchSession error, xid = {}, branchId = {}", |
| | | globalSession.getXid(), bt.getBranchId(), transactionException); |
| | | } finally { |
| | | MDC.remove(RootContext.MDC_KEY_BRANCH_ID); |
| | | } |
| | | } |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.coordinator; |
| | | |
| | | import io.seata.common.DefaultValues; |
| | | import io.seata.common.exception.NotSupportYetException; |
| | | import io.seata.common.loader.EnhancedServiceLoader; |
| | | import io.seata.common.util.CollectionUtils; |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.core.context.RootContext; |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.logger.StackTraceLogger; |
| | | import io.seata.core.model.BranchStatus; |
| | | import io.seata.core.model.BranchType; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.core.rpc.RemotingServer; |
| | | import io.seata.server.metrics.MetricsPublisher; |
| | | import io.seata.server.session.BranchSession; |
| | | import io.seata.server.session.GlobalSession; |
| | | import io.seata.server.session.SessionHelper; |
| | | import io.seata.server.session.SessionHolder; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.slf4j.MDC; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.concurrent.ConcurrentHashMap; |
| | | |
| | | import static io.seata.core.constants.ConfigurationKeys.XAER_NOTA_RETRY_TIMEOUT; |
| | | import static io.seata.server.session.BranchSessionHandler.CONTINUE; |
| | | |
| | | /** |
| | | * The type Default core. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public class DefaultCore implements Core { |
| | | |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(DefaultCore.class); |
| | | |
| | | private static final int RETRY_XAER_NOTA_TIMEOUT = ConfigurationFactory.getInstance().getInt(XAER_NOTA_RETRY_TIMEOUT, |
| | | DefaultValues.DEFAULT_XAER_NOTA_RETRY_TIMEOUT); |
| | | |
| | | private static Map<BranchType, AbstractCore> coreMap = new ConcurrentHashMap<>(); |
| | | |
| | | /** |
| | | * get the Default core. |
| | | * |
| | | * @param remotingServer the remoting server |
| | | */ |
| | | public DefaultCore(RemotingServer remotingServer) { |
| | | List<AbstractCore> allCore = EnhancedServiceLoader.loadAll(AbstractCore.class, |
| | | new Class[] {RemotingServer.class}, new Object[] {remotingServer}); |
| | | if (CollectionUtils.isNotEmpty(allCore)) { |
| | | for (AbstractCore core : allCore) { |
| | | coreMap.put(core.getHandleBranchType(), core); |
| | | } |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * get core |
| | | * |
| | | * @param branchType the branchType |
| | | * @return the core |
| | | */ |
| | | public AbstractCore getCore(BranchType branchType) { |
| | | AbstractCore core = coreMap.get(branchType); |
| | | if (core == null) { |
| | | throw new NotSupportYetException("unsupported type:" + branchType.name()); |
| | | } |
| | | return core; |
| | | } |
| | | |
| | | /** |
| | | * only for mock |
| | | * |
| | | * @param branchType the branchType |
| | | * @param core the core |
| | | */ |
| | | public void mockCore(BranchType branchType, AbstractCore core) { |
| | | coreMap.put(branchType, core); |
| | | } |
| | | |
| | | @Override |
| | | public Long branchRegister(BranchType branchType, String resourceId, String clientId, String xid, |
| | | String applicationData, String lockKeys) throws TransactionException { |
| | | return getCore(branchType).branchRegister(branchType, resourceId, clientId, xid, |
| | | applicationData, lockKeys); |
| | | } |
| | | |
| | | @Override |
| | | public void branchReport(BranchType branchType, String xid, long branchId, BranchStatus status, |
| | | String applicationData) throws TransactionException { |
| | | getCore(branchType).branchReport(branchType, xid, branchId, status, applicationData); |
| | | } |
| | | |
| | | @Override |
| | | public boolean lockQuery(BranchType branchType, String resourceId, String xid, String lockKeys) |
| | | throws TransactionException { |
| | | return getCore(branchType).lockQuery(branchType, resourceId, xid, lockKeys); |
| | | } |
| | | |
| | | @Override |
| | | public BranchStatus branchCommit(GlobalSession globalSession, BranchSession branchSession) throws TransactionException { |
| | | return getCore(branchSession.getBranchType()).branchCommit(globalSession, branchSession); |
| | | } |
| | | |
| | | @Override |
| | | public BranchStatus branchRollback(GlobalSession globalSession, BranchSession branchSession) throws TransactionException { |
| | | return getCore(branchSession.getBranchType()).branchRollback(globalSession, branchSession); |
| | | } |
| | | |
| | | @Override |
| | | public String begin(String applicationId, String transactionServiceGroup, String name, int timeout) |
| | | throws TransactionException { |
| | | GlobalSession session = GlobalSession.createGlobalSession(applicationId, transactionServiceGroup, name, timeout); |
| | | MDC.put(RootContext.MDC_KEY_XID, session.getXid()); |
| | | session.addSessionLifecycleListener(SessionHolder.getRootSessionManager()); |
| | | |
| | | session.begin(); |
| | | |
| | | // transaction start event |
| | | MetricsPublisher.postSessionDoingEvent(session, false); |
| | | |
| | | return session.getXid(); |
| | | } |
| | | |
| | | |
| | | |
| | | @Override |
| | | public GlobalStatus commit(String xid) throws TransactionException { |
| | | GlobalSession globalSession = SessionHolder.findGlobalSession(xid); |
| | | if (globalSession == null) { |
| | | return GlobalStatus.Finished; |
| | | } |
| | | |
| | | if (globalSession.isTimeout()) { |
| | | LOGGER.info("TC detected timeout, xid = {}", globalSession.getXid()); |
| | | return GlobalStatus.TimeoutRollbacking; |
| | | } |
| | | |
| | | globalSession.addSessionLifecycleListener(SessionHolder.getRootSessionManager()); |
| | | // just lock changeStatus |
| | | |
| | | boolean shouldCommit = SessionHolder.lockAndExecute(globalSession, () -> { |
| | | if (globalSession.getStatus() == GlobalStatus.Begin) { |
| | | // Highlight: Firstly, close the session, then no more branch can be registered. |
| | | globalSession.closeAndClean(); |
| | | if (globalSession.canBeCommittedAsync()) { |
| | | globalSession.asyncCommit(); |
| | | MetricsPublisher.postSessionDoneEvent(globalSession, GlobalStatus.Committed, false, false); |
| | | return false; |
| | | } else { |
| | | globalSession.changeGlobalStatus(GlobalStatus.Committing); |
| | | return true; |
| | | } |
| | | } |
| | | return false; |
| | | }); |
| | | |
| | | if (shouldCommit) { |
| | | boolean success = doGlobalCommit(globalSession, false); |
| | | //If successful and all remaining branches can be committed asynchronously, do async commit. |
| | | if (success && globalSession.hasBranch() && globalSession.canBeCommittedAsync()) { |
| | | globalSession.asyncCommit(); |
| | | return GlobalStatus.Committed; |
| | | } else { |
| | | return globalSession.getStatus(); |
| | | } |
| | | } else { |
| | | return globalSession.getStatus() == GlobalStatus.AsyncCommitting ? GlobalStatus.Committed : globalSession.getStatus(); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public boolean doGlobalCommit(GlobalSession globalSession, boolean retrying) throws TransactionException { |
| | | boolean success = true; |
| | | // start committing event |
| | | MetricsPublisher.postSessionDoingEvent(globalSession, retrying); |
| | | |
| | | if (globalSession.isSaga()) { |
| | | success = getCore(BranchType.SAGA).doGlobalCommit(globalSession, retrying); |
| | | } else { |
| | | Boolean result = SessionHelper.forEach(globalSession.getSortedBranches(), branchSession -> { |
| | | // if not retrying, skip the canBeCommittedAsync branches |
| | | if (!retrying && branchSession.canBeCommittedAsync()) { |
| | | return CONTINUE; |
| | | } |
| | | |
| | | BranchStatus currentStatus = branchSession.getStatus(); |
| | | if (currentStatus == BranchStatus.PhaseOne_Failed) { |
| | | SessionHelper.removeBranch(globalSession, branchSession, !retrying); |
| | | return CONTINUE; |
| | | } |
| | | try { |
| | | BranchStatus branchStatus = getCore(branchSession.getBranchType()).branchCommit(globalSession, branchSession); |
| | | if (isXaerNotaTimeout(globalSession,branchStatus)) { |
| | | LOGGER.info("Commit branch XAER_NOTA retry timeout, xid = {} branchId = {}", globalSession.getXid(), branchSession.getBranchId()); |
| | | branchStatus = BranchStatus.PhaseTwo_Committed; |
| | | } |
| | | switch (branchStatus) { |
| | | case PhaseTwo_Committed: |
| | | SessionHelper.removeBranch(globalSession, branchSession, !retrying); |
| | | LOGGER.info("Commit branch transaction successfully, xid = {} branchId = {}", globalSession.getXid(), branchSession.getBranchId()); |
| | | return CONTINUE; |
| | | case PhaseTwo_CommitFailed_Unretryable: |
| | | //not at branch |
| | | SessionHelper.endCommitFailed(globalSession, retrying); |
| | | LOGGER.error("Committing global transaction[{}] finally failed, caused by branch transaction[{}] commit failed.", globalSession.getXid(), branchSession.getBranchId()); |
| | | return false; |
| | | |
| | | default: |
| | | if (!retrying) { |
| | | globalSession.queueToRetryCommit(); |
| | | return false; |
| | | } |
| | | if (globalSession.canBeCommittedAsync()) { |
| | | LOGGER.error("Committing branch transaction[{}], status:{} and will retry later", |
| | | branchSession.getBranchId(), branchStatus); |
| | | return CONTINUE; |
| | | } else { |
| | | LOGGER.error( |
| | | "Committing global transaction[{}] failed, caused by branch transaction[{}] commit failed, will retry later.", globalSession.getXid(), branchSession.getBranchId()); |
| | | return false; |
| | | } |
| | | } |
| | | } catch (Exception ex) { |
| | | StackTraceLogger.error(LOGGER, ex, "Committing branch transaction exception: {}", |
| | | new String[] {branchSession.toString()}); |
| | | if (!retrying) { |
| | | globalSession.queueToRetryCommit(); |
| | | throw new TransactionException(ex); |
| | | } |
| | | } |
| | | return CONTINUE; |
| | | }); |
| | | // Return if the result is not null |
| | | if (result != null) { |
| | | return result; |
| | | } |
| | | //If has branch and not all remaining branches can be committed asynchronously, |
| | | //do print log and return false |
| | | if (globalSession.hasBranch() && !globalSession.canBeCommittedAsync()) { |
| | | LOGGER.info("Committing global transaction is NOT done, xid = {}.", globalSession.getXid()); |
| | | return false; |
| | | } |
| | | } |
| | | // if it succeeds and there is no branch, retrying=true is the asynchronous state when retrying. EndCommitted is |
| | | // executed to improve concurrency performance, and the global transaction ends.. |
| | | if (success && globalSession.getBranchSessions().isEmpty()) { |
| | | if (!retrying) { |
| | | //contains not AT branch |
| | | globalSession.setStatus(GlobalStatus.Committed); |
| | | } |
| | | SessionHelper.endCommitted(globalSession, retrying); |
| | | LOGGER.info("Committing global transaction is successfully done, xid = {}.", globalSession.getXid()); |
| | | } |
| | | return success; |
| | | } |
| | | |
| | | @Override |
| | | public GlobalStatus rollback(String xid) throws TransactionException { |
| | | GlobalSession globalSession = SessionHolder.findGlobalSession(xid); |
| | | if (globalSession == null) { |
| | | return GlobalStatus.Finished; |
| | | } |
| | | globalSession.addSessionLifecycleListener(SessionHolder.getRootSessionManager()); |
| | | // just lock changeStatus |
| | | boolean shouldRollBack = SessionHolder.lockAndExecute(globalSession, () -> { |
| | | globalSession.close(); // Highlight: Firstly, close the session, then no more branch can be registered. |
| | | if (globalSession.getStatus() == GlobalStatus.Begin) { |
| | | globalSession.changeGlobalStatus(GlobalStatus.Rollbacking); |
| | | return true; |
| | | } |
| | | return false; |
| | | }); |
| | | if (!shouldRollBack) { |
| | | return globalSession.getStatus(); |
| | | } |
| | | |
| | | boolean rollbackSuccess = doGlobalRollback(globalSession, false); |
| | | return rollbackSuccess ? GlobalStatus.Rollbacked : globalSession.getStatus(); |
| | | } |
| | | |
| | | @Override |
| | | public boolean doGlobalRollback(GlobalSession globalSession, boolean retrying) throws TransactionException { |
| | | boolean success = true; |
| | | // start rollback event |
| | | MetricsPublisher.postSessionDoingEvent(globalSession, retrying); |
| | | |
| | | if (globalSession.isSaga()) { |
| | | success = getCore(BranchType.SAGA).doGlobalRollback(globalSession, retrying); |
| | | } else { |
| | | Boolean result = SessionHelper.forEach(globalSession.getReverseSortedBranches(), branchSession -> { |
| | | BranchStatus currentBranchStatus = branchSession.getStatus(); |
| | | if (currentBranchStatus == BranchStatus.PhaseOne_Failed) { |
| | | SessionHelper.removeBranch(globalSession, branchSession, !retrying); |
| | | return CONTINUE; |
| | | } |
| | | try { |
| | | BranchStatus branchStatus = branchRollback(globalSession, branchSession); |
| | | if (isXaerNotaTimeout(globalSession, branchStatus)) { |
| | | LOGGER.info("Rollback branch XAER_NOTA retry timeout, xid = {} branchId = {}", globalSession.getXid(), branchSession.getBranchId()); |
| | | branchStatus = BranchStatus.PhaseTwo_Rollbacked; |
| | | } |
| | | switch (branchStatus) { |
| | | case PhaseTwo_Rollbacked: |
| | | SessionHelper.removeBranch(globalSession, branchSession, !retrying); |
| | | LOGGER.info("Rollback branch transaction successfully, xid = {} branchId = {}", globalSession.getXid(), branchSession.getBranchId()); |
| | | return CONTINUE; |
| | | case PhaseTwo_RollbackFailed_Unretryable: |
| | | SessionHelper.endRollbackFailed(globalSession, retrying); |
| | | LOGGER.error("Rollback branch transaction fail and stop retry, xid = {} branchId = {}", globalSession.getXid(), branchSession.getBranchId()); |
| | | return false; |
| | | default: |
| | | LOGGER.error("Rollback branch transaction fail and will retry, xid = {} branchId = {}", globalSession.getXid(), branchSession.getBranchId()); |
| | | if (!retrying) { |
| | | globalSession.queueToRetryRollback(); |
| | | } |
| | | return false; |
| | | } |
| | | } catch (Exception ex) { |
| | | StackTraceLogger.error(LOGGER, ex, |
| | | "Rollback branch transaction exception, xid = {} branchId = {} exception = {}", |
| | | new String[] {globalSession.getXid(), String.valueOf(branchSession.getBranchId()), ex.getMessage()}); |
| | | if (!retrying) { |
| | | globalSession.queueToRetryRollback(); |
| | | } |
| | | throw new TransactionException(ex); |
| | | } |
| | | }); |
| | | // Return if the result is not null |
| | | if (result != null) { |
| | | return result; |
| | | } |
| | | } |
| | | |
| | | // In db mode, lock and branch data residual problems may occur. |
| | | // Therefore, execution needs to be delayed here and cannot be executed synchronously. |
| | | if (success) { |
| | | SessionHelper.endRollbacked(globalSession, retrying); |
| | | LOGGER.info("Rollback global transaction successfully, xid = {}.", globalSession.getXid()); |
| | | } |
| | | return success; |
| | | } |
| | | |
| | | @Override |
| | | public GlobalStatus getStatus(String xid) throws TransactionException { |
| | | GlobalSession globalSession = SessionHolder.findGlobalSession(xid, false); |
| | | if (globalSession == null) { |
| | | return GlobalStatus.Finished; |
| | | } else { |
| | | return globalSession.getStatus(); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public GlobalStatus globalReport(String xid, GlobalStatus globalStatus) throws TransactionException { |
| | | GlobalSession globalSession = SessionHolder.findGlobalSession(xid); |
| | | if (globalSession == null) { |
| | | return globalStatus; |
| | | } |
| | | globalSession.addSessionLifecycleListener(SessionHolder.getRootSessionManager()); |
| | | doGlobalReport(globalSession, xid, globalStatus); |
| | | return globalSession.getStatus(); |
| | | } |
| | | |
| | | @Override |
| | | public void doGlobalReport(GlobalSession globalSession, String xid, GlobalStatus globalStatus) throws TransactionException { |
| | | if (globalSession.isSaga()) { |
| | | getCore(BranchType.SAGA).doGlobalReport(globalSession, xid, globalStatus); |
| | | } |
| | | } |
| | | |
| | | private boolean isXaerNotaTimeout(GlobalSession globalSession, BranchStatus branchStatus) { |
| | | if (BranchStatus.PhaseTwo_CommitFailed_XAER_NOTA_Retryable.equals(branchStatus) || |
| | | BranchStatus.PhaseTwo_RollbackFailed_XAER_NOTA_Retryable.equals(branchStatus)) { |
| | | return System.currentTimeMillis() > globalSession.getBeginTime() + globalSession.getTimeout() + |
| | | Math.max(RETRY_XAER_NOTA_TIMEOUT, globalSession.getTimeout()); |
| | | } else { |
| | | return false; |
| | | } |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.coordinator; |
| | | |
| | | import io.seata.core.model.ResourceManagerOutbound; |
| | | import io.seata.core.model.TransactionManager; |
| | | |
| | | /** |
| | | * receive inbound request from RM or TM. |
| | | * |
| | | * @author zhangchenghui.dev@gmail.com |
| | | * @since 1.1.0 |
| | | */ |
| | | public interface TransactionCoordinatorInbound extends ResourceManagerOutbound, TransactionManager { |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.coordinator; |
| | | |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.model.BranchStatus; |
| | | import io.seata.server.session.BranchSession; |
| | | import io.seata.server.session.GlobalSession; |
| | | |
| | | /** |
| | | * send outbound request to RM. |
| | | * |
| | | * @author zhangchenghui.dev@gmail.com |
| | | * @since 1.1.0 |
| | | */ |
| | | public interface TransactionCoordinatorOutbound { |
| | | |
| | | /** |
| | | * Commit a branch transaction. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param branchSession the branch session |
| | | * @return Status of the branch after committing. |
| | | * @throws TransactionException Any exception that fails this will be wrapped with TransactionException and thrown |
| | | * out. |
| | | */ |
| | | BranchStatus branchCommit(GlobalSession globalSession, BranchSession branchSession) throws TransactionException; |
| | | |
| | | /** |
| | | * Rollback a branch transaction. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param branchSession the branch session |
| | | * @return Status of the branch after rollbacking. |
| | | * @throws TransactionException Any exception that fails this will be wrapped with TransactionException and thrown |
| | | * out. |
| | | */ |
| | | BranchStatus branchRollback(GlobalSession globalSession, BranchSession branchSession) throws TransactionException; |
| | | |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.env; |
| | | |
| | | import io.seata.common.util.NumberUtils; |
| | | import io.seata.common.util.StringUtils; |
| | | |
| | | import static io.seata.core.constants.ConfigurationKeys.ENV_SEATA_PORT_KEY; |
| | | |
| | | /** |
| | | * @author xingfudeshi@gmail.com |
| | | * @author wang.liang |
| | | */ |
| | | public class ContainerHelper { |
| | | |
| | | private static final String C_GROUP_PATH = "/proc/1/cgroup"; |
| | | private static final String DOCKER_PATH = "/docker"; |
| | | private static final String KUBEPODS_PATH = "/kubepods"; |
| | | |
| | | private static final String ENV_SYSTEM_KEY = "SEATA_ENV"; |
| | | private static final String ENV_SEATA_IP_KEY = "SEATA_IP"; |
| | | private static final String ENV_SERVER_NODE_KEY = "SERVER_NODE"; |
| | | private static final String ENV_STORE_MODE_KEY = "STORE_MODE"; |
| | | private static final String ENV_LOCK_STORE_MODE_KEY = "LOCK_STORE_MODE"; |
| | | private static final String ENV_SESSION_STORE_MODE_KEY = "SESSION_STORE_MODE"; |
| | | |
| | | /** |
| | | * Gets env from container. |
| | | * |
| | | * @return the env |
| | | */ |
| | | public static String getEnv() { |
| | | return StringUtils.trimToNull(System.getenv(ENV_SYSTEM_KEY)); |
| | | } |
| | | |
| | | /** |
| | | * Gets host from container. |
| | | * |
| | | * @return the env |
| | | */ |
| | | public static String getHost() { |
| | | return StringUtils.trimToNull(System.getenv(ENV_SEATA_IP_KEY)); |
| | | } |
| | | |
| | | /** |
| | | * Gets port from container. |
| | | * |
| | | * @return the env |
| | | */ |
| | | public static int getPort() { |
| | | return NumberUtils.toInt(System.getenv(ENV_SEATA_PORT_KEY), 0); |
| | | } |
| | | |
| | | /** |
| | | * Gets server node from container. |
| | | * |
| | | * @return the env |
| | | */ |
| | | public static Long getServerNode() { |
| | | return NumberUtils.toLong(System.getenv(ENV_SERVER_NODE_KEY)); |
| | | } |
| | | |
| | | /** |
| | | * Gets store mode from container. |
| | | * |
| | | * @return the env |
| | | */ |
| | | public static String getStoreMode() { |
| | | return StringUtils.trimToNull(System.getenv(ENV_STORE_MODE_KEY)); |
| | | } |
| | | |
| | | /** |
| | | * Gets session store mode from container. |
| | | * |
| | | * @return the env |
| | | */ |
| | | public static String getSessionStoreMode() { |
| | | return StringUtils.trimToNull(System.getenv(ENV_SESSION_STORE_MODE_KEY)); |
| | | } |
| | | |
| | | /** |
| | | * Gets lock store mode from container. |
| | | * |
| | | * @return the env |
| | | */ |
| | | public static String getLockStoreMode() { |
| | | return StringUtils.trimToNull(System.getenv(ENV_LOCK_STORE_MODE_KEY)); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.env; |
| | | |
| | | import io.seata.common.util.CollectionUtils; |
| | | import io.seata.common.util.MapUtil; |
| | | import io.seata.common.util.NumberUtils; |
| | | import io.seata.common.util.StringUtils; |
| | | import org.springframework.util.ResourceUtils; |
| | | import org.yaml.snakeyaml.Yaml; |
| | | |
| | | import java.io.*; |
| | | import java.util.Map; |
| | | import java.util.Properties; |
| | | |
| | | /** |
| | | * @author wang.liang |
| | | */ |
| | | public class PortHelper { |
| | | |
| | | public static int getPortFromEnvOrStartup(String[] args) { |
| | | int port = 0; |
| | | if (args != null && args.length >= 2) { |
| | | for (int i = 0; i < args.length; ++i) { |
| | | if ("-p".equalsIgnoreCase(args[i]) && i < args.length - 1) { |
| | | port = NumberUtils.toInt(args[i + 1], 0); |
| | | } |
| | | } |
| | | } |
| | | if (port == 0) { |
| | | port = ContainerHelper.getPort(); |
| | | } |
| | | return port; |
| | | } |
| | | |
| | | /** |
| | | * get config from configFile |
| | | * -Dspring.config.location > classpath:application.properties > classpath:application.yml |
| | | * |
| | | * @return the port |
| | | * @throws IOException the io exception |
| | | */ |
| | | public static int getPortFromConfigFile() throws IOException { |
| | | |
| | | int port = 8080; |
| | | File configFile = null; |
| | | File startupConfigFile = getConfigFromStartup(); |
| | | if (null != startupConfigFile) { |
| | | configFile = startupConfigFile; |
| | | } else { |
| | | try { |
| | | File propertiesFile = ResourceUtils.getFile("classpath:application.properties"); |
| | | configFile = propertiesFile; |
| | | } catch (FileNotFoundException exx) { |
| | | File ymlFile = ResourceUtils.getFile("classpath:application.yml"); |
| | | configFile = ymlFile; |
| | | } |
| | | } |
| | | InputStream inputStream = null; |
| | | try { |
| | | inputStream = new FileInputStream(configFile); |
| | | String fileName = configFile.getName(); |
| | | String portNum = null; |
| | | if (fileName.endsWith("yml")) { |
| | | Map<String, Object> yamlMap = new Yaml().load(inputStream); |
| | | Map<String, Object> configMap = MapUtil.getFlattenedMap(yamlMap); |
| | | if (CollectionUtils.isNotEmpty(configMap)) { |
| | | Object serverPort = configMap.get("server.port"); |
| | | if (null != serverPort) { |
| | | portNum = serverPort.toString(); |
| | | } |
| | | } |
| | | } else { |
| | | Properties properties = new Properties(); |
| | | properties.load(inputStream); |
| | | portNum = properties.getProperty("server.port"); |
| | | } |
| | | if (null != portNum) { |
| | | try { |
| | | port = Integer.parseInt(portNum); |
| | | } catch (NumberFormatException exx) { |
| | | //ignore |
| | | } |
| | | } |
| | | } finally { |
| | | if (null != inputStream) { |
| | | inputStream.close(); |
| | | } |
| | | } |
| | | return port; |
| | | |
| | | } |
| | | private static File getConfigFromStartup() { |
| | | |
| | | String configLocation = System.getProperty("spring.config.location"); |
| | | if (StringUtils.isNotBlank(configLocation)) { |
| | | try { |
| | | File configFile = ResourceUtils.getFile(configLocation); |
| | | if (!configFile.isFile()) { |
| | | return null; |
| | | } |
| | | String fileName = configFile.getName(); |
| | | if (!(fileName.endsWith("yml") || fileName.endsWith("properties"))) { |
| | | return null; |
| | | } |
| | | return configFile; |
| | | } catch (FileNotFoundException e) { |
| | | return null; |
| | | } |
| | | } |
| | | return null; |
| | | |
| | | } |
| | | |
| | | |
| | | } |
| | | |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.event; |
| | | |
| | | import io.seata.core.event.EventBus; |
| | | import io.seata.core.event.GuavaEventBus; |
| | | |
| | | /** |
| | | * Manager hold the singleton event bus instance. |
| | | * |
| | | * @author zhengyangyong |
| | | */ |
| | | public class EventBusManager { |
| | | private static class SingletonHolder { |
| | | private static EventBus INSTANCE = new GuavaEventBus("tc",true); |
| | | } |
| | | |
| | | public static EventBus get() { |
| | | return SingletonHolder.INSTANCE; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.lock; |
| | | |
| | | import io.seata.common.XID; |
| | | import io.seata.common.util.CollectionUtils; |
| | | import io.seata.common.util.StringUtils; |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.lock.Locker; |
| | | import io.seata.core.lock.RowLock; |
| | | import io.seata.core.model.LockStatus; |
| | | import io.seata.server.session.BranchSession; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * The type Abstract lock manager. |
| | | * |
| | | * @author zhangsen |
| | | */ |
| | | public abstract class AbstractLockManager implements LockManager { |
| | | |
| | | /** |
| | | * The constant LOGGER. |
| | | */ |
| | | protected static final Logger LOGGER = LoggerFactory.getLogger(AbstractLockManager.class); |
| | | |
| | | @Override |
| | | public boolean acquireLock(BranchSession branchSession) throws TransactionException { |
| | | return acquireLock(branchSession, true, false); |
| | | } |
| | | |
| | | @Override |
| | | public boolean acquireLock(BranchSession branchSession, boolean autoCommit, boolean skipCheckLock) throws TransactionException { |
| | | if (branchSession == null) { |
| | | throw new IllegalArgumentException("branchSession can't be null for memory/file locker."); |
| | | } |
| | | String lockKey = branchSession.getLockKey(); |
| | | if (StringUtils.isNullOrEmpty(lockKey)) { |
| | | // no lock |
| | | return true; |
| | | } |
| | | // get locks of branch |
| | | List<RowLock> locks = collectRowLocks(branchSession); |
| | | if (CollectionUtils.isEmpty(locks)) { |
| | | // no lock |
| | | return true; |
| | | } |
| | | return getLocker(branchSession).acquireLock(locks, autoCommit, skipCheckLock); |
| | | } |
| | | |
| | | @Override |
| | | public boolean releaseLock(BranchSession branchSession) throws TransactionException { |
| | | if (branchSession == null) { |
| | | throw new IllegalArgumentException("branchSession can't be null for memory/file locker."); |
| | | } |
| | | List<RowLock> locks = collectRowLocks(branchSession); |
| | | try { |
| | | return getLocker(branchSession).releaseLock(locks); |
| | | } catch (Exception t) { |
| | | LOGGER.error("unLock error, branchSession:{}", branchSession, t); |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public boolean isLockable(String xid, String resourceId, String lockKey) throws TransactionException { |
| | | if (StringUtils.isBlank(lockKey)) { |
| | | // no lock |
| | | return true; |
| | | } |
| | | List<RowLock> locks = collectRowLocks(lockKey, resourceId, xid); |
| | | try { |
| | | return getLocker().isLockable(locks); |
| | | } catch (Exception t) { |
| | | LOGGER.error("isLockable error, xid:{} resourceId:{}, lockKey:{}", xid, resourceId, lockKey, t); |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public void cleanAllLocks() throws TransactionException { |
| | | getLocker().cleanAllLocks(); |
| | | } |
| | | |
| | | /** |
| | | * Gets locker. |
| | | * |
| | | * @return the locker |
| | | */ |
| | | protected Locker getLocker() { |
| | | return getLocker(null); |
| | | } |
| | | |
| | | /** |
| | | * Gets locker. |
| | | * |
| | | * @param branchSession the branch session |
| | | * @return the locker |
| | | */ |
| | | protected abstract Locker getLocker(BranchSession branchSession); |
| | | |
| | | @Override |
| | | public List<RowLock> collectRowLocks(BranchSession branchSession) { |
| | | if (branchSession == null || StringUtils.isBlank(branchSession.getLockKey())) { |
| | | return Collections.emptyList(); |
| | | } |
| | | |
| | | String lockKey = branchSession.getLockKey(); |
| | | String resourceId = branchSession.getResourceId(); |
| | | String xid = branchSession.getXid(); |
| | | long transactionId = branchSession.getTransactionId(); |
| | | long branchId = branchSession.getBranchId(); |
| | | |
| | | return collectRowLocks(lockKey, resourceId, xid, transactionId, branchId); |
| | | } |
| | | |
| | | /** |
| | | * Collect row locks list. |
| | | * |
| | | * @param lockKey the lock key |
| | | * @param resourceId the resource id |
| | | * @param xid the xid |
| | | * @return the list |
| | | */ |
| | | protected List<RowLock> collectRowLocks(String lockKey, String resourceId, String xid) { |
| | | return collectRowLocks(lockKey, resourceId, xid, XID.getTransactionId(xid), null); |
| | | } |
| | | |
| | | /** |
| | | * Collect row locks list. |
| | | * |
| | | * @param lockKey the lock key |
| | | * @param resourceId the resource id |
| | | * @param xid the xid |
| | | * @param transactionId the transaction id |
| | | * @param branchID the branch id |
| | | * @return the list |
| | | */ |
| | | protected List<RowLock> collectRowLocks(String lockKey, String resourceId, String xid, Long transactionId, |
| | | Long branchID) { |
| | | List<RowLock> locks = new ArrayList<>(); |
| | | |
| | | String[] tableGroupedLockKeys = lockKey.split(";"); |
| | | for (String tableGroupedLockKey : tableGroupedLockKeys) { |
| | | int idx = tableGroupedLockKey.indexOf(":"); |
| | | if (idx < 0) { |
| | | return locks; |
| | | } |
| | | String tableName = tableGroupedLockKey.substring(0, idx); |
| | | String mergedPKs = tableGroupedLockKey.substring(idx + 1); |
| | | if (StringUtils.isBlank(mergedPKs)) { |
| | | return locks; |
| | | } |
| | | String[] pks = mergedPKs.split(","); |
| | | if (pks == null || pks.length == 0) { |
| | | return locks; |
| | | } |
| | | for (String pk : pks) { |
| | | if (StringUtils.isNotBlank(pk)) { |
| | | RowLock rowLock = new RowLock(); |
| | | rowLock.setXid(xid); |
| | | rowLock.setTransactionId(transactionId); |
| | | rowLock.setBranchId(branchID); |
| | | rowLock.setTableName(tableName); |
| | | rowLock.setPk(pk); |
| | | rowLock.setResourceId(resourceId); |
| | | locks.add(rowLock); |
| | | } |
| | | } |
| | | } |
| | | return locks; |
| | | } |
| | | |
| | | @Override |
| | | public void updateLockStatus(String xid, LockStatus lockStatus) { |
| | | this.getLocker().updateLockStatus(xid, lockStatus); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.lock; |
| | | |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.lock.RowLock; |
| | | import io.seata.core.model.LockStatus; |
| | | import io.seata.server.session.BranchSession; |
| | | import io.seata.server.session.GlobalSession; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * The interface Lock manager. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public interface LockManager { |
| | | |
| | | /** |
| | | * Acquire lock boolean. |
| | | * |
| | | * @param branchSession the branch session |
| | | * @return the boolean |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | boolean acquireLock(BranchSession branchSession) throws TransactionException; |
| | | |
| | | /** |
| | | * Acquire lock boolean. |
| | | * |
| | | * @param branchSession the branch session |
| | | * @param autoCommit the auto commit |
| | | * @param skipCheckLock whether skip check lock or not |
| | | * @return the boolean |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | boolean acquireLock(BranchSession branchSession, boolean autoCommit, boolean skipCheckLock) throws TransactionException; |
| | | |
| | | /** |
| | | * Un lock boolean. |
| | | * |
| | | * @param branchSession the branch session |
| | | * @return the boolean |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | boolean releaseLock(BranchSession branchSession) throws TransactionException; |
| | | |
| | | /** |
| | | * Un lock boolean. |
| | | * |
| | | * @param globalSession the global session |
| | | * @return the boolean |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | boolean releaseGlobalSessionLock(GlobalSession globalSession) throws TransactionException; |
| | | |
| | | /** |
| | | * Is lockable boolean. |
| | | * |
| | | * @param xid the xid |
| | | * @param resourceId the resource id |
| | | * @param lockKey the lock key |
| | | * @return the boolean |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | boolean isLockable(String xid, String resourceId, String lockKey) throws TransactionException; |
| | | |
| | | /** |
| | | * Clean all locks. |
| | | * |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | void cleanAllLocks() throws TransactionException; |
| | | |
| | | /** |
| | | * Collect row locks list.` |
| | | * |
| | | * @param branchSession the branch session |
| | | * @return the list |
| | | */ |
| | | List<RowLock> collectRowLocks(BranchSession branchSession); |
| | | |
| | | /** |
| | | * update lock status. |
| | | * @param xid the xid |
| | | * @param lockStatus the lock status |
| | | * @throws TransactionException the transaction exception |
| | | * |
| | | */ |
| | | void updateLockStatus(String xid, LockStatus lockStatus) throws TransactionException; |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.lock; |
| | | |
| | | import io.seata.common.loader.EnhancedServiceLoader; |
| | | import io.seata.config.Configuration; |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.server.store.StoreConfig; |
| | | import io.seata.server.store.StoreConfig.LockMode; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | |
| | | /** |
| | | * The type Lock manager factory. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public class LockerManagerFactory { |
| | | |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(LockerManagerFactory.class); |
| | | private static final Configuration CONFIG = ConfigurationFactory.getInstance(); |
| | | |
| | | /** |
| | | * the lock manager |
| | | */ |
| | | private static volatile LockManager LOCK_MANAGER; |
| | | |
| | | /** |
| | | * Get lock manager. |
| | | * |
| | | * @return the lock manager |
| | | */ |
| | | public static LockManager getLockManager() { |
| | | if (LOCK_MANAGER == null) { |
| | | init(); |
| | | } |
| | | return LOCK_MANAGER; |
| | | } |
| | | |
| | | public static void init() { |
| | | init(null); |
| | | } |
| | | |
| | | public static void init(LockMode lockMode) { |
| | | if (LOCK_MANAGER == null) { |
| | | synchronized (LockerManagerFactory.class) { |
| | | if (LOCK_MANAGER == null) { |
| | | if (null == lockMode) { |
| | | lockMode = StoreConfig.getLockMode(); |
| | | } |
| | | LOGGER.info("use lock store mode: {}", lockMode.getName()); |
| | | //if not exist the lock mode, throw exception |
| | | if (null != StoreConfig.StoreMode.get(lockMode.name())) { |
| | | LOCK_MANAGER = EnhancedServiceLoader.load(LockManager.class, lockMode.getName()); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.lock.distributed; |
| | | |
| | | import io.seata.common.loader.EnhancedServiceLoader; |
| | | import io.seata.common.loader.EnhancedServiceNotFoundException; |
| | | import io.seata.core.store.DefaultDistributedLocker; |
| | | import io.seata.core.store.DistributedLocker; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | |
| | | /** |
| | | * Distributed locker factory |
| | | * @author zhongxiang.wang |
| | | */ |
| | | public class DistributedLockerFactory { |
| | | |
| | | /** |
| | | * The constant LOGGER. |
| | | */ |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(DistributedLockerFactory.class); |
| | | |
| | | private static volatile DistributedLocker DISTRIBUTED_LOCKER = null; |
| | | |
| | | /** |
| | | * Get the distributed locker by lockerType |
| | | * |
| | | * @param lockerType the locker type |
| | | * @return the distributed locker |
| | | */ |
| | | public static DistributedLocker getDistributedLocker(String lockerType) { |
| | | if (DISTRIBUTED_LOCKER == null) { |
| | | synchronized (DistributedLocker.class) { |
| | | if (DISTRIBUTED_LOCKER == null) { |
| | | DistributedLocker distributedLocker = null; |
| | | try { |
| | | if (!"file".equals(lockerType)) { |
| | | distributedLocker = EnhancedServiceLoader.load(DistributedLocker.class, lockerType); |
| | | } |
| | | } catch (EnhancedServiceNotFoundException ex) { |
| | | LOGGER.error("Get distributed locker failed: {}", ex.getMessage(), ex); |
| | | } |
| | | if (distributedLocker == null) { |
| | | distributedLocker = new DefaultDistributedLocker(); |
| | | } |
| | | DISTRIBUTED_LOCKER = distributedLocker; |
| | | } |
| | | } |
| | | } |
| | | return DISTRIBUTED_LOCKER; |
| | | } |
| | | |
| | | public static void cleanLocker() { |
| | | DISTRIBUTED_LOCKER = null; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.logging.listener; |
| | | |
| | | import ch.qos.logback.classic.Level; |
| | | import ch.qos.logback.classic.Logger; |
| | | import ch.qos.logback.classic.LoggerContext; |
| | | import ch.qos.logback.classic.spi.LoggerContextListener; |
| | | import ch.qos.logback.core.Context; |
| | | import ch.qos.logback.core.spi.ContextAwareBase; |
| | | import ch.qos.logback.core.spi.LifeCycle; |
| | | import io.seata.core.constants.ConfigurationKeys; |
| | | |
| | | /** |
| | | * @author wang.liang |
| | | */ |
| | | public class SystemPropertyLoggerContextListener extends ContextAwareBase implements LoggerContextListener, LifeCycle { |
| | | |
| | | private boolean started = false; |
| | | |
| | | @Override |
| | | public void start() { |
| | | if (started) { |
| | | return; |
| | | } |
| | | |
| | | Context context = getContext(); |
| | | context.putProperty("RPC_PORT", System.getProperty(ConfigurationKeys.SERVER_SERVICE_PORT_CAMEL)); |
| | | |
| | | started = true; |
| | | } |
| | | |
| | | @Override |
| | | public void stop() { |
| | | } |
| | | |
| | | @Override |
| | | public boolean isStarted() { |
| | | return started; |
| | | } |
| | | |
| | | @Override |
| | | public boolean isResetResistant() { |
| | | return true; |
| | | } |
| | | |
| | | @Override |
| | | public void onStart(LoggerContext context) { |
| | | } |
| | | |
| | | @Override |
| | | public void onReset(LoggerContext context) { |
| | | } |
| | | |
| | | @Override |
| | | public void onStop(LoggerContext context) { |
| | | } |
| | | |
| | | @Override |
| | | public void onLevelChange(Logger logger, Level level) { |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.logging.logback; |
| | | |
| | | import ch.qos.logback.classic.pattern.ExtendedThrowableProxyConverter; |
| | | import ch.qos.logback.classic.spi.IThrowableProxy; |
| | | import ch.qos.logback.core.CoreConstants; |
| | | |
| | | /** |
| | | * {@link ExtendedThrowableProxyConverter} that adds some additional whitespace around the |
| | | * stack trace. |
| | | * Copied from spring-boot-xxx.jar by wang.liang |
| | | * @author Phillip Webb |
| | | */ |
| | | public class ExtendedWhitespaceThrowableProxyConverter extends ExtendedThrowableProxyConverter { |
| | | |
| | | @Override |
| | | protected String throwableProxyToString(IThrowableProxy tp) { |
| | | return "==>" + CoreConstants.LINE_SEPARATOR + super.throwableProxyToString(tp) |
| | | + "<==" + CoreConstants.LINE_SEPARATOR + CoreConstants.LINE_SEPARATOR; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.logging.logback.appender; |
| | | |
| | | import net.logstash.logback.composite.JsonProvider; |
| | | import net.logstash.logback.composite.JsonProviders; |
| | | import net.logstash.logback.encoder.LogstashEncoder; |
| | | |
| | | import java.util.ArrayList; |
| | | |
| | | /** |
| | | * The type Enhanced logstash encoder |
| | | * |
| | | * @author wang.liang |
| | | * @since 1.5.0 |
| | | */ |
| | | public class EnhancedLogstashEncoder extends LogstashEncoder { |
| | | |
| | | /** |
| | | * set exclude provider |
| | | * |
| | | * @param excludedProviderClassName the excluded provider class name |
| | | */ |
| | | public void setExcludeProvider(String excludedProviderClassName) { |
| | | JsonProviders<?> providers = getFormatter().getProviders(); |
| | | for (JsonProvider<?> provider : new ArrayList<>(providers.getProviders())) { |
| | | if (provider.getClass().getName().equals(excludedProviderClassName)) { |
| | | providers.removeProvider((JsonProvider) provider); |
| | | } |
| | | } |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.metrics; |
| | | |
| | | import io.seata.metrics.Id; |
| | | import io.seata.metrics.IdConstants; |
| | | |
| | | /** |
| | | * Constants for meter id in tc |
| | | * |
| | | * @author zhengyangyong |
| | | */ |
| | | public interface MeterIdConstants { |
| | | Id COUNTER_ACTIVE = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_COUNTER) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_ACTIVE); |
| | | |
| | | Id COUNTER_COMMITTED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_COUNTER) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_COMMITTED); |
| | | |
| | | Id COUNTER_ROLLBACKED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_COUNTER) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_ROLLBACKED); |
| | | |
| | | Id COUNTER_AFTER_ROLLBACKED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_COUNTER) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_AFTER_ROLLBACKED_KEY); |
| | | |
| | | Id COUNTER_AFTER_COMMITTED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_COUNTER) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_AFTER_COMMITTED_KEY); |
| | | |
| | | |
| | | Id SUMMARY_COMMITTED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_SUMMARY) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_COMMITTED); |
| | | |
| | | Id SUMMARY_ROLLBACKED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_SUMMARY) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_ROLLBACKED); |
| | | |
| | | Id SUMMARY_FAILED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_SUMMARY) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_FAILED); |
| | | |
| | | Id SUMMARY_TWO_PHASE_TIMEOUT = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_SUMMARY) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_TWO_PHASE_TIMEOUT); |
| | | |
| | | Id SUMMARY_AFTER_ROLLBACKED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_SUMMARY) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_AFTER_ROLLBACKED_KEY); |
| | | |
| | | Id SUMMARY_AFTER_COMMITTED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_SUMMARY) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_AFTER_COMMITTED_KEY); |
| | | |
| | | Id TIMER_COMMITTED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_TIMER) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_COMMITTED); |
| | | |
| | | Id TIMER_ROLLBACK = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_TIMER) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_ROLLBACKED); |
| | | |
| | | Id TIMER_FAILED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_TIMER) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_FAILED); |
| | | |
| | | Id TIMER_AFTER_ROLLBACKED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_TIMER) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_AFTER_ROLLBACKED_KEY); |
| | | |
| | | Id TIMER_AFTER_COMMITTED = new Id(IdConstants.SEATA_TRANSACTION) |
| | | .withTag(IdConstants.ROLE_KEY, IdConstants.ROLE_VALUE_TC) |
| | | .withTag(IdConstants.METER_KEY, IdConstants.METER_VALUE_TIMER) |
| | | .withTag(IdConstants.STATUS_KEY, IdConstants.STATUS_VALUE_AFTER_COMMITTED_KEY); |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.metrics; |
| | | |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.core.constants.ConfigurationKeys; |
| | | import io.seata.metrics.exporter.Exporter; |
| | | import io.seata.metrics.exporter.ExporterFactory; |
| | | import io.seata.metrics.registry.Registry; |
| | | import io.seata.metrics.registry.RegistryFactory; |
| | | import io.seata.server.event.EventBusManager; |
| | | |
| | | import java.util.List; |
| | | |
| | | import static io.seata.common.DefaultValues.DEFAULT_METRICS_ENABLED; |
| | | |
| | | /** |
| | | * Metrics manager for init |
| | | * |
| | | * @author zhengyangyong |
| | | */ |
| | | public class MetricsManager { |
| | | private static class SingletonHolder { |
| | | private static MetricsManager INSTANCE = new MetricsManager(); |
| | | } |
| | | |
| | | public static final MetricsManager get() { |
| | | return SingletonHolder.INSTANCE; |
| | | } |
| | | |
| | | private Registry registry; |
| | | |
| | | public Registry getRegistry() { |
| | | return registry; |
| | | } |
| | | |
| | | public void init() { |
| | | boolean enabled = ConfigurationFactory.getInstance().getBoolean( |
| | | ConfigurationKeys.METRICS_PREFIX + ConfigurationKeys.METRICS_ENABLED, DEFAULT_METRICS_ENABLED); |
| | | if (enabled) { |
| | | registry = RegistryFactory.getInstance(); |
| | | if (registry != null) { |
| | | List<Exporter> exporters = ExporterFactory.getInstanceList(); |
| | | //only at least one metrics exporter implement had imported in pom then need register MetricsSubscriber |
| | | if (exporters.size() != 0) { |
| | | exporters.forEach(exporter -> exporter.setRegistry(registry)); |
| | | EventBusManager.get().register(new MetricsSubscriber(registry)); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.metrics; |
| | | |
| | | import io.seata.core.event.EventBus; |
| | | import io.seata.core.event.GlobalTransactionEvent; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.server.event.EventBusManager; |
| | | import io.seata.server.session.GlobalSession; |
| | | |
| | | /** |
| | | * The type Metrics publisher. |
| | | * |
| | | * @author slievrly |
| | | */ |
| | | public class MetricsPublisher { |
| | | |
| | | private static final EventBus EVENT_BUS = EventBusManager.get(); |
| | | |
| | | /** |
| | | * post end event |
| | | * |
| | | * @param globalSession the global session |
| | | * @param retryGlobal the retry global |
| | | * @param retryBranch the retry branch |
| | | */ |
| | | public static void postSessionDoneEvent(final GlobalSession globalSession, boolean retryGlobal, |
| | | boolean retryBranch) { |
| | | postSessionDoneEvent(globalSession, globalSession.getStatus(), retryGlobal, retryBranch); |
| | | } |
| | | |
| | | /** |
| | | * post end event (force specified state) |
| | | * |
| | | * @param globalSession the global session |
| | | * @param status the global status |
| | | * @param retryGlobal the retry global |
| | | * @param retryBranch the retry branch |
| | | */ |
| | | public static void postSessionDoneEvent(final GlobalSession globalSession, GlobalStatus status, boolean retryGlobal, |
| | | boolean retryBranch) { |
| | | postSessionDoneEvent(globalSession, status.name(), retryGlobal, globalSession.getBeginTime(), retryBranch); |
| | | } |
| | | |
| | | /** |
| | | * Post session done event. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param status the status |
| | | * @param retryGlobal the retry global |
| | | * @param beginTime the begin time |
| | | * @param retryBranch the retry branch |
| | | */ |
| | | public static void postSessionDoneEvent(final GlobalSession globalSession, String status, boolean retryGlobal, long beginTime, boolean retryBranch) { |
| | | EVENT_BUS.post(new GlobalTransactionEvent(globalSession.getTransactionId(), GlobalTransactionEvent.ROLE_TC, |
| | | globalSession.getTransactionName(), globalSession.getApplicationId(), |
| | | globalSession.getTransactionServiceGroup(), beginTime, System.currentTimeMillis(), status, retryGlobal, retryBranch)); |
| | | } |
| | | |
| | | /** |
| | | * Post session doing event. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param retryGlobal the retry global |
| | | */ |
| | | public static void postSessionDoingEvent(final GlobalSession globalSession, boolean retryGlobal) { |
| | | postSessionDoingEvent(globalSession, globalSession.getStatus().name(), retryGlobal, false); |
| | | } |
| | | |
| | | /** |
| | | * Post session doing event. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param status the status |
| | | * @param retryGlobal the retry global |
| | | * @param retryBranch the retry branch |
| | | */ |
| | | public static void postSessionDoingEvent(final GlobalSession globalSession, String status, boolean retryGlobal, |
| | | boolean retryBranch) { |
| | | EVENT_BUS.post(new GlobalTransactionEvent(globalSession.getTransactionId(), GlobalTransactionEvent.ROLE_TC, |
| | | globalSession.getTransactionName(), globalSession.getApplicationId(), |
| | | globalSession.getTransactionServiceGroup(), globalSession.getBeginTime(), null, status, retryGlobal, retryBranch)); |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.metrics; |
| | | |
| | | import com.google.common.eventbus.Subscribe; |
| | | import io.seata.core.event.GlobalTransactionEvent; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.metrics.registry.Registry; |
| | | import io.seata.server.event.EventBusManager; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.Map; |
| | | import java.util.concurrent.TimeUnit; |
| | | import java.util.function.Consumer; |
| | | |
| | | import static io.seata.metrics.IdConstants.*; |
| | | |
| | | /** |
| | | * Event subscriber for metrics |
| | | * |
| | | * @author zhengyangyong |
| | | */ |
| | | public class MetricsSubscriber { |
| | | |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(MetricsSubscriber.class); |
| | | private final Registry registry; |
| | | |
| | | private final Map<String, Consumer<GlobalTransactionEvent>> consumers; |
| | | |
| | | public MetricsSubscriber(Registry registry) { |
| | | this.registry = registry; |
| | | consumers = new HashMap<>(); |
| | | consumers.put(GlobalStatus.Begin.name(), this::processGlobalStatusBegin); |
| | | consumers.put(GlobalStatus.Committed.name(), this::processGlobalStatusCommitted); |
| | | consumers.put(GlobalStatus.Rollbacked.name(), this::processGlobalStatusRollbacked); |
| | | |
| | | consumers.put(GlobalStatus.CommitFailed.name(), this::processGlobalStatusCommitFailed); |
| | | consumers.put(GlobalStatus.RollbackFailed.name(), this::processGlobalStatusRollbackFailed); |
| | | consumers.put(GlobalStatus.TimeoutRollbacked.name(), this::processGlobalStatusTimeoutRollbacked); |
| | | consumers.put(GlobalStatus.TimeoutRollbackFailed.name(), this::processGlobalStatusTimeoutRollbackFailed); |
| | | |
| | | consumers.put(GlobalStatus.CommitRetryTimeout.name(), this::processGlobalStatusCommitRetryTimeout); |
| | | consumers.put(GlobalStatus.RollbackRetryTimeout.name(), this::processGlobalStatusTimeoutRollbackRetryTimeout); |
| | | |
| | | consumers.put(STATUS_VALUE_AFTER_COMMITTED_KEY, this::processAfterGlobalCommitted); |
| | | consumers.put(STATUS_VALUE_AFTER_ROLLBACKED_KEY, this::processAfterGlobalRollbacked); |
| | | } |
| | | |
| | | private void processGlobalStatusBegin(GlobalTransactionEvent event) { |
| | | if (LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("accept new event,xid:{},event:{}", event.getId(), event); |
| | | for (Object object : EventBusManager.get().getSubscribers()) { |
| | | LOGGER.debug("subscribe:{},threadName:{}", object.toString(), Thread.currentThread().getName()); |
| | | } |
| | | } |
| | | registry.getCounter(MeterIdConstants.COUNTER_ACTIVE.withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).increase(1); |
| | | } |
| | | |
| | | private void processGlobalStatusCommitted(GlobalTransactionEvent event) { |
| | | if (event.isRetryGlobal()) { |
| | | return; |
| | | } |
| | | decreaseActive(event); |
| | | registry.getCounter(MeterIdConstants.COUNTER_COMMITTED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).increase(1); |
| | | registry.getSummary(MeterIdConstants.SUMMARY_COMMITTED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).increase(1); |
| | | registry.getTimer(MeterIdConstants.TIMER_COMMITTED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())) |
| | | .record(event.getEndTime() - event.getBeginTime(), TimeUnit.MILLISECONDS); |
| | | } |
| | | |
| | | private void processGlobalStatusRollbacked(GlobalTransactionEvent event) { |
| | | if (event.isRetryGlobal()) { |
| | | return; |
| | | } |
| | | decreaseActive(event); |
| | | registry.getCounter(MeterIdConstants.COUNTER_ROLLBACKED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).increase(1); |
| | | registry.getSummary(MeterIdConstants.SUMMARY_ROLLBACKED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).increase(1); |
| | | registry.getTimer(MeterIdConstants.TIMER_ROLLBACK |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())) |
| | | .record(event.getEndTime() - event.getBeginTime(), TimeUnit.MILLISECONDS); |
| | | } |
| | | |
| | | private void processAfterGlobalRollbacked(GlobalTransactionEvent event) { |
| | | if (event.isRetryGlobal() && event.isRetryBranch()) { |
| | | decreaseActive(event); |
| | | } |
| | | registry.getCounter(MeterIdConstants.COUNTER_AFTER_ROLLBACKED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).increase(1); |
| | | registry.getSummary(MeterIdConstants.SUMMARY_AFTER_ROLLBACKED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).increase(1); |
| | | registry.getTimer(MeterIdConstants.TIMER_AFTER_ROLLBACKED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())) |
| | | .record(event.getEndTime() - event.getBeginTime(), TimeUnit.MILLISECONDS); |
| | | } |
| | | |
| | | private void processAfterGlobalCommitted(GlobalTransactionEvent event) { |
| | | if (event.isRetryGlobal() && event.isRetryBranch()) { |
| | | decreaseActive(event); |
| | | } |
| | | registry.getCounter(MeterIdConstants.COUNTER_AFTER_COMMITTED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).increase(1); |
| | | registry.getSummary(MeterIdConstants.SUMMARY_AFTER_COMMITTED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).increase(1); |
| | | registry.getTimer(MeterIdConstants.TIMER_AFTER_COMMITTED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())) |
| | | .record(event.getEndTime() - event.getBeginTime(), TimeUnit.MILLISECONDS); |
| | | } |
| | | |
| | | private void processGlobalStatusCommitFailed(GlobalTransactionEvent event) { |
| | | decreaseActive(event); |
| | | reportFailed(event); |
| | | } |
| | | |
| | | private void processGlobalStatusRollbackFailed(GlobalTransactionEvent event) { |
| | | decreaseActive(event); |
| | | reportFailed(event); |
| | | } |
| | | |
| | | private void processGlobalStatusTimeoutRollbacked(GlobalTransactionEvent event) { |
| | | decreaseActive(event); |
| | | } |
| | | |
| | | private void processGlobalStatusTimeoutRollbackFailed(GlobalTransactionEvent event) { |
| | | decreaseActive(event); |
| | | reportTwoPhaseTimeout(event); |
| | | } |
| | | |
| | | private void processGlobalStatusCommitRetryTimeout(GlobalTransactionEvent event) { |
| | | decreaseActive(event); |
| | | reportTwoPhaseTimeout(event); |
| | | } |
| | | |
| | | private void processGlobalStatusTimeoutRollbackRetryTimeout(GlobalTransactionEvent event) { |
| | | decreaseActive(event); |
| | | } |
| | | |
| | | private void decreaseActive(GlobalTransactionEvent event) { |
| | | registry.getCounter(MeterIdConstants.COUNTER_ACTIVE |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).decrease(1); |
| | | } |
| | | |
| | | private void reportFailed(GlobalTransactionEvent event) { |
| | | registry.getSummary(MeterIdConstants.SUMMARY_FAILED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).increase(1); |
| | | registry.getTimer(MeterIdConstants.TIMER_FAILED |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())) |
| | | .record(event.getEndTime() - event.getBeginTime(), TimeUnit.MILLISECONDS); |
| | | } |
| | | |
| | | private void reportTwoPhaseTimeout(GlobalTransactionEvent event) { |
| | | registry.getSummary(MeterIdConstants.SUMMARY_TWO_PHASE_TIMEOUT |
| | | .withTag(APP_ID_KEY, event.getApplicationId()) |
| | | .withTag(GROUP_KEY, event.getGroup())).increase(1); |
| | | } |
| | | |
| | | |
| | | |
| | | @Subscribe |
| | | public void recordGlobalTransactionEventForMetrics(GlobalTransactionEvent event) { |
| | | if (registry != null && consumers.containsKey(event.getStatus())) { |
| | | consumers.get(event.getStatus()).accept(event); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public boolean equals(Object obj) { |
| | | return this.getClass().getName().equals(obj.getClass().getName()); |
| | | } |
| | | |
| | | /** |
| | | * PMD check |
| | | * SuppressWarnings("checkstyle:EqualsHashCode") |
| | | * @return the hash code |
| | | */ |
| | | @Override |
| | | public int hashCode() { |
| | | return super.hashCode(); |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.session; |
| | | |
| | | import io.seata.core.exception.BranchTransactionException; |
| | | import io.seata.core.exception.GlobalTransactionException; |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.exception.TransactionExceptionCode; |
| | | import io.seata.core.model.BranchStatus; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.core.model.LockStatus; |
| | | import io.seata.server.store.SessionStorable; |
| | | import io.seata.server.store.TransactionStoreManager; |
| | | import io.seata.server.store.TransactionStoreManager.LogOperation; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | |
| | | /** |
| | | * The type Abstract session manager. |
| | | */ |
| | | public abstract class AbstractSessionManager implements SessionManager, SessionLifecycleListener { |
| | | |
| | | /** |
| | | * The constant LOGGER. |
| | | */ |
| | | protected static final Logger LOGGER = LoggerFactory.getLogger(AbstractSessionManager.class); |
| | | |
| | | /** |
| | | * The Transaction store manager. |
| | | */ |
| | | protected TransactionStoreManager transactionStoreManager; |
| | | |
| | | /** |
| | | * The Name. |
| | | */ |
| | | protected String name; |
| | | |
| | | /** |
| | | * Instantiates a new Abstract session manager. |
| | | */ |
| | | public AbstractSessionManager() { |
| | | } |
| | | |
| | | /** |
| | | * Instantiates a new Abstract session manager. |
| | | * |
| | | * @param name the name |
| | | */ |
| | | public AbstractSessionManager(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | @Override |
| | | public void addGlobalSession(GlobalSession session) throws TransactionException { |
| | | if (LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("MANAGER[{}] SESSION[{}] {}", name, session, LogOperation.GLOBAL_ADD); |
| | | } |
| | | writeSession(LogOperation.GLOBAL_ADD, session); |
| | | } |
| | | |
| | | @Override |
| | | public void updateGlobalSessionStatus(GlobalSession session, GlobalStatus status) throws TransactionException { |
| | | if (LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("MANAGER[{}] SESSION[{}] {}", name, session, LogOperation.GLOBAL_UPDATE); |
| | | } |
| | | if (GlobalStatus.Rollbacking == status) { |
| | | session.getBranchSessions().forEach(i -> i.setLockStatus(LockStatus.Rollbacking)); |
| | | } |
| | | writeSession(LogOperation.GLOBAL_UPDATE, session); |
| | | } |
| | | |
| | | @Override |
| | | public void removeGlobalSession(GlobalSession session) throws TransactionException { |
| | | if (LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("MANAGER[{}] SESSION[{}] {}", name, session, LogOperation.GLOBAL_REMOVE); |
| | | } |
| | | writeSession(LogOperation.GLOBAL_REMOVE, session); |
| | | } |
| | | |
| | | @Override |
| | | public void addBranchSession(GlobalSession session, BranchSession branchSession) throws TransactionException { |
| | | if (LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("MANAGER[{}] SESSION[{}] {}", name, branchSession, LogOperation.BRANCH_ADD); |
| | | } |
| | | writeSession(LogOperation.BRANCH_ADD, branchSession); |
| | | } |
| | | |
| | | @Override |
| | | public void updateBranchSessionStatus(BranchSession branchSession, BranchStatus status) |
| | | throws TransactionException { |
| | | if (LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("MANAGER[{}] SESSION[{}] {}", name, branchSession, LogOperation.BRANCH_UPDATE); |
| | | } |
| | | writeSession(LogOperation.BRANCH_UPDATE, branchSession); |
| | | } |
| | | |
| | | @Override |
| | | public void removeBranchSession(GlobalSession globalSession, BranchSession branchSession) |
| | | throws TransactionException { |
| | | if (LOGGER.isDebugEnabled()) { |
| | | LOGGER.debug("MANAGER[{}] SESSION[{}] {}", name, branchSession, LogOperation.BRANCH_REMOVE); |
| | | } |
| | | writeSession(LogOperation.BRANCH_REMOVE, branchSession); |
| | | } |
| | | |
| | | @Override |
| | | public void onBegin(GlobalSession globalSession) throws TransactionException { |
| | | addGlobalSession(globalSession); |
| | | } |
| | | |
| | | @Override |
| | | public void onStatusChange(GlobalSession globalSession, GlobalStatus status) throws TransactionException { |
| | | updateGlobalSessionStatus(globalSession, status); |
| | | } |
| | | |
| | | @Override |
| | | public void onBranchStatusChange(GlobalSession globalSession, BranchSession branchSession, BranchStatus status) |
| | | throws TransactionException { |
| | | updateBranchSessionStatus(branchSession, status); |
| | | } |
| | | |
| | | @Override |
| | | public void onAddBranch(GlobalSession globalSession, BranchSession branchSession) throws TransactionException { |
| | | addBranchSession(globalSession, branchSession); |
| | | } |
| | | |
| | | @Override |
| | | public void onRemoveBranch(GlobalSession globalSession, BranchSession branchSession) throws TransactionException { |
| | | removeBranchSession(globalSession, branchSession); |
| | | } |
| | | |
| | | @Override |
| | | public void onClose(GlobalSession globalSession) throws TransactionException { |
| | | globalSession.setActive(false); |
| | | } |
| | | |
| | | @Override |
| | | public void onSuccessEnd(GlobalSession globalSession) throws TransactionException { |
| | | removeGlobalSession(globalSession); |
| | | } |
| | | |
| | | @Override |
| | | public void onFailEnd(GlobalSession globalSession) throws TransactionException { |
| | | LOGGER.info("xid:{} fail end, transaction:{}",globalSession.getXid(),globalSession.toString()); |
| | | } |
| | | |
| | | private void writeSession(LogOperation logOperation, SessionStorable sessionStorable) throws TransactionException { |
| | | if (!transactionStoreManager.writeSession(logOperation, sessionStorable)) { |
| | | if (LogOperation.GLOBAL_ADD.equals(logOperation)) { |
| | | throw new GlobalTransactionException(TransactionExceptionCode.FailedWriteSession, |
| | | "Fail to store global session"); |
| | | } else if (LogOperation.GLOBAL_UPDATE.equals(logOperation)) { |
| | | throw new GlobalTransactionException(TransactionExceptionCode.FailedWriteSession, |
| | | "Fail to update global session"); |
| | | } else if (LogOperation.GLOBAL_REMOVE.equals(logOperation)) { |
| | | throw new GlobalTransactionException(TransactionExceptionCode.FailedWriteSession, |
| | | "Fail to remove global session"); |
| | | } else if (LogOperation.BRANCH_ADD.equals(logOperation)) { |
| | | throw new BranchTransactionException(TransactionExceptionCode.FailedWriteSession, |
| | | "Fail to store branch session"); |
| | | } else if (LogOperation.BRANCH_UPDATE.equals(logOperation)) { |
| | | throw new BranchTransactionException(TransactionExceptionCode.FailedWriteSession, |
| | | "Fail to update branch session"); |
| | | } else if (LogOperation.BRANCH_REMOVE.equals(logOperation)) { |
| | | throw new BranchTransactionException(TransactionExceptionCode.FailedWriteSession, |
| | | "Fail to remove branch session"); |
| | | } else { |
| | | throw new BranchTransactionException(TransactionExceptionCode.FailedWriteSession, |
| | | "Unknown LogOperation:" + logOperation.name()); |
| | | } |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void destroy() { |
| | | } |
| | | |
| | | /** |
| | | * Sets transaction store manager. |
| | | * |
| | | * @param transactionStoreManager the transaction store manager |
| | | */ |
| | | public void setTransactionStoreManager(TransactionStoreManager transactionStoreManager) { |
| | | this.transactionStoreManager = transactionStoreManager; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.session; |
| | | |
| | | import io.seata.common.util.CompressUtil; |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.model.BranchStatus; |
| | | import io.seata.core.model.BranchType; |
| | | import io.seata.core.model.LockStatus; |
| | | import io.seata.server.lock.LockerManagerFactory; |
| | | import io.seata.server.storage.file.lock.FileLocker; |
| | | import io.seata.server.store.SessionStorable; |
| | | import io.seata.server.store.StoreConfig; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | |
| | | import java.io.IOException; |
| | | import java.nio.ByteBuffer; |
| | | import java.util.Set; |
| | | import java.util.concurrent.ConcurrentHashMap; |
| | | import java.util.concurrent.ConcurrentMap; |
| | | |
| | | import static io.seata.core.model.LockStatus.Locked; |
| | | |
| | | /** |
| | | * The type Branch session. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public class BranchSession implements Lockable, Comparable<BranchSession>, SessionStorable { |
| | | |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(BranchSession.class); |
| | | |
| | | private static final int MAX_BRANCH_SESSION_SIZE = StoreConfig.getMaxBranchSessionSize(); |
| | | |
| | | private static ThreadLocal<ByteBuffer> byteBufferThreadLocal = ThreadLocal.withInitial(() -> ByteBuffer.allocate( |
| | | MAX_BRANCH_SESSION_SIZE)); |
| | | |
| | | private String xid; |
| | | |
| | | private long transactionId; |
| | | |
| | | private long branchId; |
| | | |
| | | private String resourceGroupId; |
| | | |
| | | private String resourceId; |
| | | |
| | | private String lockKey; |
| | | |
| | | private BranchType branchType; |
| | | |
| | | private BranchStatus status = BranchStatus.Unknown; |
| | | |
| | | private String clientId; |
| | | |
| | | private String applicationData; |
| | | |
| | | private LockStatus lockStatus = Locked; |
| | | |
| | | private ConcurrentMap<FileLocker.BucketLockMap, Set<String>> lockHolder |
| | | = new ConcurrentHashMap<>(); |
| | | |
| | | /** |
| | | * Gets application data. |
| | | * |
| | | * @return the application data |
| | | */ |
| | | public String getApplicationData() { |
| | | return applicationData; |
| | | } |
| | | |
| | | /** |
| | | * Sets application data. |
| | | * |
| | | * @param applicationData the application data |
| | | */ |
| | | public void setApplicationData(String applicationData) { |
| | | this.applicationData = applicationData; |
| | | } |
| | | |
| | | /** |
| | | * Gets resource group id. |
| | | * |
| | | * @return the resource group id |
| | | */ |
| | | public String getResourceGroupId() { |
| | | return resourceGroupId; |
| | | } |
| | | |
| | | /** |
| | | * Sets resource group id. |
| | | * |
| | | * @param resourceGroupId the resource group id |
| | | */ |
| | | public void setResourceGroupId(String resourceGroupId) { |
| | | this.resourceGroupId = resourceGroupId; |
| | | } |
| | | |
| | | /** |
| | | * Gets client id. |
| | | * |
| | | * @return the client id |
| | | */ |
| | | public String getClientId() { |
| | | return clientId; |
| | | } |
| | | |
| | | /** |
| | | * Sets client id. |
| | | * |
| | | * @param clientId the client id |
| | | */ |
| | | public void setClientId(String clientId) { |
| | | this.clientId = clientId; |
| | | } |
| | | |
| | | /** |
| | | * Gets resource id. |
| | | * |
| | | * @return the resource id |
| | | */ |
| | | public String getResourceId() { |
| | | return resourceId; |
| | | } |
| | | |
| | | /** |
| | | * Sets resource id. |
| | | * |
| | | * @param resourceId the resource id |
| | | */ |
| | | public void setResourceId(String resourceId) { |
| | | this.resourceId = resourceId; |
| | | } |
| | | |
| | | /** |
| | | * Gets lock key. |
| | | * |
| | | * @return the lock key |
| | | */ |
| | | public String getLockKey() { |
| | | return lockKey; |
| | | } |
| | | |
| | | /** |
| | | * Sets lock key. |
| | | * |
| | | * @param lockKey the lock key |
| | | */ |
| | | public void setLockKey(String lockKey) { |
| | | this.lockKey = lockKey; |
| | | } |
| | | |
| | | /** |
| | | * Gets branch type. |
| | | * |
| | | * @return the branch type |
| | | */ |
| | | public BranchType getBranchType() { |
| | | return branchType; |
| | | } |
| | | |
| | | /** |
| | | * Sets branch type. |
| | | * |
| | | * @param branchType the branch type |
| | | */ |
| | | public void setBranchType(BranchType branchType) { |
| | | this.branchType = branchType; |
| | | } |
| | | |
| | | /** |
| | | * Gets status. |
| | | * |
| | | * @return the status |
| | | */ |
| | | public BranchStatus getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | /** |
| | | * Sets status. |
| | | * |
| | | * @param status the status |
| | | */ |
| | | public void setStatus(BranchStatus status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | /** |
| | | * Gets transaction id. |
| | | * |
| | | * @return the transaction id |
| | | */ |
| | | public long getTransactionId() { |
| | | return transactionId; |
| | | } |
| | | |
| | | /** |
| | | * Sets transaction id. |
| | | * |
| | | * @param transactionId the transaction id |
| | | */ |
| | | public void setTransactionId(long transactionId) { |
| | | this.transactionId = transactionId; |
| | | } |
| | | |
| | | /** |
| | | * Gets branch id. |
| | | * |
| | | * @return the branch id |
| | | */ |
| | | public long getBranchId() { |
| | | return branchId; |
| | | } |
| | | |
| | | /** |
| | | * Sets branch id. |
| | | * |
| | | * @param branchId the branch id |
| | | */ |
| | | public void setBranchId(long branchId) { |
| | | this.branchId = branchId; |
| | | } |
| | | |
| | | /** |
| | | * Gets xid. |
| | | * |
| | | * @return the xid |
| | | */ |
| | | public String getXid() { |
| | | return xid; |
| | | } |
| | | |
| | | /** |
| | | * Sets xid. |
| | | * |
| | | * @param xid the xid |
| | | */ |
| | | public void setXid(String xid) { |
| | | this.xid = xid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "BR:" + branchId + "/" + transactionId; |
| | | } |
| | | |
| | | @Override |
| | | public int compareTo(BranchSession o) { |
| | | return Long.compare(this.branchId, o.branchId); |
| | | } |
| | | |
| | | public boolean canBeCommittedAsync() { |
| | | return branchType == BranchType.AT || status == BranchStatus.PhaseOne_Failed; |
| | | } |
| | | |
| | | /** |
| | | * Gets lock holder. |
| | | * |
| | | * @return the lock holder |
| | | */ |
| | | public ConcurrentMap<FileLocker.BucketLockMap, Set<String>> getLockHolder() { |
| | | return lockHolder; |
| | | } |
| | | |
| | | @Override |
| | | public boolean lock() throws TransactionException { |
| | | return this.lock(true, false); |
| | | } |
| | | |
| | | public boolean lock(boolean autoCommit, boolean skipCheckLock) throws TransactionException { |
| | | if (this.getBranchType().equals(BranchType.AT)) { |
| | | return LockerManagerFactory.getLockManager().acquireLock(this, autoCommit, skipCheckLock); |
| | | } |
| | | return true; |
| | | } |
| | | |
| | | @Override |
| | | public boolean unlock() throws TransactionException { |
| | | if (this.getBranchType() == BranchType.AT) { |
| | | return LockerManagerFactory.getLockManager().releaseLock(this); |
| | | } |
| | | return true; |
| | | } |
| | | |
| | | public boolean isAT() { |
| | | return this.getBranchType() == BranchType.AT; |
| | | } |
| | | |
| | | public LockStatus getLockStatus() { |
| | | return lockStatus; |
| | | } |
| | | |
| | | public void setLockStatus(LockStatus lockStatus) { |
| | | this.lockStatus = lockStatus; |
| | | } |
| | | |
| | | @Override |
| | | public byte[] encode() { |
| | | |
| | | byte[] resourceIdBytes = resourceId != null ? resourceId.getBytes() : null; |
| | | |
| | | byte[] lockKeyBytes = lockKey != null ? lockKey.getBytes() : null; |
| | | |
| | | byte[] clientIdBytes = clientId != null ? clientId.getBytes() : null; |
| | | |
| | | byte[] applicationDataBytes = applicationData != null ? applicationData.getBytes() : null; |
| | | |
| | | byte[] xidBytes = xid != null ? xid.getBytes() : null; |
| | | |
| | | byte branchTypeByte = branchType != null ? (byte) branchType.ordinal() : -1; |
| | | |
| | | int size = calBranchSessionSize(resourceIdBytes, lockKeyBytes, clientIdBytes, applicationDataBytes, xidBytes); |
| | | |
| | | if (size > MAX_BRANCH_SESSION_SIZE) { |
| | | if (lockKeyBytes == null) { |
| | | throw new RuntimeException("branch session size exceeded, size : " + size + " maxBranchSessionSize : " |
| | | + MAX_BRANCH_SESSION_SIZE); |
| | | } |
| | | // try compress lockkey |
| | | try { |
| | | size -= lockKeyBytes.length; |
| | | lockKeyBytes = CompressUtil.compress(lockKeyBytes); |
| | | } catch (IOException e) { |
| | | LOGGER.error("compress lockKey error", e); |
| | | } finally { |
| | | size += lockKeyBytes.length; |
| | | } |
| | | |
| | | if (size > MAX_BRANCH_SESSION_SIZE) { |
| | | throw new RuntimeException( |
| | | "compress branch session size exceeded, compressSize : " + size + " maxBranchSessionSize : " |
| | | + MAX_BRANCH_SESSION_SIZE); |
| | | } |
| | | } |
| | | |
| | | ByteBuffer byteBuffer = byteBufferThreadLocal.get(); |
| | | //recycle |
| | | byteBuffer.clear(); |
| | | |
| | | byteBuffer.putLong(transactionId); |
| | | byteBuffer.putLong(branchId); |
| | | |
| | | if (resourceIdBytes != null) { |
| | | byteBuffer.putInt(resourceIdBytes.length); |
| | | byteBuffer.put(resourceIdBytes); |
| | | } else { |
| | | byteBuffer.putInt(0); |
| | | } |
| | | |
| | | if (lockKeyBytes != null) { |
| | | byteBuffer.putInt(lockKeyBytes.length); |
| | | byteBuffer.put(lockKeyBytes); |
| | | } else { |
| | | byteBuffer.putInt(0); |
| | | } |
| | | |
| | | if (clientIdBytes != null) { |
| | | byteBuffer.putShort((short)clientIdBytes.length); |
| | | byteBuffer.put(clientIdBytes); |
| | | } else { |
| | | byteBuffer.putShort((short)0); |
| | | } |
| | | |
| | | if (applicationDataBytes != null) { |
| | | byteBuffer.putInt(applicationDataBytes.length); |
| | | byteBuffer.put(applicationDataBytes); |
| | | } else { |
| | | byteBuffer.putInt(0); |
| | | } |
| | | |
| | | if (xidBytes != null) { |
| | | byteBuffer.putInt(xidBytes.length); |
| | | byteBuffer.put(xidBytes); |
| | | } else { |
| | | byteBuffer.putInt(0); |
| | | } |
| | | |
| | | byteBuffer.put(branchTypeByte); |
| | | |
| | | byteBuffer.put((byte)status.getCode()); |
| | | byteBuffer.put((byte)lockStatus.getCode()); |
| | | byteBuffer.flip(); |
| | | byte[] result = new byte[byteBuffer.limit()]; |
| | | byteBuffer.get(result); |
| | | return result; |
| | | } |
| | | |
| | | private int calBranchSessionSize(byte[] resourceIdBytes, byte[] lockKeyBytes, byte[] clientIdBytes, |
| | | byte[] applicationDataBytes, byte[] xidBytes) { |
| | | final int size = 8 // trascationId |
| | | + 8 // branchId |
| | | + 4 // resourceIdBytes.length |
| | | + 4 // lockKeyBytes.length |
| | | + 2 // clientIdBytes.length |
| | | + 4 // applicationDataBytes.length |
| | | + 4 // xidBytes.size |
| | | + 1 // statusCode |
| | | + (resourceIdBytes == null ? 0 : resourceIdBytes.length) |
| | | + (lockKeyBytes == null ? 0 : lockKeyBytes.length) |
| | | + (clientIdBytes == null ? 0 : clientIdBytes.length) |
| | | + (applicationDataBytes == null ? 0 : applicationDataBytes.length) |
| | | + (xidBytes == null ? 0 : xidBytes.length) |
| | | + 1; //branchType |
| | | return size; |
| | | } |
| | | |
| | | @Override |
| | | public void decode(byte[] a) { |
| | | ByteBuffer byteBuffer = ByteBuffer.wrap(a); |
| | | this.transactionId = byteBuffer.getLong(); |
| | | this.branchId = byteBuffer.getLong(); |
| | | int resourceLen = byteBuffer.getInt(); |
| | | if (resourceLen > 0) { |
| | | byte[] byResource = new byte[resourceLen]; |
| | | byteBuffer.get(byResource); |
| | | this.resourceId = new String(byResource); |
| | | } |
| | | int lockKeyLen = byteBuffer.getInt(); |
| | | if (lockKeyLen > 0) { |
| | | byte[] byLockKey = new byte[lockKeyLen]; |
| | | byteBuffer.get(byLockKey); |
| | | if (CompressUtil.isCompressData(byLockKey)) { |
| | | try { |
| | | this.lockKey = new String(CompressUtil.uncompress(byLockKey)); |
| | | } catch (IOException e) { |
| | | throw new RuntimeException("decompress lockKey error", e); |
| | | } |
| | | } else { |
| | | this.lockKey = new String(byLockKey); |
| | | } |
| | | |
| | | } |
| | | short clientIdLen = byteBuffer.getShort(); |
| | | if (clientIdLen > 0) { |
| | | byte[] byClientId = new byte[clientIdLen]; |
| | | byteBuffer.get(byClientId); |
| | | this.clientId = new String(byClientId); |
| | | } |
| | | int applicationDataLen = byteBuffer.getInt(); |
| | | if (applicationDataLen > 0) { |
| | | byte[] byApplicationData = new byte[applicationDataLen]; |
| | | byteBuffer.get(byApplicationData); |
| | | this.applicationData = new String(byApplicationData); |
| | | } |
| | | int xidLen = byteBuffer.getInt(); |
| | | if (xidLen > 0) { |
| | | byte[] xidBytes = new byte[xidLen]; |
| | | byteBuffer.get(xidBytes); |
| | | this.xid = new String(xidBytes); |
| | | } |
| | | int branchTypeId = byteBuffer.get(); |
| | | if (branchTypeId >= 0) { |
| | | this.branchType = BranchType.values()[branchTypeId]; |
| | | } |
| | | this.status = BranchStatus.get(byteBuffer.get()); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.session; |
| | | |
| | | import io.seata.core.exception.TransactionException; |
| | | |
| | | /** |
| | | * The Functional Interface Branch session handler |
| | | * |
| | | * @author wang.liang |
| | | * @since 1.5.0 |
| | | */ |
| | | @FunctionalInterface |
| | | public interface BranchSessionHandler { |
| | | |
| | | Boolean CONTINUE = null; |
| | | |
| | | /** |
| | | * Handle branch session. |
| | | * |
| | | * @param branchSession the branch session |
| | | * @return the handle result |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | Boolean handle(BranchSession branchSession) throws TransactionException; |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.session; |
| | | |
| | | import io.seata.common.Constants; |
| | | import io.seata.common.DefaultValues; |
| | | import io.seata.common.XID; |
| | | import io.seata.common.util.StringUtils; |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.core.constants.ConfigurationKeys; |
| | | import io.seata.core.exception.GlobalTransactionException; |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.exception.TransactionExceptionCode; |
| | | import io.seata.core.model.BranchStatus; |
| | | import io.seata.core.model.BranchType; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.core.model.LockStatus; |
| | | import io.seata.server.UUIDGenerator; |
| | | import io.seata.server.lock.LockerManagerFactory; |
| | | import io.seata.server.store.SessionStorable; |
| | | import io.seata.server.store.StoreConfig; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | |
| | | import java.nio.ByteBuffer; |
| | | import java.util.*; |
| | | import java.util.concurrent.TimeUnit; |
| | | import java.util.concurrent.locks.Lock; |
| | | import java.util.concurrent.locks.ReentrantLock; |
| | | |
| | | import static io.seata.core.model.GlobalStatus.*; |
| | | |
| | | /** |
| | | * The type Global session. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public class GlobalSession implements SessionLifecycle, SessionStorable { |
| | | |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(GlobalSession.class); |
| | | |
| | | private static final int MAX_GLOBAL_SESSION_SIZE = StoreConfig.getMaxGlobalSessionSize(); |
| | | |
| | | private static ThreadLocal<ByteBuffer> byteBufferThreadLocal = ThreadLocal.withInitial(() -> ByteBuffer.allocate( |
| | | MAX_GLOBAL_SESSION_SIZE)); |
| | | |
| | | /** |
| | | * If the global session's status is (Rollbacking or Committing) and currentTime - createTime >= RETRY_DEAD_THRESHOLD |
| | | * then the tx will be remand as need to retry rollback |
| | | */ |
| | | private static final int RETRY_DEAD_THRESHOLD = ConfigurationFactory.getInstance() |
| | | .getInt(ConfigurationKeys.RETRY_DEAD_THRESHOLD, DefaultValues.DEFAULT_RETRY_DEAD_THRESHOLD); |
| | | |
| | | private String xid; |
| | | |
| | | private long transactionId; |
| | | |
| | | private volatile GlobalStatus status; |
| | | |
| | | private String applicationId; |
| | | |
| | | private String transactionServiceGroup; |
| | | |
| | | private String transactionName; |
| | | |
| | | private int timeout; |
| | | |
| | | private long beginTime; |
| | | |
| | | private String applicationData; |
| | | |
| | | private final boolean lazyLoadBranch; |
| | | |
| | | private volatile boolean active = true; |
| | | |
| | | private List<BranchSession> branchSessions; |
| | | |
| | | private GlobalSessionLock globalSessionLock = new GlobalSessionLock(); |
| | | |
| | | |
| | | /** |
| | | * Add boolean. |
| | | * |
| | | * @param branchSession the branch session |
| | | * @return the boolean |
| | | */ |
| | | public boolean add(BranchSession branchSession) { |
| | | if (null != branchSessions) { |
| | | return branchSessions.add(branchSession); |
| | | } else { |
| | | // db and redis no need to deal with |
| | | return true; |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * Remove boolean. |
| | | * |
| | | * @param branchSession the branch session |
| | | * @return the boolean |
| | | */ |
| | | public boolean remove(BranchSession branchSession) { |
| | | return branchSessions.remove(branchSession); |
| | | } |
| | | |
| | | private Set<SessionLifecycleListener> lifecycleListeners = new HashSet<>(); |
| | | |
| | | /** |
| | | * Can be committed async boolean. |
| | | * |
| | | * @return the boolean |
| | | */ |
| | | public boolean canBeCommittedAsync() { |
| | | List<BranchSession> branchSessions = getBranchSessions(); |
| | | for (BranchSession branchSession : branchSessions) { |
| | | if (!branchSession.canBeCommittedAsync()) { |
| | | return false; |
| | | } |
| | | } |
| | | return true; |
| | | } |
| | | |
| | | /** |
| | | * Has AT branch |
| | | * |
| | | * @return the boolean |
| | | */ |
| | | public boolean hasATBranch() { |
| | | List<BranchSession> branchSessions = getBranchSessions(); |
| | | for (BranchSession branchSession : branchSessions) { |
| | | if (branchSession.getBranchType() == BranchType.AT) { |
| | | return true; |
| | | } |
| | | } |
| | | return false; |
| | | } |
| | | |
| | | /** |
| | | * Is saga type transaction |
| | | * |
| | | * @return is saga |
| | | */ |
| | | public boolean isSaga() { |
| | | List<BranchSession> branchSessions = getBranchSessions(); |
| | | if (branchSessions.size() > 0) { |
| | | return BranchType.SAGA == branchSessions.get(0).getBranchType(); |
| | | } else { |
| | | return StringUtils.isNotBlank(transactionName) |
| | | && transactionName.startsWith(Constants.SAGA_TRANS_NAME_PREFIX); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * Is timeout boolean. |
| | | * |
| | | * @return the boolean |
| | | */ |
| | | public boolean isTimeout() { |
| | | return (System.currentTimeMillis() - beginTime) > timeout; |
| | | } |
| | | |
| | | /** |
| | | * prevent could not handle committing and rollbacking transaction |
| | | * @return if true retry commit or roll back |
| | | */ |
| | | public boolean isDeadSession() { |
| | | return (System.currentTimeMillis() - beginTime) > RETRY_DEAD_THRESHOLD; |
| | | } |
| | | |
| | | @Override |
| | | public void begin() throws TransactionException { |
| | | this.status = GlobalStatus.Begin; |
| | | this.beginTime = System.currentTimeMillis(); |
| | | this.active = true; |
| | | for (SessionLifecycleListener lifecycleListener : lifecycleListeners) { |
| | | lifecycleListener.onBegin(this); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void changeGlobalStatus(GlobalStatus status) throws TransactionException { |
| | | if (GlobalStatus.Rollbacking == status) { |
| | | LockerManagerFactory.getLockManager().updateLockStatus(xid, LockStatus.Rollbacking); |
| | | } |
| | | this.status = status; |
| | | for (SessionLifecycleListener lifecycleListener : lifecycleListeners) { |
| | | lifecycleListener.onStatusChange(this, status); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void changeBranchStatus(BranchSession branchSession, BranchStatus status) |
| | | throws TransactionException { |
| | | branchSession.setStatus(status); |
| | | for (SessionLifecycleListener lifecycleListener : lifecycleListeners) { |
| | | lifecycleListener.onBranchStatusChange(this, branchSession, status); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public boolean isActive() { |
| | | return active; |
| | | } |
| | | |
| | | @Override |
| | | public void close() throws TransactionException { |
| | | if (active) { |
| | | for (SessionLifecycleListener lifecycleListener : lifecycleListeners) { |
| | | lifecycleListener.onClose(this); |
| | | } |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void end() throws TransactionException { |
| | | if (GlobalStatus.isTwoPhaseSuccess(status)) { |
| | | // Clean locks first |
| | | clean(); |
| | | for (SessionLifecycleListener lifecycleListener : lifecycleListeners) { |
| | | lifecycleListener.onSuccessEnd(this); |
| | | } |
| | | } else { |
| | | for (SessionLifecycleListener lifecycleListener : lifecycleListeners) { |
| | | lifecycleListener.onFailEnd(this); |
| | | } |
| | | } |
| | | } |
| | | |
| | | public void clean() throws TransactionException { |
| | | if (!LockerManagerFactory.getLockManager().releaseGlobalSessionLock(this)) { |
| | | throw new TransactionException("UnLock globalSession error, xid = " + this.xid); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * Close and clean. |
| | | * |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | public void closeAndClean() throws TransactionException { |
| | | close(); |
| | | if (this.hasATBranch()) { |
| | | clean(); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * Add session lifecycle listener. |
| | | * |
| | | * @param sessionLifecycleListener the session lifecycle listener |
| | | */ |
| | | public void addSessionLifecycleListener(SessionLifecycleListener sessionLifecycleListener) { |
| | | lifecycleListeners.add(sessionLifecycleListener); |
| | | } |
| | | |
| | | /** |
| | | * Remove session lifecycle listener. |
| | | * |
| | | * @param sessionLifecycleListener the session lifecycle listener |
| | | */ |
| | | public void removeSessionLifecycleListener(SessionLifecycleListener sessionLifecycleListener) { |
| | | lifecycleListeners.remove(sessionLifecycleListener); |
| | | } |
| | | |
| | | @Override |
| | | public void addBranch(BranchSession branchSession) throws TransactionException { |
| | | for (SessionLifecycleListener lifecycleListener : lifecycleListeners) { |
| | | lifecycleListener.onAddBranch(this, branchSession); |
| | | } |
| | | branchSession.setStatus(BranchStatus.Registered); |
| | | add(branchSession); |
| | | } |
| | | |
| | | public void loadBranchs() { |
| | | if (branchSessions == null && isLazyLoadBranch()) { |
| | | synchronized (this) { |
| | | if (branchSessions == null && isLazyLoadBranch()) { |
| | | branchSessions = new ArrayList<>(); |
| | | Optional.ofNullable(SessionHolder.getRootSessionManager().findGlobalSession(xid, true)) |
| | | .ifPresent(globalSession -> branchSessions.addAll(globalSession.getBranchSessions())); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void unlockBranch(BranchSession branchSession) throws TransactionException { |
| | | // do not unlock if global status in (Committing, CommitRetrying, AsyncCommitting), |
| | | // because it's already unlocked in 'DefaultCore.commit()' |
| | | if (status != Committing && status != CommitRetrying && status != AsyncCommitting) { |
| | | if (!branchSession.unlock()) { |
| | | throw new TransactionException("Unlock branch lock failed, xid = " + this.xid + ", branchId = " + branchSession.getBranchId()); |
| | | } |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void removeBranch(BranchSession branchSession) throws TransactionException { |
| | | for (SessionLifecycleListener lifecycleListener : lifecycleListeners) { |
| | | lifecycleListener.onRemoveBranch(this, branchSession); |
| | | } |
| | | remove(branchSession); |
| | | } |
| | | |
| | | @Override |
| | | public void removeAndUnlockBranch(BranchSession branchSession) throws TransactionException { |
| | | unlockBranch(branchSession); |
| | | removeBranch(branchSession); |
| | | } |
| | | |
| | | /** |
| | | * Gets branch. |
| | | * |
| | | * @param branchId the branch id |
| | | * @return the branch |
| | | */ |
| | | public BranchSession getBranch(long branchId) { |
| | | synchronized (this) { |
| | | List<BranchSession> branchSessions = getBranchSessions(); |
| | | for (BranchSession branchSession : branchSessions) { |
| | | if (branchSession.getBranchId() == branchId) { |
| | | return branchSession; |
| | | } |
| | | } |
| | | |
| | | return null; |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * Gets sorted branches. |
| | | * |
| | | * @return the sorted branches |
| | | */ |
| | | public List<BranchSession> getSortedBranches() { |
| | | return new ArrayList<>(getBranchSessions()); |
| | | } |
| | | |
| | | /** |
| | | * Gets reverse sorted branches. |
| | | * |
| | | * @return the reverse sorted branches |
| | | */ |
| | | public List<BranchSession> getReverseSortedBranches() { |
| | | List<BranchSession> reversed = new ArrayList<>(getBranchSessions()); |
| | | Collections.reverse(reversed); |
| | | return reversed; |
| | | } |
| | | |
| | | /** |
| | | * Instantiates a new Global session. |
| | | */ |
| | | public GlobalSession() { |
| | | this.lazyLoadBranch = false; |
| | | } |
| | | |
| | | /** |
| | | * Instantiates a new Global session. |
| | | * |
| | | * @param applicationId the application id |
| | | * @param transactionServiceGroup the transaction service group |
| | | * @param transactionName the transaction name |
| | | * @param timeout the timeout |
| | | * @param lazyLoadBranch the lazy load branch |
| | | */ |
| | | public GlobalSession(String applicationId, String transactionServiceGroup, String transactionName, int timeout, boolean lazyLoadBranch) { |
| | | this.transactionId = UUIDGenerator.generateUUID(); |
| | | this.status = GlobalStatus.Begin; |
| | | this.lazyLoadBranch = lazyLoadBranch; |
| | | if (!lazyLoadBranch) { |
| | | this.branchSessions = new ArrayList<>(); |
| | | } |
| | | this.applicationId = applicationId; |
| | | this.transactionServiceGroup = transactionServiceGroup; |
| | | this.transactionName = transactionName; |
| | | this.timeout = timeout; |
| | | this.xid = XID.generateXID(transactionId); |
| | | } |
| | | |
| | | /** |
| | | * Instantiates a new Global session. |
| | | * |
| | | * @param applicationId the application id |
| | | * @param transactionServiceGroup the transaction service group |
| | | * @param transactionName the transaction name |
| | | * @param timeout the timeout |
| | | */ |
| | | public GlobalSession(String applicationId, String transactionServiceGroup, String transactionName, int timeout) { |
| | | this(applicationId, transactionServiceGroup, transactionName, timeout, false); |
| | | } |
| | | |
| | | /** |
| | | * Gets transaction id. |
| | | * |
| | | * @return the transaction id |
| | | */ |
| | | public long getTransactionId() { |
| | | return transactionId; |
| | | } |
| | | |
| | | /** |
| | | * Sets transaction id. |
| | | * |
| | | * @param transactionId the transaction id |
| | | */ |
| | | public void setTransactionId(long transactionId) { |
| | | this.transactionId = transactionId; |
| | | } |
| | | |
| | | /** |
| | | * Gets status. |
| | | * |
| | | * @return the status |
| | | */ |
| | | public GlobalStatus getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | /** |
| | | * Sets status. |
| | | * |
| | | * @param status the status |
| | | */ |
| | | public void setStatus(GlobalStatus status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | /** |
| | | * Gets xid. |
| | | * |
| | | * @return the xid |
| | | */ |
| | | public String getXid() { |
| | | return xid; |
| | | } |
| | | |
| | | /** |
| | | * Sets xid. |
| | | * |
| | | * @param xid the xid |
| | | */ |
| | | public void setXid(String xid) { |
| | | this.xid = xid; |
| | | } |
| | | |
| | | /** |
| | | * Gets application id. |
| | | * |
| | | * @return the application id |
| | | */ |
| | | public String getApplicationId() { |
| | | return applicationId; |
| | | } |
| | | |
| | | /** |
| | | * Gets transaction service group. |
| | | * |
| | | * @return the transaction service group |
| | | */ |
| | | public String getTransactionServiceGroup() { |
| | | return transactionServiceGroup; |
| | | } |
| | | |
| | | /** |
| | | * Gets transaction name. |
| | | * |
| | | * @return the transaction name |
| | | */ |
| | | public String getTransactionName() { |
| | | return transactionName; |
| | | } |
| | | |
| | | /** |
| | | * Gets timeout. |
| | | * |
| | | * @return the timeout |
| | | */ |
| | | public int getTimeout() { |
| | | return timeout; |
| | | } |
| | | |
| | | /** |
| | | * Gets begin time. |
| | | * |
| | | * @return the begin time |
| | | */ |
| | | public long getBeginTime() { |
| | | return beginTime; |
| | | } |
| | | |
| | | /** |
| | | * Sets begin time. |
| | | * |
| | | * @param beginTime the begin time |
| | | */ |
| | | public void setBeginTime(long beginTime) { |
| | | this.beginTime = beginTime; |
| | | } |
| | | |
| | | /** |
| | | * Gets application data. |
| | | * |
| | | * @return the application data |
| | | */ |
| | | public String getApplicationData() { |
| | | return applicationData; |
| | | } |
| | | |
| | | /** |
| | | * Sets application data. |
| | | * |
| | | * @param applicationData the application data |
| | | */ |
| | | public void setApplicationData(String applicationData) { |
| | | this.applicationData = applicationData; |
| | | } |
| | | |
| | | public boolean isLazyLoadBranch() { |
| | | return lazyLoadBranch; |
| | | } |
| | | |
| | | /** |
| | | * Create global session global session. |
| | | * |
| | | * @param applicationId the application id |
| | | * @param txServiceGroup the tx service group |
| | | * @param txName the tx name |
| | | * @param timeout the timeout |
| | | * @return the global session |
| | | */ |
| | | public static GlobalSession createGlobalSession(String applicationId, String txServiceGroup, String txName, |
| | | int timeout) { |
| | | GlobalSession session = new GlobalSession(applicationId, txServiceGroup, txName, timeout, false); |
| | | return session; |
| | | } |
| | | |
| | | /** |
| | | * Sets active. |
| | | * |
| | | * @param active the active |
| | | */ |
| | | public void setActive(boolean active) { |
| | | this.active = active; |
| | | } |
| | | |
| | | @Override |
| | | public byte[] encode() { |
| | | byte[] byApplicationIdBytes = applicationId != null ? applicationId.getBytes() : null; |
| | | |
| | | byte[] byServiceGroupBytes = transactionServiceGroup != null ? transactionServiceGroup.getBytes() : null; |
| | | |
| | | byte[] byTxNameBytes = transactionName != null ? transactionName.getBytes() : null; |
| | | |
| | | byte[] xidBytes = xid != null ? xid.getBytes() : null; |
| | | |
| | | byte[] applicationDataBytes = applicationData != null ? applicationData.getBytes() : null; |
| | | |
| | | int size = calGlobalSessionSize(byApplicationIdBytes, byServiceGroupBytes, byTxNameBytes, xidBytes, |
| | | applicationDataBytes); |
| | | |
| | | if (size > MAX_GLOBAL_SESSION_SIZE) { |
| | | throw new RuntimeException("global session size exceeded, size : " + size + " maxBranchSessionSize : " + |
| | | MAX_GLOBAL_SESSION_SIZE); |
| | | } |
| | | ByteBuffer byteBuffer = byteBufferThreadLocal.get(); |
| | | //recycle |
| | | byteBuffer.clear(); |
| | | |
| | | byteBuffer.putLong(transactionId); |
| | | byteBuffer.putInt(timeout); |
| | | if (byApplicationIdBytes != null) { |
| | | byteBuffer.putShort((short)byApplicationIdBytes.length); |
| | | byteBuffer.put(byApplicationIdBytes); |
| | | } else { |
| | | byteBuffer.putShort((short)0); |
| | | } |
| | | if (byServiceGroupBytes != null) { |
| | | byteBuffer.putShort((short)byServiceGroupBytes.length); |
| | | byteBuffer.put(byServiceGroupBytes); |
| | | } else { |
| | | byteBuffer.putShort((short)0); |
| | | } |
| | | if (byTxNameBytes != null) { |
| | | byteBuffer.putShort((short)byTxNameBytes.length); |
| | | byteBuffer.put(byTxNameBytes); |
| | | } else { |
| | | byteBuffer.putShort((short)0); |
| | | } |
| | | if (xidBytes != null) { |
| | | byteBuffer.putInt(xidBytes.length); |
| | | byteBuffer.put(xidBytes); |
| | | } else { |
| | | byteBuffer.putInt(0); |
| | | } |
| | | if (applicationDataBytes != null) { |
| | | byteBuffer.putInt(applicationDataBytes.length); |
| | | byteBuffer.put(applicationDataBytes); |
| | | } else { |
| | | byteBuffer.putInt(0); |
| | | } |
| | | |
| | | byteBuffer.putLong(beginTime); |
| | | byteBuffer.put((byte)status.getCode()); |
| | | byteBuffer.flip(); |
| | | byte[] result = new byte[byteBuffer.limit()]; |
| | | byteBuffer.get(result); |
| | | return result; |
| | | } |
| | | |
| | | private int calGlobalSessionSize(byte[] byApplicationIdBytes, byte[] byServiceGroupBytes, byte[] byTxNameBytes, |
| | | byte[] xidBytes, byte[] applicationDataBytes) { |
| | | final int size = 8 // transactionId |
| | | + 4 // timeout |
| | | + 2 // byApplicationIdBytes.length |
| | | + 2 // byServiceGroupBytes.length |
| | | + 2 // byTxNameBytes.length |
| | | + 4 // xidBytes.length |
| | | + 4 // applicationDataBytes.length |
| | | + 8 // beginTime |
| | | + 1 // statusCode |
| | | + (byApplicationIdBytes == null ? 0 : byApplicationIdBytes.length) |
| | | + (byServiceGroupBytes == null ? 0 : byServiceGroupBytes.length) |
| | | + (byTxNameBytes == null ? 0 : byTxNameBytes.length) |
| | | + (xidBytes == null ? 0 : xidBytes.length) |
| | | + (applicationDataBytes == null ? 0 : applicationDataBytes.length); |
| | | return size; |
| | | } |
| | | |
| | | @Override |
| | | public void decode(byte[] a) { |
| | | this.branchSessions = new ArrayList<>(); |
| | | ByteBuffer byteBuffer = ByteBuffer.wrap(a); |
| | | this.transactionId = byteBuffer.getLong(); |
| | | this.timeout = byteBuffer.getInt(); |
| | | short applicationIdLen = byteBuffer.getShort(); |
| | | if (applicationIdLen > 0) { |
| | | byte[] byApplicationId = new byte[applicationIdLen]; |
| | | byteBuffer.get(byApplicationId); |
| | | this.applicationId = new String(byApplicationId); |
| | | } |
| | | short serviceGroupLen = byteBuffer.getShort(); |
| | | if (serviceGroupLen > 0) { |
| | | byte[] byServiceGroup = new byte[serviceGroupLen]; |
| | | byteBuffer.get(byServiceGroup); |
| | | this.transactionServiceGroup = new String(byServiceGroup); |
| | | } |
| | | short txNameLen = byteBuffer.getShort(); |
| | | if (txNameLen > 0) { |
| | | byte[] byTxName = new byte[txNameLen]; |
| | | byteBuffer.get(byTxName); |
| | | this.transactionName = new String(byTxName); |
| | | } |
| | | int xidLen = byteBuffer.getInt(); |
| | | if (xidLen > 0) { |
| | | byte[] xidBytes = new byte[xidLen]; |
| | | byteBuffer.get(xidBytes); |
| | | this.xid = new String(xidBytes); |
| | | } |
| | | int applicationDataLen = byteBuffer.getInt(); |
| | | if (applicationDataLen > 0) { |
| | | byte[] applicationDataLenBytes = new byte[applicationDataLen]; |
| | | byteBuffer.get(applicationDataLenBytes); |
| | | this.applicationData = new String(applicationDataLenBytes); |
| | | } |
| | | |
| | | this.beginTime = byteBuffer.getLong(); |
| | | this.status = GlobalStatus.get(byteBuffer.get()); |
| | | } |
| | | |
| | | /** |
| | | * Has branch boolean. |
| | | * |
| | | * @return the boolean |
| | | */ |
| | | public boolean hasBranch() { |
| | | return getBranchSessions().size() > 0; |
| | | } |
| | | |
| | | public void lock() throws TransactionException { |
| | | globalSessionLock.lock(); |
| | | } |
| | | |
| | | public void unlock() { |
| | | globalSessionLock.unlock(); |
| | | } |
| | | |
| | | private static class GlobalSessionLock { |
| | | |
| | | private Lock globalSessionLock = new ReentrantLock(); |
| | | |
| | | private static final int GLOBAL_SESSION_LOCK_TIME_OUT_MILLS = 2 * 1000; |
| | | |
| | | public void lock() throws TransactionException { |
| | | try { |
| | | if (globalSessionLock.tryLock(GLOBAL_SESSION_LOCK_TIME_OUT_MILLS, TimeUnit.MILLISECONDS)) { |
| | | return; |
| | | } |
| | | } catch (InterruptedException e) { |
| | | LOGGER.error("Interrupted error", e); |
| | | } |
| | | throw new GlobalTransactionException(TransactionExceptionCode.FailedLockGlobalTranscation, "Lock global session failed"); |
| | | } |
| | | |
| | | public void unlock() { |
| | | globalSessionLock.unlock(); |
| | | } |
| | | } |
| | | |
| | | @FunctionalInterface |
| | | public interface LockRunnable { |
| | | |
| | | void run() throws TransactionException; |
| | | } |
| | | |
| | | @FunctionalInterface |
| | | public interface LockCallable<V> { |
| | | |
| | | V call() throws TransactionException; |
| | | } |
| | | |
| | | public List<BranchSession> getBranchSessions() { |
| | | loadBranchs(); |
| | | return branchSessions; |
| | | } |
| | | |
| | | public void asyncCommit() throws TransactionException { |
| | | this.addSessionLifecycleListener(SessionHolder.getAsyncCommittingSessionManager()); |
| | | this.setStatus(GlobalStatus.AsyncCommitting); |
| | | SessionHolder.getAsyncCommittingSessionManager().addGlobalSession(this); |
| | | } |
| | | |
| | | public void queueToRetryCommit() throws TransactionException { |
| | | this.addSessionLifecycleListener(SessionHolder.getRetryCommittingSessionManager()); |
| | | this.setStatus(GlobalStatus.CommitRetrying); |
| | | SessionHolder.getRetryCommittingSessionManager().addGlobalSession(this); |
| | | } |
| | | |
| | | public void queueToRetryRollback() throws TransactionException { |
| | | this.addSessionLifecycleListener(SessionHolder.getRetryRollbackingSessionManager()); |
| | | GlobalStatus currentStatus = this.getStatus(); |
| | | if (SessionStatusValidator.isTimeoutGlobalStatus(currentStatus)) { |
| | | this.setStatus(GlobalStatus.TimeoutRollbackRetrying); |
| | | } else { |
| | | this.setStatus(GlobalStatus.RollbackRetrying); |
| | | } |
| | | SessionHolder.getRetryRollbackingSessionManager().addGlobalSession(this); |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "GlobalSession{" + "xid='" + xid + '\'' + ", transactionId=" + transactionId + ", status=" + status |
| | | + ", applicationId='" + applicationId + '\'' + ", transactionServiceGroup='" + transactionServiceGroup |
| | | + '\'' + ", transactionName='" + transactionName + '\'' + ", timeout=" + timeout + ", beginTime=" |
| | | + beginTime + ", applicationData='" + applicationData + '\'' + ", lazyLoadBranch=" + lazyLoadBranch |
| | | + ", active=" + active + ", branchSessions=" + branchSessions + ", globalSessionLock=" + globalSessionLock |
| | | + ", lifecycleListeners=" + lifecycleListeners + '}'; |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.session; |
| | | |
| | | import io.seata.core.exception.TransactionException; |
| | | |
| | | /** |
| | | * The Functional Interface Global session handler |
| | | * |
| | | * @author wang.liang |
| | | * @since 1.5.0 |
| | | */ |
| | | @FunctionalInterface |
| | | public interface GlobalSessionHandler { |
| | | |
| | | /** |
| | | * Handle global session. |
| | | * |
| | | * @param globalSession the global session |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | void handle(GlobalSession globalSession) throws TransactionException; |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.session; |
| | | |
| | | import io.seata.core.exception.TransactionException; |
| | | |
| | | /** |
| | | * The interface Lockable. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public interface Lockable { |
| | | |
| | | /** |
| | | * Lock boolean. |
| | | * |
| | | * @return the boolean |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | boolean lock() throws TransactionException; |
| | | |
| | | /** |
| | | * Unlock boolean. |
| | | * |
| | | * @return the boolean |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | boolean unlock() throws TransactionException; |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.session; |
| | | |
| | | /** |
| | | * Service contains states which can be reloaded. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public interface Reloadable { |
| | | |
| | | /** |
| | | * Reload states. |
| | | */ |
| | | void reload(); |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.session; |
| | | |
| | | import io.seata.core.model.GlobalStatus; |
| | | |
| | | /** |
| | | * The type Session condition. |
| | | * |
| | | * @author slievrly |
| | | */ |
| | | public class SessionCondition { |
| | | private Long transactionId; |
| | | private String xid; |
| | | private GlobalStatus status; |
| | | private GlobalStatus[] statuses; |
| | | private Long overTimeAliveMills; |
| | | private boolean lazyLoadBranch; |
| | | |
| | | /** |
| | | * Instantiates a new Session condition. |
| | | */ |
| | | public SessionCondition() { |
| | | } |
| | | |
| | | /** |
| | | * Instantiates a new Session condition. |
| | | * |
| | | * @param xid the xid |
| | | */ |
| | | public SessionCondition(String xid) { |
| | | this.xid = xid; |
| | | } |
| | | |
| | | /** |
| | | * Instantiates a new Session condition. |
| | | * |
| | | * @param status the status |
| | | */ |
| | | public SessionCondition(GlobalStatus status) { |
| | | this.status = status; |
| | | this.statuses = new GlobalStatus[] {status}; |
| | | } |
| | | |
| | | /** |
| | | * Instantiates a new Session condition. |
| | | * |
| | | * @param statuses the statuses |
| | | */ |
| | | public SessionCondition(GlobalStatus... statuses) { |
| | | this.statuses = statuses; |
| | | } |
| | | |
| | | /** |
| | | * Instantiates a new Session condition. |
| | | * |
| | | * @param overTimeAliveMills the over time alive mills |
| | | */ |
| | | public SessionCondition(long overTimeAliveMills) { |
| | | this.overTimeAliveMills = overTimeAliveMills; |
| | | } |
| | | |
| | | /** |
| | | * Gets status. |
| | | * |
| | | * @return the status |
| | | */ |
| | | public GlobalStatus getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | /** |
| | | * Sets status. |
| | | * |
| | | * @param status the status |
| | | */ |
| | | public void setStatus(GlobalStatus status) { |
| | | this.status = status; |
| | | this.statuses = new GlobalStatus[] {status}; |
| | | } |
| | | |
| | | /** |
| | | * Gets over time alive mills. |
| | | * |
| | | * @return the over time alive mills |
| | | */ |
| | | public Long getOverTimeAliveMills() { |
| | | return overTimeAliveMills; |
| | | } |
| | | |
| | | /** |
| | | * Sets over time alive mills. |
| | | * |
| | | * @param overTimeAliveMills the over time alive mills |
| | | */ |
| | | public void setOverTimeAliveMills(Long overTimeAliveMills) { |
| | | this.overTimeAliveMills = overTimeAliveMills; |
| | | } |
| | | |
| | | public Long getTransactionId() { |
| | | return transactionId; |
| | | } |
| | | |
| | | public void setTransactionId(Long transactionId) { |
| | | this.transactionId = transactionId; |
| | | } |
| | | |
| | | public String getXid() { |
| | | return xid; |
| | | } |
| | | |
| | | public void setXid(String xid) { |
| | | this.xid = xid; |
| | | } |
| | | |
| | | public GlobalStatus[] getStatuses() { |
| | | return statuses; |
| | | } |
| | | |
| | | public void setStatuses(GlobalStatus... statuses) { |
| | | this.statuses = statuses; |
| | | } |
| | | |
| | | public boolean isLazyLoadBranch() { |
| | | return lazyLoadBranch; |
| | | } |
| | | |
| | | public void setLazyLoadBranch(boolean lazyLoadBranch) { |
| | | this.lazyLoadBranch = lazyLoadBranch; |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.session; |
| | | |
| | | import io.seata.common.util.CollectionUtils; |
| | | import io.seata.config.Configuration; |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.core.constants.ConfigurationKeys; |
| | | import io.seata.core.context.RootContext; |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.model.BranchType; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.metrics.IdConstants; |
| | | import io.seata.server.UUIDGenerator; |
| | | import io.seata.server.coordinator.DefaultCoordinator; |
| | | import io.seata.server.metrics.MetricsPublisher; |
| | | import io.seata.server.store.StoreConfig; |
| | | import io.seata.server.store.StoreConfig.SessionMode; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.slf4j.MDC; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | import java.util.Objects; |
| | | |
| | | import static io.seata.common.DefaultValues.DEFAULT_ENABLE_BRANCH_ASYNC_REMOVE; |
| | | |
| | | /** |
| | | * The type Session helper. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public class SessionHelper { |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(SessionHelper.class); |
| | | |
| | | /** |
| | | * The constant CONFIG. |
| | | */ |
| | | private static final Configuration CONFIG = ConfigurationFactory.getInstance(); |
| | | |
| | | private static final Boolean ENABLE_BRANCH_ASYNC_REMOVE = CONFIG.getBoolean( |
| | | ConfigurationKeys.ENABLE_BRANCH_ASYNC_REMOVE, DEFAULT_ENABLE_BRANCH_ASYNC_REMOVE); |
| | | |
| | | /** |
| | | * The instance of DefaultCoordinator |
| | | */ |
| | | private static final DefaultCoordinator COORDINATOR = DefaultCoordinator.getInstance(); |
| | | |
| | | private static final boolean DELAY_HANDLE_SESSION = StoreConfig.getSessionMode() != SessionMode.FILE; |
| | | |
| | | private SessionHelper() { |
| | | } |
| | | |
| | | public static BranchSession newBranchByGlobal(GlobalSession globalSession, BranchType branchType, String resourceId, String lockKeys, String clientId) { |
| | | return newBranchByGlobal(globalSession, branchType, resourceId, null, lockKeys, clientId); |
| | | } |
| | | |
| | | /** |
| | | * New branch by global branch session. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param branchType the branch type |
| | | * @param resourceId the resource id |
| | | * @param lockKeys the lock keys |
| | | * @param clientId the client id |
| | | * @return the branch session |
| | | */ |
| | | public static BranchSession newBranchByGlobal(GlobalSession globalSession, BranchType branchType, String resourceId, |
| | | String applicationData, String lockKeys, String clientId) { |
| | | BranchSession branchSession = new BranchSession(); |
| | | |
| | | branchSession.setXid(globalSession.getXid()); |
| | | branchSession.setTransactionId(globalSession.getTransactionId()); |
| | | branchSession.setBranchId(UUIDGenerator.generateUUID()); |
| | | branchSession.setBranchType(branchType); |
| | | branchSession.setResourceId(resourceId); |
| | | branchSession.setLockKey(lockKeys); |
| | | branchSession.setClientId(clientId); |
| | | branchSession.setApplicationData(applicationData); |
| | | |
| | | return branchSession; |
| | | } |
| | | |
| | | /** |
| | | * New branch |
| | | * |
| | | * @param branchType the branch type |
| | | * @param xid Transaction id. |
| | | * @param branchId Branch id. |
| | | * @param resourceId Resource id. |
| | | * @param applicationData Application data bind with this branch. |
| | | * @return the branch session |
| | | */ |
| | | public static BranchSession newBranch(BranchType branchType, String xid, long branchId, String resourceId, String applicationData) { |
| | | BranchSession branchSession = new BranchSession(); |
| | | branchSession.setXid(xid); |
| | | branchSession.setBranchId(branchId); |
| | | branchSession.setBranchType(branchType); |
| | | branchSession.setResourceId(resourceId); |
| | | branchSession.setApplicationData(applicationData); |
| | | return branchSession; |
| | | } |
| | | |
| | | /** |
| | | * End committed. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param retryGlobal the retry global |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | public static void endCommitted(GlobalSession globalSession, boolean retryGlobal) throws TransactionException { |
| | | if (retryGlobal || !DELAY_HANDLE_SESSION) { |
| | | long beginTime = System.currentTimeMillis(); |
| | | boolean retryBranch = globalSession.getStatus() == GlobalStatus.CommitRetrying; |
| | | globalSession.changeGlobalStatus(GlobalStatus.Committed); |
| | | globalSession.end(); |
| | | if (!DELAY_HANDLE_SESSION) { |
| | | MetricsPublisher.postSessionDoneEvent(globalSession, false, false); |
| | | } |
| | | MetricsPublisher.postSessionDoneEvent(globalSession, IdConstants.STATUS_VALUE_AFTER_COMMITTED_KEY, true, |
| | | beginTime, retryBranch); |
| | | } else { |
| | | if (globalSession.isSaga()) { |
| | | globalSession.setStatus(GlobalStatus.Committed); |
| | | globalSession.end(); |
| | | } |
| | | MetricsPublisher.postSessionDoneEvent(globalSession, false, false); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * End commit failed. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param retryGlobal the retry global |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | public static void endCommitFailed(GlobalSession globalSession, boolean retryGlobal) throws TransactionException { |
| | | endCommitFailed(globalSession, retryGlobal, false); |
| | | } |
| | | |
| | | /** |
| | | * End commit failed. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param retryGlobal the retry global |
| | | * @param isRetryTimeout is retry timeout |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | public static void endCommitFailed(GlobalSession globalSession, boolean retryGlobal, boolean isRetryTimeout) |
| | | throws TransactionException { |
| | | if (isRetryTimeout) { |
| | | globalSession.changeGlobalStatus(GlobalStatus.CommitRetryTimeout); |
| | | } else { |
| | | globalSession.changeGlobalStatus(GlobalStatus.CommitFailed); |
| | | } |
| | | LOGGER.error("The Global session {} has changed the status to {}, need to be handled it manually.", |
| | | globalSession.getXid(), globalSession.getStatus()); |
| | | |
| | | globalSession.end(); |
| | | MetricsPublisher.postSessionDoneEvent(globalSession, retryGlobal, false); |
| | | } |
| | | |
| | | /** |
| | | * End rollbacked. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param retryGlobal the retry global |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | public static void endRollbacked(GlobalSession globalSession, boolean retryGlobal) throws TransactionException { |
| | | if (retryGlobal || !DELAY_HANDLE_SESSION) { |
| | | long beginTime = System.currentTimeMillis(); |
| | | boolean timeoutDone = false; |
| | | GlobalStatus currentStatus = globalSession.getStatus(); |
| | | if (currentStatus == GlobalStatus.TimeoutRollbacking) { |
| | | MetricsPublisher.postSessionDoneEvent(globalSession, GlobalStatus.TimeoutRollbacked, false, false); |
| | | timeoutDone = true; |
| | | } |
| | | boolean retryBranch = |
| | | currentStatus == GlobalStatus.TimeoutRollbackRetrying || currentStatus == GlobalStatus.RollbackRetrying; |
| | | if (SessionStatusValidator.isTimeoutGlobalStatus(currentStatus)) { |
| | | globalSession.changeGlobalStatus(GlobalStatus.TimeoutRollbacked); |
| | | } else { |
| | | globalSession.changeGlobalStatus(GlobalStatus.Rollbacked); |
| | | } |
| | | globalSession.end(); |
| | | if (!DELAY_HANDLE_SESSION && !timeoutDone) { |
| | | MetricsPublisher.postSessionDoneEvent(globalSession, false, false); |
| | | } |
| | | MetricsPublisher.postSessionDoneEvent(globalSession, IdConstants.STATUS_VALUE_AFTER_ROLLBACKED_KEY, true, |
| | | beginTime, retryBranch); |
| | | } else { |
| | | if (globalSession.isSaga()) { |
| | | globalSession.setStatus(GlobalStatus.Rollbacked); |
| | | globalSession.end(); |
| | | } |
| | | MetricsPublisher.postSessionDoneEvent(globalSession, GlobalStatus.Rollbacked, false, false); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * End rollback failed. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param retryGlobal the retry global |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | public static void endRollbackFailed(GlobalSession globalSession, boolean retryGlobal) throws TransactionException { |
| | | endRollbackFailed(globalSession, retryGlobal, false); |
| | | } |
| | | |
| | | /** |
| | | * End rollback failed. |
| | | * |
| | | * @param globalSession the global session |
| | | * @param retryGlobal the retry global |
| | | * @param isRetryTimeout is retry timeout |
| | | * @throws TransactionException the transaction exception |
| | | */ |
| | | public static void endRollbackFailed(GlobalSession globalSession, boolean retryGlobal, boolean isRetryTimeout) throws TransactionException { |
| | | GlobalStatus currentStatus = globalSession.getStatus(); |
| | | if (isRetryTimeout) { |
| | | globalSession.changeGlobalStatus(GlobalStatus.RollbackRetryTimeout); |
| | | } else if (SessionStatusValidator.isTimeoutGlobalStatus(currentStatus)) { |
| | | globalSession.changeGlobalStatus(GlobalStatus.TimeoutRollbackFailed); |
| | | } else { |
| | | globalSession.changeGlobalStatus(GlobalStatus.RollbackFailed); |
| | | } |
| | | LOGGER.error("The Global session {} has changed the status to {}, need to be handled it manually.", globalSession.getXid(), globalSession.getStatus()); |
| | | globalSession.end(); |
| | | MetricsPublisher.postSessionDoneEvent(globalSession, retryGlobal, false); |
| | | } |
| | | |
| | | /** |
| | | * Foreach global sessions. |
| | | * |
| | | * @param sessions the global sessions |
| | | * @param handler the handler |
| | | * @since 1.5.0 |
| | | */ |
| | | public static void forEach(Collection<GlobalSession> sessions, GlobalSessionHandler handler) { |
| | | if (CollectionUtils.isEmpty(sessions)) { |
| | | return; |
| | | } |
| | | sessions.parallelStream().forEach(globalSession -> { |
| | | try { |
| | | MDC.put(RootContext.MDC_KEY_XID, globalSession.getXid()); |
| | | handler.handle(globalSession); |
| | | } catch (Throwable th) { |
| | | LOGGER.error("handle global session failed: {}", globalSession.getXid(), th); |
| | | } finally { |
| | | MDC.remove(RootContext.MDC_KEY_XID); |
| | | } |
| | | }); |
| | | } |
| | | |
| | | /** |
| | | * Foreach branch sessions. |
| | | * |
| | | * @param sessions the branch session |
| | | * @param handler the handler |
| | | * @since 1.5.0 |
| | | */ |
| | | public static Boolean forEach(Collection<BranchSession> sessions, BranchSessionHandler handler) throws TransactionException { |
| | | Boolean result; |
| | | for (BranchSession branchSession : sessions) { |
| | | try { |
| | | MDC.put(RootContext.MDC_KEY_BRANCH_ID, String.valueOf(branchSession.getBranchId())); |
| | | result = handler.handle(branchSession); |
| | | if (result == null) { |
| | | continue; |
| | | } |
| | | return result; |
| | | } finally { |
| | | MDC.remove(RootContext.MDC_KEY_BRANCH_ID); |
| | | } |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * remove branchSession from globalSession |
| | | * @param globalSession the globalSession |
| | | * @param branchSession the branchSession |
| | | * @param isAsync if asynchronous remove |
| | | */ |
| | | public static void removeBranch(GlobalSession globalSession, BranchSession branchSession, boolean isAsync) |
| | | throws TransactionException { |
| | | globalSession.unlockBranch(branchSession); |
| | | if (isEnableBranchRemoveAsync() && isAsync) { |
| | | COORDINATOR.doBranchRemoveAsync(globalSession, branchSession); |
| | | } else { |
| | | globalSession.removeBranch(branchSession); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * remove branchSession from globalSession |
| | | * @param globalSession the globalSession |
| | | * @param isAsync if asynchronous remove |
| | | */ |
| | | public static void removeAllBranch(GlobalSession globalSession, boolean isAsync) |
| | | throws TransactionException { |
| | | List<BranchSession> branchSessions = globalSession.getSortedBranches(); |
| | | if (branchSessions == null || branchSessions.isEmpty()) { |
| | | return; |
| | | } |
| | | boolean isAsyncRemove = isEnableBranchRemoveAsync() && isAsync; |
| | | for (BranchSession branchSession : branchSessions) { |
| | | if (isAsyncRemove) { |
| | | globalSession.unlockBranch(branchSession); |
| | | } else { |
| | | globalSession.removeAndUnlockBranch(branchSession); |
| | | } |
| | | } |
| | | if (isAsyncRemove) { |
| | | COORDINATOR.doBranchRemoveAllAsync(globalSession); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * if true, enable delete the branch asynchronously |
| | | * |
| | | * @return the boolean |
| | | */ |
| | | private static boolean isEnableBranchRemoveAsync() { |
| | | return Objects.equals(Boolean.TRUE, DELAY_HANDLE_SESSION) |
| | | && Objects.equals(Boolean.TRUE, ENABLE_BRANCH_ASYNC_REMOVE); |
| | | } |
| | | } |
New file |
| | |
| | | /* |
| | | * Copyright 1999-2019 Seata.io Group. |
| | | * |
| | | * Licensed under the Apache License, Version 2.0 (the "License"); |
| | | * you may not use this file except in compliance with the License. |
| | | * You may obtain a copy of the License at |
| | | * |
| | | * http://www.apache.org/licenses/LICENSE-2.0 |
| | | * |
| | | * Unless required by applicable law or agreed to in writing, software |
| | | * distributed under the License is distributed on an "AS IS" BASIS, |
| | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package io.seata.server.session; |
| | | |
| | | import io.seata.common.ConfigurationKeys; |
| | | import io.seata.common.XID; |
| | | import io.seata.common.exception.ShouldNeverHappenException; |
| | | import io.seata.common.exception.StoreException; |
| | | import io.seata.common.loader.EnhancedServiceLoader; |
| | | import io.seata.common.util.CollectionUtils; |
| | | import io.seata.common.util.StringUtils; |
| | | import io.seata.config.Configuration; |
| | | import io.seata.config.ConfigurationFactory; |
| | | import io.seata.core.exception.TransactionException; |
| | | import io.seata.core.model.GlobalStatus; |
| | | import io.seata.core.model.LockStatus; |
| | | import io.seata.core.store.DistributedLockDO; |
| | | import io.seata.core.store.DistributedLocker; |
| | | import io.seata.server.lock.distributed.DistributedLockerFactory; |
| | | import io.seata.server.store.StoreConfig; |
| | | import io.seata.server.store.StoreConfig.SessionMode; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | |
| | | import java.io.IOException; |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | import java.util.concurrent.CompletableFuture; |
| | | |
| | | import static io.seata.common.DefaultValues.DEFAULT_DISTRIBUTED_LOCK_EXPIRE_TIME; |
| | | |
| | | /** |
| | | * The type Session holder. |
| | | * |
| | | * @author sharajava |
| | | */ |
| | | public class SessionHolder { |
| | | |
| | | private static final Logger LOGGER = LoggerFactory.getLogger(SessionHolder.class); |
| | | |
| | | /** |
| | | * The constant CONFIG. |
| | | */ |
| | | protected static final Configuration CONFIG = ConfigurationFactory.getInstance(); |
| | | /** |
| | | * The constant ROOT_SESSION_MANAGER_NAME. |
| | | */ |
| | | public static final String ROOT_SESSION_MANAGER_NAME = "root.data"; |
| | | /** |
| | | * The constant ASYNC_COMMITTING_SESSION_MANAGER_NAME. |
| | | */ |
| | | public static final String ASYNC_COMMITTING_SESSION_MANAGER_NAME = "async.commit.data"; |
| | | /** |
| | | * The constant RETRY_COMMITTING_SESSION_MANAGER_NAME. |
| | | */ |
| | | public static final String RETRY_COMMITTING_SESSION_MANAGER_NAME = "retry.commit.data"; |
| | | /** |
| | | * The constant RETRY_ROLLBACKING_SESSION_MANAGER_NAME. |
| | | */ |
| | | public static final String RETRY_ROLLBACKING_SESSION_MANAGER_NAME = "retry.rollback.data"; |
| | | |
| | | /** |
| | | * The default session store dir |
| | | */ |
| | | public static final String DEFAULT_SESSION_STORE_FILE_DIR = "sessionStore"; |
| | | |
| | | /** |
| | | * The redis distributed lock expire time |
| | | */ |
| | | private static long DISTRIBUTED_LOCK_EXPIRE_TIME = CONFIG.getLong(ConfigurationKeys.DISTRIBUTED_LOCK_EXPIRE_TIME, DEFAULT_DISTRIBUTED_LOCK_EXPIRE_TIME); |
| | | |
| | | private static SessionManager ROOT_SESSION_MANAGER; |
| | | private static SessionManager ASYNC_COMMITTING_SESSION_MANAGER; |
| | | private static SessionManager RETRY_COMMITTING_SESSION_MANAGER; |
| | | private static SessionManager RETRY_ROLLBACKING_SESSION_MANAGER; |
| | | |
| | | private static DistributedLocker DISTRIBUTED_LOCKER; |
| | | |
| | | public static void init() { |
| | | init(null); |
| | | } |
| | | /** |
| | | * Init. |
| | | * |
| | | * @param sessionMode the store mode: file, db, redis |
| | | * @throws IOException the io exception |
| | | */ |
| | | public static void init(SessionMode sessionMode) { |
| | | if (null == sessionMode) { |
| | | sessionMode = StoreConfig.getSessionMode(); |
| | | } |
| | | LOGGER.info("use session store mode: {}", sessionMode.getName()); |
| | | if (SessionMode.DB.equals(sessionMode)) { |
| | | ROOT_SESSION_MANAGER = EnhancedServiceLoader.load(SessionManager.class, SessionMode.DB.getName()); |
| | | ASYNC_COMMITTING_SESSION_MANAGER = EnhancedServiceLoader.load(SessionManager.class, SessionMode.DB.getName(), |
| | | new Object[]{ASYNC_COMMITTING_SESSION_MANAGER_NAME}); |
| | | RETRY_COMMITTING_SESSION_MANAGER = EnhancedServiceLoader.load(SessionManager.class, SessionMode.DB.getName(), |
| | | new Object[]{RETRY_COMMITTING_SESSION_MANAGER_NAME}); |
| | | RETRY_ROLLBACKING_SESSION_MANAGER = EnhancedServiceLoader.load(SessionManager.class, SessionMode.DB.getName(), |
| | | new Object[]{RETRY_ROLLBACKING_SESSION_MANAGER_NAME}); |
| | | |
| | | DISTRIBUTED_LOCKER = DistributedLockerFactory.getDistributedLocker(SessionMode.DB.getName()); |
| | | } else if (SessionMode.FILE.equals(sessionMode)) { |
| | | String sessionStorePath = CONFIG.getConfig(ConfigurationKeys.STORE_FILE_DIR, |
| | | DEFAULT_SESSION_STORE_FILE_DIR); |
| | | if (StringUtils.isBlank(sessionStorePath)) { |
| | | throw new StoreException("the {store.file.dir} is empty."); |
| | | } |
| | | ROOT_SESSION_MANAGER = EnhancedServiceLoader.load(SessionManager.class, SessionMode.FILE.getName(), |
| | | new Object[]{ROOT_SESSION_MANAGER_NAME, sessionStorePath}); |
| | | ASYNC_COMMITTING_SESSION_MANAGER = ROOT_SESSION_MANAGER; |
| | | RETRY_COMMITTING_SESSION_MANAGER = ROOT_SESSION_MANAGER; |
| | | RETRY_ROLLBACKING_SESSION_MANAGER = ROOT_SESSION_MANAGER; |
| | | |
| | | DISTRIBUTED_LOCKER = DistributedLockerFactory.getDistributedLocker(SessionMode.FILE.getName()); |
| | | } else if (SessionMode.REDIS.equals(sessionMode)) { |
| | | ROOT_SESSION_MANAGER = EnhancedServiceLoader.load(SessionManager.class, SessionMode.REDIS.getName()); |
| | | ASYNC_COMMITTING_SESSION_MANAGER = EnhancedServiceLoader.load(SessionManager.class, |
| | | SessionMode.REDIS.getName(), new Object[]{ASYNC_COMMITTING_SESSION_MANAGER_NAME}); |
| | | RETRY_COMMITTING_SESSION_MANAGER = EnhancedServiceLoader.load(SessionManager.class, |
| | | SessionMode.REDIS.getName(), new Object[]{RETRY_COMMITTING_SESSION_MANAGER_NAME}); |
| | | RETRY_ROLLBACKING_SESSION_MANAGER = EnhancedServiceLoader.load(SessionManager.class, |
| | | SessionMode.REDIS.getName(), new Object[]{RETRY_ROLLBACKING_SESSION_MANAGER_NAME}); |
| | | |
| | | DISTRIBUTED_LOCKER = DistributedLockerFactory.getDistributedLocker(SessionMode.REDIS.getName()); |
| | | } else { |
| | | // unknown store |
| | | throw new IllegalArgumentException("unknown store mode:" + sessionMode.getName()); |
| | | } |
| | | reload(sessionMode); |
| | | } |
| | | |
| | | //region reload |
| | | |
| | | /** |
| | | * Reload. |
| | | * |
| | | * @param sessionMode the mode of store |
| | | */ |
| | | protected static void reload(SessionMode sessionMode) { |
| | | |
| | | if (ROOT_SESSION_MANAGER instanceof Reloadable) { |
| | | ((Reloadable) ROOT_SESSION_MANAGER).reload(); |
| | | } |
| | | |
| | | if (SessionMode.FILE.equals(sessionMode)) { |
| | | Collection<GlobalSession> allSessions = ROOT_SESSION_MANAGER.allSessions(); |
| | | if (CollectionUtils.isNotEmpty(allSessions)) { |
| | | for (GlobalSession globalSession : allSessions) { |
| | | GlobalStatus globalStatus = globalSession.getStatus(); |
| | | switch (globalStatus) { |
| | | case UnKnown: |
| | | case Committed: |
| | | case CommitFailed: |
| | | case Rollbacked: |
| | | case RollbackFailed: |
| | | case TimeoutRollbacked: |
| | | case TimeoutRollbackFailed: |
| | | case Finished: |
| | | removeInErrorState(globalSession); |
| | | break; |
| | | case AsyncCommitting: |
| | | queueToAsyncCommitting(globalSession); |
| | | break; |
| | | case Committing: |
| | | case CommitRetrying: |
| | | queueToRetryCommit(globalSession); |
| | | break; |
| | | default: { |
| | | lockBranchSessions(globalSession.getSortedBranches()); |
| | | switch (globalStatus) { |
| | | case Rollbacking: |
| | | case RollbackRetrying: |
| | | case TimeoutRollbacking: |
| | | case TimeoutRollbackRetrying: |
| | | globalSession.getBranchSessions().parallelStream() |
| | | .forEach(branchSession -> branchSession.setLockStatus(LockStatus.Rollbacking)); |
| | | queueToRetryRollback(globalSession); |
| | | break; |
| | | case Begin: |
| | | globalSession.setActive(true); |
| | | break; |
| | | default: |
| | | LOGGER.error("Could not handle the global session, xid: {}", globalSession.getXid()); |
| | | throw new ShouldNeverHappenException("NOT properly handled " + globalStatus); |
| | | } |
| | | break; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } else { |
| | | // Redis, db and so on |
| | | CompletableFuture.runAsync(() -> { |
| | | SessionCondition searchCondition = new SessionCondition(GlobalStatus.UnKnown, GlobalStatus.Committed, |
| | | GlobalStatus.Rollbacked, GlobalStatus.TimeoutRollbacked, GlobalStatus.Finished); |
| | | searchCondition.setLazyLoadBranch(true); |
| | | |
| | | long now = System.currentTimeMillis(); |
| | | List<GlobalSession> errorStatusGlobalSessions = ROOT_SESSION_MANAGER.findGlobalSessions(searchCondition); |
| | | while (!CollectionUtils.isEmpty(errorStatusGlobalSessions)) { |
| | | for (GlobalSession errorStatusGlobalSession : errorStatusGlobalSessions) { |
| | | if (errorStatusGlobalSession.getBeginTime() >= now) { |
| | | // Exit when the global transaction begin after the instance started |
| | | return; |
| | | } |
| | | |
| | | removeInErrorState(errorStatusGlobalSession); |
| | | } |
| | | |
| | | // Load the next part |
| | | errorStatusGlobalSessions = ROOT_SESSION_MANAGER.findGlobalSessions(searchCondition); |
| | | } |
| | | }); |
| | | } |
| | | } |
| | | |
| | | private static void removeInErrorState(GlobalSession globalSession) { |
| | | try { |
| | | LOGGER.warn("The global session should NOT be {}, remove it. xid = {}", globalSession.getStatus(), globalSession.getXid()); |
| | | ROOT_SESSION_MANAGER.removeGlobalSession(globalSession); |
| | | if (LOGGER.isInfoEnabled()) { |
| | | LOGGER.info("Remove global session succeed, xid = {}, status = {}", globalSession.getXid(), globalSession.getStatus()); |
| | | } |
| | | } catch (Exception e) { |
| | | LOGGER.error("Remove global session failed, xid = {}, status = {}", globalSession.getXid(), globalSession.getStatus(), e); |
| | | } |
| | | } |
| | | |
| | | private static void queueToAsyncCommitting(GlobalSession globalSession) { |
| | | try { |
| | | globalSession.addSessionLifecycleListener(getAsyncCommittingSessionManager()); |
| | | getAsyncCommittingSessionManager().addGlobalSession(globalSession); |
| | | } catch (TransactionException e) { |
| | | throw new ShouldNeverHappenException(e); |
| | | } |
| | | } |
| | | |
| | | private static void lockBranchSessions(List<BranchSession> branchSessions) { |
| | | branchSessions.forEach(branchSession -> { |
| | | try { |
| | | branchSession.lock(); |
| | | } catch (TransactionException e) { |
| | | throw new ShouldNeverHappenException(e); |
| | | } |
| | | }); |
| | | } |
| | | |
| | | private static void queueToRetryCommit(GlobalSession globalSession) { |
| | | try { |
| | | globalSession.addSessionLifecycleListener(getRetryCommittingSessionManager()); |
| | | getRetryCommittingSessionManager().addGlobalSession(globalSession); |
| | | } catch (TransactionException e) { |
| | | throw new ShouldNeverHappenException(e); |
| | | } |
| | | } |
| | | |
| | | private static void queueToRetryRollback(GlobalSession globalSession) { |
| | | try { |
| | | globalSession.addSessionLifecycleListener(getRetryRollbackingSessionManager()); |
| | | getRetryRollbackingSessionManager().addGlobalSession(globalSession); |
| | | } catch (TransactionException e) { |
| | | throw new ShouldNeverHappenException(e); |
| | | } |
| | | } |
| | | |
| | | //endregion |
| | | |
| | | //region get session manager |
| | | |
| | | /** |
| | | * Gets root session manager. |
| | | * |
| | | * @return the root session manager |
| | | */ |
| | | public static SessionManager getRootSessionManager() { |
| | | if (ROOT_SESSION_MANAGER == null) { |
| | | throw new ShouldNeverHappenException("SessionManager is NOT init!"); |
| | | } |
| | | return ROOT_SESSION_MANAGER; |
| | | } |
| | | |
| | | /** |
| | | * Gets async committing session manager. |
| | | * |
| | | * @return the async committing session manager |
| | | */ |
| | | @Deprecated |
| | | public static SessionManager getAsyncCommittingSessionManager() { |
| | | if (ASYNC_COMMITTING_SESSION_MANAGER == null) { |
| | | throw new ShouldNeverHappenException("SessionManager is NOT init!"); |
| | | } |
| | | return ASYNC_COMMITTING_SESSION_MANAGER; |
| | | } |
| | | |
| | | /** |
| | | * Gets retry committing session manager. |
| | | * |
| | | * @return the retry committing session manager |
| | | */ |
| | | @Deprecated |
| | | public static SessionManager getRetryCommittingSessionManager() { |
| | | if (RETRY_COMMITTING_SESSION_MANAGER == null) { |
| | | throw new ShouldNeverHappenException("SessionManager is NOT init!"); |
| | | } |
| | | return RETRY_COMMITTING_SESSION_MANAGER; |
| | | } |
| | | |
| | | /** |
| | | * Gets retry rollbacking session manager. |
| | | * |
| | | * @return the retry rollbacking session manager |
| | | */ |
| | | @Deprecated |
| | | public static SessionManager getRetryRollbackingSessionManager() { |
| | | if (RETRY_ROLLBACKING_SESSION_MANAGER == null) { |
| | | throw new ShouldNeverHappenException("SessionManager is NOT init!"); |
| | | } |
| | | return RETRY_ROLLBACKING_SESSION_MANAGER; |
| | | } |
| | | |
| | | //endregion |
| | | |
| | | /** |
| | | * Find global session. |
| | | * |
| | | * @param xid the xid |
| | | * @return the global session |
| | | */ |
| | | public static GlobalSession findGlobalSession(String xid) { |
| | | return findGlobalSession(xid, true); |
| | | } |
| | | |
| | | /** |
| | | * Find global session. |
| | | * |
| | | * @param xid the xid |
| | | * @param withBranchSessions the withBranchSessions |
| | | * @return the global session |
| | | */ |
| | | public static GlobalSession findGlobalSession(String xid, boolean withBranchSessions) { |
| | | return getRootSessionManager().findGlobalSession(xid, withBranchSessions); |
| | | } |
| | | |
| | | /** |
| | | * lock and execute |
| | | * |
| | | * @param globalSession the global session |
| | | * @param lockCallable the lock Callable |
| | | * @return the value |
| | | */ |
| | | public static <T> T lockAndExecute(GlobalSession globalSession, GlobalSession.LockCallable<T> lockCallable) |
| | | throws TransactionException { |
| | | return getRootSessionManager().lockAndExecute(globalSession, lockCallable); |
| | | } |
| | | |
| | | /** |
| | | * acquire lock |
| | | * |
| | | * @param lockKey the lock key, should be distinct for each lock |
| | | * @return the boolean |
| | | */ |
| | | public static boolean acquireDistributedLock(String lockKey) { |
| | | return DISTRIBUTED_LOCKER.acquireLock(new DistributedLockDO(lockKey, XID.getIpAddressAndPort(), DISTRIBUTED_LOCK_EXPIRE_TIME)); |
| | | } |
| | | |
| | | /** |
| | | * release lock |
| | | * |
| | | * @return the boolean |
| | | */ |
| | | public static boolean releaseDistributedLock(String lockKey) { |
| | | return DISTRIBUTED_LOCKER.releaseLock(new DistributedLockDO(lockKey, XID.getIpAddressAndPort(), DISTRIBUTED_LOCK_EXPIRE_TIME)); |
| | | } |
| | | |
| | | /** |
| | | * Execute the function after get the distribute lock |
| | | * |
| | | * @param key the distribute lock key |
| | | * @param func the function to be call |
| | | * @return whether the func be call |
| | | */ |
| | | public static boolean distributedLockAndExecute(String key, NoArgsFunc func) { |
| | | boolean lock = false; |
| | | try { |
| | | if (lock = acquireDistributedLock(key)) { |
| | | func.call(); |
| | | } |
| | | } catch (Exception e) { |
| | | LOGGER.error("Exception running function with key = {}", key, e); |
| | | } finally { |
| | | if (lock) { |
| | | try { |
| | | SessionHolder.releaseDistributedLock(key); |
| | | } catch (Exception ex) { |
| | | LOGGER.warn("release distribute lock failure, message = {}", ex.getMessage(), ex); |
| | | } |
| | | } |
| | | } |
| | | return lock; |
| | | } |
| | | |
| | | public static void destroy() { |
| | | if (ROOT_SESSION_MANAGER != null) { |
| | | ROOT_SESSION_MANAGER.destroy(); |
| | | } |
| | | } |
| | | |
| | | @FunctionalInterface |
| | | public interface NoArgsFunc { |
| | | void call(); |
| | | } |
| | | } |
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/session/SessionLifecycle.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/session/SessionLifecycleListener.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/session/SessionManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/session/SessionStatusValidator.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/spring/listener/SeataPropertiesLoader.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/spring/listener/ServerApplicationListener.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/SessionConverter.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/db/lock/DataBaseDistributedLocker.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/db/lock/DataBaseLockManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/db/lock/DataBaseLocker.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/db/lock/LockStoreDataBaseDAO.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/db/session/DataBaseSessionManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/db/store/DataBaseTransactionStoreManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/db/store/LogStoreDataBaseDAO.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/file/FlushDiskMode.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/file/ReloadableStore.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/file/TransactionWriteStore.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/file/lock/FileLockManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/file/lock/FileLocker.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/file/session/FileSessionManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/file/store/FileTransactionStoreManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/redis/JedisPooledFactory.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/redis/lock/RedisDistributedLocker.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/redis/lock/RedisLockManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/redis/lock/RedisLocker.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/redis/session/RedisSessionManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/storage/redis/store/RedisTransactionStoreManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/store/AbstractTransactionStoreManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/store/DbcpDataSourceProvider.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/store/DruidDataSourceProvider.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/store/HikariDataSourceProvider.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/store/SessionStorable.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/store/StoreConfig.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/store/TransactionStoreManager.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/transaction/at/ATCore.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/transaction/saga/SagaCore.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/transaction/tcc/TccCore.java
ruoyi-visual/ruoyi-seata-server/src/main/java/io/seata/server/transaction/xa/XACore.java
ruoyi-visual/ruoyi-seata-server/src/main/resources/META-INF/native-image/io.seata/server/reflect-config.json
ruoyi-visual/ruoyi-seata-server/src/main/resources/META-INF/native-image/io.seata/server/resource-config.json
ruoyi-visual/ruoyi-seata-server/src/main/resources/META-INF/services/io.seata.core.rpc.RegisterCheckAuthHandler
ruoyi-visual/ruoyi-seata-server/src/main/resources/META-INF/services/io.seata.core.store.DistributedLocker
ruoyi-visual/ruoyi-seata-server/src/main/resources/META-INF/services/io.seata.core.store.db.DataSourceProvider
ruoyi-visual/ruoyi-seata-server/src/main/resources/META-INF/services/io.seata.server.coordinator.AbstractCore
ruoyi-visual/ruoyi-seata-server/src/main/resources/META-INF/services/io.seata.server.lock.LockManager
ruoyi-visual/ruoyi-seata-server/src/main/resources/META-INF/services/io.seata.server.session.SessionManager
ruoyi-visual/ruoyi-seata-server/src/main/resources/META-INF/spring-configuration-metadata.json
ruoyi-visual/ruoyi-seata-server/src/main/resources/META-INF/spring.factories
ruoyi-visual/ruoyi-seata-server/src/main/resources/README-zh.md
ruoyi-visual/ruoyi-seata-server/src/main/resources/README.md
ruoyi-visual/ruoyi-seata-server/src/main/resources/application.yml
ruoyi-visual/ruoyi-seata-server/src/main/resources/banner.txt
ruoyi-visual/ruoyi-seata-server/src/main/resources/logback-common.xml
ruoyi-visual/ruoyi-seata-server/src/main/resources/logback-spring.xml
ruoyi-visual/ruoyi-seata-server/src/main/resources/redislocker/redislock.lua
ruoyi-visual/ruoyi-sentinel-dashboard/Dockerfile
ruoyi-visual/ruoyi-sentinel-dashboard/pom.xml
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/DashboardApplication.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/auth/AuthAction.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/auth/AuthService.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/auth/AuthorizationInterceptor.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/auth/DefaultAuthorizationInterceptor.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/auth/DefaultLoginAuthenticationFilter.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/auth/FakeAuthServiceImpl.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/auth/LoginAuthenticationFilter.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/auth/SimpleWebAuthServiceImpl.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/client/CommandFailedException.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/client/CommandNotFoundException.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/client/SentinelApiClient.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/config/AuthConfiguration.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/config/AuthProperties.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/config/DashboardConfig.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/config/WebConfig.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/AppController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/AuthController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/AuthorityRuleController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/DegradeController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/DemoController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/FlowControllerV1.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/MachineRegistryController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/MetricController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/ParamFlowRuleController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/ResourceController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/SystemController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/VersionController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/cluster/ClusterAssignController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/cluster/ClusterConfigController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/gateway/GatewayApiController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/gateway/GatewayFlowRuleController.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/controller/v2/FlowControllerV2.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/ApplicationEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/MachineEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/MetricEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/MetricPositionEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/SentinelVersion.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/gateway/ApiDefinitionEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/gateway/ApiPredicateItemEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/gateway/GatewayFlowRuleEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/gateway/GatewayParamFlowItemEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/rule/AbstractRuleEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/rule/AuthorityRuleEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/rule/DegradeRuleEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/rule/FlowRuleEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/rule/ParamFlowRuleEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/rule/RuleEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/datasource/entity/rule/SystemRuleEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/discovery/AppInfo.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/discovery/AppManagement.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/discovery/MachineDiscovery.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/discovery/MachineInfo.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/discovery/SimpleMachineDiscovery.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/ResourceTreeNode.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/Result.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/ClusterAppAssignResultVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/ClusterAppFullAssignRequest.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/ClusterAppSingleServerAssignRequest.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/ClusterClientInfoVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/ClusterGroupEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/ClusterStateSingleVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/ConnectionDescriptorVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/ConnectionGroupVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/config/ClusterClientConfig.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/config/ServerFlowConfig.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/config/ServerTransportConfig.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/request/ClusterAppAssignMap.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/request/ClusterClientModifyRequest.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/request/ClusterModifyRequest.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/request/ClusterServerModifyRequest.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/state/AppClusterClientStateWrapVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/state/AppClusterServerStateWrapVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/state/ClusterClientStateVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/state/ClusterRequestLimitVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/state/ClusterServerStateVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/state/ClusterStateSimpleEntity.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/state/ClusterUniversalStatePairVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/cluster/state/ClusterUniversalStateVO.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/vo/MachineInfoVo.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/vo/MetricVo.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/vo/ResourceVo.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/vo/gateway/api/AddApiReqVo.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/vo/gateway/api/ApiPredicateItemVo.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/vo/gateway/api/UpdateApiReqVo.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/vo/gateway/rule/AddFlowRuleReqVo.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/vo/gateway/rule/GatewayParamFlowItemVo.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/vo/gateway/rule/UpdateFlowRuleReqVo.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/metric/MetricFetcher.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/gateway/InMemApiDefinitionStore.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/gateway/InMemGatewayFlowRuleStore.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/metric/InMemoryMetricsRepository.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/metric/MetricsRepository.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/rule/InMemAuthorityRuleStore.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/rule/InMemDegradeRuleStore.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/rule/InMemFlowRuleStore.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/rule/InMemParamFlowRuleStore.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/rule/InMemSystemRuleStore.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/rule/InMemoryRuleRepositoryAdapter.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/rule/RuleRepository.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/rule/DynamicRuleProvider.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/rule/DynamicRulePublisher.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/rule/FlowRuleApiProvider.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/rule/FlowRuleApiPublisher.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/service/ClusterAssignService.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/service/ClusterAssignServiceImpl.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/service/ClusterConfigService.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/util/AsyncUtils.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/util/ClusterEntityUtils.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/util/MachineUtils.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/util/VersionUtils.java
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/resources/application.yml
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/resources/banner.txt
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/resources/logback-common.xml
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/resources/logback-plus.xml
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/.gitignore
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/.jshintrc
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/README.md
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/README_zh.md
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/app.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/authority.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/cluster_app_assign_manage.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/cluster_app_server_list.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/cluster_app_server_manage.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/cluster_app_server_monitor.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/cluster_app_token_client_list.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/cluster_single.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/degrade.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/flow_v1.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/flow_v2.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/gateway/api.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/gateway/flow.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/gateway/identity.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/home.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/identity.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/login.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/machine.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/main.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/metric.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/param_flow.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/system.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/directives/header/header.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/directives/header/header.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/directives/sidebar/sidebar-search/sidebar-search.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/directives/sidebar/sidebar-search/sidebar-search.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/directives/sidebar/sidebar.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/directives/sidebar/sidebar.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/filters/filters.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/libs/treeTable.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/appservice.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/auth_service.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/authority_service.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/cluster_state_service.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/degrade_service.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/flow_service_v1.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/flow_service_v2.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/gateway/api_service.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/gateway/flow_service.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/identityservice.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/machineservice.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/metricservice.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/param_flow_service.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/systemservice.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/scripts/services/version_service.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/styles/main.css
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/styles/page.css
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/styles/timeline.css
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/authority.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/cluster/client.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/cluster/server.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/cluster_app_assign_manage.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/cluster_app_client_list.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/cluster_app_server_list.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/cluster_app_server_overview.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/cluster_single_config.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dashboard/home.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dashboard/main.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/degrade.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dialog/authority-rule-dialog.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dialog/cluster/cluster-client-config-dialog.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dialog/cluster/cluster-server-assign-dialog.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dialog/cluster/cluster-server-connection-detail-dialog.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dialog/confirm-dialog.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dialog/degrade-rule-dialog.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dialog/flow-rule-dialog.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dialog/gateway/api-dialog.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dialog/gateway/flow-rule-dialog.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dialog/param-flow-rule-dialog.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/dialog/system-rule-dialog.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/flow_v1.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/flow_v2.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/gateway/api.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/gateway/flow.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/gateway/identity.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/identity.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/login.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/machine.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/metric.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/pagination.tpl.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/param_flow.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/app/views/system.html
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/assets/img/sentinel-logo.png
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/dist/css/app.css
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/dist/js/app.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/dist/js/app.vendor.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/gulpfile.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/index.htm
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/index_dev.htm
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/lib/css/bootstrap.min.css
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/lib/css/font-awesome.min.css
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/lib/fonts/fontawesome-webfont.ttf
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/lib/fonts/fontawesome-webfont.woff
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/lib/fonts/fontawesome-webfont.woff2
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/lib/fonts/glyphicons-halflings-regular.ttf
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/lib/fonts/glyphicons-halflings-regular.woff
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/lib/js/angular.min.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/lib/js/bootstrap.min.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/lib/js/g2.min.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/lib/js/jquery.min.js
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/license-stat.csv
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/package-lock.json
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/package.json
ruoyi-visual/ruoyi-sentinel-dashboard/src/main/webapp/resources/static/favicon.ico |